/* ==========================================================================
   Mutlu Çocuklar Anaokulu — Çocuksu, Sıcak, Modern Tasarım
   ========================================================================== */

:root {
    --primary: #FF6B9D;
    --primary-dark: #E84F84;
    --primary-soft: #FFE3EE;
    --secondary: #7B61FF;
    --secondary-dark: #5D44E0;
    --secondary-soft: #EAE3FF;
    --accent: #FFB84D;
    --accent-dark: #F09D2C;
    --accent-soft: #FFF1DA;
    --success: #06D6A0;
    --success-soft: #D6F7EC;
    --info: #4ECDC4;
    --info-soft: #DCF5F2;
    --coral: #FF8A65;
    --coral-soft: #FFE0D5;
    --sky: #5BC0EB;

    --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #7B61FF 100%);
    --gradient-warm: linear-gradient(135deg, #FFB84D 0%, #FF6B9D 100%);
    --gradient-cool: linear-gradient(135deg, #7B61FF 0%, #4ECDC4 100%);
    --gradient-fresh: linear-gradient(135deg, #06D6A0 0%, #4ECDC4 100%);
    --gradient-sunset: linear-gradient(135deg, #FFB84D 0%, #FF6B9D 50%, #7B61FF 100%);
    --gradient-soft: linear-gradient(135deg, #FFF5F8 0%, #F5F0FF 100%);
    --gradient-hero: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 60%, #F5F0FF 100%);

    --bg-light: #FAFAFE;
    --bg-cream: #FFF9F4;
    --bg-white: #FFFFFF;
    --text-dark: #1F1B3D;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #F0EBF8;

    /* DARK THEME — referans tarz koyu zemin */
    --dark-bg: #0a0e1a;
    --dark-bg-2: #0f1424;
    --dark-bg-elevated: rgba(255, 255, 255, 0.04);
    --dark-text: #F1F2F8;
    --dark-text-muted: rgba(241, 242, 248, 0.65);
    --dark-text-soft: rgba(241, 242, 248, 0.5);
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-border-strong: rgba(255, 255, 255, 0.14);

    --shadow-xs: 0 1px 3px rgba(123, 97, 255, 0.06);
    --shadow-sm: 0 4px 12px rgba(123, 97, 255, 0.08);
    --shadow-md: 0 12px 32px rgba(123, 97, 255, 0.12);
    --shadow-lg: 0 24px 60px rgba(123, 97, 255, 0.18);
    --shadow-glow: 0 12px 40px rgba(255, 107, 157, 0.3);
    --shadow-glow-purple: 0 12px 40px rgba(123, 97, 255, 0.3);

    --radius-xs: 8px;
    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;

    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bouncy: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    position: relative;
    transition: background 0.5s ease, color 0.5s ease;
    width: 100%;
    max-width: 100vw;
}

/* =============================================
   DARK MODE — Tema toggle ile aktif olur
   ============================================= */
body[data-theme="dark"] {
    background: var(--dark-bg);
    color: var(--dark-text);
}

/* Dark mode'da global spotlight'lar (sabit fixed) */
body[data-theme="dark"]::before,
body[data-theme="dark"]::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}

body[data-theme="dark"]::before {
    width: 80vw;
    height: 80vw;
    max-width: 900px;
    max-height: 900px;
    top: -30%;
    left: -20%;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.32) 0%, rgba(255, 143, 182, 0.16) 40%, transparent 75%);
    animation: bg-drift-1 30s ease-in-out infinite;
}

body[data-theme="dark"]::after {
    width: 70vw;
    height: 70vw;
    max-width: 800px;
    max-height: 800px;
    bottom: -25%;
    right: -15%;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.30) 0%, rgba(255, 209, 102, 0.12) 40%, transparent 75%);
    animation: bg-drift-2 36s ease-in-out infinite;
}

/* Dark mode'da section'lar transparent */
body[data-theme="dark"] .section-alt {
    background: transparent !important;
}

body[data-theme="dark"] .section-alt::before,
body[data-theme="dark"] .section-alt::after {
    display: none;
}

body[data-theme="dark"] .hero-collage {
    background: transparent !important;
}

/* Dark mode'da metin renkleri */
body[data-theme="dark"] h1,
body[data-theme="dark"] h2,
body[data-theme="dark"] h3,
body[data-theme="dark"] h4,
body[data-theme="dark"] h5,
body[data-theme="dark"] h6 {
    color: var(--dark-text);
}

body[data-theme="dark"] .hero-collage .hero-title,
body[data-theme="dark"] .section-title,
body[data-theme="dark"] .hero-title-line {
    color: var(--dark-text);
}

body[data-theme="dark"] .hero-description,
body[data-theme="dark"] .hero-collage .hero-description,
body[data-theme="dark"] .section-subtitle,
body[data-theme="dark"] p {
    color: var(--dark-text-muted);
}

/* Dark mode'da kartlar - glass effect */
body[data-theme="dark"] .class-card,
body[data-theme="dark"] .branch-card,
body[data-theme="dark"] .feature-card,
body[data-theme="dark"] .gallery-cat-card,
body[data-theme="dark"] .stat-card,
body[data-theme="dark"] .video-card,
body[data-theme="dark"] .blog-card,
body[data-theme="dark"] .gr-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

body[data-theme="dark"] .class-card:hover,
body[data-theme="dark"] .branch-card:hover,
body[data-theme="dark"] .feature-card:hover,
body[data-theme="dark"] .gallery-cat-card:hover,
body[data-theme="dark"] .stat-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--dark-border-strong);
}

/* Dark mode'da kart başlıkları */
body[data-theme="dark"] .class-title,
body[data-theme="dark"] .branch-title,
body[data-theme="dark"] .feature-title,
body[data-theme="dark"] .gallery-cat-name,
body[data-theme="dark"] .stat-value,
body[data-theme="dark"] .video-card-title,
body[data-theme="dark"] .blog-card h3,
body[data-theme="dark"] .gr-name {
    color: var(--dark-text);
}

body[data-theme="dark"] .class-subtitle,
body[data-theme="dark"] .class-description,
body[data-theme="dark"] .branch-subtitle,
body[data-theme="dark"] .branch-description,
body[data-theme="dark"] .feature-description,
body[data-theme="dark"] .gallery-cat-desc,
body[data-theme="dark"] .stat-label,
body[data-theme="dark"] .video-card-meta,
body[data-theme="dark"] .blog-excerpt,
body[data-theme="dark"] .gr-comment,
body[data-theme="dark"] .gr-date,
body[data-theme="dark"] .gr-header-label,
body[data-theme="dark"] .gr-count {
    color: var(--dark-text-muted);
}

/* Dark mode'da class-features list */
body[data-theme="dark"] .class-features li,
body[data-theme="dark"] .feature-list li {
    color: var(--dark-text-muted);
}

/* Dark mode'da header */
body[data-theme="dark"] .header {
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}

body[data-theme="dark"] .nav-links a {
    color: var(--dark-text-muted);
}

body[data-theme="dark"] .nav-links a:hover,
body[data-theme="dark"] .nav-links a.active {
    color: var(--dark-text);
}

/* Dark mode'da footer */
body[data-theme="dark"] .footer {
    background: rgba(10, 14, 26, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--dark-border);
}

body[data-theme="dark"] .footer h4 {
    color: var(--dark-text);
}

body[data-theme="dark"] .footer a,
body[data-theme="dark"] .footer p,
body[data-theme="dark"] .footer-contact {
    color: var(--dark-text-muted);
}

body[data-theme="dark"] .footer-links a:hover {
    color: var(--dark-text);
}

/* Dark mode'da Google reviews kartları - özel - beyaz background kalmasın */
body[data-theme="dark"] .google-reviews {
    background: transparent;
}

body[data-theme="dark"] .gr-header-badge {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--dark-border);
}

body[data-theme="dark"] .gr-rating-num {
    color: var(--dark-text);
}

body[data-theme="dark"] .gr-google-btn {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--dark-border-strong);
    color: var(--dark-text);
}

body[data-theme="dark"] .gr-google-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark-text);
}

/* Dark mode'da Instagram section transparent */
body[data-theme="dark"] .instagram-section {
    background: transparent;
}

/* Dark mode'da CTA, English bar gibi gradient bölümler korunsun */
body[data-theme="dark"] .english-bar {
    /* Mevcut gradient korunur - sadece text rengi ayarlansın */
}

/* Dark mode toggle button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.1);
    border: 1.5px solid rgba(255, 107, 157, 0.2);
    color: #FF6B9D;
    cursor: pointer;
    transition: var(--transition-bouncy);
    margin: 0 12px;
    flex-shrink: 0;
}

.theme-toggle:hover {
    transform: rotate(15deg) scale(1.08);
    background: rgba(255, 107, 157, 0.18);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.25);
}

body[data-theme="dark"] .theme-toggle {
    background: rgba(255, 209, 102, 0.12);
    border-color: rgba(255, 209, 102, 0.3);
    color: #FFD166;
}

body[data-theme="dark"] .theme-toggle:hover {
    background: rgba(255, 209, 102, 0.22);
    box-shadow: 0 6px 20px rgba(255, 209, 102, 0.3);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

/* Sun icon (default - light mode) */
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
body[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
body[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

@keyframes bg-drift-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(60px, 40px) scale(1.1); }
}

@keyframes bg-drift-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-80px, -50px) scale(1.15); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); font-weight: 800; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-warm {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border: 2px dashed var(--primary);
    border-radius: 100px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-tag::before { content: '✨'; font-size: 1rem; }

.section-title { font-size: clamp(1.85rem, 4vw, 2.85rem); margin-bottom: 16px; font-weight: 800; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 60px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: var(--transition-bouncy);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-primary { background: var(--gradient-primary); color: white; box-shadow: var(--shadow-glow); }

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FF8FB6 0%, #9580FF 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 50px rgba(255, 107, 157, 0.45); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }

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

.btn-whatsapp { background: #25D366; color: white; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4); }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 32px; }

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }

.logo-img {
    height: 56px;
    width: auto;
    max-width: 220px;
    display: block;
    transition: var(--transition-bouncy);
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(-2deg);
}

.logo-img-footer {
    height: 60px;
    max-width: 240px;
}

.logo-footer { margin-bottom: 4px; }

.logo-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: var(--shadow-glow);
    transform: rotate(-5deg);
    transition: var(--transition-bouncy);
}

.logo:hover .logo-icon { transform: rotate(5deg) scale(1.1); }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-text span {
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.logo-text small {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 16px; flex: 1; justify-content: flex-end; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links > li { position: relative; }

.nav-links a {
    padding: 10px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover { color: var(--primary); background: var(--primary-soft); }
.nav-links a.active { color: white; background: var(--gradient-primary); box-shadow: var(--shadow-glow); }

.nav-cta { padding: 10px 24px !important; font-size: 0.9rem; }

/* DROPDOWN MENÜ */
.has-dropdown > .dropdown-toggle .caret {
    transition: transform 0.25s ease;
}

.has-dropdown:hover > .dropdown-toggle .caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 230px;
    background: white;
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 24px 60px rgba(31, 27, 61, 0.15), 0 0 0 1px rgba(123, 97, 255, 0.06);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: white;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
}

.dropdown-menu li { margin: 0; }

.dropdown-menu a {
    display: block;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    background: transparent;
    width: 100%;
    transition: var(--transition);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background: var(--primary-soft);
    color: var(--primary);
    transform: translateX(3px);
}

.dropdown-menu a.active {
    background: var(--primary-soft);
    color: var(--primary);
    box-shadow: none;
}

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--text-dark); border-radius: 12px; }

/* Hero */
.hero { position: relative; padding: 60px 0 100px; background: var(--gradient-hero); overflow: hidden; }

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decor { position: absolute; pointer-events: none; animation: float 6s ease-in-out infinite; z-index: 1; }

.hero-decor-1 { top: 12%; left: 4%; font-size: 2.5rem; animation-delay: 0s; }
.hero-decor-2 { top: 22%; right: 8%; font-size: 2rem; animation-delay: 0.5s; }
.hero-decor-3 { bottom: 30%; left: 6%; font-size: 2.5rem; animation-delay: 1s; }
.hero-decor-4 { top: 60%; left: 3%; font-size: 1.8rem; animation-delay: 1.5s; }
.hero-decor-5 { bottom: 15%; right: 4%; font-size: 2.2rem; animation-delay: 2s; }
.hero-decor-6 { top: 8%; right: 30%; font-size: 1.6rem; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(8deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-content { animation: fadeInUp 0.8s ease-out; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: white;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--secondary-soft);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(6, 214, 160, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(6, 214, 160, 0); }
}

.hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); line-height: 1.05; margin-bottom: 24px; font-weight: 800; }

.hero h1 .wavy-underline { position: relative; display: inline-block; }
.hero h1 .wavy-underline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6 Q 12.5 0, 25 6 T 50 6 T 75 6 T 100 6' stroke='%23FFB84D' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 60px 12px;
}

.hero-description { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 36px; max-width: 540px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 540px; }

.stat-card {
    text-align: center;
    padding: 20px 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
}

.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary-soft); }

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Quicksand', sans-serif;
    line-height: 1;
}

.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 700; margin-top: 6px; }

.hero-visual { position: relative; height: 580px; animation: fadeInUp 0.8s ease-out 0.2s both; }

.hero-image {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 6px solid white;
}

.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-image-1 { top: 0; right: 0; width: 65%; height: 60%; z-index: 2; animation: float-slow 7s ease-in-out infinite; }
.hero-image-2 { top: 35%; left: 0; width: 50%; height: 45%; z-index: 3; animation: float-slow 8s ease-in-out infinite reverse; }
.hero-image-3 { bottom: 0; right: 12%; width: 45%; height: 38%; z-index: 2; animation: float-slow 6s ease-in-out infinite; }
.hero-image-4 { top: 10%; left: 12%; width: 32%; height: 28%; z-index: 4; animation: float-slow 9s ease-in-out infinite reverse; }

.hero-blob {
    position: absolute;
    width: 90%;
    height: 90%;
    background: var(--gradient-warm);
    border-radius: 50% 30% 60% 40% / 40% 60% 30% 50%;
    top: 5%;
    left: 5%;
    z-index: 1;
    opacity: 0.2;
    animation: morph 10s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes morph {
    0%, 100% { border-radius: 50% 30% 60% 40% / 40% 60% 30% 50%; }
    50% { border-radius: 30% 60% 40% 50% / 60% 40% 50% 30%; }
}

/* Sections — varsayılan açık tema */
.section { padding: 90px 0; position: relative; }
.section-alt { background: var(--bg-cream); position: relative; }

.section-alt::before,
.section-alt::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.4;
}

.section-alt::before { top: 10%; left: -150px; background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%); }
.section-alt::after { bottom: 10%; right: -150px; background: radial-gradient(circle, var(--secondary-soft) 0%, transparent 70%); }
.section > .container { position: relative; z-index: 2; }

/* Classes — grid stili ORPHAN-FRIENDLY GRID SYSTEM bölümünde */

.class-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.class-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.class-image { position: relative; height: 200px; overflow: hidden; }
.class-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.class-card:hover .class-image img { transform: scale(1.1); }

.class-age-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: white;
    padding: 10px 18px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.class-body { padding: 32px 24px 28px; }
.class-title { font-size: 1.35rem; margin-bottom: 6px; }
.class-subtitle { font-size: 0.8rem; color: var(--text-muted); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.class-description { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 16px; line-height: 1.6; }
.class-features { list-style: none; }

.class-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.class-features li::before {
    content: '';
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='10' fill='%2306D6A0'/%3E%3Cpath d='M6 10l3 3 5-5' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Branches — grid stili ORPHAN-FRIENDLY GRID SYSTEM bölümünde */

.branch-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.branch-card:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: var(--shadow-lg); }

.branch-image { position: relative; height: 200px; overflow: hidden; }
.branch-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.branch-card:hover .branch-image img { transform: scale(1.1); }

.branch-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

.branch-body { padding: 24px; }
.branch-subtitle { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.branch-title { font-size: 1.4rem; margin-bottom: 10px; }
.branch-description { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:nth-child(3n+1) { transform: rotate(-1deg); }
.gallery-item:nth-child(3n+2) { transform: rotate(1deg); }
.gallery-item:nth-child(3n+3) { transform: rotate(-0.5deg); }

.gallery-item:hover { transform: scale(1.04) rotate(0deg); box-shadow: var(--shadow-lg); z-index: 2; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 27, 61, 0.85), transparent 50%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    font-weight: 700;
    font-size: 0.95rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.testimonial-card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--border);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 28px;
    font-size: 5rem;
    font-family: Georgia, serif;
    line-height: 1;
    color: var(--primary-soft);
    font-weight: 700;
}

.testimonial-card:hover { transform: translateY(-6px); border-color: var(--primary-soft); box-shadow: var(--shadow-md); }

.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text-dark); font-size: 1rem; line-height: 1.7; margin-bottom: 24px; position: relative; z-index: 1; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 2px dashed var(--border);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.testimonial-name { font-weight: 700; font-size: 0.98rem; }
.testimonial-date { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* Videos */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.video-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.video-thumbnail { position: relative; aspect-ratio: 16/9; overflow: hidden; cursor: pointer; background: var(--text-dark); }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.video-thumbnail:hover img { transform: scale(1.05); }

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: rgba(255, 107, 157, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.5);
    transition: var(--transition-bouncy);
    z-index: 2;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.3);
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.video-thumbnail:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.15); background: var(--primary); }
.video-play-btn svg { width: 28px; height: 28px; color: white; margin-left: 4px; }

