/* ========================= Root Variables ========================= */
:root {
	--primary: #33C1ED;
	--primary-color: #33C1ED;
	--primary-rgb: 51, 193, 237;
	--primary-dark: #1a9fd4;
	--secondary: #213360;
	--secondary-rgb: 33, 51, 96;
	--heading: #0e204d;
	--body-font: 'Urbanist', sans-serif;
	--heading-font: 'Urbanist', sans-serif;
}

/* ========================= Font Override ========================= */
body {
	font-family: var(--body-font) !important;
}

h1, h2, h3, h4, h5, h6,
.heading-font,
.footer-widget__title,
.btn,
.nav__item-link,
.navbar-nav,
.contact__list {
	font-family: var(--heading-font) !important;
}

/* ========================= Primary Color Overrides ========================= */
.color-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }

.btn__primary {
	background-color: var(--primary);
}
.btn__primary:active,
.btn__primary:focus {
	border-color: var(--primary);
	background-color: var(--primary);
}
.btn__primary:hover {
	background-color: var(--primary-dark);
}
.btn__primary .icon-outlined {
	color: var(--primary);
	border-color: var(--primary);
}
.btn__primary .icon-filled {
	background-color: var(--primary);
}
.btn__primary.btn__outlined {
	border-color: var(--primary);
	color: var(--primary);
}
.btn__primary.btn__outlined .icon-arrow-right,
.btn__primary.btn__outlined .icon-arrow-left {
	background-color: var(--primary);
}
.btn__primary.btn__outlined:hover {
	background-color: var(--primary);
	color: #fff;
}
.btn__primary.btn__outlined:hover .icon-arrow-right,
.btn__primary.btn__outlined:hover .icon-arrow-left {
	color: var(--primary);
	background-color: #fff;
}
.btn__link.btn__primary { color: var(--primary); }
.btn__link.btn__primary:hover { color: var(--primary-dark); }
.btn__link.btn__primary.btn__underlined { border-color: var(--primary); }
.btn__link.btn__primary:hover.btn__underlined { border-color: var(--primary-dark); }

.btn__secondary:before { background-color: var(--primary) !important; }

/* Nav hover & active */
.navbar .nav__item .nav__item-link:before { background-color: var(--primary); }
.navbar .nav__item .nav__item-link:hover { color: var(--primary); }
.navbar .nav__item.active > .nav__item-link { color: var(--primary); }

/* Footer color overrides */
.footer .footer-widget-nav li a:hover { color: var(--primary); }
.footer .footer__copyright-links li a:hover { color: var(--primary); }
.footer .footer-widget-contact:after { background-color: var(--primary); }
.footer .footer-secondary:after { background-color: var(--primary); }

/* Topbar social icons */
.header-topbar .social-icons li a {
	color: #fff;
	background-color: var(--primary);
}
.header-topbar .social-icons li a:hover {
	background-color: #fff;
	color: var(--primary);
}

/* General links */
a:hover { color: var(--primary); }

/* Pagination color override */
.pagination li a:hover,
.pagination li a.current {
	border-color: var(--primary);
	background-color: var(--primary);
}

/* Mobile nav hover */
@media (max-width: 991px) {
	.navbar .nav__item .nav__item-link:hover { color: var(--primary); }
}

/* ========================= Footer Widget Fixes ========================= */
.footer .footer-widget-about .btn__outlined {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
	font-size: 13px;
	padding: 8px 20px;
}
.footer .footer-widget-about .btn__outlined:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
}
.footer .footer-widget-about .btn__outlined .icon-arrow-right {
	color: #fff;
	background: transparent;
	width: auto;
	height: auto;
	margin-left: 5px;
}

.footer .footer-widget-contact .social-icons li a {
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 14px;
}

.office701-logo{
	width: 100px;
}

/* ========================= Language Switcher ========================= */
.language-switcher {
	display: flex;
	gap: 8px;
	margin-left: 15px;
}

.language-switcher li {
	list-style: none;
	opacity: 0.6;
	transition: opacity 0.3s ease;
}

.language-switcher li:hover,
.language-switcher li.active {
	opacity: 1;
}

.language-switcher li a {
	display: block;
	line-height: 0;
}

.language-switcher li img {
	border-radius: 2px;
	object-fit: cover;
}

