/* ====================================
   Pashalitsa - Greek-English Kindergarten
   Logo-derived palette:
     Red    #DC2626 (ladybug body)
     Black  #1F1F1F (spots, outline)
     Cream  #FCE9A8 (face)
     Sky    #DCEEFE (background)
   ==================================== */

:root {
    --c-red: #dc2626;
    --c-red-dark: #b91c1c;
    --c-red-light: #fee2e2;
    --c-yellow: #fbbf24;
    --c-yellow-soft: #fef3c7;
    --c-cream: #fce9a8;
    --c-black: #1f1f1f;
    --c-ink: #2a2a2a;
    --c-muted: #6b7280;
    --c-sky: #dceefe;
    --c-sky-light: #ecf5ff;
    --c-bg: #fffaf5;
    --c-white: #ffffff;
    --c-border: #f0e6dc;

    --shadow-sm: 0 2px 6px rgba(31, 31, 31, 0.06);
    --shadow-md: 0 8px 24px rgba(31, 31, 31, 0.08);
    --shadow-lg: 0 20px 50px rgba(31, 31, 31, 0.12);
    --shadow-red: 0 12px 30px rgba(220, 38, 38, 0.25);

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
    --font-body: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

    --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(220, 38, 38, 0.15);
}

button, a {
    touch-action: manipulation;
}

body {
    font-family: var(--font-body);
    color: var(--c-ink);
    background: var(--c-bg);
    line-height: 1.65;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-red); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--c-black);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ====================================
   HEADER
   ==================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--c-border);
    box-shadow: var(--shadow-sm);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: transform var(--transition);
}

.brand:hover .brand-logo { transform: rotate(-8deg) scale(1.05); }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--c-red);
    letter-spacing: -0.02em;
}
.brand-sub {
    font-size: 0.78rem;
    color: var(--c-muted);
    font-weight: 600;
}

.main-nav ul {
    display: flex;
    gap: 4px;
    align-items: center;
}

.main-nav a {
    display: block;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    color: var(--c-ink);
    transition: all var(--transition);
}

.main-nav a:hover {
    background: var(--c-red-light);
    color: var(--c-red);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-switcher {
    display: flex;
    background: var(--c-sky-light);
    border-radius: var(--radius-pill);
    padding: 4px;
    gap: 2px;
}

.lang-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--c-muted);
    border-radius: var(--radius-pill);
    transition: all var(--transition);
    letter-spacing: 0.04em;
}

.lang-btn:hover { color: var(--c-red); }
.lang-btn.active {
    background: var(--c-red);
    color: white;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: var(--c-red);
    border-radius: 12px;
}

.menu-toggle span {
    width: 22px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ====================================
   HERO
   ==================================== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--c-sky-light) 0%, var(--c-sky) 60%, #fff 100%);
    overflow: hidden;
}

.hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; opacity: 0.5; }
.shape-1 { top: 10%; left: 5%; width: 100px; height: 100px; background: var(--c-red); opacity: 0.08; animation: float 12s ease-in-out infinite; }
.shape-2 { top: 60%; left: 8%; width: 60px; height: 60px; background: var(--c-yellow); opacity: 0.18; animation: float 9s ease-in-out infinite reverse; }
.shape-3 { top: 20%; right: 10%; width: 140px; height: 140px; background: var(--c-red); opacity: 0.06; animation: float 14s ease-in-out infinite; }
.shape-4 { bottom: 15%; right: 5%; width: 80px; height: 80px; background: var(--c-cream); animation: float 10s ease-in-out infinite reverse; }
.shape-5 { top: 50%; left: 50%; width: 200px; height: 200px; background: var(--c-sky); opacity: 0.4; transform: translate(-50%, -50%); }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-25px) translateX(15px); }
}

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

.hero-tag {
    display: inline-block;
    background: white;
    color: var(--c-red);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--c-red-light);
}

.hero-content h1 {
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--c-ink);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: var(--c-red);
    color: white;
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    background: var(--c-red-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(220, 38, 38, 0.35);
}

.btn-outline {
    background: white;
    color: var(--c-black);
    border-color: var(--c-black);
}
.btn-outline:hover {
    background: var(--c-black);
    color: white;
    transform: translateY(-3px);
}

.btn-block { width: 100%; }

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--c-red);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--c-muted);
    font-weight: 600;
    margin-top: 4px;
}

.hero-visual { position: relative; }

.logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    margin: 0 auto;
}

.logo-wrap::after {
    content: '';
    position: absolute;
    inset: 5%;
    border-radius: 50%;
    border: 3px dashed var(--c-red);
    opacity: 0.25;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}