.video-body { padding: 24px; }
.video-card-title { font-size: 1.15rem; margin-bottom: 8px; font-weight: 700; }
.video-card-meta { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.video-card-meta::before { content: '👨‍👩‍👧'; }

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(31, 27, 61, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: fadeIn 0.3s ease-out;
}

.video-modal.is-open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.video-modal-inner { width: 100%; max-width: 960px; position: relative; }

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: var(--transition);
    z-index: 10;
}

.video-modal-close:hover { transform: rotate(90deg); color: var(--primary); }

.video-modal-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    border: 0;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
    max-height: 80vh;
}

/* === MOBILE - Video modal düzeltme === */
@media (max-width: 720px) {
    .video-modal {
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .video-modal-inner {
        width: 100vw;
        max-width: 100vw;
        padding: 0 8px;
        box-sizing: border-box;
    }

    /* Kapatma butonu - sağ ÜST köşede sabit, ekran dışına taşmaz */
    .video-modal-close {
        position: fixed;
        top: 14px;
        right: 14px;
        width: 44px;
        height: 44px;
        font-size: 1.8rem;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        z-index: 10000;
    }

    .video-modal-iframe {
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        max-height: 80vh;
        border-radius: 8px;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .video-modal-inner { padding: 0 6px; }
    .video-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
}

/* Certificates - atmospheric dark theme */
.certificates-section {
    position: relative;
    background: radial-gradient(ellipse at top, #0a1929 0%, #060d1c 50%, #03060f 100%);
    overflow: hidden;
    padding: 110px 0 100px;
    color: white;
}

/* Atmospheric gradient glows — 2. görseldeki gibi */
.cert-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.cert-bg-glow-1 {
    width: 600px;
    height: 600px;
    top: 5%;
    left: 20%;
    background: radial-gradient(circle, rgba(91, 192, 235, 0.55) 0%, rgba(91, 192, 235, 0) 70%);
    animation: bg-glow-1 14s ease-in-out infinite;
}

.cert-bg-glow-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.5) 0%, rgba(255, 184, 77, 0) 70%);
    animation: bg-glow-2 18s ease-in-out infinite;
}

.cert-bg-glow-3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 5%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.45) 0%, rgba(123, 97, 255, 0) 70%);
    animation: bg-glow-3 16s ease-in-out infinite;
}

@keyframes bg-glow-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
}
@keyframes bg-glow-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -40px) scale(1.15); }
}
@keyframes bg-glow-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(60px, -30px) scale(1.1); }
}

.certificates-section .container { position: relative; z-index: 2; }
.certificates-section .section-header h2,
.certificates-section .section-header h2 * { color: white; }
.certificates-section .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.certificates-section .section-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 184, 77, 0.5);
    color: var(--accent);
    backdrop-filter: blur(10px);
}

/* CERT HERO — 1. görseldeki büyük vurgulu kart */
.cert-hero {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
    border: 1px solid rgba(255, 107, 157, 0.12);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(31, 27, 61, 0.08), 0 8px 20px rgba(31, 27, 61, 0.04);
}

.cert-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at left, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at right, rgba(123, 97, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cert-hero > * { position: relative; z-index: 1; }

.cert-hero-badge {
    flex-shrink: 0;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #FF6B9D 0%, #C73E70 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(255, 107, 157, 0.4), inset 0 -4px 12px rgba(0, 0, 0, 0.15), inset 0 4px 12px rgba(255, 255, 255, 0.25);
}

.cert-hero-badge svg {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cert-hero-body { flex: 1; min-width: 0; }

.cert-hero-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #FF6B9D;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cert-hero-title {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #1F1B3D;
    margin-bottom: 10px;
    line-height: 1.25;
}

.cert-hero-no {
    color: #FF6B9D;
    font-weight: 800;
}

.cert-hero-desc {
    color: #6B7280;
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 720px;
    margin: 0;
}

/* Dark mode için */
body[data-theme="dark"] .cert-hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
body[data-theme="dark"] .cert-hero-title { color: white; }
body[data-theme="dark"] .cert-hero-desc { color: rgba(255, 255, 255, 0.75); }
body[data-theme="dark"] .cert-hero-no { color: var(--accent); }

.cert-hero-cta {
    flex-shrink: 0;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: var(--transition-bouncy);
    box-shadow: 0 10px 32px rgba(255, 107, 157, 0.4);
}

.cert-hero-cta:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 44px rgba(255, 107, 157, 0.55);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.cert-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-warm);
    z-index: 2;
}

.cert-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); }

.cert-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-cream);
    cursor: zoom-in;
    position: relative;
}

.cert-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.cert-card:hover .cert-image img { transform: scale(1.05); }

.cert-image::after {
    content: '🔍';
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.cert-card:hover .cert-image::after { opacity: 1; transform: translateY(0); }

.cert-body { padding: 24px; }

.cert-issuer {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cert-title { font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; }
.cert-subtitle { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 12px; }
.cert-description { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

.cert-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 32px;
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

.cert-lightbox.is-open { display: flex; }

.cert-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.cert-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cert-lightbox-close:hover { transform: rotate(90deg); color: var(--primary); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.blog-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.blog-card:hover .blog-image img { transform: scale(1.08); }

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.blog-body { padding: 24px; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--text-muted); margin-bottom: 12px; font-weight: 600; }
.blog-title { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
.blog-summary { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; margin-bottom: 16px; }

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.blog-card:hover .blog-link { gap: 12px; }

/* CTA */
.cta-section { padding: 80px 0; position: relative; }

.cta-card {
    background: var(--gradient-sunset);
    border-radius: var(--radius-xl);
    padding: 70px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-card > * { position: relative; z-index: 2; }
.cta-card h2 { color: white; font-size: clamp(1.85rem, 4vw, 2.5rem); margin-bottom: 12px; }
.cta-card p { font-size: 1.1rem; margin-bottom: 32px; opacity: 0.95; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: white; color: var(--primary); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); }
.cta-section .btn-primary:hover { background: var(--text-dark); color: white; }

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.cta-section .btn-secondary:hover { background: white; color: var(--primary); }

/* Footer */
.footer {
    background: linear-gradient(180deg, #1F1B3D 0%, #15122E 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }

.footer-brand .logo-icon { width: 60px; height: 60px; font-size: 2rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.65); line-height: 1.7; margin: 20px 0; max-width: 360px; }
.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover { background: var(--gradient-primary); transform: translateY(-3px) scale(1.1); box-shadow: var(--shadow-glow); }

.footer h4 { color: white; font-size: 1.05rem; margin-bottom: 24px; position: relative; padding-bottom: 12px; }

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 255, 255, 0.65); font-size: 0.93rem; transition: var(--transition); }
.footer-links a:hover { color: white; padding-left: 6px; }

.footer-contact { display: flex; flex-direction: column; gap: 14px; color: rgba(255, 255, 255, 0.7); font-size: 0.93rem; }
.footer-contact div { display: flex; align-items: flex-start; gap: 12px; }

.footer-contact .icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(255, 107, 157, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    flex-wrap: wrap;
    gap: 16px;
}

/* WhatsApp float - İLGİ ÇEKİCİ TASARIM */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(37, 211, 102, 0.5),
        0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 100;
    color: white;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: wa-bounce 3s ease-in-out infinite;
}

/* Dış pulse halkaları (iki katmanlı) */
.whatsapp-float::before,
.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 3px solid #25D366;
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float::before {
    animation: wa-ring-1 2.5s ease-out infinite;
}

.whatsapp-float::after {
    animation: wa-ring-2 2.5s ease-out infinite;
    animation-delay: 1.25s;
}

@keyframes wa-ring-1 {
    0% { transform: scale(1); opacity: 0.8; border-width: 3px; }
    100% { transform: scale(1.8); opacity: 0; border-width: 1px; }
}

@keyframes wa-ring-2 {
    0% { transform: scale(1); opacity: 0.6; border-width: 3px; }
    100% { transform: scale(1.6); opacity: 0; border-width: 1px; }
}

@keyframes wa-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(8deg) translateY(-2px);
    box-shadow:
        0 16px 40px rgba(37, 211, 102, 0.65),
        0 6px 18px rgba(37, 211, 102, 0.4);
    animation-play-state: paused;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    animation-play-state: paused;
    opacity: 0;
}

.whatsapp-float svg {
    transition: transform 0.3s;
    z-index: 2;
    position: relative;
}

.whatsapp-float:hover svg {
    transform: scale(1.05);
}

/* Bildirim baloncuğu - kırmızı "1" rozet */
.whatsapp-float::before { /* Override için ek selector */ }

.whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, #FF3366 0%, #FF0844 100%);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.5);
    border: 2px solid white;
    z-index: 3;
    animation: wa-badge-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1s both, wa-badge-shake 4s ease-in-out 2s infinite;
}

@keyframes wa-badge-pop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes wa-badge-shake {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-8deg); }
    94% { transform: rotate(8deg); }
    96% { transform: rotate(-6deg); }
    98% { transform: rotate(0); }
}

/* WhatsApp tooltip (hover'da yan baloncuk) */
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: white;
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(31, 27, 61, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left-color: white;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

body[data-theme="dark"] .whatsapp-tooltip {
    background: rgba(15, 20, 36, 0.98);
    color: var(--dark-text);
    backdrop-filter: blur(20px);
    border: 1px solid var(--dark-border);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

body[data-theme="dark"] .whatsapp-tooltip::after {
    border-left-color: rgba(15, 20, 36, 0.98);
}

.whatsapp-tooltip-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #06D6A0;
    border-radius: 50%;
    margin-right: 6px;
    box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.2);
    animation: contact-dot-pulse 1.6s ease infinite;
    vertical-align: middle;
}

/* Page Header */
.page-header { background: var(--gradient-hero); padding: 60px 0; position: relative; overflow: hidden; }

.page-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content { text-align: center; position: relative; z-index: 2; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb span { color: var(--text-muted); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 16px; }

/* Forms */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 0.92rem; }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.98rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-soft); }

.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success { background: var(--success-soft); color: #047857; border-left: 4px solid var(--success); }
.alert-error { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid,
    .about-grid,
    .founder-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { height: 480px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-form-side { padding: 24px; }

    .hero-slider .slider-track { height: 480px; }
    .hero-slide-title { font-size: 2rem; }

    .english-bar-inner { flex-direction: column; text-align: center; }
    .english-bar-text { flex-direction: column; }

    .founder-decor-1, .founder-decor-2 { display: none; }

    .cert-hero {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    .cert-hero-body { text-align: center; }
    .cert-hero-desc { margin-left: auto; margin-right: auto; }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        bottom: 0 !important;
        left: auto !important;
        width: 320px !important;
        max-width: 88vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        opacity: 1 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        flex-direction: column !important;
        padding: 80px 20px 24px !important;
        align-items: stretch !important;
        gap: 4px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15) !important;
        transition: right 0.3s ease !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 9999 !important;
        display: flex !important;
        margin: 0 !important;
        pointer-events: auto !important;
    }

    .nav-links.active { right: 0 !important; }
    .nav-links a {
        padding: 14px 18px;
        font-size: 1rem;
        color: #1F1B3D !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        display: block !important;
    }
    .nav-links > li { width: 100% !important; position: relative; display: block !important; pointer-events: auto !important; }

    /* Dark mode'da mobile menu panel */
    body[data-theme="dark"] .nav-links {
        background: #0f1424 !important;
        background-color: #0f1424 !important;
    }
    body[data-theme="dark"] .nav-links a { color: rgba(255, 255, 255, 0.9); }

    /* Mobilde dropdown — VARSAYILAN KAPALI, JS ile açılır */
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--bg-cream);
        box-shadow: none;
        margin: 4px 0 8px 16px;
        padding: 4px;
        min-width: 0;
        border: 1px solid var(--border);
        display: none;     /* default kapalı */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* JS .open class'ı verince açılır */
    .has-dropdown.open .dropdown-menu {
        display: block;
        max-height: 600px;
    }

    body[data-theme="dark"] .has-dropdown .dropdown-menu {
        background: rgba(255, 255, 255, 0.04);
        border-color: var(--dark-border);
    }

    .has-dropdown .dropdown-menu::before { display: none; }
    .dropdown-menu a { padding: 10px 12px; }

    /* Caret işareti GÖRÜNÜR olsun (mobile'da kapalı/açık feedback için) */
    .has-dropdown .caret {
        display: inline-block;
        margin-left: auto;
        transition: transform 0.25s ease;
    }

    .has-dropdown.open > .dropdown-toggle .caret {
        transform: rotate(180deg);
    }

    /* dropdown-toggle: linkle caret birlikte, justify */
    .has-dropdown > .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    /* Mobile'da Ön Kayıt butonu da menü içinde görünsün */
    .nav-cta {
        display: block;
        text-align: center;
        margin-top: 12px;
    }

    /* Theme toggle mobil - mobile-toggle yanında küçük dursun */
    .theme-toggle {
        width: 38px;
        height: 38px;
        margin: 0 6px 0 0;
        flex-shrink: 0;
    }

    .theme-toggle svg { width: 18px; height: 18px; }

    /* Mobile-toggle ve theme-toggle birlikte sağda */
    .mobile-toggle { display: flex; }

    .logo-img { height: 44px; }
}

@media (max-width: 640px) {
    .container { padding: 0 18px; }
    .section { padding: 64px 0; }
    h1 { font-size: 2.25rem; }
    .hero { padding: 40px 0 60px; }
    .hero-visual { height: 360px; }

    .hero-slider .slider-track { height: 420px; }
    .hero-slide-title { font-size: 1.65rem; }
    .hero-slide-desc { font-size: 0.95rem; }
    .slider-arrow { width: 42px; height: 42px; }
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }

    .founder-section { padding: 64px 0; }
    .founder-message { font-size: 0.95rem; }

    .english-bar { padding: 24px 0; }
    .english-bar-title { font-size: 1.15rem; }
    .hero-buttons,
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn,
    .cta-buttons .btn { justify-content: center; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat-card { padding: 14px 8px; }
    .stat-value { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-card { padding: 48px 24px; }

    .cert-hero { padding: 28px 20px; }
    .cert-hero-badge { width: 72px; height: 72px; }
    .cert-hero-badge svg { width: 36px; height: 36px; }
    .cert-hero-title { font-size: 1.2rem; }
    .cert-hero-cta { width: 100%; justify-content: center; }

    .logo-img { height: 40px; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }


/* ==========================================================================
   HERO COLLAGE — 4'lü görselli ana banner (ikonsuz, sloganlar ön planda)
   ========================================================================== */
.hero-collage {
    position: relative;
    padding: 28px 0 60px;
    background:
        /* Merkez radyal spotlight - premium görünüm */
        radial-gradient(ellipse 60% 50% at 35% 40%, rgba(255, 143, 182, 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 75% 60%, rgba(255, 184, 77, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 45% 60% at 15% 80%, rgba(123, 97, 255, 0.14) 0%, transparent 70%),
        /* Base soft cream */
        linear-gradient(180deg, #FFFCFA 0%, #FFF8F3 100%);
    overflow: hidden;
}

/* Premium Spotlight'lar - büyük yumuşak ışık halkaları */
.hero-spotlight {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
    will-change: transform;
}

.hero-spotlight-1 {
    width: 700px;
    height: 700px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.32) 0%, rgba(255, 143, 182, 0.18) 35%, transparent 70%);
    animation: spotlight-drift-1 22s ease-in-out infinite;
}

.hero-spotlight-2 {
    width: 600px;
    height: 600px;
    top: 10%;
    right: -180px;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.32) 0%, rgba(255, 209, 102, 0.18) 35%, transparent 70%);
    animation: spotlight-drift-2 26s ease-in-out infinite;
    animation-delay: -8s;
}

.hero-spotlight-3 {
    width: 550px;
    height: 550px;
    bottom: -180px;
    left: 30%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.26) 0%, rgba(196, 181, 253, 0.14) 35%, transparent 70%);
    animation: spotlight-drift-3 28s ease-in-out infinite;
    animation-delay: -14s;
}

@keyframes spotlight-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    33% { transform: translate(80px, 50px) scale(1.15); opacity: 1; }
    66% { transform: translate(-40px, 30px) scale(0.95); opacity: 0.7; }
}

@keyframes spotlight-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(-60px, 80px) scale(1.2); opacity: 1; }
}

@keyframes spotlight-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.75; }
    50% { transform: translate(40px, -60px) scale(1.1); opacity: 1; }
}