/* ========================= WhatsApp Float Button ========================= */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	left: 30px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	font-size: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	z-index: 998;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	background-color: #128c7e;
	color: #fff;
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		left: 20px;
		width: 50px;
		height: 50px;
		font-size: 24px;
	}
}

/* ========================= Header Topbar Responsive ========================= */
.header-topbar {
	display: flex !important;
	height: auto;
	padding: 8px 0;
}

.header-topbar .container-fluid {
	padding-left: 20px;
	padding-right: 20px;
}

.header-topbar .contact__list {
	gap: 5px;
}

.header-topbar .contact__list li {
	font-size: 13px;
	margin-right: 15px;
	white-space: nowrap;
}

.header-topbar .contact__list li > i {
	color: var(--primary);
}

@media (min-width: 1200px) {
	.header-topbar {
		padding: 0;
		height: 50px;
	}
	.header-topbar .container-fluid {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media (max-width: 1199px) {
	.header-topbar {
		display: flex !important;
		padding: 8px 0;
	}
	.header-topbar .contact__list li.topbar-address,
	.header-topbar .contact__list li.topbar-hours {
		display: none !important;
	}
	.header-topbar .social-icons {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.header-topbar .contact__list li {
		font-size: 12px;
		margin-right: 10px;
	}
	.header-topbar .contact__list li > i {
		font-size: 14px;
		margin-right: 5px;
	}
	.language-switcher {
		gap: 5px;
		margin-left: 10px;
	}
	.language-switcher li img {
		width: 20px !important;
		height: 14px !important;
	}
}

/* ========================= Navbar Logo Size ========================= */
.navbar .navbar-brand img {
	max-height: 60px;
	width: auto;
}
.is-sticky .navbar-brand img {
	max-height: 50px;
}

@media (max-width: 991px) {
	.navbar .navbar-brand img {
		max-height: 45px;
	}
}

/* ========================= Footer Secondary with Office701 Logo ========================= */
.footer .footer-secondary {
	padding: 20px 0;
}

.footer-secondary .row {
	align-items: center;
}

.footer-secondary__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
}

.footer-secondary__right .office701-link img {
	height: 22px;
	width: auto;
}

@media (max-width: 767px) {
	.footer .footer-secondary {
		text-align: center;
	}
	.footer-secondary__right {
		justify-content: center;
		margin-top: 10px;
	}
}

/* ========================= Footer Widget Responsive ========================= */
@media (max-width: 991px) {
	.footer .footer-widget-contact {
		margin-top: 15px;
	}
}

/* ========================= Randevu (Appointment) Button ========================= */
.btn-appointment {
	background-color: var(--primary);
	color: #fff;
	border-radius: 5px;
	padding: 10px 22px;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-appointment:hover {
	background-color: var(--primary-dark);
	color: #fff;
}

/* ========================= Contact Page ========================= */
.contact-layout1 .contact-panel__info .social-icons li a {
	color: var(--secondary);
	background-color: #fff;
}
.contact-layout1 .contact-panel__info .social-icons li a:hover {
	background-color: var(--primary);
	color: #fff;
}

.bg-overlay-primary-gradient:after {
	background: linear-gradient(180deg, rgba(var(--secondary-rgb), 0.85) 0%, rgba(var(--secondary-rgb), 0.95) 100%) !important;
}

.contact-panel__form .btn__secondary {
	background-color: var(--primary);
}
.contact-panel__form .btn__secondary:hover {
	background-color: var(--primary-dark);
}

.google-map iframe {
	display: block;
}

.hide{
	display: none !important;
}

.w-100{
	width: 100% !important;
}

.h-100{
	height: 100% !important;
}

.w-50{
	width: 50% !important;
}

.h-50{
	height: 50% !important;
}

.w-auto{
	width: auto !important;
}

.h-auto{
	height: auto !important; 
}

.has-error{
    border-color: #b94a48;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.has-success{
    border-color: #50cd89;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #555555;
    background: rgba(255, 255, 255, 0.9);
}

.show {
    display: block !important;
}

.closecookies {
   z-index: 2;
    position: absolute !important;
    right: 0 !important;
    border: none;
    background: transparent;
    font-size: 17px;
    padding: 0px;
}

.closeBtn {
    font-weight: bold;
    color: black
}

.cookiealert {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    z-index: 999;
    opacity: .9;
    border-style: none;
    visibility: hidden;
    border-radius: 0;
    transform: translateY(100%);
    transition: all 500ms ease-out;
    color: #555;
    background: #fff;
    box-shadow: 0 0 10 0 rgb(0 0 0 / 24%);
    padding: 15px 10px 15px 5px;
}

.cookiealert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
    transition-delay: 1000ms;
}

.cookiealert a {
    text-decoration: underline
}

.cookiealert a:hover {
    color: var(--theme-color2);
}

.cookiealert .cookiealert-text{
    z-index: 1;
    padding: 15px 0px 0px 10px;
    margin: 0;
    width: 100%;
    font-size: 12px;
}

.cookiealert .cookiealert-text p{
    font-size: 13px;
    line-height: 1.5;
}

.cookiealert .full-width{
    width: 100%;
}

.cookiealert .pull-rightleft{
    text-align: center;
}

@media screen and (min-width: 991px){
    .cookiealert{
        bottom: 10px;
        left: 18px;
        width: 400px;
        border-radius: 10px;
    }

    .cookiealert .cookiealert-text{
        width: 414px;
        line-height: 2;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px){
    .cookiealert .pull-rightleft {
        float: none;
        text-align: center;
    }
}

/* ========================= CTA Section (Hizmet Detay) ========================= */
.cta-section {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px 35px;
}
.cta-section .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.cta-section .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-section__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.cta-section__desc {
    font-size: 15px;
    margin-bottom: 0;
    opacity: 0.9;
}

/* ========== Randevu Sayfası / KVKK ========== */
.form-group-checkbox {
    margin-bottom: 15px;
}
.form-group-checkbox label {
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
}
.form-group-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.kvkk-label a {
    font-weight: 600;
}
.kvkk-label a:hover {
    text-decoration: underline !important;
}
#kvkkModal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.7;
}
#kvkkModal .modal-header {
    border-bottom: 2px solid var(--primary);
}
#kvkkModal .modal-title {
    font-weight: 700;
    color: var(--secondary-color);
}
.form-group-date .form-control {
    cursor: pointer;
}
/* contact-layout2 form select */
.contact-panel__form select.form-control {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    padding-right: 15px;
}
.contact-panel__info .contact__list li {
    color: #fff;
}
.contact-panel__info .contact__list li a,
.contact-panel__info .contact__list li span {
    color: #fff;
}
/* about-layout5 map tooltip */
.map-wrapper {
    position: relative;
}
.tooltip-box {
    position: absolute;
    top: 40%;
    left: 55%;
}
.tooltip__icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    animation: pulse 2s infinite;
}
.tooltip__panel {
    display: none;
    position: absolute;
    bottom: 40px;
    left: -100px;
    width: 250px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0,0,0,.15);
    z-index: 10;
}
.tooltip-box:hover .tooltip__panel {
    display: block;
}
.tooltip__title {
    font-size: 13px;
    line-height: 1.5;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(51,193,237,.5); }
    70% { box-shadow: 0 0 0 15px rgba(51,193,237,0); }
    100% { box-shadow: 0 0 0 0 rgba(51,193,237,0); }
}

