/* ============================================
   Dr. Hüseyin Tomruk - Ana Stil Dosyası
   Renk Paleti: Lacivert, Gri, Beyaz
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --navy: #0f2347;
    --navy-mid: #1a3460;
    --navy-light: #1e3f7a;
    --navy-pale: #e8edf5;
    --gray-dark: #4a5568;
    --gray-mid: #718096;
    --gray-light: #a0aec0;
    --gray-pale: #f7f8fa;
    --white: #ffffff;
    --accent: #2a6496;
    --accent-light: #3a7cbd;
    --gold: #c9a84c;
    --border: #dde3ef;
    --shadow: 0 4px 24px rgba(15,35,71,0.10);
    --shadow-hover: 0 8px 40px rgba(15,35,71,0.18);
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

/* ============================================
   BUTONLAR
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15,35,71,0.30);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: #b8933e;
    border-color: #b8933e;
    transform: translateY(-2px);
    color: var(--white);
}

/* ============================================
   SECTION BAŞLIKLARI
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-title span { color: var(--accent); }

.section-desc {
    color: var(--gray-dark);
    font-size: 16px;
    max-width: 560px;
    line-height: 1.8;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 0;
}

#navbar.scrolled {
    background: var(--white);
    box-shadow: 0 2px 30px rgba(15,35,71,0.12);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}
.nav-logo .logo-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    transition: var(--transition);
}
.nav-logo .logo-title {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
}
#navbar.scrolled .nav-logo .logo-name { color: var(--navy); }
#navbar.scrolled .nav-logo .logo-title { color: var(--gray-mid); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    border-radius: 8px;
    transition: var(--transition);
}
#navbar.scrolled .nav-link { color: var(--navy); }

.nav-link:hover,
.nav-link.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    background: var(--navy-pale);
    color: var(--navy);
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 9px 14px;
    font-size: 14px;
    color: var(--navy);
    border-radius: 8px;
    font-weight: 400;
}
.nav-dropdown a:hover {
    background: var(--navy-pale);
    color: var(--navy);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}
#navbar.scrolled .nav-tel { color: var(--navy); }
.nav-tel i { color: var(--gold); }

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
#navbar.scrolled .nav-hamburger span { background: var(--navy); }

/* ============================================
   HERO
   ============================================ */
#hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--accent) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: 
        radial-gradient(circle at 25% 25%, white 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, white 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-shape {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
}
.hero-bg-shape-2 {
    position: absolute;
    right: 100px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-label i { color: var(--gold); }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 10px;
}
.hero-title .highlight {
    color: var(--gold);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(255,255,255,0.75);
    font-weight: 300;
    margin-bottom: 24px;
}

.hero-desc {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    position: relative;
    z-index: 3;
}

.hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat .number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-stat .label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-doctor-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.doctor-avatar-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    border: 3px solid rgba(255,255,255,0.25);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    color: rgba(255,255,255,0.6);
}

.doctor-info-card .name {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 6px;
}
.doctor-info-card .spec {
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-badge.badge-exp {
    bottom: -20px;
    left: -30px;
}
.hero-badge.badge-rate {
    top: 30px;
    right: -30px;
}
.hero-badge i { color: var(--navy); font-size: 20px; }
.hero-badge .badge-num { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); }
.hero-badge .badge-txt { font-size: 11px; color: var(--gray-mid); line-height: 1.3; }

/* ============================================
   HAKKIMDA
   ============================================ */
#hakkimda {
    background: var(--gray-pale);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, var(--navy-pale) 0%, var(--border) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--navy-pale);
    border: 2px solid var(--border);
    overflow: hidden;
}

.about-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-exp-box {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--navy);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-hover);
}
.about-exp-box .exp-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.about-exp-box .exp-txt { font-size: 12px; opacity: 0.8; margin-top: 4px; }

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}
.about-tag {
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.about-content .section-desc { max-width: 100%; margin-bottom: 24px; }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px 0 32px;
}
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.about-feature:hover { border-color: var(--navy-pale); box-shadow: var(--shadow); }
.about-feature i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.about-feature .feat-title { font-weight: 600; font-size: 13px; color: var(--navy); margin-bottom: 2px; }
.about-feature .feat-desc { font-size: 12px; color: var(--gray-mid); line-height: 1.5; }

/* ============================================
   HİZMETLER
   ============================================ */