/* Dark mode'da spotlight'lar daha güçlü görünür */
body[data-theme="dark"] .hero-spotlight-1 {
    background: radial-gradient(circle, rgba(255, 107, 157, 0.45) 0%, rgba(255, 143, 182, 0.22) 35%, transparent 70%);
}

body[data-theme="dark"] .hero-spotlight-2 {
    background: radial-gradient(circle, rgba(255, 184, 77, 0.42) 0%, rgba(255, 209, 102, 0.20) 35%, transparent 70%);
}

body[data-theme="dark"] .hero-spotlight-3 {
    background: radial-gradient(circle, rgba(123, 97, 255, 0.40) 0%, rgba(196, 181, 253, 0.18) 35%, transparent 70%);
}


/* === ÜST SLOGAN: Beylikdüzü'nün En Çok Tercih Edilen Anaokulu === */
.hero-tagline-top {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto 22px;
    padding: 0 24px;
}

.hero-tagline-top .tagline-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), var(--accent), var(--secondary), transparent);
    max-width: 200px;
    border-radius: 2px;
}

.hero-tagline-top .tagline-text {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    line-height: 1.4;
}

/* === HERO GRID — sol içerik + sağ collage === */
.hero-collage .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-collage .hero-content { max-width: 580px; }

/* Badge — yuvarlak chip */
.hero-collage .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hero-collage .badge-dot {
    width: 8px;
    height: 8px;
    background: #06D6A0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7);
    animation: badge-pulse 1.6s ease-out infinite;
}

@keyframes badge-pulse {
    0% { box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7); }
    100% { box-shadow: 0 0 0 10px rgba(6, 214, 160, 0); }
}

/* === HERO BAŞLIK === */
.hero-collage .hero-title {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-collage .hero-title-line {
    display: block;
}

.hero-collage .hero-title-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    padding: 0 0.06em;
}

/* Italic accent altında çizgi */
.hero-collage .hero-title-accent::after {
    content: '';
    position: absolute;
    left: 0.06em;
    right: 0.06em;
    bottom: 0.06em;
    height: 6px;
    background: linear-gradient(to right, #FF6B9D, #FFB84D);
    border-radius: 100px;
    opacity: 0.4;
    transform: skew(-12deg);
}

/* === Description === */
.hero-collage .hero-description {
    font-size: clamp(1rem, 1.4vw, 1.1rem);
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 22px;
    max-width: 480px;
}

/* === Butonlar === */
.hero-collage .hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-collage .btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.hero-collage .btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* === Stat kartları === */
.hero-collage .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 500px;
}

.hero-collage .stat-card {
    background: white;
    padding: 18px 14px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.hero-collage .stat-card::before {
    content: '';
    position: absolute;
    top: -6px;
    right: -6px;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle, #FFD56A 0%, #FFB84D 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 184, 77, 0.4);
}

.hero-collage .stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-soft);
    box-shadow: 0 14px 30px rgba(255, 107, 157, 0.15);
}

.hero-collage .stat-value {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-collage .stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* === 4'lü COLLAGE — sağ taraf === */
.hero-collage-grid {
    position: relative;
    height: 580px;
}

.collage-img {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(31, 27, 61, 0.16);
    border: 6px solid white;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    /* Görsel kalitesi için hardware acceleration + smooth */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Yüksek kalite rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    -ms-interpolation-mode: bicubic;
    /* Anti-aliasing */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* 4 görsel pozisyonları - asimetrik collage */
.collage-img-1 {
    top: 0;
    right: 0;
    width: 60%;
    height: 50%;
    transform: rotate(3deg);
    animation: collage-float-1 9s ease-in-out infinite;
    z-index: 2;
}

.collage-img-2 {
    top: 20%;
    left: 0;
    width: 42%;
    height: 35%;
    transform: rotate(-4deg);
    animation: collage-float-2 11s ease-in-out infinite;
    z-index: 3;
}

.collage-img-3 {
    bottom: 18%;
    left: 12%;
    width: 50%;
    height: 38%;
    transform: rotate(-2deg);
    animation: collage-float-3 13s ease-in-out infinite;
    z-index: 1;
}

.collage-img-4 {
    bottom: 0;
    right: 4%;
    width: 48%;
    height: 42%;
    transform: rotate(5deg);
    animation: collage-float-4 10s ease-in-out infinite;
    z-index: 2;
}

@keyframes collage-float-1 {
    0%, 100% { transform: rotate(3deg) translate(0, 0); }
    50% { transform: rotate(5deg) translate(-8px, -10px); }
}

@keyframes collage-float-2 {
    0%, 100% { transform: rotate(-4deg) translate(0, 0); }
    50% { transform: rotate(-6deg) translate(10px, 12px); }
}

@keyframes collage-float-3 {
    0%, 100% { transform: rotate(-2deg) translate(0, 0); }
    50% { transform: rotate(0deg) translate(-6px, -8px); }
}

@keyframes collage-float-4 {
    0%, 100% { transform: rotate(5deg) translate(0, 0); }
    50% { transform: rotate(3deg) translate(8px, -6px); }
}

/* Hover'da öne çık */
.collage-img:hover {
    transform: scale(1.08) rotate(0deg) !important;
    z-index: 10 !important;
    animation-play-state: paused;
    box-shadow: 0 30px 60px rgba(31, 27, 61, 0.28);
}
/* === ALT SLOGAN: Haftanın 5 Günü İngilizce! — Hero içinde, butonların altında === */
.hero-tagline-inline {
    margin: 0 0 28px 0;
    display: flex;
    justify-content: flex-start;
}

.hero-tagline-inline .tagline-text {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C81B6E 50%, #7B61FF 100%);
    border-radius: 100px;
    color: #ffffff;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    letter-spacing: 0.02em;
    text-align: center;
    transition: var(--transition-bouncy);
    cursor: default;
    position: relative;
    line-height: 1.3;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.55);
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.6),
        0 1px 2px rgba(0, 0, 0, 0.25);
    box-shadow:
        0 0 0 4px rgba(255, 107, 157, 0.18),
        0 8px 22px rgba(255, 107, 157, 0.45),
        0 16px 50px rgba(123, 97, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    animation: tagline-led 2.2s ease-in-out infinite;
    z-index: 1;
}

/* LED alt ışık efekti - alttan glow */
.hero-tagline-inline .tagline-text::before {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -16px;
    height: 28px;
    background: linear-gradient(180deg, rgba(255, 107, 157, 0.85) 0%, rgba(123, 97, 255, 0.6) 50%, transparent 100%);
    filter: blur(18px);
    border-radius: 50%;
    z-index: -1;
    animation: tagline-led-bottom 2.2s ease-in-out infinite;
    pointer-events: none;
}

/* Sürekli yansıyan ışıltı (shimmer) */
.hero-tagline-inline .tagline-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
    border-radius: inherit;
    animation: tagline-shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes tagline-led {
    0%, 100% {
        box-shadow:
            0 0 0 4px rgba(255, 107, 157, 0.18),
            0 8px 22px rgba(255, 107, 157, 0.45),
            0 16px 50px rgba(123, 97, 255, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.45);
    }
    50% {
        box-shadow:
            0 0 0 6px rgba(255, 107, 157, 0.28),
            0 12px 30px rgba(255, 107, 157, 0.65),
            0 24px 70px rgba(123, 97, 255, 0.55),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

@keyframes tagline-led-bottom {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(0.85);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

@keyframes tagline-shimmer {
    0% { left: -120%; }
    60%, 100% { left: 120%; }
}

.hero-tagline-inline .tagline-text:hover {
    transform: scale(1.04);
    animation-play-state: paused;
}

/* Gece modunda daha parlak (neon hissiyatı) */
body[data-theme="dark"] .hero-tagline-inline .tagline-text {
    border-color: rgba(255, 255, 255, 0.4);
    text-shadow:
        0 0 12px rgba(255, 200, 230, 0.9),
        0 0 24px rgba(255, 107, 157, 0.5),
        0 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow:
        0 0 0 4px rgba(255, 107, 157, 0.25),
        0 8px 30px rgba(255, 107, 157, 0.7),
        0 20px 60px rgba(123, 97, 255, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body[data-theme="dark"] .hero-tagline-inline .tagline-text::before {
    background: linear-gradient(180deg, rgba(255, 107, 157, 1) 0%, rgba(123, 97, 255, 0.8) 50%, transparent 100%);
    filter: blur(22px);
}

/* Mobilde merkez hizalı + tam genişlik (ÖN KAYIT/WhatsApp ile aynı boyutta) */
@media (max-width: 992px) {
    .hero-tagline-inline {
        justify-content: stretch;
        width: 100%;
    }
    .hero-tagline-inline .tagline-text {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .hero-tagline-inline {
        margin: 0 0 24px 0;
        width: 100%;
    }
    .hero-tagline-inline .tagline-text {
        padding: 14px 22px;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* === Mobile === */
@media (max-width: 992px) {
    .hero-collage { padding: 30px 0 60px; }
    .hero-tagline-top { margin-bottom: 24px; gap: 12px; }
    .hero-tagline-top .tagline-line { max-width: 60px; }

    .hero-collage .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-collage .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-collage .hero-buttons { justify-content: center; }
    .hero-collage .hero-description { margin-left: auto; margin-right: auto; }
    .hero-collage .hero-stats { margin: 0 auto; max-width: 460px; }

    .hero-collage-grid { height: 460px; max-width: 600px; margin: 0 auto; }

    .hero-deco-3, .hero-deco-4 { display: none; }
}

@media (max-width: 640px) {
    .hero-collage { padding: 20px 0 50px; }
    .hero-tagline-top { gap: 8px; }
    .hero-tagline-top .tagline-line { display: none; }
    .hero-collage .hero-title { font-size: clamp(1.85rem, 8vw, 2.5rem); }
    .hero-collage-grid { height: 380px; }
    .collage-img-1 { width: 65%; height: 48%; }
    .collage-img-2 { width: 45%; height: 32%; }
    .collage-img-3 { width: 52%; height: 36%; }
    .collage-img-4 { width: 50%; height: 40%; }
    .hero-collage .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-collage .stat-card { padding: 12px 8px; }
    .hero-collage .stat-value { font-size: 1.4rem; }
    .hero-collage .stat-label { font-size: 0.7rem; }
}
.english-bar {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%);
    padding: 32px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.english-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' fill-opacity='0.18'/%3E%3C/svg%3E");
    pointer-events: none;
}

.english-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.english-bar-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.english-bar-emoji {
    font-size: 2.5rem;
    animation: bounce-emoji 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes bounce-emoji {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.english-bar-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: white;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

.english-bar-title .accent {
    color: #FFF1DA;
    border-bottom: 3px solid #FFF1DA;
}

.english-bar-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 4px;
}

.english-bar-cta {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-bouncy);
    flex-shrink: 0;
}

.english-bar-cta:hover {
    transform: translateY(-3px) scale(1.04);
    color: var(--secondary);
}

/* ==========================================================================
   Features (Neden Biz — görsel destekli, ikonsuz)
   ========================================================================== */
/* .features-grid layout ORPHAN-FRIENDLY GRID SYSTEM bölümünde */

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 50%);
    opacity: 0.5;
    transition: var(--transition);
}

.feature-card:hover .feature-image::after {
    opacity: 0.2;
}

.feature-body {
    padding: 24px;
    flex: 1;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
    margin: 0;
}

/* Feature card accent strip — renkli alt çizgi */
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--feature-color, var(--primary));
    z-index: 2;
    opacity: 0.9;
}

/* ==========================================================================
   Kurucu Mesajı
   ========================================================================== */
.founder-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-cream) 0%, #FFFFFF 100%);
    overflow: hidden;
}

.founder-section::before,
.founder-section::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
    filter: blur(40px);
}

.founder-section::before {
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
}

.founder-section::after {
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, var(--secondary-soft) 0%, transparent 70%);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.founder-video-wrap {
    position: relative;
}

.founder-video {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 24px 60px rgba(31, 27, 61, 0.2);
    border: 6px solid white;
}

.founder-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.founder-video:hover img { transform: scale(1.05); }

.founder-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 27, 61, 0.2), rgba(31, 27, 61, 0.4));
    z-index: 1;
}

.founder-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 86px;
    height: 86px;
    background: rgba(255, 107, 157, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(255, 107, 157, 0.55);
    transition: var(--transition-bouncy);
    z-index: 2;
}

.founder-video-play::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.3);
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

.founder-video:hover .founder-video-play {
    transform: translate(-50%, -50%) scale(1.15);
}

.founder-video-play svg {
    width: 32px;
    height: 32px;
    color: white;
    margin-left: 4px;
}

.founder-decor {
    position: absolute;
    pointer-events: none;
}

.founder-decor-1 {
    top: -20px;
    left: -20px;
    font-size: 3rem;
    animation: float 5s ease-in-out infinite;
}

.founder-decor-2 {
    bottom: -25px;
    right: -15px;
    font-size: 2.5rem;
    animation: float 6s ease-in-out infinite reverse;
}

.founder-content { padding: 8px 0; }

.founder-tag {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.founder-title {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.founder-message {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 2px dashed var(--border);
}

.founder-sig-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: var(--shadow-md);
}

.founder-sig-name {
    font-weight: 800;
    font-size: 1.05rem;
}

.founder-sig-role {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================================
   Galeri Kategori Grid (foto-galeri kategorileri)
   ========================================================================== */
/* .gallery-cats-grid layout ORPHAN-FRIENDLY GRID SYSTEM bölümünde */

.gallery-cat-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    display: block;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-cat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-cat-card:hover img {
    transform: scale(1.1);
}

.gallery-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 27, 61, 0.9) 0%, rgba(31, 27, 61, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px 24px;
    z-index: 2;
}

.gallery-cat-info {
    color: white;
    width: 100%;
}

.gallery-cat-count {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-cat-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin: 0 0 4px 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.gallery-cat-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.gallery-cat-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 3;
    transition: var(--transition);
    transform: translate(8px, -8px);
    opacity: 0;
}

.gallery-cat-card:hover .gallery-cat-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   İletişim Sayfası
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-side h2,
.contact-form-side h2 {
    font-size: 1.5rem;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}

.contact-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-info { flex: 1; min-width: 0; }

.contact-item-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    display: block;
    line-height: 1.4;
}

.contact-item-value:hover { color: var(--primary); }

.contact-form-side {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   (Sınıflar grid orphan fix — artık aşağıdaki ORPHAN-FRIENDLY GRID SYSTEM bölümünde)
   ========================================================================== */

/* ==========================================================================
   Branş açıklama clamp — 3 satır
   ========================================================================== */
.branch-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

.contact-info-side h2,
.contact-form-side h2 {
    font-size: 1.5rem;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}

.contact-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-info { flex: 1; min-width: 0; }

.contact-item-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    display: block;
    line-height: 1.4;
}

.contact-item-value:hover {
    color: var(--primary);
}

.contact-form-side {
    background: white;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-form-side { padding: 24px; }
}

/* ==========================================================================
   ORPHAN-FRIENDLY GRID SYSTEM v3 — Kart sayısına göre garanti satır sayısı
   ==========================================================================
   Mantık: Flexbox + sabit kart genişliği + parent max-width sınırlandırması.
   Parent max-width = (kart_genişliği × hedef_sütun_sayısı) + (gap × (sütun-1))

   Hedeflenen düzen:
   - 4 kart  → 1 satırda 4 (4×W = max-width)
   - 5 kart  → 3+2 (üst 3 + alt 2, max-width = 3×W)
   - 6 kart  → 3+3 (max-width = 3×W)
   - 7 kart  → 3+2+2 (üst 3 + 2 alt + 2 alt, max-width = 3×W)
   - 8 kart  → 4+4 (max-width = 4×W)
   - 9 kart  → 3+3+3 (max-width = 3×W)

   Kart genişliği = 320px, gap = 28px
   3 kart için max-width: 3×320 + 2×28 = 1016px
   4 kart için max-width: 4×320 + 3×28 = 1364px
   ========================================================================== */

.classes-grid,
.branches-grid,
.features-grid,
.gallery-cats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-left: auto;
    margin-right: auto;
    /* Varsayılan: 3 sütun max */
    max-width: 1016px;
}

/* Kartlar SABİT genişlikte — flex hesap yapmasın diye */
.classes-grid > *,
.branches-grid > *,
.features-grid > *,
.gallery-cats-grid > * {
    flex: 0 0 auto;
    width: 320px;
    max-width: 100%;
}

