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

/* Tokens */
:root {
    --green-dark:  #063A22;
    --green:       #0B6B3A;
    --green-mid:   #12864A;
    --green-soft:  #EAF6EE;
    --gold:        #D9A93A;
    --gold-light:  #F7DF8B;
    --cream:       #FFFDF6;
    --ink:         #17231D;
    --muted:       #65736B;
    --line:        #DCE8DE;
    --white:       #FFFFFF;
    --radius-sm:   8px;
    --radius:      18px;
    --radius-lg:   28px;
    --radius-xl:   38px;
}

/* Base */
body {
    font-family: 'Heebo', 'Rubik', sans-serif;
    direction: rtl;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ── Header ─────────────────────────────────────── */
.site-header {
    background: var(--green-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: .85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.site-logo {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: .45rem;
    flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; opacity: .9; }
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
    padding: .4rem .9rem;
    border-radius: 999px;
    color: rgba(255,255,255,.8);
    font-weight: 600;
    font-size: .95rem;
    transition: background .15s, color .15s;
}
.main-nav a:hover { background: rgba(255,255,255,.1); color: #fff; text-decoration: none; }
.nav-cta {
    background: var(--gold);
    color: var(--green-dark) !important;
    font-weight: 800 !important;
    padding: .4rem 1.1rem !important;
    border-radius: 999px;
}
.nav-cta:hover { opacity: .9; background: var(--gold) !important; }

/* ── Main ────────────────────────────────────────── */
.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
    background: linear-gradient(140deg, var(--green-dark) 0%, #0a5530 55%, #021A10 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3.5rem 3rem;
    margin: 2rem 0 0;
    color: #fff;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(217,169,58,.15) 0%, transparent 55%),
        radial-gradient(circle at 10% 80%, rgba(11,107,58,.3) 0%, transparent 50%);
    pointer-events: none;
}
.hero-text { position: relative; z-index: 1; }

/* Logo image (1.png) in hero */
.hero-logo-img {
    display: block;
    max-width: 480px;
    width: 100%;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 18px rgba(0,0,0,.4));
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 1.75rem;
    max-width: 420px;
    line-height: 1.6;
}
.hero-stats {
    display: flex;
    gap: 1.75rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hero-stat .lbl {
    font-size: .78rem;
    color: rgba(255,255,255,.6);
    margin-top: .15rem;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Hero image column */
.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Kids photo (2.png) */
.hero-kids-img {
    display: block;
    max-height: 380px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 28px rgba(0,0,0,.45));
}

/* Decorative ball (7.png) */
.hero-ball-deco {
    position: absolute;
    top: -10px;
    left: 10px;
    width: 80px;
    opacity: .7;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(15deg); }
}

/* ── Stats bar ────────────────────────────────────── */
.stats-bar {
    background: var(--green-dark);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 1.5rem 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
    color: #fff;
    margin-bottom: 3.5rem;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: .35rem; }
.stat-icon { width: 44px; height: 44px; object-fit: contain; }
.stat-item .n {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.stat-item .t { font-size: .82rem; color: rgba(255,255,255,.65); }

/* ── Ribbon divider ────────────────────────────────── */
.ribbon-divider {
    position: relative;
    text-align: center;
    margin-bottom: .5rem;
}
.ribbon-divider img {
    display: block;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    opacity: .85;
}
.ribbon-divider span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
    padding: 0 2rem;
}

/* ── Section ─────────────────────────────────────── */
.section { margin-bottom: 3.5rem; }
.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: .6rem;
    text-align: center;
}
.section-title .accent { color: var(--gold); }
.section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2.2rem;
    font-size: 1rem;
}
.divider {
    width: 52px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    border-radius: 2px;
    margin: 0 auto 2.2rem;
}

/* ── Cards grid ───────────────────────────────────── */
.cards-grid { display: grid; gap: 1.25rem; }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    transition: box-shadow .2s, transform .2s;
}
.card:hover {
    box-shadow: 0 6px 24px rgba(6,58,34,.1);
    transform: translateY(-2px);
}

/* PNG icon in card */
.card-icon-img {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-icon-img img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

/* FontAwesome fallback icon */
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 1rem;
}
.card-icon.gold-bg { background: #FEF8E7; color: var(--gold); }
.card h3 { font-size: 1.05rem; font-weight: 800; color: var(--green-dark); margin-bottom: .35rem; }
.card p  { font-size: .9rem; color: var(--muted); line-height: 1.5; }

/* ── Skills list ──────────────────────────────────── */
.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 820px;
    margin: 0 auto;
}
.skill-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .85rem;
}
.skill-item .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.skill-item span { font-weight: 600; color: var(--ink); font-size: .95rem; }