/* ========== About CTA Bar ========== */
.cta-about {
    position: relative;
    padding: 50px 0;
}
.cta-about .cta__img {
    max-width: 80px;
    margin-bottom: 15px;
}
.cta-about .cta__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}
.cta-about .cta__desc {
    font-size: 15px;
    margin-bottom: 0;
    opacity: 0.9;
}
@media (max-width: 991px) {
    .cta-about .col-lg-3 {
        margin-top: 20px;
    }
}

/* ========== Öncesi Sonrası / Before-After ========== */
.before-after-section .before-after-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
}
.before-after-section .before-after-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.before-after-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,.1);
}
.before-after-image-wrapper .twentytwenty-box {
    border-radius: 10px;
    overflow: hidden;
}
.before-after-image-wrapper .image-labels {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: #f8f9fa;
}
.before-after-image-wrapper .label-before,
.before-after-image-wrapper .label-after {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.before-after-image-wrapper .label-before {
    color: var(--secondary-color);
}
.before-after-image-wrapper .label-after {
    color: var(--primary);
}
.before-after-content {
    padding: 20px 0;
}
.before-after-text {
    font-size: 15px;
    line-height: 1.8;
    color: #6e727d;
    margin-bottom: 25px;
}
.before-after-text p {
    margin-bottom: 12px;
}
.before-after-text ul {
    padding-left: 20px;
    margin-bottom: 12px;
}
.before-after-text ul li {
    margin-bottom: 6px;
    line-height: 1.7;
}
.before-after-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.before-after-features .feature-item {
	display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 22px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(14, 107, 86, 0.08);
}
.before-after-features .feature-item i {
    color: var(--primary);
    font-size: 18px;
}
/* TwentyTwenty overrides */
.twentytwenty-container {
    border-radius: 10px;
    overflow: hidden;
}
.twentytwenty-handle {
    border-color: var(--primary) !important;
}
.twentytwenty-handle::before,
.twentytwenty-handle::after {
    background: var(--primary) !important;
    box-shadow: 0 3px 10px rgba(51,193,237,.3) !important;
}
.twentytwenty-left-arrow {
    border-right-color: var(--primary) !important;
}
.twentytwenty-right-arrow {
    border-left-color: var(--primary) !important;
}
.twentytwenty-overlay .twentytwenty-before-label::before,
.twentytwenty-overlay .twentytwenty-after-label::before {
    background: rgba(0,0,0,.5);
    border-radius: 4px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
@media (max-width: 991px) {
    .before-after-content {
        padding: 30px 0 0;
    }
    .before-after-item.reversed .order-lg-1,
    .before-after-item.reversed .order-lg-2 {
        order: unset;
    }
}

/* ========== Basında Biz / Press Section ========== */
.press-premium {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
}
.press-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(51, 193, 237, 0.3), transparent);
}
.press-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.press-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.press-tab-btn::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #33C1ED 0%, #0ea5e9 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.press-tab-btn i,
.press-tab-btn span {
    position: relative;
    z-index: 1;
}
.press-tab-btn i {
    font-size: 20px;
    transition: all 0.3s ease;
}
.press-tab-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(51, 193, 237, 0.2);
}
.press-tab-btn.active {
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 15px 50px rgba(51, 193, 237, 0.35);
    transform: translateY(-3px);
}
.press-tab-btn.active::before {
    opacity: 1;
}
.press-tab-btn.active i {
    color: #ffffff;
}
.press-tab-btn .tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 26px;
    padding: 0 8px;
    background: rgba(51, 193, 237, 0.15);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.press-tab-btn.active .tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}