/* === DESKTOP (1200px+) — kart sayısına göre dinamik max-width === */
@media (min-width: 1200px) {
    /* 4 kart → 1 satır (4 sütun) */
    .classes-grid:has(> :nth-child(4):last-child),
    .branches-grid:has(> :nth-child(4):last-child),
    .features-grid:has(> :nth-child(4):last-child),
    .gallery-cats-grid:has(> :nth-child(4):last-child) {
        max-width: 1364px;
    }

    /* 8 kart → 2 satır (4+4) */
    .classes-grid:has(> :nth-child(8):last-child),
    .branches-grid:has(> :nth-child(8):last-child),
    .features-grid:has(> :nth-child(8):last-child),
    .gallery-cats-grid:has(> :nth-child(8):last-child) {
        max-width: 1364px;
    }

    /* ÖZEL: Branches 7 kart → 4+3 layout (count-7 class ile garanti edilir)
       Container 1280px - 48px padding = 1232px iç alan
       Hesap: 4 × 282 + 3 × 22 = 1194px (rahat sığar) */
    .branches-grid.count-7 {
        max-width: 1210px !important;
        gap: 22px !important;
    }
    .branches-grid.count-7 > * {
        width: 282px !important;
    }

    /* 5 kart → 3+2 (üst 3, alt 2 ortalı)
       6 kart → 3+3 (tam dolu)
       7 kart → 3+2+2 (3 üst, 2 orta, 2 alt) — branches HARİÇ, branches 4+3
       9 kart → 3+3+3
       Hepsi 3 sütun grid = max-width 1016px (default) ile zaten doğru render olur */
}

/* Çok geniş ekran (1400px+) - kart genişliği büyür */
@media (min-width: 1400px) {
    .classes-grid > *,
    .branches-grid > *,
    .features-grid > *,
    .gallery-cats-grid > * {
        width: 340px;
    }
    /* Default 3 sütun max: 3×340 + 2×28 = 1076px */
    .classes-grid,
    .branches-grid,
    .features-grid,
    .gallery-cats-grid {
        max-width: 1076px;
    }
    /* 4 sütun max: 4×340 + 3×28 = 1444px */
    .classes-grid:has(> :nth-child(4):last-child),
    .branches-grid:has(> :nth-child(4):last-child),
    .features-grid:has(> :nth-child(4):last-child),
    .gallery-cats-grid:has(> :nth-child(4):last-child),
    .classes-grid:has(> :nth-child(8):last-child),
    .branches-grid:has(> :nth-child(8):last-child),
    .features-grid:has(> :nth-child(8):last-child),
    .gallery-cats-grid:has(> :nth-child(8):last-child) {
        max-width: 1444px;
    }

    /* ÖZEL: Branches 7 kart 1400+ ekranda — kartlar 320px, gap 28px, 4 sütun = 1364px */
    .branches-grid.count-7 {
        max-width: 1364px !important;
        gap: 28px !important;
    }
    .branches-grid.count-7 > * {
        width: 320px !important;
    }
}

/* === ORTA EKRAN (900-1199) — 3 sütun max === */
@media (min-width: 900px) and (max-width: 1199px) {
    .classes-grid > *,
    .branches-grid > *,
    .features-grid > *,
    .gallery-cats-grid > * {
        width: 290px;
    }
    /* 3 sütun max: 3×290 + 2×28 = 926px */
    .classes-grid,
    .branches-grid,
    .features-grid,
    .gallery-cats-grid {
        max-width: 926px;
    }
}

/* === TABLET (600-899) — 2 sütun === */
@media (min-width: 600px) and (max-width: 899px) {
    .classes-grid > *,
    .branches-grid > *,
    .features-grid > *,
    .gallery-cats-grid > * {
        width: calc(50% - 14px);
        max-width: 340px;
    }
    .classes-grid,
    .branches-grid,
    .features-grid,
    .gallery-cats-grid {
        max-width: 720px;
    }
}

/* === MOBİL (<600px) — 1 sütun === */
@media (max-width: 599px) {
    .classes-grid > *,
    .branches-grid > *,
    .features-grid > *,
    .gallery-cats-grid > * {
        width: 100%;
        max-width: 380px;
    }
    .classes-grid,
    .branches-grid,
    .features-grid,
    .gallery-cats-grid {
        max-width: 380px;
    }
}

/* ==========================================================================
   Branş açıklama clamp — 2 satır
   ========================================================================== */
.branch-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    overflow: hidden;
}

/* ==========================================================================
   TRUST BAR — "Beylikdüzü'nde En Çok Tercih Edilen Anaokulu"
   ========================================================================== */
.trust-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(123, 97, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.trust-bar-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    z-index: 2;
}

.trust-bar-headline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.trust-bar-trophy {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #FFD56A 0%, #FFB84D 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(255, 184, 77, 0.4);
    font-size: 1.6rem;
    animation: trophy-bounce 3.5s ease-in-out infinite;
}

@keyframes trophy-bounce {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.08); }
}

.trust-bar-text {
    line-height: 1.25;
}

.trust-bar-label {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent-dark);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.trust-bar-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.trust-bar-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-bar-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-bar-stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-bar-stat-num {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.trust-bar-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

/* ==========================================================================
   OKULUM TEMİZ — Kompakt ince yatay kart (referans tarz)
   ========================================================================== */
.okulum-temiz {
    position: relative;
    padding: 50px 0;
    background: transparent;
    overflow: hidden;
}

.okulum-temiz-card {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 20px;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    box-shadow:
        0 12px 32px rgba(6, 214, 160, 0.12),
        0 0 0 1px rgba(6, 214, 160, 0.08);
    overflow: hidden;
}

.okulum-temiz-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(6, 214, 160, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(78, 205, 196, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.okulum-temiz-card > * { position: relative; z-index: 1; }

/* Sol badge - küçük yuvarlak */
.okulum-temiz-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06D6A0 0%, #4ECDC4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 20px rgba(6, 214, 160, 0.35),
        inset 0 -3px 8px rgba(0, 0, 0, 0.12),
        inset 0 3px 8px rgba(255, 255, 255, 0.25);
    position: relative;
    flex-shrink: 0;
}

.okulum-temiz-badge-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.okulum-temiz-body {
    min-width: 0;
}

.okulum-temiz-issuer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #06AB80;
    text-transform: uppercase;
    margin-bottom: 6px;
    background: rgba(6, 214, 160, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
}

.okulum-temiz-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.okulum-temiz-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #06D6A0 0%, #4ECDC4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.okulum-temiz-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    max-width: 720px;
}

/* Tags artık gizli - referansta yok */
.okulum-temiz-tags {
    display: none;
}

.okulum-temiz-tag {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.okulum-temiz-cta {
    flex-shrink: 0;
    background: linear-gradient(135deg, #06D6A0 0%, #4ECDC4 100%);
    color: white;
    border: none;
    padding: 11px 22px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    transition: var(--transition-bouncy);
    box-shadow: 0 8px 22px rgba(6, 214, 160, 0.32);
    text-decoration: none;
    white-space: nowrap;
}

.okulum-temiz-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 32px rgba(6, 214, 160, 0.5);
    color: white;
}

.okulum-temiz-cta svg {
    width: 14px;
    height: 14px;
}

/* Mobile */
@media (max-width: 720px) {
    .okulum-temiz { padding: 30px 0; }
    .okulum-temiz-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
        padding: 22px 20px;
    }
    .okulum-temiz-badge {
        margin: 0 auto;
        width: 56px;
        height: 56px;
    }
    .okulum-temiz-badge-icon { font-size: 1.7rem; }
    .okulum-temiz-issuer { margin: 0 auto 6px; }
    .okulum-temiz-cta { width: 100%; justify-content: center; }
}

/* Dark mode uyumu */
body[data-theme="dark"] .okulum-temiz-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(20px);
}

body[data-theme="dark"] .okulum-temiz-title {
    color: var(--dark-text);
}

body[data-theme="dark"] .okulum-temiz-desc {
    color: var(--dark-text-muted);
}

/* ==========================================================================
   Page-wide Playground Decorations
   ========================================================================== */
.playground-decor {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    transition: opacity 0.5s ease;
}

.playground-decor.fixed-left {
    left: -30px;
    top: 30%;
    font-size: 4rem;
    animation: float-side 9s ease-in-out infinite;
}

.playground-decor.fixed-right {
    right: -20px;
    top: 60%;
    font-size: 3.5rem;
    animation: float-side 11s ease-in-out infinite reverse;
}

@keyframes float-side {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* ==========================================================================
   Section background gradient blobs
   ========================================================================== */
.section { position: relative; overflow: hidden; }

.section-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.section-blob.blob-1 {
    width: 400px; height: 400px;
    top: -100px; right: -100px;
    background: var(--primary);
    animation: blob-move 15s ease-in-out infinite;
}

.section-blob.blob-2 {
    width: 350px; height: 350px;
    bottom: -50px; left: -50px;
    background: var(--secondary);
    animation: blob-move 18s ease-in-out infinite reverse;
}

.section-blob.blob-3 {
    width: 300px; height: 300px;
    top: 50%; left: 50%;
    background: var(--accent);
    animation: blob-move 20s ease-in-out infinite;
}

@keyframes blob-move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Make container above blobs */
.section .container { position: relative; z-index: 2; }

/* ==========================================================================
   Enhanced scroll reveal
   ========================================================================== */
.reveal-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.34,1.56,0.64,1); }
.reveal-scale.is-visible { opacity: 1; transform: scale(1); }

.reveal-fade { opacity: 0; transition: opacity 0.9s ease-out; }
.reveal-fade.is-visible { opacity: 1; }

/* Stagger child reveals */
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s, transform 0.6s; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ==========================================================================
   Slider mobile adjustments
   ========================================================================== */
@media (max-width: 992px) {
    .hero-slider .slider-track { height: 540px; }
    .hero-slide-title { font-size: clamp(1.85rem, 7vw, 2.5rem); }

    .okulum-temiz-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    .okulum-temiz-badge { margin: 0 auto; width: 100px; height: 100px; }
    .okulum-temiz-badge-icon { font-size: 3rem; }
    .okulum-temiz-desc { margin-left: auto; margin-right: auto; }
    .okulum-temiz-tags { justify-content: center; }
    .okulum-temiz-cta { width: 100%; justify-content: center; }

    .trust-bar-inner { justify-content: center; text-align: center; }
    .trust-bar-headline { justify-content: center; }
    .trust-bar-stats { justify-content: center; }

    .playground-decor { display: none; }
}

@media (max-width: 640px) {
    .hero-slider .slider-track { height: 580px; }
    .slider-arrow { width: 44px; height: 44px; }
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }
    .slider-dots { bottom: 24px; padding: 8px 12px; }
    .hero-slide-cta-row { gap: 10px; }
    .hero-slide-btn,
    .hero-slide-btn-ghost { padding: 13px 22px; font-size: 0.92rem; }

    .trust-bar { padding: 16px 0; }
    .trust-bar-trophy { width: 44px; height: 44px; font-size: 1.4rem; }
    .trust-bar-stats { gap: 18px; }
}

/* ==========================================================================
   INTERACTIVE MODULE 1 — Age Calculator (Sınıf Bulucu)
   ========================================================================== */
.age-calc {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(ellipse at top left, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(123, 97, 255, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #FFF9F4 100%);
    overflow: hidden;
}

.age-calc-card {
    position: relative;
    background: white;
    border-radius: 40px;
    padding: 56px 48px;
    box-shadow: 0 30px 80px rgba(123, 97, 255, 0.12);
    overflow: hidden;
    border: 1px solid var(--border);
}

.age-calc-card::before,
.age-calc-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    opacity: 0.5;
}

.age-calc-card::before {
    width: 220px; height: 220px;
    top: -60px; right: -60px;
    background: var(--primary);
}

.age-calc-card::after {
    width: 180px; height: 180px;
    bottom: -50px; left: -50px;
    background: var(--secondary);
}

.age-calc-card > * { position: relative; z-index: 2; }

.age-calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

/* Left side - intro */
.age-calc-intro h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 14px;
    line-height: 1.15;
}
.age-calc-intro h2 em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.age-calc-intro p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 1.02rem;
    line-height: 1.7;
}

.age-calc-emoji {
    font-size: 4rem;
    display: inline-block;
    animation: wave 3s ease-in-out infinite;
    transform-origin: 70% 70%;
    margin-bottom: 8px;
}
@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-12deg); }
    20%, 40% { transform: rotate(14deg); }
    50% { transform: rotate(0deg); }
}

/* Right side - calculator UI */
.age-calc-ui {
    background: linear-gradient(135deg, #FFF5F8 0%, #F5F0FF 100%);
    border-radius: 28px;
    padding: 36px 32px;
    border: 2px solid rgba(123, 97, 255, 0.08);
}

.age-input-label {
    display: block;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Slider */
.age-slider-wrap {
    position: relative;
    padding: 0 4px;
    margin-bottom: 20px;
}

.age-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 12px;
    background: white;
    border-radius: 100px;
    outline: none;
    box-shadow: inset 0 2px 6px rgba(123, 97, 255, 0.12);
    cursor: pointer;
}

.age-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border: 4px solid white;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
    transition: transform 0.2s;
}

.age-slider::-webkit-slider-thumb:active {
    transform: scale(1.15);
    cursor: grabbing;
}

.age-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border: 4px solid white;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 8px 24px rgba(255, 107, 157, 0.4);
}

.age-slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding: 0 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 700;
}

.age-display {
    text-align: center;
    margin: 24px 0;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 600;
}

.age-display-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
    font-weight: 700;
}

/* Result card */
.age-result {
    background: white;
    border-radius: 20px;
    padding: 22px 24px;
    border: 2px solid var(--border);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: scale(0.95);
}

.age-result.is-visible {
    opacity: 1;
    transform: scale(1);
    border-color: var(--age-color, var(--primary));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06), 0 0 0 4px var(--age-color-soft, var(--primary-soft));
}

.age-result-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.age-result-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--age-color-soft, var(--primary-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.age-result-class {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.age-result-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--age-color, var(--primary));
    line-height: 1.2;
}

.age-result-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 14px;
}

.age-result-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--age-color, var(--primary));
    color: white;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.age-result-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .age-calc-grid { grid-template-columns: 1fr; gap: 32px; }
    .age-calc-card { padding: 36px 24px; }
    .age-calc-ui { padding: 28px 22px; }
}

/* ==========================================================================
   INTERACTIVE MODULE 2 — Branch Carousel (3D Showcase)
   ========================================================================== */
.branch-showcase {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(ellipse at top, #FFF1DA 0%, transparent 50%),
        radial-gradient(ellipse at bottom, #EAE3FF 0%, transparent 50%),
        var(--bg-cream);
    overflow: hidden;
}

.branch-showcase::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 184, 77, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.branch-showcase-container {
    position: relative;
    height: 520px;
    perspective: 1400px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.branch-showcase-container:active {
    cursor: grabbing;
}

.branch-showcase-track {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.bs-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 420px;
    margin-top: -210px;
    margin-left: -160px;
    background: white;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(31, 27, 61, 0.18);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s, filter 0.8s;
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    color: inherit;
    text-decoration: none;
}

.bs-card-link {
    display: block;
}

.bs-card-img-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.bs-card-count {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bs-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 16px;
    background: var(--bs-color, var(--primary));
    color: white !important;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--transition);
}

.bs-card[data-pos="center"] .bs-card-cta {
    transform: translateY(0);
    opacity: 1;
}

.bs-card-link:hover .bs-card-cta {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.bs-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.bs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.bs-card:hover .bs-card-img img {
    transform: scale(1.08);
}

.bs-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0.6;
}

.bs-card-body {
    padding: 24px 24px 28px;
    text-align: center;
}

.bs-card-subtitle {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--bs-color, var(--primary));
    text-transform: uppercase;
    margin-bottom: 8px;
}

.bs-card-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.bs-card-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Position states - center, side, far */
.bs-card[data-pos="center"] {
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1.05);
    z-index: 5;
    opacity: 1;
    filter: none;
}

.bs-card[data-pos="left-1"] {
    transform: translateX(-260px) translateZ(-120px) rotateY(28deg) scale(0.88);
    z-index: 4;
    opacity: 0.85;
    filter: brightness(0.85);
}

.bs-card[data-pos="left-2"] {
    transform: translateX(-440px) translateZ(-240px) rotateY(40deg) scale(0.7);
    z-index: 3;
    opacity: 0.5;
    filter: brightness(0.7) blur(1px);
}

.bs-card[data-pos="right-1"] {
    transform: translateX(260px) translateZ(-120px) rotateY(-28deg) scale(0.88);
    z-index: 4;
    opacity: 0.85;
    filter: brightness(0.85);
}

.bs-card[data-pos="right-2"] {
    transform: translateX(440px) translateZ(-240px) rotateY(-40deg) scale(0.7);
    z-index: 3;
    opacity: 0.5;
    filter: brightness(0.7) blur(1px);
}

.bs-card[data-pos="hidden"] {
    transform: translateX(0) translateZ(-400px) scale(0.5);
    opacity: 0;
    pointer-events: none;
}

.bs-card[data-pos="center"]::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    box-shadow: 0 0 0 3px var(--bs-color, var(--primary));
    pointer-events: none;
    opacity: 0.6;
}

/* Controls */
.bs-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

/* Üstte konumlandırılınca: section-header altında, carousel üstünde */
.bs-controls-top {
    margin-top: 0;
    margin-bottom: 36px;
    position: relative;
    z-index: 5;
}

.bs-arrow {
    width: 52px;
    height: 52px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition-bouncy);
    box-shadow: var(--shadow-sm);
}