.hero-logo {
    position: relative;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
    animation: bob 4s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

/* ====================================
   FEATURES
   ==================================== */
.section { padding: 100px 0; }

.features {
    background: white;
    margin-top: -40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.feature {
    text-align: center;
    padding: 32px 20px;
    background: var(--c-bg);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.feature:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-red-light);
    background: white;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-red-light);
    color: var(--c-red);
    border-radius: 20px;
    transition: transform var(--transition);
}

.feature:hover .feature-icon { transform: rotate(-8deg) scale(1.08); }

.feature-icon svg { width: 30px; height: 30px; }

.feature h3 { margin-bottom: 10px; color: var(--c-black); }
.feature p { color: var(--c-muted); font-size: 0.95rem; }

/* ====================================
   SECTION HEADS
   ==================================== */
.section-head { margin-bottom: 56px; max-width: 760px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--c-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--c-red-light);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}

.section-head h2 { margin-bottom: 16px; }
.section-sub { color: var(--c-muted); font-size: 1.1rem; }

/* ====================================
   ABOUT
   ==================================== */
.about { background: var(--c-sky-light); }

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

.about-text p {
    color: var(--c-ink);
    margin-bottom: 18px;
    font-size: 1.02rem;
}

.about-list {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.about-list li {
    position: relative;
    padding-left: 36px;
    color: var(--c-ink);
    font-weight: 600;
}

.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--c-red);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.15);
}

.about-list li::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    width: 10px;
    height: 5px;
    border-left: 2.5px solid white;
    border-bottom: 2.5px solid white;
    transform: translateY(-65%) rotate(-45deg);
}

.value-card {
    background: white;
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 32px;
    right: 32px;
    height: 8px;
    background: linear-gradient(90deg, var(--c-red), var(--c-yellow), var(--c-red));
    border-radius: 8px 8px 0 0;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--c-red);
}

.values { display: grid; gap: 18px; }

.values li {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid var(--c-border);
}
.values li:last-child { border-bottom: none; }

.values strong {
    color: var(--c-black);
    font-family: var(--font-display);
    font-size: 1rem;
}

.values span {
    color: var(--c-muted);
    font-size: 0.9rem;
}

/* ====================================
   PROGRAMS
   ==================================== */
.programs { background: white; }

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.program-card {
    position: relative;
    flex: 0 1 calc(33.333% - 16px);
    min-width: 240px;
    max-width: 320px;
    padding: 36px 26px 30px;
    background: var(--c-bg);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all var(--transition);
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--c-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-red-light);
    background: white;
}

.program-card.highlight {
    background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
    color: white;
}

.program-card.highlight::before { background: var(--c-yellow); transform: scaleX(1); }
.program-card.highlight h3 { color: white; }
.program-card.highlight p { color: rgba(255, 255, 255, 0.92); }
.program-card.highlight .program-age {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.program-age {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--c-red);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

.program-emoji {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 14px;
    display: inline-block;
    transform-origin: bottom center;
    transition: transform var(--transition);
}

.program-card:hover .program-emoji {
    transform: scale(1.18) rotate(-8deg);
}

.program-card.highlight .program-emoji {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
}

.program-card h3 { margin-bottom: 12px; color: var(--c-black); }
.program-card p { color: var(--c-muted); font-size: 0.95rem; }

/* ====================================
   ACTIVITIES
   ==================================== */
.activities { background: var(--c-sky-light); }

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

.activity {
    background: white;
    padding: 32px 26px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.activity:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.activity-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform var(--transition);
}
.activity:hover .activity-icon { transform: rotate(-6deg) scale(1.05); }
.activity-icon svg { width: 28px; height: 28px; }

.activity h3 { margin-bottom: 8px; }
.activity p { color: var(--c-muted); font-size: 0.95rem; }

.activities-foot {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.extra-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--c-ink);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--c-border);
    transition: all var(--transition);
}

.extra-pill:hover {
    border-color: var(--c-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ====================================
   PRICING
   ==================================== */
.pricing { background: white; }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.price-card {
    position: relative;
    padding: 40px 32px;
    background: var(--c-bg);
    border-radius: var(--radius-lg);
    border: 2px solid var(--c-border);
    transition: all var(--transition);
    overflow: hidden;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-red-light);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
    color: white;
    border-color: var(--c-red);
    box-shadow: var(--shadow-red);
}

.price-card.featured .price-tag,
.price-card.featured .price-time,
.price-card.featured .price-amount,
.price-card.featured .price-period { color: white; }

.price-card.featured .price-list li {
    color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.18);
}