.press-tab-content {
    display: none;
    animation: pressFadeIn 0.5s ease;
}
.press-tab-content.active {
    display: block;
}
@keyframes pressFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.press-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.press-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #0ea5e9);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}
.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(51, 193, 237, 0.15);
}
.press-card:hover::before {
    opacity: 1;
}
.press-card__header {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    min-height: 70px;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
}
.press-card__logo {
    max-width: 140px;
    max-height: 40px;
}
.press-card__logo img {
    max-width: 100%;
    max-height: 40px;
    object-fit: contain;
}
.press-card__logo-placeholder {
    width: 60px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
}
.press-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.press-card__link:hover {
    text-decoration: none;
    color: inherit;
}
.press-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8fafc;
}
.press-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.press-card:hover .press-card__image img {
    transform: scale(1.08);
}
.press-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 46, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.press-card:hover .press-card__overlay {
    opacity: 1;
}
.press-card__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.press-card:hover .press-card__action {
    transform: translateY(0);
    opacity: 1;
}
.press-card__action--video {
    background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
    color: #ffffff;
    position: relative;
}
.press-card__action--video::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: videoPulse 2s ease-in-out infinite;
}
@keyframes videoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0; }
}
.press-card__content {
    padding: 20px;
}
.press-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.press-card:hover .press-card__title {
    color: var(--primary);
}
.press-empty {
    text-align: center;
    padding: 80px 20px;
}
.press-empty__icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: rgba(51, 193, 237, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.press-empty__icon i {
    font-size: 40px;
    color: var(--primary);
}
.press-empty__text {
    font-size: 18px;
    color: #64748b;
}
/* Press Responsive */
@media (max-width: 1199px) {
    .press-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}
@media (max-width: 991px) {
    .press-premium { padding: 80px 0 100px; }
    .press-tabs { gap: 15px; }
    .press-tab-btn { padding: 14px 28px; font-size: 15px; }
    .press-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .press-card__image { height: 180px; }
}
@media (max-width: 767px) {
    .press-tabs { flex-direction: column; gap: 12px; margin-bottom: 40px; }
    .press-tab-btn { width: 100%; justify-content: center; padding: 16px 24px; }
    .press-grid { grid-template-columns: 1fr; gap: 20px; }
    .press-card__image { height: 200px; }
}
@media (max-width: 575px) {
    .press-premium { padding: 60px 0 80px; }
    .press-tab-btn { padding: 14px 20px; font-size: 14px; gap: 10px; }
    .press-tab-btn i { font-size: 18px; }
}

/* ========== Anasayfa / Homepage ========== */

/* --- Slider Overlay (Opaklık) --- */
/* Not: main.js .bg-img div'ini kaldırıp background-image'ı .slide-item'a aktarır */
.slider .slide-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 30, 60, 0.65) 0%,
        rgba(0, 20, 40, 0.45) 50%,
        rgba(0, 15, 30, 0.55) 100%
    );
    z-index: 1;
    pointer-events: none;
}
.slider .slide-item .container {
    position: relative;
    z-index: 2;
}
.slider .slide__title {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    color: #fff;
}
.slider .slide__desc {
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.92);
}