.bs-arrow:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.bs-indicator {
    padding: 12px 24px;
    background: white;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    min-width: 220px;
    text-align: center;
}

.bs-indicator strong {
    color: var(--primary);
}

@media (max-width: 992px) {
    .branch-showcase-container { height: 480px; }
    .bs-card { width: 280px; height: 380px; margin-top: -190px; margin-left: -140px; }
    .bs-card[data-pos="left-1"] { transform: translateX(-200px) translateZ(-100px) rotateY(28deg) scale(0.85); }
    .bs-card[data-pos="right-1"] { transform: translateX(200px) translateZ(-100px) rotateY(-28deg) scale(0.85); }
    .bs-card[data-pos="left-2"],
    .bs-card[data-pos="right-2"] { opacity: 0; pointer-events: none; }
}

@media (max-width: 599px) {
    .branch-showcase-container { height: 480px; }
    .bs-card { width: 260px; height: 360px; margin-top: -180px; margin-left: -130px; }
    .bs-card[data-pos="left-1"] { transform: translateX(-160px) translateZ(-100px) rotateY(28deg) scale(0.8); }
    .bs-card[data-pos="right-1"] { transform: translateX(160px) translateZ(-100px) rotateY(-28deg) scale(0.8); }
    .bs-indicator { min-width: 0; padding: 10px 16px; font-size: 0.82rem; }
}

/* ==========================================================================
   KARIYER SAYFASI
   ========================================================================== */
.career-perk {
    background: white;
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.career-perk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--perk-color, var(--primary));
    transition: width 0.35s ease;
}

.career-perk:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.career-perk:hover::before {
    width: 6px;
}

.career-perk h3 {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.career-perk p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
}

.career-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: 0 24px 60px rgba(123, 97, 255, 0.1);
    border: 1px solid var(--border);
}

.career-form-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px dashed var(--border);
}

.career-form-header h2 {
    font-size: 1.75rem;
    margin: 12px 0 6px;
}

.career-form-header p {
    color: var(--text-muted);
    margin: 0;
}

.career-form .form-group {
    margin-bottom: 18px;
}

.career-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: var(--text-dark);
}

.career-form input[type="text"],
.career-form input[type="email"],
.career-form input[type="tel"],
.career-form select,
.career-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-cream);
    transition: var(--transition);
    color: var(--text-dark);
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.career-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
}

.cv-upload-wrap {
    position: relative;
}

.cv-upload-wrap input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.cv-upload-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: var(--bg-cream);
    border: 2px dashed var(--border);
    border-radius: 14px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    font-weight: 600;
}

.cv-upload-wrap:hover .cv-upload-label {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

.alert {
    padding: 16px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-weight: 600;
}

.alert-success {
    background: var(--success-soft);
    color: #06AB80;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.alert-success svg { flex-shrink: 0; margin-top: 2px; }

.alert-success strong { font-size: 1rem; }

.alert-error {
    background: #FEE2E2;
    color: #B91C1C;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 640px) {
    .career-form-card { padding: 28px 22px; }
    .career-form .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   DAILY ROUTINE — Bir Günümüz Timeline (İnteraktif)
   ========================================================================== */
.daily-routine {
    position: relative;
    padding: 100px 0;
    background:
        radial-gradient(ellipse at top, rgba(255, 184, 77, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, rgba(123, 97, 255, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #FFF9F4 100%);
    overflow: hidden;
}

.dr-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
}

.dr-blob-1 {
    width: 400px; height: 400px;
    top: 10%; left: -100px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.5) 0%, transparent 70%);
    animation: hero-blob 16s ease-in-out infinite;
}

.dr-blob-2 {
    width: 400px; height: 400px;
    bottom: 5%; right: -100px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.5) 0%, transparent 70%);
    animation: hero-blob 19s ease-in-out infinite reverse;
}

.daily-timeline {
    position: relative;
    max-width: 880px;
    margin: 60px auto 0;
    padding: 20px 0;
}

/* Merkez çizgi */
.dr-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 107, 157, 0.5) 8%,
        rgba(255, 184, 77, 0.5) 30%,
        rgba(123, 97, 255, 0.5) 60%,
        rgba(6, 214, 160, 0.5) 85%,
        transparent 100%);
    border-radius: 100px;
    z-index: 1;
}

.dr-event {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 36px;
    z-index: 2;
}

.dr-event:last-child { margin-bottom: 0; }

/* Sol taraf: zaman (tek sayılı eventler için sağa, çift için sola yerleştirilecek) */
.dr-event-time {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--dr-color);
    text-align: right;
}

.dr-event-card {
    background: white;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: left;
}

/* Çift sayılı eventlerde sıralamayı tersine çevir (zigzag effect) */
.dr-event:nth-child(even) .dr-event-time {
    order: 3;
    text-align: left;
}

.dr-event:nth-child(even) .dr-event-card {
    order: 1;
    text-align: right;
}

.dr-event:hover .dr-event-card {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
    border-color: var(--dr-color);
}

.dr-event-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.dr-event-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Merkez nokta — emoji ile */
.dr-event-dot {
    grid-column: 2;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--dr-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 28px var(--dr-soft, rgba(0,0,0,0.1));
    transition: var(--transition-bouncy);
    padding: 0;
}

.dr-event-dot::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--dr-color);
    opacity: 0.2;
    z-index: -1;
    animation: dr-pulse 2.5s ease-out infinite;
}

@keyframes dr-pulse {
    0% { transform: scale(0.9); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

.dr-event-dot:hover,
.dr-event-dot:focus-visible {
    transform: scale(1.18);
    outline: none;
    background: var(--dr-color);
}

.dr-event-dot:hover .dr-event-emoji {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

.dr-event-emoji {
    font-size: 1.85rem;
    display: block;
    transition: transform 0.4s ease;
}

.dr-event:hover .dr-event-emoji {
    transform: scale(1.15) rotate(8deg);
}

@media (max-width: 760px) {
    .daily-timeline { margin-top: 40px; }

    /* Tüm timeline'ı sola yasla, çizgi solda */
    .dr-line {
        left: 32px;
        transform: none;
    }

    .dr-event {
        grid-template-columns: 64px 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .dr-event-dot {
        grid-column: 1;
        width: 56px;
        height: 56px;
        border-width: 3px;
    }

    .dr-event-time {
        grid-column: 2;
        text-align: left;
        font-size: 1rem;
        order: 1;
    }

    /* Çift event override'ı sıfırla */
    .dr-event:nth-child(even) .dr-event-time {
        order: 1;
        text-align: left;
        grid-column: 2;
    }

    .dr-event-card {
        grid-column: 2;
        text-align: left !important;
        padding: 14px 16px;
        order: 2;
        margin-top: 4px;
    }

    .dr-event:nth-child(even) .dr-event-card {
        order: 2;
        text-align: left;
    }

    .dr-event-emoji { font-size: 1.55rem; }
}

/* ==========================================================================
   Mobile menu - daha iyi UX
   ========================================================================== */
@media (max-width: 992px) {
    /* Hamburger menu açıldığında body scroll engellensin */
    body.menu-open {
        overflow: hidden;
    }

    /* Menü açıkken header'ın navbar üstüne taşması engellensin */
    body.menu-open .header {
        z-index: 999;
    }

    /* Menu açıldığında sayfa karartılsın */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(31, 27, 61, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 9998;        /* nav-links (9999) altında, panel önde */
        pointer-events: none; /* default: tıklanmaz */
    }

    body.menu-open .nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; /* sadece menü açıkken tıklama yakalar (kapatmak için) */
    }

    /* X iconu, açıkken */
    body.menu-open .mobile-toggle svg line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
        transform-origin: center;
        transition: transform 0.3s;
    }
    body.menu-open .mobile-toggle svg line:nth-child(2) {
        opacity: 0;
        transition: opacity 0.3s;
    }
    body.menu-open .mobile-toggle svg line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
        transform-origin: center;
        transition: transform 0.3s;
    }

    .mobile-toggle svg line {
        transition: all 0.3s;
    }
}

/* ==========================================================================
   YouTube Kanal CTA — Videolar bölümü altında
   ========================================================================== */
.youtube-cta-wrap {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.youtube-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 32px;
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: white !important;
    border-radius: 100px;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(255, 0, 0, 0.28);
    transition: var(--transition-bouncy);
    position: relative;
    overflow: hidden;
}

.youtube-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.youtube-cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.youtube-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 22px 48px rgba(255, 0, 0, 0.4);
    color: white;
}

.youtube-cta-btn > * { position: relative; z-index: 1; }

.youtube-cta-btn svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.youtube-cta-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.youtube-cta-btn strong {
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.youtube-cta-btn small {
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0.92;
    margin-top: 3px;
}

@media (max-width: 599px) {
    .youtube-cta-btn {
        padding: 14px 22px;
        gap: 12px;
        width: 100%;
        max-width: 380px;
        justify-content: center;
    }
    .youtube-cta-btn strong { font-size: 0.92rem; }
    .youtube-cta-btn small { font-size: 0.76rem; }
    .youtube-cta-btn svg { width: 22px; height: 22px; }
}

/* ==========================================================================
   INSTAGRAM MODÜLÜ — Anlık Okul Hayatı (Gerçek Instagram Renkleri)
   ==========================================================================
   IG Brand Gradient: #FEDA75 → #FA7E1E → #D62976 → #962FBF → #4F5BD5
   ========================================================================== */
.instagram-section {
    position: relative;
    padding: 100px 0 110px;
    background: #FFFAF5;
    overflow: hidden;
}

/* IG renkleri ile background blob'lar - radyal mesh */
.instagram-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(214, 41, 118, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.instagram-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(150, 47, 191, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

/* Ek IG renk blob'ları */
.instagram-section .ig-bg-orb-1 {
    position: absolute;
    top: 30%;
    right: 5%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(247, 119, 55, 0.1) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(50px);
}

.instagram-section .ig-bg-orb-2 {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 220, 128, 0.18) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
}

/* SVG gradient definitions için */
.ig-gradient-defs {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* Username pill — IG gradient çizgileri + gradient text */
.ig-username-pill {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-bottom: 18px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.ig-username-pill:hover {
    transform: translateY(-2px);
}

.ig-username-pill .ig-line-left,
.ig-username-pill .ig-line-right {
    height: 2px;
    width: 56px;
    border-radius: 2px;
    background: linear-gradient(90deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%);
    opacity: 0.85;
}

.ig-username-pill .ig-line-right {
    background: linear-gradient(270deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%);
}

/* SVG icon - IG gradient */
.ig-username-pill .ig-icon {
    flex-shrink: 0;
    stroke: url(#igGradient);
    color: #D62976; /* fallback */
}

/* Kullanıcı adı text - IG gradient */
.ig-username-pill .ig-username {
    font-size: 1rem;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #962FBF 0%, #D62976 40%, #F77737 75%, #FFDC80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Başlık — italic accent IG gradient */
.ig-title {
    font-family: 'Quicksand', 'Nunito', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.ig-title-accent {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #962FBF 0%, #D62976 40%, #F77737 75%, #FFDC80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-left: 8px;
}

/* Instagram strip — 6'lı yatay görsel sırası */
.instagram-strip {
    display: flex;
    gap: 22px;
    margin: 48px 0 8px;
    overflow-x: auto;
    padding: 18px 6px 26px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #D62976 transparent;
    position: relative;
    z-index: 2;
}

.instagram-strip::-webkit-scrollbar {
    height: 8px;
}

.instagram-strip::-webkit-scrollbar-track {
    background: rgba(214, 41, 118, 0.08);
    border-radius: 100px;
}

.instagram-strip::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%);
    border-radius: 100px;
}

/* Her post — IG gradient border (4px ring) */
.ig-post {
    position: relative;
    flex: 0 0 auto;
    width: 220px;
    height: 220px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-radius 0.4s;
    scroll-snap-align: start;
    text-decoration: none;
    /* Gradient border tekniği: padding-box + border-box */
    padding: 4px;
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%) border-box;
    border: 4px solid transparent;
    box-shadow:
        0 16px 36px rgba(214, 41, 118, 0.18),
        0 8px 20px rgba(150, 47, 191, 0.12);
}

/* Asimetrik rotate efekti */
.ig-post:nth-child(1) { transform: rotate(-2deg); }
.ig-post:nth-child(2) { transform: rotate(1.5deg); }
.ig-post:nth-child(3) { transform: rotate(-1deg); }
.ig-post:nth-child(4) { transform: rotate(2deg); }
.ig-post:nth-child(5) { transform: rotate(-1.5deg); }
.ig-post:nth-child(6) { transform: rotate(1deg); }
.ig-post:nth-child(7) { transform: rotate(-2deg); }
.ig-post:nth-child(8) { transform: rotate(1.5deg); }

.ig-post:hover {
    transform: rotate(0deg) scale(1.06) !important;
    box-shadow:
        0 28px 56px rgba(214, 41, 118, 0.35),
        0 12px 28px rgba(150, 47, 191, 0.25);
    z-index: 5;
}

/* Img - iç içerik */
.ig-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s ease;
}

.ig-post:hover img {
    transform: scale(1.1);
}

/* Hover'da Instagram gradient overlay + büyük IG ikonu */
.ig-post-overlay {
    position: absolute;
    inset: 4px;
    border-radius: 18px;
    background: linear-gradient(135deg,
        rgba(254, 218, 117, 0.85) 0%,
        rgba(250, 126, 30, 0.9) 25%,
        rgba(214, 41, 118, 0.92) 50%,
        rgba(150, 47, 191, 0.92) 75%,
        rgba(79, 91, 213, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
}

.ig-post:hover .ig-post-overlay {
    opacity: 1;
}

.ig-post-overlay svg {
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ig-post:hover .ig-post-overlay svg {
    transform: scale(1);
}

/* CTA - "Bizi Takip Edin" - IG gradient PILL */
.instagram-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    position: relative;
    z-index: 2;
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 38px;
    background: linear-gradient(135deg,
        #FEDA75 0%,
        #FA7E1E 22%,
        #D62976 50%,
        #962FBF 78%,
        #4F5BD5 100%);
    color: white !important;
    border: none;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.01em;
    box-shadow:
        0 16px 36px rgba(214, 41, 118, 0.4),
        0 8px 20px rgba(150, 47, 191, 0.3);
    transition: var(--transition-bouncy);
    position: relative;
    overflow: hidden;
}

.ig-follow-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ig-follow-btn:hover::before {
    width: 400px;
    height: 400px;
}

.ig-follow-btn svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.ig-follow-btn span,
.ig-follow-btn > *:not(svg) {
    position: relative;
    z-index: 1;
}

.ig-follow-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 24px 56px rgba(214, 41, 118, 0.55),
        0 12px 32px rgba(150, 47, 191, 0.4);
}

.ig-follow-btn:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

/* Mobile */
@media (max-width: 767px) {
    .instagram-section {
        padding: 70px 0 80px;
    }
    .ig-post {
        width: 180px;
        height: 180px;
        border-radius: 20px;
        padding: 3px;
    }
    .ig-post img,
    .ig-post-overlay {
        border-radius: 16px;
    }
    .ig-post-overlay {
        inset: 3px;
    }
    .ig-username-pill .ig-line-left,
    .ig-username-pill .ig-line-right {
        width: 32px;
    }
    .instagram-strip {
        gap: 16px;
        margin: 36px 0 8px;
    }
    .ig-follow-btn {
        padding: 14px 28px;
        font-size: 0.92rem;
    }
}

@media (max-width: 480px) {
    .ig-post {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 480px) {
    .ig-post {
        width: 160px;
        height: 160px;
    }
}

/* ==========================================================================
   GOOGLE YORUMLARI — Veli Görüşleri
   ========================================================================== */
.google-reviews {
    position: relative;
    padding: 90px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

.google-reviews::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.google-reviews::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 188, 5, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Üst Google rozet badge */
.gr-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px 12px 18px;
    background: white;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    box-shadow: 0 12px 28px rgba(66, 133, 244, 0.08);
    margin-bottom: 22px;
}

.gr-google-logo {
    flex-shrink: 0;
}

.gr-header-text {
    text-align: left;
    line-height: 1.25;
}

.gr-header-label {
    font-size: 0.78rem;
    color: #5f6368;
    font-weight: 600;
    font-family: 'Roboto', 'Quicksand', sans-serif;
    letter-spacing: 0.02em;
}

.gr-header-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto', 'Quicksand', sans-serif;
}

.gr-rating-num {
    font-weight: 800;
    font-size: 1.05rem;
    color: #202124;
    margin-right: 2px;
}

.gr-stars {
    color: #FBBC05;
    font-size: 1.05rem;
    letter-spacing: -1px;
}

.gr-count {
    color: #5f6368;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Google review grid */
.gr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 50px auto 40px;
}

.gr-card {
    background: white;
    border: 1px solid #e8eaed;
    border-radius: 16px;
    padding: 22px 22px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4285F4 0%, #34A853 33%, #FBBC05 66%, #EA4335 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(66, 133, 244, 0.12);
    border-color: #dadce0;
}

.gr-card:hover::before {
    opacity: 1;
}

.gr-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    position: relative;
}

.gr-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
    font-family: 'Roboto', 'Quicksand', sans-serif;
}

.gr-author {
    flex: 1;
    min-width: 0;
}

.gr-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #202124;
    line-height: 1.3;
    margin-bottom: 3px;
    font-family: 'Roboto', 'Quicksand', sans-serif;
}

.gr-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.gr-card-stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.gr-date {
    font-size: 0.78rem;
    color: #5f6368;
    font-family: 'Roboto', 'Quicksand', sans-serif;
}

/* Sağ üstte Google G */
.gr-card-google {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.gr-card:hover .gr-card-google {
    opacity: 1;
}

.gr-comment {
    color: #3c4043;
    line-height: 1.6;
    font-size: 0.92rem;
    margin: 0;
    font-family: 'Roboto', 'Quicksand', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    line-clamp: 6;
    overflow: hidden;
}

/* CTA - "Tüm Yorumları Google'da Gör" */
.gr-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.gr-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    background: white;
    color: #1a73e8;
    border: 1.5px solid #dadce0;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Roboto', 'Quicksand', sans-serif;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
}

.gr-google-btn:hover {
    background: #f8f9fa;
    border-color: #1a73e8;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    color: #1a73e8;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .gr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .google-reviews {
        padding: 60px 0 70px;
    }
    .gr-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 440px;
        margin: 32px auto 28px;
    }
    .gr-header-badge {
        padding: 10px 16px;
    }
    .gr-google-btn {
        font-size: 0.88rem;
        padding: 12px 20px;
    }
}