.price-card.featured .price-list li::before {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.price-card.featured .price-list li.extra {
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding-left: 50px;
    margin-top: 10px;
    border-bottom: none;
}

.price-card.featured .price-sibling {
    color: rgba(255, 255, 255, 0.85);
}

.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--c-yellow);
    color: var(--c-black);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.price-tag {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-red);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.price-time {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--c-black);
    margin-bottom: 22px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-red);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--c-muted);
    font-weight: 600;
}

.price-sibling {
    font-size: 0.88rem;
    color: var(--c-muted);
    margin-bottom: 24px;
    font-weight: 600;
}

.price-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--c-border);
    padding-top: 8px;
}

.price-list li {
    position: relative;
    padding: 10px 0 10px 38px;
    font-size: 0.95rem;
    color: var(--c-ink);
    border-bottom: 1px solid var(--c-border);
}

.price-list li:last-child { border-bottom: none; }

.price-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--c-red);
    border-radius: 50%;
}

.price-list li::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 8px;
    height: 4px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: translateY(-65%) rotate(-45deg);
}

.pricing-note {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.note-item {
    background: var(--c-bg);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--c-red);
}

.note-item strong {
    display: block;
    color: var(--c-black);
    font-family: var(--font-display);
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.note-item span {
    font-size: 0.88rem;
    color: var(--c-muted);
    line-height: 1.55;
}

.time-tag {
    margin-top: 12px;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--c-red);
    background: white;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--c-red-light);
}

/* ====================================
   DAILY TIMELINE
   ==================================== */
.daily { background: white; }

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    counter-reset: timeline;
}

.time-block {
    position: relative;
    padding: 28px;
    background: var(--c-bg);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--c-red);
    transition: all var(--transition);
    counter-increment: timeline;
}

.time-block:nth-child(even) { border-left-color: var(--c-yellow); }
.time-block:nth-child(3n) { border-left-color: var(--c-red-dark); }

.time-block::before {
    content: counter(timeline);
    position: absolute;
    top: 20px;
    right: 22px;
    width: 36px;
    height: 36px;
    background: white;
    color: var(--c-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: var(--shadow-sm);
}

.time-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: white;
}

.time {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--c-red);
    background: var(--c-red-light);
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.time-block h4 { margin-bottom: 8px; }
.time-block p { color: var(--c-muted); font-size: 0.95rem; }

/* ====================================
   CTA / SOCIAL
   ==================================== */
.gallery-cta { background: var(--c-bg); padding: 60px 0; }