/* --- Slider Butonları --- */
.slider .slide__content .btn__primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.slider .slide__content .btn__primary:hover {
    background-color: #1aafdb;
    border-color: #1aafdb;
}
.slider .slide__content .btn__white {
    border: 2px solid #fff;
}
.slider .slide__content .btn__white:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* --- Hakkımızda Section --- */
.about-home__image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.about-home__image img {
    border-radius: 12px;
    transition: transform 0.5s ease;
}
.about-home__image:hover img {
    transform: scale(1.03);
}
.about-home__tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}
.about-home__tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: var(--primary-color);
}
.about-home__content .heading__title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
}
.about-home__excerpt {
    font-size: 17px;
    font-weight: 600;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
}
.about-home__text {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}
.about-home__text p {
    margin-bottom: 12px;
}

/* --- Hizmetler Grid Kartları --- */
.home-services {
    background: #f8fafb;
}
.hs-card {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 280px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}
.hs-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hs-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.hs-card:hover .hs-card__img img {
    transform: scale(1.08);
}
.hs-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(
        to top,
        rgba(0, 20, 50, 0.85) 0%,
        rgba(0, 20, 50, 0.4) 60%,
        transparent 100%
    );
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    transition: background 0.3s ease;
}
.hs-card:hover .hs-card__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 20, 50, 0.9) 0%,
        rgba(0, 20, 50, 0.5) 70%,
        rgba(0, 20, 50, 0.15) 100%
    );
}
.hs-card__title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Urbanist', sans-serif;
}
.hs-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.hs-card:hover .hs-card__btn {
    opacity: 1;
    transform: translateY(0);
}

/* --- Ekip Kartları (Küçültülmüş) --- */
.home-team {
    background: #f4f9fc;
}

/* --- Home Mini CTA --- */
.home-mini-cta {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(120deg, #33C1ED 0%, #1a8ab5 100%) !important;
    background-color: #33C1ED !important;
    overflow: hidden;
}
.home-mini-cta::before,
.home-mini-cta::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    pointer-events: none;
    z-index: 1;
}
.home-mini-cta::before {
    width: 260px;
    height: 260px;
    top: -120px;
    right: -60px;
}
.home-mini-cta::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -40px;
}
.home-mini-cta__content {
    position: relative;
    z-index: 2;
}
.home-mini-cta__title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: 'Urbanist', sans-serif;
}
.home-mini-cta__desc {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
    font-size: 15px;
}
@media (max-width: 767px) {
    .home-mini-cta { padding: 45px 0; text-align: center; }
    .home-mini-cta__title { font-size: 20px; }
    .home-mini-cta .text-lg-right { text-align: center !important; margin-top: 20px; }
}
.ht-member {
    text-align: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}