/* ==========================================================================
   DUYURU BANDI — Üst kayan şerit + yıldız parıltıları
   ========================================================================== */
.announcement-bar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg,
        #FF6B9D 0%,
        #FFB84D 25%,
        #FF6B9D 50%,
        #7B61FF 75%,
        #FF6B9D 100%);
    background-size: 200% 100%;
    animation: announce-bg 8s linear infinite;
    color: white;
    box-shadow: 0 4px 14px rgba(255, 107, 157, 0.25);
    z-index: 100;
}

@keyframes announce-bg {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.announce-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: announce-scroll 32s linear infinite;
    padding: 10px 0;
    will-change: transform;
}

.announcement-bar:hover .announce-track {
    animation-play-state: paused;
}

@keyframes announce-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.announce-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 32px;
    flex-shrink: 0;
}

.announce-spark {
    font-size: 1rem;
    animation: spark-twinkle 1.6s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

@keyframes spark-twinkle {
    0%, 100% { opacity: 0.5; transform: scale(0.85) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(180deg); }
}

.announce-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.announce-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 14px;
    background: white;
    color: #FF6B9D;
    border-radius: 100px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 800;
    font-size: 0.82rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.announce-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    color: #FF6B9D;
}

@media (max-width: 640px) {
    .announce-text { font-size: 0.85rem; }
    .announce-item { gap: 10px; padding: 0 20px; }
    .announce-btn { font-size: 0.75rem; padding: 4px 10px; }
}

/* ==========================================================================
   COUNT-UP STAT ANİMASYONU — Sayılar 0'dan gerçek değere
   ========================================================================== */
.stat-value[data-counter] {
    display: inline-block;
}

.stat-value[data-counter].counting {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   FINAL OVERRIDE — Branches 7 kart için CSS Grid 4+3 garantisi
   Dosyanın en sonunda → en yüksek cascade priority
   Display: grid ile flexbox kurallarını tamamen bypass eder
   ========================================================================== */
.branches-grid.count-7 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 22px !important;
    max-width: 100% !important;
    width: 100% !important;
    justify-content: stretch !important;
    justify-items: stretch !important;
}

.branches-grid.count-7 > * {
    width: 100% !important;
    max-width: 100% !important;
    flex: unset !important;
}

/* Son satır 3 kart - ortalanır */
.branches-grid.count-7 > *:nth-child(5) {
    grid-column: 1 / span 1;
    grid-column-start: 1;
}
.branches-grid.count-7 > *:nth-child(6) {
    grid-column-start: 2;
}
.branches-grid.count-7 > *:nth-child(7) {
    grid-column-start: 3;
}

/* Daha güzel: son 3 kartı tam ortala — subgrid mantığı yerine
   her birini grid-column ile 2-3-4 sütuna yerleştir */
@media (min-width: 1100px) {
    .branches-grid.count-7 {
        grid-template-columns: repeat(8, 1fr) !important;
        gap: 22px !important;
    }
    /* İlk 4 kart üst satır - her 2 sütun yer kapla */
    .branches-grid.count-7 > *:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
    .branches-grid.count-7 > *:nth-child(2) { grid-column: 3 / span 2; grid-row: 1; }
    .branches-grid.count-7 > *:nth-child(3) { grid-column: 5 / span 2; grid-row: 1; }
    .branches-grid.count-7 > *:nth-child(4) { grid-column: 7 / span 2; grid-row: 1; }
    /* Son 3 kart alt satır - 2-3-4-5-6-7 sütunlarda ortalı */
    .branches-grid.count-7 > *:nth-child(5) { grid-column: 2 / span 2; grid-row: 2; }
    .branches-grid.count-7 > *:nth-child(6) { grid-column: 4 / span 2; grid-row: 2; }
    .branches-grid.count-7 > *:nth-child(7) { grid-column: 6 / span 2; grid-row: 2; }
}

/* Tablet (700-1099) - 3 sütun normal */
@media (min-width: 700px) and (max-width: 1099px) {
    .branches-grid.count-7 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    .branches-grid.count-7 > * {
        grid-column: unset !important;
        grid-row: unset !important;
    }
}

/* Mobile - 1 sütun */
@media (max-width: 699px) {
    .branches-grid.count-7 {
        grid-template-columns: 1fr !important;
    }
    .branches-grid.count-7 > * {
        grid-column: unset !important;
        grid-row: unset !important;
    }
}

/* ==========================================================================
   DARK MODE — Dropdown menü düzeltmesi
   Beyaz background'u koyu glass'a, koyu metinleri açığa çevirir
   ========================================================================== */
body[data-theme="dark"] .dropdown-menu {
    background: rgba(15, 20, 36, 0.96) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--dark-border);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Yukarıdaki ok ucu (üçgen) da koyu olsun */
body[data-theme="dark"] .dropdown-menu::before {
    border-bottom-color: rgba(15, 20, 36, 0.96);
}

/* Menü öğeleri açık renkte */
body[data-theme="dark"] .dropdown-menu a {
    color: var(--dark-text);
}

body[data-theme="dark"] .dropdown-menu a:hover {
    background: rgba(255, 107, 157, 0.15);
    color: #FFB3CC;
}

body[data-theme="dark"] .dropdown-menu a.active {
    background: rgba(255, 107, 157, 0.2);
    color: #FF8FB6;
}

/* Mobile menü için dark mode (eğer dropdown mobile'da açılıyorsa) */
@media (max-width: 991px) {
    body[data-theme="dark"] .has-dropdown .dropdown-menu {
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid var(--dark-border);
    }
}

/* ==========================================================================
   YUKARI ÇIK BUTONU — Scroll Progress Ring + Roket Trail
   ========================================================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 104px;      /* WhatsApp'ın (64px) üstüne yerleş, 16px gap ile */
    right: 28px;
    width: 52px;        /* WhatsApp'tan biraz daha küçük (64 vs 52) */
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%);
    background-size: 200% 200%;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.7);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 10px 30px rgba(255, 107, 157, 0.4),
        0 4px 12px rgba(123, 97, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: scrollTopGradient 6s ease infinite;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 16px 40px rgba(255, 107, 157, 0.55),
        0 6px 20px rgba(123, 97, 255, 0.4);
}

.scroll-top-btn:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes scrollTopGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Progress Ring - SVG dönen halka */
.scroll-progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-progress-ring .ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 3;
}

.scroll-progress-ring .ring-fill {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 125.6; /* 2 * PI * 20 */
    stroke-dashoffset: 125.6;
    transition: stroke-dashoffset 0.15s linear;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

/* Hover'da ok daha çok yukarı kayar */
.scroll-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-top-btn:hover .scroll-icon {
    animation: rocket-bounce 0.6s ease infinite;
}

@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Trail efekti (alev) */
.scroll-rocket-trail {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 0;
    background: linear-gradient(180deg, #FFB84D 0%, #FF6B9D 50%, transparent 100%);
    border-radius: 50% 50% 50% 50% / 100% 100% 0% 0%;
    filter: blur(3px);
    transition: height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.scroll-top-btn:hover .scroll-rocket-trail {
    height: 30px;
    opacity: 0.85;
    animation: flame-flicker 0.4s ease-in-out infinite;
}

@keyframes flame-flicker {
    0%, 100% { transform: translateX(-50%) scaleX(1); }
    50% { transform: translateX(-50%) scaleX(1.3); }
}

/* Mobile - scrolltop küçük + WhatsApp'ın üstünde dikey dizilim */
@media (max-width: 720px) {
    .scroll-top-btn {
        width: 44px;
        height: 44px;
        bottom: 80px;       /* WhatsApp mobile (56px + 16px gap + 8px buffer) */
        right: 16px;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
}

/* Çok küçük ekran */
@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 76px;
        right: 14px;
        width: 42px;
        height: 42px;
    }
    .whatsapp-float {
        bottom: 14px;
        right: 14px;
        width: 52px;
        height: 52px;
    }
}

/* Dark mode uyumu */
body[data-theme="dark"] .scroll-top-btn {
    box-shadow:
        0 12px 36px rgba(255, 107, 157, 0.55),
        0 4px 16px rgba(123, 97, 255, 0.45);
}

/* ==========================================================================
   CUSTOM CURSOR — Havalı mouse imleci (sadece desktop)
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
    /* Default cursor'ı gizle - sadece interaktif olmayan alanlarda */
    body {
        cursor: none;
    }
    a, button, input, textarea, select, label, [role="button"], .clickable {
        cursor: none;
    }

    /* Form alanlarında text cursor görünmeli */
    input[type="text"], input[type="email"], input[type="password"],
    input[type="tel"], input[type="number"], input[type="search"],
    input[type="url"], textarea {
        cursor: text;
    }

    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        will-change: transform;
    }

    /* Merkez nokta - pembe dolu */
    .cursor-dot {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #FF6B9D;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background 0.2s;
        box-shadow: 0 0 12px rgba(255, 107, 157, 0.6);
    }

    /* Dış halka - mor outline */
    .cursor-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2px solid rgba(123, 97, 255, 0.5);
        transform: translate(-50%, -50%);
        transition: width 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                    height 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                    border-color 0.25s, background 0.25s, opacity 0.25s;
    }

    /* Hover - tıklanabilir element üzerinde */
    .custom-cursor.is-hover .cursor-dot {
        width: 4px;
        height: 4px;
        background: white;
    }

    .custom-cursor.is-hover .cursor-ring {
        width: 56px;
        height: 56px;
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.3) 0%, rgba(123, 97, 255, 0.3) 100%);
        border-color: rgba(255, 107, 157, 0.8);
        backdrop-filter: blur(2px);
    }

    /* Tıklarken küçülen efekt */
    .custom-cursor.is-click .cursor-ring {
        width: 30px;
        height: 30px;
        border-color: #FFB84D;
        transition-duration: 0.1s;
    }

    /* Sürükleme alanları üzerinde - "tut" görünümü */
    .custom-cursor.is-drag .cursor-ring {
        width: 48px;
        height: 48px;
        border: 2px dashed #FFB84D;
        animation: cursor-rotate 2s linear infinite;
    }

    @keyframes cursor-rotate {
        from { transform: translate(-50%, -50%) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    /* Form alanı (text input) üstünde I-beam */
    .custom-cursor.is-text .cursor-dot {
        width: 2px;
        height: 18px;
        border-radius: 1px;
        background: #FF6B9D;
    }

    .custom-cursor.is-text .cursor-ring {
        opacity: 0;
    }

    /* Sparkle trail (kayan yıldız izi) */
    .cursor-trail-container {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 99998;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .cursor-spark {
        position: absolute;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: radial-gradient(circle, #FFB84D 0%, #FF6B9D 70%, transparent 100%);
        pointer-events: none;
        animation: spark-fade 0.8s ease-out forwards;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 8px rgba(255, 184, 77, 0.7);
    }

    @keyframes spark-fade {
        0% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
        100% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
    }

    /* Dark mode - cursor renkleri biraz daha parlak */
    body[data-theme="dark"] .cursor-dot {
        background: #FFB3CC;
        box-shadow: 0 0 16px rgba(255, 143, 182, 0.9);
    }

    body[data-theme="dark"] .cursor-ring {
        border-color: rgba(196, 181, 253, 0.6);
    }
}

/* Tablet/mobile - custom cursor devre dışı */
@media (hover: none), (pointer: coarse), (max-width: 991px) {
    .custom-cursor, .cursor-trail-container {
        display: none !important;
    }
    body {
        cursor: auto;
    }
}

/* ==========================================================================
   MOBILE NAV - Ön Kayıt buton conditional görünüm
   Desktop: header'da görünür, mobile menü içinde gizli
   Mobile: header'da gizli, mobile menü içinde görünür
   ========================================================================== */

/* Desktop'ta mobile cta gizli */
.mobile-cta-li { display: none; }

@media (max-width: 991px) {
    /* Mobile'da header'daki Ön Kayıt gizle */
    .nav-cta-desktop { display: none !important; }

    /* Mobile menü içindeki Ön Kayıt göster */
    .mobile-cta-li { display: block; margin-top: 16px; }

    .nav-cta-mobile {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        font-size: 1rem !important;
        background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%) !important;
        color: white !important;
        border-radius: 100px;
        box-shadow: 0 8px 20px rgba(255, 107, 157, 0.35);
    }
}

/* Çok küçük ekran - 480px altı */
@media (max-width: 480px) {
    .theme-toggle {
        width: 36px;
        height: 36px;
        margin: 0 4px 0 0;
    }
    .theme-toggle svg { width: 16px; height: 16px; }
    .header-inner { gap: 8px; padding: 14px 0; }
    .logo-img { height: 38px; }
}

/* ==========================================================================
   FOUNDER MESAJI - Mobile düzen (üstte görsel, altta yazı)
   ========================================================================== */
@media (max-width: 991px) {
    .founder-section {
        padding: 50px 0;
    }

    .founder-section::before,
    .founder-section::after {
        width: 200px;
        height: 200px;
        opacity: 0.25;
    }

    .founder-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        align-items: stretch;
    }

    /* DOM sırası: video önce, content sonra — bu zaten doğru */
    .founder-video-wrap {
        order: 1;
    }

    .founder-content {
        order: 2;
        padding: 0;
        text-align: center;
    }

    .founder-video {
        border: 4px solid white;
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .founder-video-play {
        width: 64px;
        height: 64px;
    }

    .founder-tag {
        margin: 0 auto;
    }

    .founder-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    .founder-message {
        font-size: 0.95rem;
        line-height: 1.6;
        padding: 16px 18px !important;
        margin: 16px 0 !important;
    }

    .founder-message::before {
        display: none !important;
    }

    .founder-signature {
        justify-content: center;
        margin-top: 16px;
    }
}

@media (max-width: 640px) {
    .founder-section {
        padding: 36px 0;
    }
    .founder-title {
        font-size: 1.3rem !important;
    }
    .founder-message {
        font-size: 0.9rem;
        padding: 14px 16px !important;
    }
    .founder-sig-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .founder-sig-name {
        font-size: 0.95rem;
    }
    .founder-sig-role {
        font-size: 0.78rem;
    }
}

/* Dark mode founder background */
body[data-theme="dark"] .founder-section {
    background: transparent;
}

body[data-theme="dark"] .founder-video {
    border-color: var(--dark-border-strong);
}

body[data-theme="dark"] .founder-tag {
    background: rgba(255, 107, 157, 0.15);
    color: #FFB3CC;
}

body[data-theme="dark"] .founder-message {
    color: var(--dark-text-muted);
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--dark-border);
}

body[data-theme="dark"] .founder-sig-name {
    color: var(--dark-text);
}

body[data-theme="dark"] .founder-sig-role {
    color: var(--dark-text-muted);
}

/* ==========================================================================
   HERO COLLAGE — Mobile'da 2x2 grid (asimetrik absolute pozisyon yerine)
   Görseldeki "uzun beyaz çubuklar" sorununu çözer
   ========================================================================== */
@media (max-width: 991px) {
    .hero-collage-grid {
        height: auto !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 12px;
        aspect-ratio: 1.4 / 1;
        margin: 0 auto !important;
    }

    .hero-collage-grid .collage-img {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        height: 100% !important;
        transform: none !important;
        animation: none !important;
        border-width: 4px !important;
        border-radius: 16px;
    }

    .hero-collage-grid .collage-img-1 { grid-column: 1; grid-row: 1; }
    .hero-collage-grid .collage-img-2 { grid-column: 2; grid-row: 1; }
    .hero-collage-grid .collage-img-3 { grid-column: 1; grid-row: 2; }
    .hero-collage-grid .collage-img-4 { grid-column: 2; grid-row: 2; }
}

@media (max-width: 640px) {
    .hero-collage-grid {
        aspect-ratio: 1.2 / 1;
        gap: 8px;
    }
    .hero-collage-grid .collage-img {
        border-width: 3px !important;
        border-radius: 12px;
    }
}

/* Dark mode collage border'lar daha az belirgin olsun */
body[data-theme="dark"] .collage-img {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================================
   İLETİŞİM SAYFASI — Modern Tarz Tasarım
   ========================================================================== */

/* === HERO === */
.contact-hero {
    position: relative;
    padding: 100px 0 80px;
    background:
        radial-gradient(ellipse 60% 50% at 30% 30%, rgba(255, 107, 157, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 75% 60%, rgba(123, 97, 255, 0.14) 0%, transparent 70%),
        radial-gradient(ellipse 45% 60% at 20% 90%, rgba(255, 184, 77, 0.12) 0%, transparent 70%),
        linear-gradient(180deg, #FFFCFA 0%, #FFF8F3 100%);
    overflow: hidden;
}

body[data-theme="dark"] .contact-hero {
    background: transparent;
}

.contact-hero-spotlight {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.contact-spot-1 {
    width: 500px; height: 500px;
    top: -150px; left: -100px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.30) 0%, transparent 70%);
    animation: spotlight-drift-1 20s ease-in-out infinite;
}

.contact-spot-2 {
    width: 450px; height: 450px;
    top: 20%; right: -120px;
    background: radial-gradient(circle, rgba(255, 184, 77, 0.28) 0%, transparent 70%);
    animation: spotlight-drift-2 24s ease-in-out infinite;
}

.contact-spot-3 {
    width: 400px; height: 400px;
    bottom: -120px; left: 35%;
    background: radial-gradient(circle, rgba(123, 97, 255, 0.24) 0%, transparent 70%);
    animation: spotlight-drift-3 26s ease-in-out infinite;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 157, 0.2);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #FF6B9D;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.08);
}

.contact-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #06D6A0;
    box-shadow: 0 0 0 3px rgba(6, 214, 160, 0.2);
    animation: contact-dot-pulse 1.6s ease infinite;
}

@keyframes contact-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(6, 214, 160, 0); }
}