.cta-card {
    background: linear-gradient(135deg, var(--c-red) 0%, var(--c-red-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    color: white;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 { color: white; margin-bottom: 16px; }
.cta-content p { color: rgba(255, 255, 255, 0.92); margin-bottom: 28px; font-size: 1.1rem; }

.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    color: var(--c-black);
    border-radius: var(--radius-pill);
    font-weight: 700;
    transition: all var(--transition);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    color: var(--c-black);
}

.social-btn svg { width: 22px; height: 22px; }
.social-btn.fb svg { color: #1877f2; }
.social-btn.ig svg { color: #e1306c; }

.cta-decor {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decor-img {
    width: 220px;
    animation: bob 4s ease-in-out infinite;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

/* ====================================
   CONTACT
   ==================================== */
.contact { background: var(--c-sky-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.info-block {
    background: white;
    padding: 24px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.info-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--c-red-light);
    color: var(--c-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.info-icon svg { width: 22px; height: 22px; }

.info-block h4 { margin-bottom: 8px; font-size: 1rem; }
.info-block p { color: var(--c-muted); font-size: 0.93rem; line-height: 1.6; }
.info-block a {
    color: var(--c-ink);
    font-weight: 600;
    display: inline-block;
    padding: 6px 0;
    min-height: 32px;
    line-height: 1.8;
}
.info-block a:hover { color: var(--c-red); }

.footer-col a {
    display: inline-block;
    padding: 6px 0;
    min-height: 32px;
    line-height: 1.6;
}

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

.contact-form h3 { margin-bottom: 24px; }

.form-row { margin-bottom: 18px; }

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

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    background: var(--c-bg);
    transition: border-color var(--transition);
    -webkit-appearance: none;
    appearance: none;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--c-red);
    background: white;
}

.form-row textarea { resize: vertical; min-height: 120px; }

.form-status {
    margin-top: 14px;
    text-align: center;
    font-weight: 600;
    font-size: 0.92rem;
    min-height: 22px;
}
.form-status.success { color: #16a34a; }
.form-status.error { color: var(--c-red); }

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: white;
    padding: 10px;
}

/* ====================================
   FOOTER
   ==================================== */
.site-footer {
    background: var(--c-black);
    color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
    padding: 60px 24px 30px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo { width: 60px; }

.footer-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--c-red);
}

.footer-sub { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h5 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col p, .footer-col li { font-size: 0.92rem; line-height: 1.8; }

.footer-col ul { display: grid; gap: 4px; }
.footer-col a { color: rgba(255, 255, 255, 0.75); }
.footer-col a:hover { color: var(--c-red); }

.footer-socials {
    display: flex;
    gap: 12px;
}

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

.footer-socials a:hover {
    background: var(--c-red);
    color: white;
    transform: translateY(-3px);
}

.footer-socials svg { width: 18px; height: 18px; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ====================================
   LANGUAGE: Russian uses Cyrillic
   ==================================== */
html[lang="ru"] { --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif; }

/* ====================================
   ANIMATIONS
   ==================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; }
    .hero-cta, .hero-stats { justify-content: center; }
    .hero-lead { margin-left: auto; margin-right: auto; }

    .about-grid { grid-template-columns: 1fr; gap: 36px; }

    .cta-card { grid-template-columns: 1fr; text-align: center; padding: 50px 32px; }
    .cta-buttons { justify-content: center; }
    .cta-decor { display: none; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .features { padding: 60px 0; margin-top: -30px; border-radius: 30px 30px 0 0; }
    .hero { padding: 50px 0 80px; }

    .program-card { flex: 1 1 calc(50% - 12px); min-width: 200px; }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 16px;
        right: 16px;
        z-index: 1001;
        background: white;
        border-radius: var(--radius-md);
        padding: 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--c-border);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2px;
        align-items: stretch;
    }

    .main-nav a {
        padding: 14px 18px;
        font-size: 1rem;
        text-align: left;
        border-radius: var(--radius-sm);
    }

    .menu-toggle { display: flex; }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(31, 31, 31, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s;
        z-index: 999;
    }
    .nav-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

    .header-inner { padding: 12px 20px; gap: 12px; }
    .brand-logo { width: 48px; height: 48px; }
    .brand-title { font-size: 1.2rem; }
    .brand-sub { font-size: 0.7rem; }

    .lang-switcher { padding: 4px; }
    .lang-btn { padding: 8px 10px; font-size: 0.78rem; min-width: 36px; }

    .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .feature { padding: 24px 14px; }

    .contact-info { grid-template-columns: 1fr 1fr; gap: 12px; }

    .footer-inner { padding: 72px 24px 48px; gap: 40px; }
    .footer-cols { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand { justify-content: center; flex-direction: column; text-align: center; gap: 20px; padding-bottom: 8px; }
    .footer-logo { width: 80px; }

    .hero-stats { gap: 18px; }
    .stat-num { font-size: 1.6rem; }

    .section-head { margin-bottom: 40px; }

    .timeline { gap: 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    h1 { font-size: 1.85rem; }
    h2 { font-size: 1.55rem; }

    .features-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .programs-grid { flex-direction: column; align-items: center; }
    .program-card { flex: 1 1 auto; width: 100%; max-width: none; }
    .activities-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }

    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }

    .contact-form-wrap { padding: 24px 20px; }

    .cta-card { padding: 36px 22px; }
    .cta-buttons { flex-direction: column; }
    .social-btn { justify-content: center; width: 100%; }

    .brand-sub { display: none; }

    /* Larger tap targets on small mobile */
    .form-row input,
    .form-row textarea,
    .form-row select {
        font-size: 16px; /* prevents iOS zoom on focus */
        padding: 14px 16px;
    }

    .btn { padding: 14px 24px; font-size: 0.98rem; min-height: 48px; }

    .info-block { padding: 20px 18px; }
    .info-block h4 { font-size: 1.05rem; }

    .price-card { padding: 32px 24px; }
    .price-amount { font-size: 2.6rem; }

    /* Hero stats stack better on tiny screens */
    .hero-stats { gap: 22px; justify-content: space-between; }

    /* Activities footer pills wrap better */
    .activities-foot { gap: 8px; }
    .extra-pill { font-size: 0.82rem; padding: 8px 14px; }

    /* Footer breathing room on small mobile */
    .footer-inner { padding: 64px 20px 56px; gap: 36px; }
    .footer-brand { gap: 18px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .footer-cols { gap: 28px; padding-top: 4px; }
    .footer-col { padding-bottom: 4px; }
    .footer-col h5 { margin-bottom: 14px; }
    .footer-socials { justify-content: center; margin-top: 6px; margin-bottom: 8px; }
    .footer-bottom { padding: 24px 0; }
}

/* Print */
@media print {
    .site-header, .menu-toggle, .lang-switcher, .hero-cta, .cta-buttons, .map-wrap, .contact-form-wrap { display: none; }
}