.ht-member:hover {
    transform: translateY(-6px);
}
.ht-member__img {
    width: 180px;
    height: 180px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
    outline: 2px solid rgba(51, 193, 237, 0.2);
    transition: outline-color 0.3s ease, box-shadow 0.3s ease;
}
.ht-member:hover .ht-member__img {
    outline-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(51, 193, 237, 0.2);
}
.ht-member__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.ht-member:hover .ht-member__img img {
    transform: scale(1.06);
}
.ht-member__info {
    padding: 0 10px;
}
.ht-member__name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    font-family: 'Urbanist', sans-serif;
}
.ht-member__job {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
}

/* --- Team Member Modal --- */
.team-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.team-modal-overlay.active {
    display: flex;
}
.team-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    animation: teamModalIn 0.3s ease;
}
@keyframes teamModalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.team-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #000;
    cursor: pointer;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}
.team-modal__close:hover {
    background: rgba(255,255,255,0.2);
}
.team-modal__header {
    background: linear-gradient(135deg, var(--primary-color), #1a8ab5);
    padding: 40px 30px 0px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}
.team-modal__img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 4px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.team-modal__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team-modal__name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Urbanist', sans-serif;
}
.team-modal__branch {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}
.team-modal__body {
    padding: 20px 30px 32px;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}
.team-modal__body p {
    margin-bottom: 12px;
}
.team-modal__body p:last-child {
    margin-bottom: 0;
}
@media (max-width: 575px) {
    .team-modal {
        max-width: 100%;
        border-radius: 12px;
    }
    .team-modal__header {
        padding: 30px 20px 24px;
        border-radius: 12px 12px 0 0;
    }
    .team-modal__img {
        width: 90px;
        height: 90px;
    }
    .team-modal__name {
        font-size: 18px;
    }
    .team-modal__body {
        padding: 20px;
        font-size: 14px;
    }
}

/* --- Parallax Motto Section --- */
.parallax-motto {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.parallax-motto__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.parallax-motto__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(20, 50, 100, 0.85) 0%,
        rgba(10, 30, 80, 0.80) 50%,
        rgba(20, 40, 90, 0.85) 100%
    );
}
.parallax-motto__content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.parallax-motto__icon {
    margin-bottom: 24px;
}
.parallax-motto__icon i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.4);
}
.parallax-motto__text {
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 24px;
    font-family: 'Urbanist', sans-serif;
}
.parallax-motto__author {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    letter-spacing: 1px;
}

/* --- Blog Kartları --- */
.blog-grid .post-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}
.blog-grid .post-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.blog-grid .post__img {
    overflow: hidden;
}
.blog-grid .post__img img {
    transition: transform 0.5s ease;
}
.blog-grid .post-item:hover .post__img img {
    transform: scale(1.05);
}
.blog-grid .post__body {
    padding: 24px;
}
.blog-grid .post__title a {
    color: #1e293b;
    transition: color 0.2s;
}
.blog-grid .post__title a:hover {
    color: var(--primary-color);
}

/* --- Section Başlıkları --- */
.heading__title {
    font-family: 'Urbanist', sans-serif;
    font-weight: 800;
}

/* --- Galeri Carousel --- */
.gallery .popup-gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 8px;
}
.gallery .popup-gallery-item img {
    border-radius: 10px;
    transition: transform 0.5s ease, filter 0.3s ease;
}
.gallery .popup-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.88);
}

/* --- Anasayfa Responsive --- */
@media (max-width: 991px) {
    .about-home__content .heading__title { font-size: 26px; }
    .about-home__image { margin-bottom: 30px; }
    .hs-card { height: 240px; }
    .parallax-motto__text { font-size: 24px; }
    .parallax-motto { padding: 70px 0; }
    .ht-member__img { width: 150px; height: 150px; }
}
@media (max-width: 767px) {
    .about-home__content .heading__title { font-size: 22px; }
    .about-home__tagline { font-size: 12px; }
    .hs-card { height: 220px; }
    .hs-card__btn { opacity: 1; transform: translateY(0); }
    .parallax-motto__text { font-size: 20px; }
    .parallax-motto__bg { background-attachment: scroll; }
    .parallax-motto { padding: 60px 0; }
    .ht-member__img { width: 130px; height: 130px; }
    .ht-member__name { font-size: 14px; }
}