#hizmetler {
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}
.services-header .section-desc { margin: 0 auto; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    background: var(--navy-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-icon i { color: var(--navy); font-size: 24px; }
.service-card:hover .service-icon {
    background: var(--navy);
}
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card .read-more {
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.service-card .read-more:hover { gap: 10px; }

/* ============================================
   İSTATİSTİKLER
   ============================================ */
#istatistikler {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
#istatistikler::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-num span { color: var(--gold); }
.stat-label {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SÜREÇ / NASIL ÇALIŞIR
   ============================================ */
#surec {
    background: var(--gray-pale);
}

.process-header { text-align: center; margin-bottom: 60px; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--accent), var(--navy));
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 0 0 8px var(--gray-pale);
    transition: var(--transition);
}
.process-step:hover .step-num {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.1);
}
.process-step h4 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--gray-dark); line-height: 1.6; }

/* ============================================
   GALERİ
   ============================================ */
#galeri { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 50px; }

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--navy-pale);
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,35,71,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { color: var(--white); font-size: 14px; font-weight: 500; }

.gallery-item.large { grid-column: span 2; }

/* ============================================
   YORUMLAR
   ============================================ */
#yorumlar { background: var(--gray-pale); }
.testimonials-header { text-align: center; margin-bottom: 50px; }

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--navy-pale);
    line-height: 1;
}

.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }
.testimonial-text {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 18px;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--navy); }

/* ============================================
   RANDEVU / İLETİŞİM
   ============================================ */
#randevu {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--white);
    margin-bottom: 16px;
}
.contact-info p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon i { color: var(--gold); font-size: 18px; }
.contact-item-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.contact-item-value { color: var(--white); font-size: 15px; font-weight: 500; }

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-hover);
}
.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--navy);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(15,35,71,0.08);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-success {
    display: none;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-top: 12px;
    align-items: center;
    gap: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    background: #0a1a38;
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-brand .brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    margin-bottom: 6px;
}
.footer-brand .brand-spec {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 24px; }

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a i { font-size: 11px; color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom a { color: var(--gold); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}

/* ============================================
   SAYFA BAŞLIĞI (İç sayfalar)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 140px 0 70px;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 12px;
}
.page-header p { color: rgba(255,255,255,0.7); font-size: 16px; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold); }

/* ============================================
   MESAJ / ALERT
   ============================================ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #fce4ec; color: #c62828; border: 1px solid #ffcdd2; }

/* ============================================
   RESPONSİF
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 120px 24px 80px; }
    .hero-visual { display: none; }
    .hero-desc { max-width: 100%; margin: 0 auto 40px; }
    .hero-stats { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.large { grid-column: span 1; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar-inner { padding: 0 20px; }
    .nav-menu { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: var(--white); padding: 16px; box-shadow: var(--shadow); }
    .nav-menu.open { display: flex; }
    .nav-link { color: var(--navy) !important; }
    .nav-hamburger { display: flex; }
    .nav-cta .nav-tel { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px; }
    .stat-item:last-child { border-bottom: none; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .section-padding { padding: 60px 0; }
    .contact-form-wrap { padding: 24px; }
    .hero-actions { justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 20px; justify-content: center; }
}

/* ============================================
   ANİMASYONLAR
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   HERO - YENİ İLETİŞİM + SAAT KARTLARI
   ============================================ */
.hero-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 32px;
    position: relative;
    z-index: 3;
}

.hero-info-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
}
.hero-info-card:hover {
    background: rgba(255,255,255,0.16);
    transform: translateY(-3px);
}

.hero-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: var(--gold);
}

.hero-info-content { flex: 1; min-width: 0; }

.hero-info-label {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-info-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.hero-stat-big { font-family: var(--font-display); font-size: 28px; }

.hero-info-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 3px;
}

.hero-contact-btns { display: flex; flex-direction: column; gap: 8px; }

.hero-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hero-contact-btn span { overflow: hidden; text-overflow: ellipsis; }

.hero-contact-btn.phone {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}
.hero-contact-btn.phone:hover { background: rgba(255,255,255,0.25); color: var(--white); }

.hero-contact-btn.whatsapp {
    background: rgba(37,211,102,0.25);
    color: #6dffaa;
    border: 1px solid rgba(37,211,102,0.35);
}
.hero-contact-btn.whatsapp:hover { background: rgba(37,211,102,0.4); color: #6dffaa; }
.hero-contact-btn.whatsapp i { font-size: 16px; }

/* HERO - HEKIM FOTOĞRAFI (büyük) */
.doctor-photo-wrap {
    width: 220px;
    height: 280px;
    border-radius: 18px;
    overflow: hidden;
    margin: 0 auto 0;
    border: 3px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    position: relative;
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.doctor-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: rgba(255,255,255,0.25);
}

.hero-doctor-card {
    position: relative;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.doctor-name-box { margin-top: 16px; }
.doctor-name-box .doc-name { font-family: var(--font-display); font-size: 20px; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.doctor-name-box .doc-spec { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }

/* ============================================
   HİZMETLER - ÜST BÖLÜM (Foto + Yaklaşımlar)
   ============================================ */
.services-top-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 20px;
}

.services-doctor-photo-wrap {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border);
    box-shadow: var(--shadow-hover);
    flex-shrink: 0;
}

.services-doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.services-doctor-placeholder {
    width: 100%;
    height: 100%;
    background: var(--navy-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: var(--border);
}

.services-photo-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(15,35,71,0.4);
}
.services-photo-badge i { color: var(--gold); }

.approach-list { display: flex; flex-direction: column; gap: 16px; }

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--gray-pale);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.approach-item:hover {
    border-color: var(--navy-pale);
    box-shadow: var(--shadow);
    background: var(--white);
}

