/* --- LOGO BASED COLOR PALETTE & VARIABLES --- */
:root {
    --primary-navy: #0b2a4a;        /* Logo EMİR & MERKEZİ Koyu Lacivert */
    --primary-navy-dark: #071c33;   /* Derin Koyu Lacivert (Header Top / Footer) */
    --accent-magenta: #c2185b;      /* Logo DİYALİZ Fuşya / Magenta */
    --accent-magenta-hover: #a3134c;
    --accent-magenta-light: #fce4ec;/* Yumuşak Magenta Vurgu */
    --bg-light: #f8fafc;            /* Ferah Temiz Arka Plan */
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(11, 42, 74, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(11, 42, 74, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Sayfa genelinde yatay kaymayı kesin olarak engelle */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;
}

/* Header alanının viewport dışına taşmasını engelle */
.navbar-wrapper, header {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* --- SOFT HEADER & NAVBAR STYLE --- */
.header-wrapper,
.navbar-wrapper {
    background: rgba(255, 255, 255, 0.85); /* Hafif saydam beyaz */
    backdrop-filter: blur(12px); /* Modern buzlu cam efekti */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8); /* İnce soft çizgi */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03); /* Çok hafif gölge */
    transition: all 0.3s ease;
}

/* Scroll Edildiğindeki Yapı */
.navbar-wrapper.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.08);
}

/* Navigasyon Linkleri (Soft Koyu Mavi) */
.nav-menu .nav-link {
    color: #334155 !important; /* Sert siyah yerine soft kayrak mavisi */
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-menu .nav-link:hover,
.nav-menu .nav-link.active {
    color: var(--accent-magenta) !important;/* Canlı ama soft medikal mavi */
}

/* Hamburger Menü Çizgileri */
.hamburger span {
    background-color: var(--accent-magenta) !important; /* Soft lacivert/siyah */
}

/* --- MOBİL MENÜ PANELİ (Soft Temaya Uygun) --- */
@media (max-width: 768px) {
    .nav-menu {
        background: #f8fafc; /* Koyu lacivert yerine ferah off-white background */
        border-left: 1px solid #e2e8f0;
    }

    .nav-menu .nav-link {
        color: #1e293b !important;
        padding: 12px 0;
        border-bottom: 1px solid #edf2f7;
    }

    .nav-menu .nav-link:hover {
        color: #0284c7 !important;
    }
}
/* --- PRELOADER STYLE & ANIMATION --- */
/* --- PRELOADER STYLE & ANIMATION --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0 20px;
}

.preloader-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: preloaderPulse 2s infinite ease-in-out;
}

.preloader-logo {
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

@keyframes preloaderPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 15px 35px rgba(194, 24, 91, 0.4);
    }
}

/* SVG Böbrek & Dolma Efekti */
.kidney-fill-wrapper {
    width: 90px;
    height: 90px;
    position: relative;
}

.kidney-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-10deg);
}

.kidney-bg {
    fill: rgba(255, 255, 255, 0.08);
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
}

.kidney-fill {
    fill: var(--accent-magenta);
    stroke: var(--accent-magenta);
    stroke-width: 2;
    clip-path: inset(100% 0 0 0); /* Aşağıdan yukarıya dolma maskesi */
    animation: kidneyFillAnim 2s ease-in-out infinite;
}

/* Yukarıya doğru dolma animasyonu */
@keyframes kidneyFillAnim {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    50% {
        clip-path: inset(0% 0 0 0);
    }
    100% {
        clip-path: inset(0% 0 0 0);
        opacity: 0.8;
    }
}

/* Preloader Yazı & Nokta Efekti */
.preloader-text {
    text-align: center;
}

.preloader-text .brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-white);
    letter-spacing: 2px;
    display: block;
}

.preloader-text .brand-title span {
    color: var(--accent-magenta);
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    background-color: var(--accent-magenta);
    border-radius: 50%;
    animation: dotsPulse 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes dotsPulse {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.3;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* --- TYPOGRAPHY & BUTTONS --- */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--accent-magenta);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-navy);
    font-weight: 800;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-top: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-magenta {
    background-color: var(--accent-magenta);
    color: var(--bg-white);
}

.btn-magenta:hover {
    background-color: var(--accent-magenta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(194, 24, 91, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--bg-white);
}

.btn-outline-light:hover {
    background-color: var(--bg-white);
    color: var(--primary-navy);
}

/* --- HEADER & TOP BAR --- */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background-color: var(--primary-navy-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-left a, .top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-left i, .top-right i {
    color: var(--accent-magenta);
}

.top-left a:hover {
    color: var(--bg-white);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-magenta);
    color: var(--bg-white);
}

.social-links a:hover i {
    color: var(--bg-white);
}

/* MAIN NAVBAR */
.main-navbar {
    backdrop-filter: blur(10px);
    padding: 16px 0;
    transition: var(--transition);
}

.navbar-wrapper.scrolled .header-top {
    margin-top: -45px; /* Hide top bar on scroll */
}

.navbar-wrapper.scrolled .main-navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}


/* --- MOBİL MENÜ DÜZELTMELERİ & X İKON ANIMASYONU --- */

/* Arka plan karartması */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 42, 74, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.no-scroll {
    overflow: hidden;
}

/* Hamburger Buton & Çarpı (X) Dönüşümü */
.hamburger {
    position: relative;
    z-index: 1001; /* Menünün de üzerinde kalmasını sağlar */
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--bg-white);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
    transform-origin: 1px;
}

