/* ============================================
   ÇOCUK ORTOPEDİSİ - SITE CSS
   ============================================ */

:root {
    --primary: #A277BA;
    --primary-dark: #8a5fa3;
    --primary-light: #f3ecf7;
    --accent: #6EC1E4;
    --accent-dark: #4dafd6;
    --accent-light: #e8f6fc;
    --dark: #4A4A4A;
    --text: #4A4A4A;
    --text-light: #7a7a7a;
    --bg: #FFF6EA;
    --bg-soft: #FFF6EA;
    --bg-card: #ffffff;
    --border: #f0e4d4;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

/* Marka logo tipografi */
.brand-name .brand-adim {
    font-family: 'Coiny', cursive;
    color: var(--primary);
    font-size: 22px;
}

.brand-name .brand-ortopedi {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    color: var(--accent);
    font-size: 14px;
    display: block;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); cursor: pointer; -webkit-tap-highlight-color: rgba(162,119,186,0.1); }
a:hover { color: var(--primary-dark); }

button, [onclick], [role="button"], input[type="submit"] { cursor: pointer; -webkit-tap-highlight-color: rgba(162,119,186,0.1); }

/* Dekoratif overlay/shape elementlerin tıklamayı engellemesini önle */
.hero-bg-shapes, .hero-shape, .hero-dots, .hero-float-card,
.crawl, .cta-bg-pattern, .stats-section::before,
.page-banner::before, .page-banner::after,
.why-card::after, .treatment-card::before {
    pointer-events: none;
}

/* ===== iOS Safari Uyumluluk Düzeltmeleri ===== */
/* GPU compositing için tüm animasyonlu elementlere will-change ve backface */
.hero-shape, .crawl, .hero-float-card, .hero-dots {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
}

/* iOS'ta section render sorununu önle */
section, .hero, .treatments, .about-section, .stats-section,
.faq-section, .team-section, .blog-section, .cta-section,
.site-footer, .why-section, .contact-section {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* iOS Safari'de azaltılmış hareket tercihi */
@media (prefers-reduced-motion: reduce) {
    .hero-shape, .crawl, .hero-float-card { animation: none !important; }
}

/* iOS Safari'de animasyon performans iyileştirmesi */
@supports (-webkit-touch-callout: none) {
    /* Sadece iOS cihazlar */
    .crawl { animation-duration: 30s !important; }
    .hero-shape { animation-duration: 12s !important; }
    .hero-float-card { animation: none !important; }

    body {
        -webkit-overflow-scrolling: touch;
    }

    /* iOS'ta overflow:hidden section render sorununu çöz */
    .stats-section,
    .cta-section,
    .treatments,
    .about-section,
    .team-section,
    .blog-section,
    .faq-section {
        overflow: visible !important;
    }

    /* Dekoratif ::before/::after elementleri container ile sınırla */
    .stats-section,
    .cta-section {
        position: relative;
    }
    .stats-section > .container,
    .cta-section > .container {
        position: relative;
        z-index: 2;
    }
}

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVBAR ==================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,246,234,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(162,119,186,0.08);
    transition: var(--transition);
}

.site-nav.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(162,119,186,0.1);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img { height: 48px; width: auto; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-links > li > a i { font-size: 10px; }
.nav-links > li > a i.nav-icon { display: none; }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown li a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    margin-left: 16px;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26,110,142,0.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: background 0.2s ease;
}

.nav-toggle:active {
    background: var(--primary-light);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform-origin: center;
}