.approach-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 18px;
}

.approach-title { font-weight: 700; font-size: 14px; color: var(--navy); margin-bottom: 3px; }
.approach-desc { font-size: 13px; color: var(--gray-mid); line-height: 1.5; }

/* ============================================
   SSS / FAQ
   ============================================ */
.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: var(--navy); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.5;
    transition: var(--transition);
}
.faq-question:hover { background: var(--gray-pale); }
.faq-item.open .faq-question { background: var(--navy-pale); color: var(--navy); }

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--navy-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    color: var(--navy);
    transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--navy); color: var(--white); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--gray-dark);
    line-height: 1.85;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ============================================
   BLOG - PREMİUM TASARIM
   ============================================ */
.blog-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.blog-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
                      radial-gradient(circle at 90% 80%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.blog-section .container { position: relative; z-index: 1; }
.blog-section .section-label { color: var(--gold); }
.blog-section .section-label::before { background: var(--gold); }
.blog-section .section-title { color: var(--white); }
.blog-section .section-title span { color: var(--gold); }
.blog-section .section-desc { color: rgba(255,255,255,0.65); }

.blog-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 24px;
    flex-wrap: wrap;
}
.blog-all-btn {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.85);
    flex-shrink: 0;
}
.blog-all-btn:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.1); }

.blog-premium-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 20px;
}

.blog-premium-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.blog-premium-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.3);
}

.blog-card-link { display: block; text-decoration: none; color: inherit; height: 100%; }

.blog-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: rgba(255,255,255,0.05);
}
.blog-premium-card.featured .blog-card-img-wrap { aspect-ratio: 4/3; }

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-premium-card:hover .blog-card-img-wrap img { transform: scale(1.05); }

.blog-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
}

.blog-category-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
}

.blog-featured-label {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(15,35,71,0.85);
    backdrop-filter: blur(8px);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(201,168,76,0.3);
}

.blog-card-body { padding: 22px; }

.blog-card-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-meta i { color: var(--gold); font-size: 11px; }

.blog-card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px;
}
.blog-premium-card.featured .blog-card-title { font-size: 22px; }

.blog-card-excerpt {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 18px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gold);
}
.blog-author span { font-size: 12px; color: rgba(255,255,255,0.6); font-weight: 500; }

.blog-read-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}
.blog-premium-card:hover .blog-read-link { gap: 8px; }

/* ============================================
   RESPONSİF - YENİ BÖLÜMLER
   ============================================ */
@media (max-width: 1100px) {
    .services-top-grid { grid-template-columns: 1fr; }
    .services-doctor-photo-wrap { width: 100%; height: 400px; max-width: 500px; margin: 0 auto; }
    .blog-premium-grid { grid-template-columns: 1fr 1fr; }
    .blog-premium-card.featured { grid-column: span 2; }
}

@media (max-width: 768px) {
    .hero-info-grid { grid-template-columns: 1fr; gap: 10px; }
    .hero-contact-btn { font-size: 12px; }
    .services-doctor-photo-wrap { height: 300px; }
    .blog-premium-grid { grid-template-columns: 1fr; }
    .blog-premium-card.featured { grid-column: span 1; }
    .blog-section-header { flex-direction: column; align-items: flex-start; }
    .faq-question { font-size: 14px; padding: 16px 18px; }
    .faq-answer-inner { padding: 12px 18px 18px; }
}

/* ============================================
   HAKKIMDA - EĞİTİM ACCORDION
   ============================================ */
.about-feature-accordion {
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}
.about-feature-accordion:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow);
    background: white;
}
.about-feature-accordion.open {
    border-color: var(--navy);
    background: white;
    box-shadow: var(--shadow);
}
.about-feature-accordion .feat-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.about-feature-accordion .egitim-chevron {
    transition: transform 0.3s ease;
    color: var(--gray-mid);
    font-size: 11px;
}
.feat-full,
.egitim-full {
    animation: fadeSlideDown 0.25s ease;
}
@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}