body[data-theme="dark"] .contact-hero-badge {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 107, 157, 0.3);
    color: #FFB3CC;
}

.contact-hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
}

.contact-hero-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="dark"] .contact-hero-title {
    color: var(--dark-text);
}

.contact-hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

body[data-theme="dark"] .contact-hero-sub {
    color: var(--dark-text-muted);
}

/* Hızlı eylem butonları */
.contact-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 740px;
    margin: 0 auto;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: 18px;
    background: white;
    border: 1.5px solid var(--border);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 220px;
    box-shadow: 0 4px 14px rgba(31, 27, 61, 0.05);
}

.quick-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(31, 27, 61, 0.12);
    border-color: transparent;
}

body[data-theme="dark"] .quick-action {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--dark-border);
    backdrop-filter: blur(20px);
}

.quick-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.quick-action:hover .quick-icon {
    transform: scale(1.1) rotate(-5deg);
}

.quick-whatsapp .quick-icon { background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); }
.quick-phone .quick-icon    { background: linear-gradient(135deg, #FF6B9D 0%, #C81B6E 100%); }
.quick-map .quick-icon      { background: linear-gradient(135deg, #FFB84D 0%, #F09D2C 100%); }

.quick-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.quick-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.quick-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

body[data-theme="dark"] .quick-label { color: var(--dark-text-muted); }
body[data-theme="dark"] .quick-value { color: var(--dark-text); }

/* === ANA İÇERİK (2 sütun) === */
.contact-main-section {
    padding: 80px 0;
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

/* Sol: İletişim kartları */
.contact-cards-header {
    margin-bottom: 28px;
}

.contact-cards-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 14px 0 0;
}

.contact-cards-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D 0%, #7B61FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="dark"] .contact-cards-title { color: var(--dark-text); }

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    margin-bottom: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-bg);
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-info-card > * { position: relative; z-index: 1; }

.contact-info-card:hover {
    transform: translateX(6px);
    border-color: var(--card-color);
    box-shadow: 0 14px 36px rgba(31, 27, 61, 0.08);
}

.contact-info-card:hover::before { opacity: 1; }

.contact-info-card-static {
    cursor: default;
}

.contact-info-card-static:hover {
    transform: none;
    border-color: var(--card-color);
}

body[data-theme="dark"] .contact-info-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--dark-border);
    backdrop-filter: blur(20px);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--card-bg);
    color: var(--card-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.08) rotate(-4deg);
}

.contact-info-body {
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.contact-info-value {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.3;
}

.contact-info-value-multiline {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.45;
}

.contact-info-extra {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

body[data-theme="dark"] .contact-info-label { color: var(--dark-text-muted); }
body[data-theme="dark"] .contact-info-value,
body[data-theme="dark"] .contact-info-value-multiline { color: var(--dark-text); }
body[data-theme="dark"] .contact-info-extra { color: var(--dark-text-muted); }

.contact-info-arrow {
    flex-shrink: 0;
    color: var(--card-color);
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.contact-info-card:hover .contact-info-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Sosyal medya pill'leri */
.contact-socials {
    margin-top: 24px;
    padding: 20px 22px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 18px;
}

body[data-theme="dark"] .contact-socials {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--dark-border);
    backdrop-filter: blur(20px);
}

.contact-socials-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

body[data-theme="dark"] .contact-socials-label { color: var(--dark-text-muted); }

.contact-socials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    transition: all 0.25s ease;
}

.social-pill:hover {
    transform: translateY(-2px);
    color: white;
}

.social-instagram {
    background: linear-gradient(135deg, #FEDA75 0%, #FA7E1E 25%, #D62976 50%, #962FBF 75%, #4F5BD5 100%);
    box-shadow: 0 6px 18px rgba(214, 41, 118, 0.3);
}

.social-instagram:hover { box-shadow: 0 10px 24px rgba(214, 41, 118, 0.45); }

.social-facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0d5dba 100%);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.3);
}

.social-facebook:hover { box-shadow: 0 10px 24px rgba(24, 119, 242, 0.45); }

.social-youtube {
    background: linear-gradient(135deg, #FF0000 0%, #C4302B 100%);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.3);
}

.social-youtube:hover { box-shadow: 0 10px 24px rgba(255, 0, 0, 0.45); }

/* === Sağ: Form kart === */
.contact-form-wrap {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 24px 60px rgba(31, 27, 61, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%);
}

body[data-theme="dark"] .contact-form-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--dark-border);
    backdrop-filter: blur(30px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.contact-form-header { margin-bottom: 26px; }

.contact-form-tag {
    display: inline-block;
    font-size: 0.74rem;
    color: #7B61FF;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: rgba(123, 97, 255, 0.08);
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 10px;
}

body[data-theme="dark"] .contact-form-tag {
    background: rgba(123, 97, 255, 0.18);
    color: #C4B5FD;
}

.contact-form-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.5rem, 2.6vw, 1.9rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 8px;
    line-height: 1.2;
}

body[data-theme="dark"] .contact-form-title { color: var(--dark-text); }

.contact-form-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

body[data-theme="dark"] .contact-form-sub { color: var(--dark-text-muted); }

/* Alert */
.contact-alert {
    display: flex;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    margin-bottom: 24px;
    animation: alert-slide-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes alert-slide-in {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-alert-success {
    background: linear-gradient(135deg, rgba(6, 214, 160, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border: 1.5px solid rgba(6, 214, 160, 0.3);
    color: #047857;
}

.contact-alert-error {
    background: rgba(255, 107, 157, 0.08);
    border: 1.5px solid rgba(255, 107, 157, 0.3);
    color: #B91C5C;
}

body[data-theme="dark"] .contact-alert-success { color: #6EE7B7; }
body[data-theme="dark"] .contact-alert-error { color: #F9A8D4; }

.contact-alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-alert-success .contact-alert-icon { color: #06D6A0; }
.contact-alert-error .contact-alert-icon { color: #FF6B9D; }

body[data-theme="dark"] .contact-alert-icon {
    background: rgba(255, 255, 255, 0.06);
}

.contact-alert-body {
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-alert-body strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

/* Form fields - floating label */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.contact-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-field {
    position: relative;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 20px 16px 8px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    background: var(--bg-cream);
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
    outline: none;
}

.contact-field textarea {
    padding: 22px 16px 10px;
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #FF6B9D;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.12);
}

body[data-theme="dark"] .contact-field input,
body[data-theme="dark"] .contact-field textarea {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--dark-border);
    color: var(--dark-text);
}

body[data-theme="dark"] .contact-field input:focus,
body[data-theme="dark"] .contact-field textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #FF6B9D;
}

.contact-field label {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.2s ease;
    background: transparent;
    padding: 0;
}

.contact-field label span {
    color: #FF6B9D;
    font-weight: 700;
}

.contact-field input:focus + label,
.contact-field input:not(:placeholder-shown) + label,
.contact-field textarea:focus + label,
.contact-field textarea:not(:placeholder-shown) + label {
    top: 6px;
    font-size: 0.72rem;
    color: #FF6B9D;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body[data-theme="dark"] .contact-field label { color: var(--dark-text-muted); }

/* Submit buton */
.contact-submit-btn {
    margin-top: 8px;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 50%, #7B61FF 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 100px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 14px 36px rgba(255, 107, 157, 0.35);
    animation: contactGradient 6s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes contactGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(255, 107, 157, 0.5);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-submit-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.contact-submit-btn:hover .contact-submit-icon {
    transform: translateX(6px);
}

.contact-form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin: 14px 0 0;
}

body[data-theme="dark"] .contact-form-note { color: var(--dark-text-muted); }

/* === HARİTA SECTION === */
.contact-map-section {
    padding: 0 0 100px;
    position: relative;
}

.contact-map-card {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    border-radius: 28px;
    overflow: hidden;
    background: white;
    border: 1.5px solid var(--border);
    box-shadow: 0 24px 60px rgba(31, 27, 61, 0.08);
    min-height: 480px;
}

body[data-theme="dark"] .contact-map-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--dark-border);
    backdrop-filter: blur(30px);
}

.contact-map-info {
    padding: 50px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map-tag {
    display: inline-block;
    font-size: 0.74rem;
    color: #FF6B9D;
    font-weight: 800;
    letter-spacing: 0.1em;
    background: rgba(255, 107, 157, 0.1);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
    width: fit-content;
}

body[data-theme="dark"] .contact-map-tag {
    background: rgba(255, 107, 157, 0.18);
    color: #FFB3CC;
}

.contact-map-title {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.15;
}

.contact-map-title em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="dark"] .contact-map-title { color: var(--dark-text); }

.contact-map-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 24px;
}

body[data-theme="dark"] .contact-map-desc { color: var(--dark-text-muted); }

.contact-map-address-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(255, 184, 77, 0.08) 100%);
    border: 1px solid rgba(255, 107, 157, 0.15);
    border-radius: 14px;
    margin-bottom: 24px;
}

body[data-theme="dark"] .contact-map-address-card {
    background: rgba(255, 107, 157, 0.08);
    border-color: rgba(255, 107, 157, 0.2);
}

.contact-map-address-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.15);
}

body[data-theme="dark"] .contact-map-address-icon {
    background: rgba(255, 255, 255, 0.1);
}

.contact-map-address-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

body[data-theme="dark"] .contact-map-address-text { color: var(--dark-text); }

.contact-map-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-map-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-map-btn-primary {
    background: linear-gradient(135deg, #FF6B9D 0%, #FFB84D 100%);
    color: white;
    box-shadow: 0 10px 24px rgba(255, 107, 157, 0.3);
}

.contact-map-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255, 107, 157, 0.45);
    color: white;
}

.contact-map-btn-secondary {
    background: white;
    color: #25D366;
    border: 1.5px solid rgba(37, 211, 102, 0.25);
}

.contact-map-btn-secondary:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

body[data-theme="dark"] .contact-map-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #6EE7B7;
}

.contact-map-iframe-wrap {
    position: relative;
    min-height: 480px;
    background: #f5f0fa;
}

.contact-map-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
    .contact-hero { padding: 60px 0 50px; }
    .contact-quick-actions { flex-direction: column; align-items: stretch; }
    .quick-action { min-width: 0; }

    .contact-main-section { padding: 50px 0; }
    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
    .contact-form-wrap { position: static; }
    .contact-form-card { padding: 28px 22px; border-radius: 22px; }

    .contact-map-section { padding: 0 0 50px; }
    .contact-map-card { grid-template-columns: 1fr; }
    .contact-map-info { padding: 32px 24px; }
    .contact-map-iframe-wrap { min-height: 320px; }
}

@media (max-width: 640px) {
    .contact-hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .contact-field-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 22px 18px; }
    .contact-info-card { padding: 14px 16px; gap: 14px; }
    .contact-info-icon { width: 44px; height: 44px; }
    .contact-info-arrow { display: none; }
    .contact-info-card:hover { transform: none; }
}

/* ==========================================================================
   GALERİ LIGHTBOX + SLIDER
   Fotoğrafa tıkla → tam ekran modal + slider gezinme
   ========================================================================== */

/* Gallery item üzerinde büyüteç ikonu */
.gallery-item::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23FF6B9D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    z-index: 3;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* === Lightbox ana kapsayıcı === */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(8, 6, 20, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 60px 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
    animation: gl-fadein 0.3s ease forwards;
}

@keyframes gl-fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Close button */
.gl-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gl-close:hover {
    background: linear-gradient(135deg, #FF6B9D 0%, #C81B6E 100%);
    border-color: transparent;
    transform: scale(1.08) rotate(90deg);
    box-shadow: 0 10px 24px rgba(255, 107, 157, 0.5);
}

/* Nav buttons (sol/sağ) */
.gl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    z-index: 10;
}

.gl-nav:hover {
    background: linear-gradient(135deg, #FF6B9D 0%, #7B61FF 100%);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 28px rgba(255, 107, 157, 0.45);
}

.gl-nav:active { transform: translateY(-50%) scale(0.95); }

.gl-prev { left: 24px; }
.gl-next { right: 24px; }

/* Stage (görsel kapsayıcı) */
.gl-stage {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 0;
}

.gl-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gl-img.loaded {
    opacity: 1;
    transform: scale(1);
}

/* Loader */
.gl-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s;
}

.gl-loader.show {
    opacity: 1;
    visibility: visible;
}

.gl-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top-color: #FF6B9D;
    border-radius: 50%;
    animation: gl-spin 0.8s linear infinite;
}

@keyframes gl-spin {
    to { transform: rotate(360deg); }
}

/* Caption + counter */
.gl-bottom {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    max-width: 900px;
    padding: 0 4px;
}

.gl-caption {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
    flex: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gl-counter {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 14px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
    flex-shrink: 0;
}

/* Thumb stripi (alt) */
.gl-thumbs {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    max-width: 100%;
    padding: 6px 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    width: 100%;
    max-width: 900px;
}

.gl-thumbs::-webkit-scrollbar { height: 6px; }
.gl-thumbs::-webkit-scrollbar-track { background: transparent; }
.gl-thumbs::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); border-radius: 10px; }

.gl-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s;
    opacity: 0.5;
}

.gl-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gl-thumb:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.gl-thumb.active {
    opacity: 1;
    border-color: #FF6B9D;
    box-shadow: 0 4px 14px rgba(255, 107, 157, 0.5);
}

/* === Mobile === */
@media (max-width: 720px) {
    .gallery-lightbox {
        padding: 50px 8px 16px;
    }

    .gl-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .gl-nav {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.55);
    }

    .gl-prev { left: 8px; }
    .gl-next { right: 8px; }

    .gl-bottom {
        margin-top: 10px;
        gap: 8px;
    }

    .gl-caption { font-size: 0.85rem; }
    .gl-counter { font-size: 0.78rem; padding: 4px 10px; }

    .gl-thumb {
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .gl-thumbs { gap: 6px; }
    .gl-thumb { width: 44px; height: 44px; }
}

/* ==========================================================================
   KURUCU - Küçük "Videoyu İzle" pill butonu
   Görsel üzerinde, sağ üstte konumlanır. Tıklayınca video açılır.
   ========================================================================== */
.founder-video.has-video {
    cursor: pointer;
}

.founder-video-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C81B6E 100%);
    color: white;
    padding: 10px 18px 10px 14px;
    border: none;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(255, 107, 157, 0.45);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 5;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.founder-video-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 16px 32px rgba(255, 107, 157, 0.6);
}

.founder-video-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.fvb-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.fvb-icon svg {
    width: 14px;
    height: 14px;
    margin-left: 2px; /* play ikonu optik merkezleme */
}

.fvb-text {
    letter-spacing: 0.01em;
}

/* Pulse efekti dikkat çeksin */
.founder-video-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, #FF6B9D 0%, #C81B6E 100%);
    opacity: 0;
    z-index: -1;
    animation: fvb-pulse 2.4s ease-out infinite;
}