.nav-toggle.active span {
    background: var(--primary);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== HERO ==================== */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(160deg, #FFF6EA 0%, #f3ecf7 40%, #e8f6fc 70%, #FFF6EA 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(162,119,186,0.08) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    animation: floatShape 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(110,193,228,0.08) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: floatShape 6s ease-in-out infinite;
}

.hero-dots {
    position: absolute;
    top: 80px;
    left: 60px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(rgba(162,119,186,0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(162,119,186,0.12);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(162,119,186,0.15);
}

.hero-badge i { font-size: 12px; }

.hero h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 span { color: var(--primary); }

.hero-desc {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(162,119,186,0.35);
}

.btn-glow {
    box-shadow: 0 4px 20px rgba(162,119,186,0.25);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: rgba(255,255,255,0.8);
    color: var(--dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    border: 3px solid var(--bg);
    margin-right: -10px;
}

.hero-trust-text {
    font-size: 14px;
    color: var(--text);
    font-weight: 600;
    line-height: 1.3;
}

.trust-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 12px;
    margin-top: 2px;
}

/* Emekleyen Bebekler */
.crawl {
    position: absolute;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
}

.crawl-1 {
    font-size: 48px;
    color: var(--primary);
    bottom: 80px;
    opacity: 0.18;
    animation: crawlRight 18s linear infinite;
    animation-delay: 0s;
}

.crawl-2 {
    font-size: 40px;
    color: var(--accent);
    top: 55%;
    opacity: 0.15;
    animation: crawlLeft 22s linear infinite;
    animation-delay: -6s;
}

.crawl-3 {
    font-size: 36px;
    color: #f59e0b;
    bottom: 180px;
    opacity: 0.16;
    animation: crawlRight 25s linear infinite;
    animation-delay: -12s;
}

@keyframes crawlRight {
    0% { left: -50px; transform: scaleX(1) translateY(0); }
    25% { transform: scaleX(1) translateY(-8px); }
    50% { transform: scaleX(1) translateY(0); }
    75% { transform: scaleX(1) translateY(-6px); }
    100% { left: calc(100% + 50px); transform: scaleX(1) translateY(0); }
}

@keyframes crawlLeft {
    0% { right: -50px; left: auto; transform: scaleX(-1) translateY(0); }
    25% { transform: scaleX(-1) translateY(-6px); }
    50% { transform: scaleX(-1) translateY(0); }
    75% { transform: scaleX(-1) translateY(-8px); }
    100% { right: calc(100% + 50px); left: auto; transform: scaleX(-1) translateY(0); }
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(162,119,186,0.15), 0 8px 20px rgba(0,0,0,0.06);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.4);
    animation: floatCard 3s ease-in-out infinite;
    pointer-events: none;
}

.hero-float-card i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero-float-1 {
    top: 20px;
    right: -30px;
}

.hero-float-1 i {
    background: rgba(162,119,186,0.12);
    color: var(--primary);
}

.hero-float-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: -1.5s;
}

.hero-float-2 i {
    background: rgba(110,193,228,0.12);
    color: var(--accent);
}

.hero-float-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.hero-float-card span {
    font-size: 11px;
    color: var(--text-light);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Wave Divider */
.wave-divider {
    margin-top: -2px;
    line-height: 0;
    background: linear-gradient(160deg, #FFF6EA 0%, #f3ecf7 40%, #e8f6fc 70%, #FFF6EA 100%);
}

.wave-divider svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* ==================== SECTION COMMON ==================== */
.section {
    padding: 90px 0;
}

.section-soft {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.why-us-section {
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(26,110,142,0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* ==================== NEDEN BİZ ==================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
    user-select: text;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(162,119,186,0.12);
    border-color: transparent;
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(162,119,186,0.12) 0%, rgba(162,119,186,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-icon.accent {
    background: linear-gradient(135deg, rgba(110,193,228,0.12) 0%, rgba(110,193,228,0.05) 100%);
    color: var(--accent-dark);
}

.why-icon.warm {
    background: linear-gradient(135deg, rgba(245,158,11,0.12) 0%, rgba(245,158,11,0.05) 100%);
    color: #f59e0b;
}

.why-icon.green {
    background: linear-gradient(135deg, rgba(34,197,94,0.12) 0%, rgba(34,197,94,0.05) 100%);
    color: #22c55e;
}

.why-card:hover .why-icon {
    background: var(--primary);
    color: #fff;
}

.why-card:hover .why-icon.accent { background: var(--accent); color: #fff; }
.why-card:hover .why-icon.warm { background: #f59e0b; color: #fff; }
.why-card:hover .why-icon.green { background: #22c55e; color: #fff; }

.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== TEDAVİLER GRID ==================== */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.treatment-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
    z-index: 1;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(162,119,186,0.12);
    border-color: transparent;
}

.treatment-card:hover::before { transform: scaleX(1); }

.treatment-img {
    height: 250px;
    overflow: hidden;
}

.treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-img img {
    transform: scale(1.08);
}

.treatment-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.treatment-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.treatment-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.7;
}

.treatment-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.treatment-card .card-link i { transition: var(--transition); }
.treatment-card:hover .card-link i { transform: translateX(4px); }

/* ==================== SAYILAR ==================== */
.stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #8a5fa3 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 16px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

/* ==================== EKİBİMİZ ==================== */
.section-team {
    background: #fff;
}

.section-team .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.team-card {
    width: calc(33.333% - 20px);
    max-width: 400px;
    min-width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(162,119,186,0.12);
    border-color: transparent;
}

.team-img {
    position: relative;
    height: 340px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.team-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, #fff 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

.team-link {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-card:hover .team-link {
    opacity: 1;
    transform: translateY(0);
}

.team-link:hover {
    background: var(--primary);
    color: #fff;
}

.team-info {
    padding: 24px 28px 28px;
}

.team-info h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.team-info p {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* ==================== HAKKIMIZDA ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-pattern {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 16px 16px;
    border-radius: 12px;
    opacity: 0.2;
    z-index: -1;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: 0 16px 48px rgba(162,119,186,0.12);
}

.about-image .exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-badge .num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.exp-badge .label {
    font-size: 12px;
    opacity: 0.9;
}

.about-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(26,110,142,0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.about-feature i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(110,193,228,0.15);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* ==================== BLOG GRID ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body {
    padding: 24px;
}

.blog-card-body .date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.blog-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--primary); }

.blog-card-body p {
    font-size: 14px;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.blog-card-body .read-more {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-body .read-more i { transition: var(--transition); }
.blog-card:hover .read-more i { transform: translateX(4px); }

.blog-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(4px);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

/* ==================== SSS & VİDEO ==================== */
.section-faq {
    background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}

.faq-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.faq-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(162,119,186,0.2);
}

.faq-item.active {
    border-color: rgba(162,119,186,0.25);
    box-shadow: 0 4px 20px rgba(162,119,186,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    font-family: 'Nunito', sans-serif;
    text-align: left;
    gap: 12px;
    transition: var(--transition);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.faq-icon {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-arrow {
    font-size: 12px;
    color: var(--text-light);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 22px 20px 52px;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Video Bölümü */
.video-side {
    position: sticky;
    top: 100px;
}

.video-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    position: relative;
    background: #000;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    min-height: 300px;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(162,119,186,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(162,119,186,0.4);
}

.video-play-btn i {
    margin-left: 4px;
}

.video-thumbnail:hover .video-play-btn {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(162,119,186,0.5);
}

.video-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.video-label i {
    margin-right: 6px;
    color: var(--accent);
}

.video-iframe, .video-direct {
    position: relative;
    padding-top: 56.25%;
}

.video-iframe iframe, .video-direct iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-blog-home {
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

/* ==================== CTA ==================== */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #8a5fa3 50%, var(--accent) 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 24px;
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    top: -150px;
    right: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -120px;
    left: -80px;
}

.cta-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #fff;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-white:hover {
    background: rgba(255,255,255,0.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-white-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}

.btn-white-outline:hover {
    border-color: #fff;
    color: #fff;
    background: rgba(255,255,255,0.1);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #3a3a3a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 44px;
    margin-bottom: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-brand img {
    height: 70px;
}

.footer-brand .brand-name .brand-adim {
    color: #fff;
}

.footer-brand .brand-name .brand-ortopedi {
    color: var(--accent);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px !important;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
}

.footer-contact li a:hover { color: #fff; }

.footer-contact li i {
    color: var(--accent);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ==================== WHATSAPP & MOBILE BAR ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    z-index: 1000;
}

.mobile-bottom-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
    text-align: center;
}

.mobile-bottom-bar a.wp { background: #25d366; }

/* ==================== FONT FAMILY OVERRIDES ==================== */
.btn-primary,
.btn-outline,
.btn-white,
.btn-white-outline,
.nav-cta {
    font-family: 'Nunito', sans-serif;
}

.treatment-card h3,
.blog-card-body h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}

.hero h1 span {
    color: var(--primary);
}

.hero h1 .accent {
    color: var(--accent);
}

/* ==================== PAGE BANNER & BREADCRUMB ==================== */
.page-banner {
    padding: 130px 0 50px;
    background: linear-gradient(135deg, #f3ecf7 0%, #FFF6EA 40%, #e8f6fc 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(162,119,186,0.07) 0%, transparent 70%);
    top: -80px;
    right: -60px;
}

.page-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110,193,228,0.07) 0%, transparent 70%);
    bottom: -50px;
    left: -40px;
}

.page-banner h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--dark);
}

.page-banner p {
    color: var(--text-light, #888);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.page-banner .breadcrumb {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.page-banner::before,
.page-banner::after { z-index: 0; }

.page-banner-divider {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(162,119,186,0.15) 15%,
        var(--primary) 35%,
        var(--accent) 65%,
        rgba(110,193,228,0.15) 85%,
        transparent 100%
    );
    margin: 0;
    border: none;
    opacity: 0.6;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 18px;
    padding: 10px 22px;
    background: var(--bg-card);
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(162,119,186,0.08);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb .bc-separator {
    margin: 0 10px;
    color: var(--accent);
    font-size: 10px;
    opacity: 0.7;
}

.breadcrumb .bc-current {
    color: var(--dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 16px;
    }
    .page-banner h1 { font-size: 22px; margin-bottom: 6px; }
    .page-banner::before, .page-banner::after { display: none; }
    .page-banner h1 { font-size: 26px; }
    .breadcrumb { padding: 8px 16px; font-size: 13px; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 72px);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px 100px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1000;
        -webkit-overflow-scrolling: touch;
        visibility: hidden;
    }

    .nav-menu.open {
        transform: translateX(0);
        visibility: visible;
    }

    body.menu-open { overflow: hidden; position: fixed; width: 100%; }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links > li {
        border-radius: 0;
    }

    .nav-links > li > a {
        padding: 16px 0;
        border-bottom: 1px solid #f0e4d4;
        border-radius: 0;
        width: 100%;
        font-size: 15px;
        font-weight: 600;
        color: var(--dark);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-links > li > a::before { display: none; }

    .nav-links > li > a i.nav-icon {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .nav-links > li:nth-child(1) > a i.nav-icon { background: #f3ecf7; color: #A277BA; }
    .nav-links > li:nth-child(2) > a i.nav-icon { background: #e8f6fc; color: #4dafd6; }
    .nav-links > li:nth-child(3) > a i.nav-icon { background: #fef3e2; color: #e6a230; }
    .nav-links > li:nth-child(4) > a i.nav-icon { background: #e8f8ef; color: #3cb371; }
    .nav-links > li:nth-child(5) > a i.nav-icon { background: #fde8ef; color: #e06088; }
    .nav-links > li:nth-child(6) > a i.nav-icon { background: #e8ecf6; color: #5b6abf; }

    .nav-links > li > a:hover,
    .nav-links > li > a.active {
        color: var(--primary);
    }

    .nav-links > li > a i.fa-chevron-down {
        font-size: 10px;
        transition: transform 0.3s ease;
        color: var(--text-light);
        margin-left: auto;
    }

    .has-dropdown.open > a i.fa-chevron-down {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #faf7fc;
        border-radius: 12px;
        padding: 8px 0 8px 16px;
        margin: 0 0 8px 48px;
        display: none;
    }

    .dropdown li a {
        padding: 11px 14px;
        font-size: 13.5px;
        font-weight: 500;
        border-radius: 8px;
        color: var(--text);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dropdown li a::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--primary);
        opacity: 0.35;
        flex-shrink: 0;
    }

    .dropdown li a:hover {
        color: var(--primary);
    }

    .dropdown li a:hover::before {
        opacity: 1;
    }

    .has-dropdown.open .dropdown { display: block; }

    .nav-search-btn {
        display: none !important;
    }

    .nav-cta {
        margin: 24px 0 0;
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 12px;
        background: var(--primary);
        box-shadow: none;
        margin-left: 0;
    }

    .nav-cta:hover {
        background: var(--primary-dark);
        transform: none;
        box-shadow: none;
    }

    /* Menü açılış animasyonu - iOS uyumlu transition */
    .nav-links > li {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-menu.open .nav-links > li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu.open .nav-links > li:nth-child(1) { transition-delay: 0.03s; }
    .nav-menu.open .nav-links > li:nth-child(2) { transition-delay: 0.06s; }
    .nav-menu.open .nav-links > li:nth-child(3) { transition-delay: 0.09s; }
    .nav-menu.open .nav-links > li:nth-child(4) { transition-delay: 0.12s; }
    .nav-menu.open .nav-links > li:nth-child(5) { transition-delay: 0.15s; }
    .nav-menu.open .nav-links > li:nth-child(6) { transition-delay: 0.18s; }

    .nav-cta {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.3s ease 0.22s, transform 0.3s ease 0.22s, background 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-menu.open .nav-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 34px; }
    .hero-desc { margin: 0 auto 32px; }
    .hero-btns { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-image { display: none; }

    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .team-card { width: calc(50% - 14px); }
    .about-grid { grid-template-columns: 1fr; }
    .faq-video-grid { grid-template-columns: 1fr; }
    .video-side { position: static; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .hero { padding: 120px 0 50px; }
    .hero h1 { font-size: 28px; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 26px; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .why-card { padding: 24px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-num { font-size: 28px; }
    .treatments-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .hero-dots { display: none; }
    .team-card { width: 100%; max-width: 400px; }
    .team-img { height: 220px; }

    .whatsapp-float { display: none; }
    .mobile-bottom-bar { display: flex; z-index: 998; }
    body { padding-bottom: 52px; }
    .nav-menu { padding-bottom: 70px; }
}