/* ========================================
   CONTACT PAGE - Premium Modern Design
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    padding: 120px 0 80px;
    background: url('../images/dr-engin-aksoy-german-dental-clinic-contact-bg.png') center center no-repeat;
    background-size: cover !important;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    pointer-events: none;
    z-index: 0;
}

.contact-hero__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-hero__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero__title {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Main Section */
.contact-modern {
    padding: 100px 0;
    background: #fff;
}

.contact-modern__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Cards */
.contact-info-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    /* align-items: flex-start; */
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(14, 107, 86, 0.08);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(14, 107, 86, 0.1);
    border-color: rgba(14, 107, 86, 0.15);
}

.contact-info-card__icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary, #0e6b56) 0%, #0a5544 100%);
    border-radius: 16px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-card__icon {
    transform: scale(1.1);
}

.contact-info-card__content {
    flex: 1;
}

.contact-info-card__title {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary, #0e6b56);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.contact-info-card__text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-info-card__text:hover {
    color: var(--primary, #0e6b56);
}

.contact-info-card__desc {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Contact Form Premium */
.contact-form-premium {
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(14, 107, 86, 0.08);
}

.contact-form-premium__header {
    margin-bottom: 35px;
    text-align: center;
}

.contact-form-premium__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-form-premium__subtitle {
    font-size: 15px;
    color: #888;
}

.contact-form-premium .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-premium .form-row--full {
    grid-template-columns: 1fr;
}

.contact-form-premium .form-group {
    position: relative;
}

.contact-form-premium input,
.contact-form-premium textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #eee;
    border-radius: 14px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form-premium input::placeholder,
.contact-form-premium textarea::placeholder {
    color: #999;
}

.contact-form-premium input:focus,
.contact-form-premium textarea:focus {
    border-color: var(--primary, #0e6b56);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 107, 86, 0.1);
}

.contact-form-premium textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-premium__btn {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary, #0e6b56) 0%, #0a5544 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.contact-form-premium__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 107, 86, 0.3);
}

.contact-form-premium__btn i {
    transition: transform 0.3s ease;
}

.contact-form-premium__btn:hover i {
    transform: translateX(5px);
}

/* ========================================
   HOW TO REACH - Nasıl Gelirim Section
   ======================================== */
.how-to-reach {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8faf9 0%, #fff 100%);
    position: relative;
}

.how-to-reach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 107, 86, 0.15), transparent);
}

.how-to-reach__header {
    text-align: center;
    margin-bottom: 60px;
}

.how-to-reach__tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 107, 86, 0.08);
    color: var(--primary, #0e6b56);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.how-to-reach__title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.how-to-reach__subtitle {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Location Info Grid */
.how-to-reach__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Location Card */
.location-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(14, 107, 86, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary, #0e6b56), #0a8f6f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(14, 107, 86, 0.12);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 107, 86, 0.1) 0%, rgba(14, 107, 86, 0.05) 100%);
    border-radius: 20px;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary, #0e6b56);
    transition: all 0.4s ease;
}

.location-card:hover .location-card__icon {
    background: linear-gradient(135deg, var(--primary, #0e6b56) 0%, #0a5544 100%);
    color: #fff;
    transform: scale(1.1);
}

.location-card__name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.location-card__distance {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 107, 86, 0.08);
    color: var(--primary, #0e6b56);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.location-card__desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0;
}

/* Hotels Section */
.hotels-section {
    margin-top: 20px;
}

.hotels-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hotels-section__title::before,
.hotels-section__title::after {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(14, 107, 86, 0.3));
}

.hotels-section__title::after {
    background: linear-gradient(90deg, rgba(14, 107, 86, 0.3), transparent);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Hotel Card */
.hotel-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(14, 107, 86, 0.06);
    transition: all 0.3s ease;
}

.hotel-card:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 45px rgba(14, 107, 86, 0.1);
    border-color: rgba(14, 107, 86, 0.12);
}

.hotel-card__icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 107, 86, 0.1) 0%, rgba(14, 107, 86, 0.05) 100%);
    border-radius: 12px;
    color: var(--primary, #0e6b56);
    font-size: 20px;
}