@keyframes fvb-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.25); opacity: 0; }
}

/* Mobile - buton küçülür */
@media (max-width: 720px) {
    .founder-video-btn {
        bottom: 12px;
        right: 12px;
        padding: 8px 14px 8px 10px;
        font-size: 0.78rem;
    }
    .fvb-icon {
        width: 22px;
        height: 22px;
    }
    .fvb-icon svg {
        width: 11px;
        height: 11px;
    }
}

@media (max-width: 480px) {
    .founder-video-btn .fvb-text {
        display: none; /* Çok küçük ekranda sadece play ikonu */
    }
    .founder-video-btn {
        padding: 10px;
        border-radius: 50%;
    }
    .fvb-icon { background: transparent; }
}

/* Dark mode */
body[data-theme="dark"] .founder-video-btn {
    box-shadow: 0 10px 24px rgba(255, 107, 157, 0.6);
}

/* ==========================================================================
   KURUCU MESAJI v2 — Dikey portre foto + zarif video butonu
   ========================================================================== */

/* Grid - dikey foto için layout */
.founder-section .founder-grid {
    grid-template-columns: minmax(300px, 0.85fr) 1.25fr;
    gap: 70px;
    align-items: center;
}

/* Foto kapsayıcı */
.founder-photo-wrap {
    position: relative;
}

.founder-photo-frame {
    position: relative;
    border-radius: 28px;
    overflow: visible; /* play butonu dışarı taşsın */
    z-index: 2;
    max-width: 420px;
    margin: 0 auto;
}

/* Görsel kendisi - rounded inner */
.founder-photo-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    box-shadow:
        0 30px 70px rgba(31, 27, 61, 0.18),
        0 8px 24px rgba(31, 27, 61, 0.08);
    border: 6px solid white;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.founder-photo-frame.is-portrait img {
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top; /* yüzü hizalı tut */
}

.founder-photo-frame.is-landscape img {
    aspect-ratio: 4/5;
    object-fit: cover;
}

.founder-photo-frame:hover img {
    transform: translateY(-4px);
}

/* Dark mode foto border */
body[data-theme="dark"] .founder-photo-frame img {
    border-color: rgba(255, 255, 255, 0.06);
}

/* Süs decor şekiller */
.founder-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(6px);
}

.founder-deco-1 {
    width: 140px;
    height: 140px;
    top: -28px;
    right: -32px;
    background: linear-gradient(135deg, #FFB84D 0%, #FF6B9D 100%);
    opacity: 0.55;
    animation: founder-deco-pulse 5s ease-in-out infinite;
}

.founder-deco-2 {
    width: 180px;
    height: 180px;
    bottom: -40px;
    left: -42px;
    background: linear-gradient(135deg, #7B61FF 0%, #4ECDC4 100%);
    opacity: 0.42;
    animation: founder-deco-pulse 7s ease-in-out infinite reverse;
}

@keyframes founder-deco-pulse {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.12) translate(8px, -8px); }
}

body[data-theme="dark"] .founder-deco {
    opacity: 0.25;
}

/* ===== ZARIF VIDEO BUTONU ===== */
.founder-play-btn {
    position: absolute;
    bottom: -20px;
    right: -16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #1F1B3D;
    padding: 10px 22px 10px 10px;
    border: none;
    border-radius: 100px;
    font-family: inherit;
    cursor: pointer;
    box-shadow:
        0 18px 40px rgba(31, 27, 61, 0.18),
        0 4px 12px rgba(255, 107, 157, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    text-align: left;
}

.founder-play-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
        0 24px 50px rgba(31, 27, 61, 0.22),
        0 8px 20px rgba(255, 107, 157, 0.3);
}

.founder-play-btn:active {
    transform: translateY(-1px) scale(1.01);
}

/* Play ikonu - daire içinde */
.fpb-icon-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fpb-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B9D 0%, #C81B6E 100%);
    box-shadow: 0 8px 18px rgba(255, 107, 157, 0.45);
}

/* Pulse ring */
.fpb-icon-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: inherit;
    opacity: 0.6;
    animation: fpb-ring 2s ease-out infinite;
    z-index: -1;
}

@keyframes fpb-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.8); opacity: 0; }
}

.fpb-icon {
    position: relative;
    width: 16px;
    height: 16px;
    color: white;
    margin-left: 2px;
    z-index: 1;
}

/* Buton metni - 2 satır */
.fpb-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.fpb-text-top {
    font-size: 0.72rem;
    color: #FF6B9D;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fpb-text-main {
    font-size: 1.05rem;
    color: #1F1B3D;
    font-weight: 800;
    letter-spacing: -0.01em;
}

body[data-theme="dark"] .founder-play-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

body[data-theme="dark"] .fpb-text-main {
    color: var(--dark-text);
}

/* ===== Sağ taraf içerik ===== */
.founder-section .founder-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.founder-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF6B9D;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.2);
    animation: founder-dot-pulse 1.8s ease infinite;
}

@keyframes founder-dot-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 157, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(255, 107, 157, 0); }
}

/* Mesaj metni - satır sonlarını koru */
.founder-section .founder-message {
    line-height: 1.75;
    font-size: 1rem;
}

.founder-section .founder-message br + br {
    display: block;
    content: '';
    margin-top: 14px;
}

/* ===== Mobile ===== */
@media (max-width: 991px) {
    .founder-section .founder-grid {
        grid-template-columns: 1fr !important;
        gap: 60px !important;
    }
    .founder-photo-wrap { order: 1; }
    .founder-content { order: 2; }

    .founder-photo-frame {
        max-width: 340px;
    }

    .founder-deco-1 {
        width: 100px;
        height: 100px;
        top: -20px;
        right: -22px;
    }

    .founder-deco-2 {
        width: 130px;
        height: 130px;
        bottom: -32px;
        left: -28px;
    }

    .founder-play-btn {
        right: 50%;
        transform: translateX(50%);
        bottom: -24px;
    }

    .founder-play-btn:hover {
        transform: translateX(50%) translateY(-3px) scale(1.04);
    }
}

@media (max-width: 480px) {
    .founder-photo-frame {
        max-width: 280px;
    }
    .founder-section .founder-grid { gap: 50px !important; }

    .founder-play-btn {
        padding: 8px 18px 8px 8px;
        gap: 10px;
    }
    .fpb-icon-wrap {
        width: 42px;
        height: 42px;
    }
    .fpb-icon {
        width: 14px;
        height: 14px;
    }
    .fpb-text-top { font-size: 0.66rem; }
    .fpb-text-main { font-size: 0.95rem; }
}

/* ==========================================================================
   DARK MODE - PAGE HEADER + GENEL SAYFA İÇERİĞİ DÜZELTMELERİ
   ========================================================================== */

/* Page header dark mode - daha koyu arka plan, beyaz metinler */
body[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, rgba(31, 27, 61, 0.4) 0%, rgba(20, 17, 40, 0.6) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .page-header::before {
    background: radial-gradient(circle, rgba(255, 107, 157, 0.15) 0%, transparent 70%);
}

body[data-theme="dark"] .page-header h1 {
    color: #ffffff;
}

body[data-theme="dark"] .page-header .section-subtitle,
body[data-theme="dark"] .page-header p {
    color: rgba(255, 255, 255, 0.7);
}

body[data-theme="dark"] .breadcrumb {
    color: rgba(255, 255, 255, 0.5);
}

body[data-theme="dark"] .breadcrumb a {
    color: #FF6B9D;
}

body[data-theme="dark"] .breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

/* page-content (sayfa.php) dark mode */
body[data-theme="dark"] .page-content {
    color: rgba(255, 255, 255, 0.85);
}

body[data-theme="dark"] .page-content p {
    color: rgba(255, 255, 255, 0.75);
}

body[data-theme="dark"] .page-content h2,
body[data-theme="dark"] .page-content h3,
body[data-theme="dark"] .page-content strong {
    color: #ffffff;
}

body[data-theme="dark"] .page-content ul,
body[data-theme="dark"] .page-content ol {
    color: rgba(255, 255, 255, 0.75);
}

body[data-theme="dark"] .page-content a {
    color: #FF6B9D;
}

/* Genel section başlıkları dark mode'da */
body[data-theme="dark"] h1,
body[data-theme="dark"] h2.section-title,
body[data-theme="dark"] .section-title {
    color: #ffffff;
}

body[data-theme="dark"] .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
}

/* Gradient text dark mode'da daha parlak */
body[data-theme="dark"] .gradient-text {
    background: linear-gradient(135deg, #FF6B9D 0%, #C084FC 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: brightness(1.15);
}

/* ==========================================================================
   ÖZELLİK KARTI - HIGHLIGHTED (özel vurgulu)
   "Haftanın 5 tam günü İngilizce" gibi öne çıkan özellikler için
   ========================================================================== */
.feature-card.is-highlighted {
    position: relative;
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.08) 0%, rgba(123, 97, 255, 0.06) 100%);
    border: 2px solid #FF6B9D;
    box-shadow: 0 20px 50px rgba(255, 107, 157, 0.25);
    overflow: visible;
}

.feature-card.is-highlighted::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    background: linear-gradient(135deg, #FF6B9D 0%, #7B61FF 50%, #FFB84D 100%);
    z-index: -1;
    opacity: 0.4;
    filter: blur(12px);
    animation: highlight-glow 3s ease-in-out infinite alternate;
}

@keyframes highlight-glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.55; }
}

.feature-card.is-highlighted .feature-title {
    font-size: 1.55rem;
    background: linear-gradient(135deg, #FF6B9D 0%, #7B61FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    line-height: 1.2;
}

.feature-card.is-highlighted .feature-desc {
    font-size: 1.02rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FFB84D 0%, #FF6B9D 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.45);
    z-index: 2;
    animation: badge-pop 2.5s ease-in-out infinite;
}

@keyframes badge-pop {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(-2deg); }
}

/* Mobile - highlighted card tek kolon kalsın */
@media (max-width: 768px) {
    .feature-card.is-highlighted {
        grid-column: span 1;
    }
    .feature-card.is-highlighted .feature-title {
        font-size: 1.3rem;
    }
    .feature-card.is-highlighted .feature-desc {
        font-size: 0.95rem;
    }
}

/* Dark mode */
body[data-theme="dark"] .feature-card.is-highlighted {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.12) 0%, rgba(123, 97, 255, 0.1) 100%);
    border-color: rgba(255, 107, 157, 0.7);
}

body[data-theme="dark"] .feature-card.is-highlighted .feature-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile dropdown - SVG ve metin tıklamayı engellemesin */
@media (max-width: 992px) {
    .dropdown-toggle {
        pointer-events: auto !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    .dropdown-toggle .caret {
        pointer-events: none;
    }
}

/* KESIN ÇÖZÜM - Mobile menü açıkken overlay panelin önüne geçmesin */
body.menu-open .nav-overlay {
    z-index: 9990 !important;
    pointer-events: auto !important;
}

body.menu-open #navLinks,
body.menu-open .nav-links {
    z-index: 99999 !important;
    pointer-events: auto !important;
}

body.menu-open #navLinks * {
    pointer-events: auto;
}

body.menu-open #navLinks .caret {
    pointer-events: none;
}

/* ==========================================================================
   GÜVENLİK BELGELERİ - frontend (kategori grid, ikonsuz modern)
   ========================================================================== */
.safety-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.safety-cat-link {
    position: relative;
    background: white;
    border-radius: 18px;
    padding: 28px 28px 30px;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid rgba(31, 27, 61, 0.06);
    box-shadow: 0 6px 18px rgba(31, 27, 61, 0.04);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Üst ince renk çizgisi (kategori renk ipucu) */
.safety-cat-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cat-color);
    opacity: 0.9;
}

.safety-cat-link:hover {
    transform: translateY(-4px);
    border-color: var(--cat-color);
    box-shadow: 0 18px 40px rgba(31, 27, 61, 0.1);
    color: var(--text-dark);
}

.safety-cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.safety-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--cat-color);
    background: color-mix(in srgb, var(--cat-color) 10%, transparent);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.safety-cat-count {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.safety-cat-link h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.005em;
}

.safety-cat-link p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
}

.safety-cat-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cat-color);
    font-weight: 700;
    font-size: 0.88rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    align-self: flex-start;
    transition: gap 0.3s, border-bottom-color 0.3s;
}

.safety-cat-link:hover .safety-cat-cta {
    border-bottom-color: var(--cat-color);
    gap: 10px;
}

/* Belge kartları (kategori detay sayfası) */
.safety-doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.safety-doc-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid #f0ebf8;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(31, 27, 61, 0.05);
}

.safety-doc-card:hover {
    transform: translateY(-4px);
    border-color: #FF6B9D;
    box-shadow: 0 18px 40px rgba(255, 107, 157, 0.15);
}

.safety-doc-thumb {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #FFF5F8 0%, #F5F0FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.safety-doc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.safety-doc-pdf-icon {
    display: none;
}

.safety-doc-thumb-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FF6B9D;
}

.safety-doc-thumb-ext {
    background: linear-gradient(135deg, #FF6B9D 0%, #7B61FF 100%);
    color: white;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

.safety-doc-thumb-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.safety-doc-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF6B9D;
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap 0.3s;
}

.safety-doc-card:hover .safety-doc-view { gap: 12px; }
    font-size: 3.4rem;
    opacity: 0.7;
}

.safety-doc-body { padding: 16px 18px 18px; }

.safety-doc-body h4 {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 8px;
}

.safety-doc-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.78rem;
}

.safety-doc-format {
    background: linear-gradient(135deg, #FF6B9D, #7B61FF);
    color: white;
    padding: 3px 10px;
    border-radius: 6px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.safety-doc-time { color: var(--text-muted); }

/* Dark mode */
body[data-theme="dark"] .safety-cat-link,
body[data-theme="dark"] .safety-doc-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.92);
}

body[data-theme="dark"] .safety-cat-link h3,
body[data-theme="dark"] .safety-doc-body h4 { color: white; }

body[data-theme="dark"] .safety-cat-link p { color: rgba(255,255,255,0.7); }

body[data-theme="dark"] .safety-doc-thumb {
    background: linear-gradient(135deg, rgba(255,107,157,0.1) 0%, rgba(123,97,255,0.1) 100%);
}

@media (max-width: 720px) {
    .safety-cat-link { padding: 24px 22px 26px; }
    .safety-cat-link h3 { font-size: 1.1rem; }
}

/* ==========================================================================
   ANASAYFA - SADE GÜVENLİK VURGU (Deprem + Elektrik)
   Okulum Temiz tarzı, ince yatay, ikonsuz, kompakt
   ========================================================================== */
.safety-spot-section {
    padding: 36px 0 12px;
    background: transparent;
}

.safety-spot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Kart - Okulum Temiz tarzı yatay */
.safety-spot-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(31, 27, 61, 0.06);
    box-shadow: 0 6px 18px rgba(31, 27, 61, 0.04);
    text-decoration: none;
    color: var(--text-dark);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s;
}

/* Sol kenar aksent çubuğu (renk ipucu) */
.safety-spot-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--acc-color, #FF6B9D);
    border-radius: 0 4px 4px 0;
}

.safety-spot-row[data-acc="pink"] { --acc-color: #FF6B9D; --acc-bg: rgba(255, 107, 157, 0.08); }
.safety-spot-row[data-acc="orange"] { --acc-color: #F59E0B; --acc-bg: rgba(245, 158, 11, 0.08); }

.safety-spot-row:hover {
    transform: translateY(-3px);
    border-color: var(--acc-color);
    box-shadow: 0 16px 36px rgba(31, 27, 61, 0.08);
    color: var(--text-dark);
}

.safety-spot-info {
    flex: 1;
    min-width: 0;
}

.safety-spot-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--acc-bg);
    color: var(--acc-color);
    padding: 4px 11px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.safety-spot-row h3 {
    font-size: 1.12rem;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.005em;
}

.safety-spot-row h3 em {
    font-style: italic;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    color: var(--acc-color);
}

.safety-spot-row p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}

.safety-spot-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--acc-color);
    color: white;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    transition: gap 0.3s, transform 0.3s;
}

.safety-spot-row:hover .safety-spot-btn {
    gap: 12px;
    transform: scale(1.04);
}

/* Mobile */
@media (max-width: 820px) {
    .safety-spot-grid { grid-template-columns: 1fr; gap: 12px; }
    .safety-spot-row {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 20px 22px;
    }
    .safety-spot-btn {
        justify-content: center;
        padding: 12px 18px;
    }
    .safety-spot-row h3 { font-size: 1.05rem; }
    .safety-spot-row p { font-size: 0.86rem; }
}

/* Dark mode */
body[data-theme="dark"] .safety-spot-row {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
}

body[data-theme="dark"] .safety-spot-row h3 { color: white; }

body[data-theme="dark"] .safety-spot-row p { color: rgba(255, 255, 255, 0.7); }

body[data-theme="dark"] .safety-spot-row:hover {
    background: rgba(255, 255, 255, 0.06);
    color: white;
}