.navbar-wrapper.scrolled .hamburger span {
    background-color: var(--primary-navy);
}

/* Hamburger -> Çarpı (X) Animasyon Sınıfı */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    background-color: var(--accent-magenta) !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    background-color: var(--accent-magenta) !important;
}

/* --- RESPONSIVE MEDIA QUERIES (768px ve altı) --- */
/* --- RESPONSIVE MEDIA QUERIES (768px ve altı) --- */
@media (max-width: 768px) {
	
	.nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-navy-dark);
        padding: 90px 24px 30px 24px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0), visibility 0.4s;
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        z-index: 1000;
        overflow-y: auto;
        visibility: hidden; /* Ekran dışında yer kaplamasını engeller */
    }

    .nav-menu.active {
        right: 0;
        visibility: visible; /* Menü açılınca görünür olur */
    }

    /* Container genişliğini ekrana tam oturt */
    .nav-container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
    .header-top {
        display: none; /* Mobilde layout kaymasını önlemek için üst barı gizliyoruz */
    }

    .navbar-wrapper.scrolled .header-top {
        margin-top: 0; /* Negatif margin çakışmasını sıfırlıyoruz */
    }

    .main-navbar {
        padding: 12px 0;
        width: 100%;
    }

    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .brand-logo .logo-img {
        height: 38px;
    }

    .nav-cta {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .nav-cta .btn-magenta {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-navy-dark);
        padding: 90px 24px 30px 24px;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo .logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
}

.nav-menu ul {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.navbar-wrapper.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-magenta) !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--bg-white);
    transition: var(--transition);
}

.navbar-wrapper.scrolled .hamburger span {
    background-color: var(--primary-navy);
}

/* --- HERO SLIDER --- */
.hero-section {
    position: relative;
    height: 92vh;
    min-height: 650px;
}

.heroSlider, .hero-slide {
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    color: var(--bg-white);
    padding-top: 60px;
}

.badge-tag {
    background-color: rgba(194, 24, 91, 0.25);
    color: #ff80ab;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(194, 24, 91, 0.4);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--bg-white);
    opacity: 0.7;
    transition: var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    color: var(--accent-magenta);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent-magenta);
}

/* --- FEATURES GRID --- */
.features-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-magenta);
}

.feature-card.highlight {
    background: var(--primary-navy);
    color: var(--bg-white);
    border-color: var(--primary-navy);
}

.feature-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--accent-magenta-light);
    color: var(--accent-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-card.highlight .icon-wrapper {
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
}

.card-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.4;
}

.feature-card.highlight .card-num {
    color: var(--accent-magenta);
    opacity: 0.9;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-box {
    position: relative;
}

.rounded-custom {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-navy);
    color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--accent-magenta);
}

.exp-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--bg-white);
}

.exp-sub {
    font-size: 0.875rem;
    color: var(--accent-magenta);
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.description-text {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-navy);
}

.highlight-item i {
    color: var(--accent-magenta);
}

/* --- MISSION VISION SECTION --- */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.split-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.split-card.highlight-border {
    border-top: 4px solid var(--accent-magenta);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-magenta);
    margin-bottom: 20px;
}

.split-card h2 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.split-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    padding: 36px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--accent-magenta);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-magenta-light);
    color: var(--accent-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- DOCTORS SECTION --- */
.doctors-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.doctor-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
}

.doctor-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--accent-magenta);
}

.doctor-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.doctor-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-img-wrapper img {
    transform: scale(1.03);
}

.doctor-info {
    padding: 24px;
    text-align: center;
}

.doctor-info h3 {
    font-size: 1.35rem;
    color: var(--primary-navy);
    margin-bottom: 6px;
}

.doctor-title {
    color: var(--accent-magenta);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

/* --- ORGANIZASYON ŞEMASI SECTION --- */
.org-chart-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    background: #fff;
}

.org-img {
    width: 100%;
    display: block;
}

.org-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 42, 74, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    opacity: 0;
    transition: var(--transition);
    font-weight: 600;
    gap: 8px;
}

.org-chart-wrapper:hover .org-overlay {
    opacity: 1;
}

.org-overlay i {
    font-size: 2rem;
    color: var(--accent-magenta);
}

/* --- GALLERY SECTION --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 42, 74, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-magenta);
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* --- WHY US SECTION --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.why-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.why-card i {
    font-size: 1.75rem;
    color: var(--accent-magenta);
}

.why-card h4 {
    font-size: 1.05rem;
    color: var(--primary-navy);
}

.value-statements {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: 1px;
    opacity: 0.85;
}

/* --- CONTACT SECTION --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--accent-magenta-light);
    color: var(--accent-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.info-text p, .info-text a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    min-height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--primary-navy-dark);
    color: var(--bg-white);
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.brand-col p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--bg-white);
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent-magenta);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-magenta);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* --- FLOATING BUTTONS --- */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background-color: #25d366;
}

.float-btn.phone {
    background-color: var(--accent-magenta);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .features-grid, .services-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none; /* Mobilde top-bar gizlenebilir */
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 30px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }

    .nav-link {
        color: var(--bg-white) !important;
        font-size: 1.1rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .about-grid, .split-grid, .contact-grid, .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .doctors-grid {
        flex-direction: column;
        align-items: center;
    }

    .features-grid, .services-grid, .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-statements {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}