.hotel-card__content {
    flex: 1;
}

.hotel-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.hotel-card__distance {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-card__distance i {
    color: var(--primary, #0e6b56);
    font-size: 11px;
}

/* Map Section Premium */
.map-premium {
    position: relative;
    margin-top: 80px;
}

.map-premium__wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(14, 107, 86, 0.1);
}

.map-premium iframe {
    width: 100%;
    height: 450px;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
    border-radius: 24px;
}

.map-premium:hover iframe {
    filter: grayscale(0%);
}

.map-premium__overlay {
    position: absolute;
    bottom: 80px;
    left: 55px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
}

.map-premium__overlay-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary, #0e6b56) 0%, #0a5544 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 20px;
}

.map-premium__overlay-text {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.map-premium__overlay-text span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #888;
    margin-top: 3px;
}

/* Responsive - Contact Modern */
@media (max-width: 991px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-hero__title {
        font-size: 38px;
    }
    
    .contact-modern__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-premium {
        padding: 40px 30px;
    }
    
    .how-to-reach__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-to-reach__title {
        font-size: 34px;
    }
    
    .map-premium__overlay {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        border-radius: 16px;
    }
    
    .map-premium__wrapper {
        border-radius: 16px;
    }
}

@media (max-width: 767px) {
    .contact-hero__title {
        font-size: 32px;
    }
    
    .contact-hero__subtitle {
        font-size: 16px;
    }
    
    .contact-form-premium .form-row {
        grid-template-columns: 1fr;
    }
    
    .how-to-reach__grid {
        grid-template-columns: 1fr;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .contact-info-card__icon {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 60px 0 50px;
    }
    
    .contact-hero__title {
        font-size: 28px;
    }
    
    .contact-hero__tagline {
        font-size: 11px;
        padding: 10px 20px;
    }
    
    .contact-modern {
        padding: 60px 0;
    }
    
    .contact-form-premium {
        padding: 30px 20px;
    }
    
    .contact-form-premium__title {
        font-size: 22px;
    }
    
    .contact-form-premium input,
    .contact-form-premium textarea {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .how-to-reach {
        padding: 60px 0;
    }
    
    .how-to-reach__title {
        font-size: 26px;
    }
    
    .how-to-reach__tagline {
        font-size: 11px;
        padding: 10px 20px;
    }
    
    .location-card {
        padding: 25px 20px;
    }
    
    .location-card__icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .location-card__name {
        font-size: 18px;
    }
    
    .hotel-card {
        padding: 20px;
    }
    
    .hotels-section__title {
        font-size: 20px;
    }
    
    .hotels-section__title::before,
    .hotels-section__title::after {
        width: 30px;
    }
    
    .map-premium iframe {
        height: 300px;
    }
    
    .map-premium__overlay {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
}

/* Harita Butonları */
.map-premium__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.map-btn--google {
    background: #4285F4;
    color: #fff;
}

.map-btn--google:hover {
    background: #3367D6;
    color: #fff;
}

.map-btn--apple {
    background: #000;
    color: #fff;
}

.map-btn--apple:hover {
    background: #333;
    color: #fff;
}

/* ========================================
   CONTACT SOCIAL LINKS
   ======================================== */
.contact-social-links {
    margin-top: 10px;
    padding: 20px 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(14, 107, 86, 0.08);
}

.contact-social-links__title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00bcbe;
    margin-bottom: 15px;
}

.contact-social-links__icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-social-links__icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00bcbe 0%, #00a5a7 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 190, 0.3);
}

.contact-social-links__icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 188, 190, 0.4);
    background: linear-gradient(135deg, #00a5a7 0%, #008b8d 100%);
}

.contact-social-links__icons a i {
    transition: transform 0.3s ease;
}

.contact-social-links__icons a:hover i {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .contact-social-links {
        margin-top: 15px;
        padding: 18px 20px;
    }
    
    .contact-social-links__icons a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .contact-social-links {
        padding: 15px 18px;
    }
    
    .contact-social-links__title {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .contact-social-links__icons {
        gap: 10px;
    }
    
    .contact-social-links__icons a {
        width: 40px;
        height: 40px;
        font-size: 15px;
        border-radius: 10px;
    }
}