/* ── Session timeline ─────────────────────────────── */
.timeline {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    max-width: 600px;
    margin: 0 auto;
}
.tl-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .85rem 1.25rem;
}
.tl-time {
    font-size: .8rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-soft);
    border-radius: 8px;
    padding: .2rem .6rem;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 80px;
    text-align: center;
}
.tl-label { font-weight: 700; color: var(--ink); font-size: .95rem; }
.tl-desc  { font-size: .82rem; color: var(--muted); }

/* ── CTA section ──────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #021A10 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2rem 3rem;
    text-align: center;
    color: #fff;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(217,169,58,.2) 0%, transparent 60%);
    pointer-events: none;
}

/* Player silhouette (8.png) */
.cta-player {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 85%;
    width: auto;
    opacity: .18;
    pointer-events: none;
    object-fit: contain;
}

.cta-content { position: relative; z-index: 1; }
.cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .6rem;
}
.cta-section p {
    color: rgba(255,255,255,.75);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .7rem 1.75rem;
    border-radius: 999px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: opacity .15s, transform .1s, box-shadow .15s;
    text-decoration: none;
    line-height: 1.4;
}
.btn:hover { opacity: .88; text-decoration: none; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn-primary { background: var(--green); color: #fff; }
.btn-gold    { background: var(--gold); color: var(--green-dark); }
.btn-outline { background: transparent; border: 2px solid rgba(255,255,255,.6); color: #fff; }
.btn-lg { padding: .9rem 2.2rem; font-size: 1.1rem; }

/* ── Forms ────────────────────────────────────────── */
input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    padding: .6rem .9rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(11,107,58,.12);
}
label { display: block; font-weight: 700; margin-bottom: .35rem; color: var(--ink); }
.form-group { margin-bottom: 1.25rem; }
.form-hint { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

/* ── Flash ────────────────────────────────────────── */
.flash { padding: .8rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.5rem; font-weight: 600; }
.flash-success { background: #d1efd9; color: #0f4c21; border: 1px solid #b8dfc3; }
.flash-error   { background: #fde8e8; color: #7f1d1d; border: 1px solid #f5c2c7; }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
    background: var(--green-dark);
    border-top: 3px solid var(--gold);
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }

/* ── Responsive — tablet ──────────────────────────── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2.5rem 2rem 2rem;
        gap: 1.5rem;
        border-radius: var(--radius-lg);
        margin: 1.5rem 0 0;
        text-align: center;
    }
    .hero-logo-img { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-image-wrap { max-height: 260px; overflow: hidden; justify-content: center; }
    .hero-kids-img { max-height: 260px; }
    .hero-ball-deco { width: 55px; }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.25rem 1.5rem 1.75rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        gap: 1.25rem;
    }
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
    .ribbon-divider span { font-size: 1.3rem; }
    .cta-player { height: 70%; opacity: .12; }
}

/* ── Responsive — mobile ──────────────────────────── */
@media (max-width: 600px) {
    .main-content { padding: 0 1rem 2.5rem; }
    .nav-container { gap: .5rem; padding: .75rem 1rem; }
    .main-nav a:not(.nav-cta) { display: none; }
    .site-logo { font-size: 1.1rem; }

    .hero {
        padding: 2rem 1.25rem 1.75rem;
        border-radius: var(--radius);
        margin: 1rem 0 0;
        gap: 1rem;
    }
    .hero-logo-img { margin-bottom: .75rem; }
    .hero-sub { font-size: .95rem; margin-bottom: 1.25rem; }
    .hero-stats { gap: 1rem; justify-content: space-around; }
    .hero-stat .num { font-size: 1.6rem; }
    .hero-actions { justify-content: center; }
    .hero-image-wrap { max-height: 200px; }
    .hero-kids-img { max-height: 200px; }
    .hero-ball-deco { width: 44px; top: -5px; left: 5px; }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 1rem .75rem 1.25rem;
        border-radius: 0 0 var(--radius) var(--radius);
        gap: .75rem;
        margin-bottom: 2.5rem;
    }
    .stat-icon { width: 36px; height: 36px; }
    .stat-item .n { font-size: 1.5rem; }

    .ribbon-divider img { max-width: 100%; }
    .ribbon-divider span { font-size: 1.1rem; }

    .cards-grid-4,
    .cards-grid-3,
    .cards-grid-2 { grid-template-columns: 1fr; }
    .skills-list { grid-template-columns: 1fr; }
    .section-title { font-size: 1.3rem; }
    .section { margin-bottom: 2.5rem; }

    .cta-section { padding: 2.5rem 1.25rem 2rem; border-radius: var(--radius-lg); }
    .cta-section h2 { font-size: 1.5rem; }
    .cta-player { display: none; }

    .btn-lg { padding: .75rem 1.75rem; font-size: 1rem; }
}
