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

:root{
    --red:#ff5b4d;
    --red-dark:#e94b40;
    --red-soft:#fff0ed;
    --green:#159b68;
    --green-dark:#0f754f;
    --green-soft:#eafaf2;
    --yellow:#ffc85a;
    --dark:#15251f;
    --dark-2:#0d1f18;
    --cream:#fff9f1;
    --cream-2:#fff4e8;
    --muted:#68756f;
    --line:#e6eee9;
    --white:#ffffff;
    --shadow-sm:0 8px 24px rgba(30,64,50,.06);
    --shadow:0 20px 55px rgba(30,64,50,.12);
    --shadow-lg:0 30px 80px rgba(21,37,31,.16);
    --radius-sm:14px;
    --radius:24px;
    --radius-lg:38px;
}

*{box-sizing:border-box}

html{
    scroll-behavior:smooth;
    scroll-padding-top:100px;
}

body{
    margin:0;
    font-family:'DM Sans',sans-serif;
    color:var(--dark);
    background:
        radial-gradient(circle at 10% 5%,rgba(255,200,90,.08),transparent 24%),
        radial-gradient(circle at 90% 12%,rgba(21,155,104,.06),transparent 28%),
        #fff;
    line-height:1.6;
    overflow-x:hidden;
}

body.modal-open{overflow:hidden}

::selection{
    background:rgba(255,91,77,.2);
    color:var(--dark);
}

a{
    color:inherit;
    text-decoration:none;
}

button,input,textarea,select{font:inherit}

button{color:inherit}

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

main{
    max-width:1240px;
    margin:auto;
    padding:30px 26px 90px;
}

section{
    margin:64px 0;
    position:relative;
}

.sr-only{
    position:absolute!important;
    width:1px!important;
    height:1px!important;
    padding:0!important;
    margin:-1px!important;
    overflow:hidden!important;
    clip:rect(0,0,0,0)!important;
    white-space:nowrap!important;
    border:0!important;
}

/* Header */
.topbar{
    height:82px;
    padding:0 max(24px,calc((100vw - 1240px)/2));
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:sticky;
    top:0;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    z-index:80;
    border-bottom:1px solid rgba(20,45,35,.06);
    transition:.3s ease;
}

.topbar.scrolled{
    box-shadow:0 12px 34px rgba(21,37,31,.08);
    background:rgba(255,255,255,.96);
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:Fredoka;
    font-size:23px;
    font-weight:700;
}

.brand small{
    display:block;
    font-family:'DM Sans';
    font-size:10px;
    letter-spacing:.8px;
    color:var(--muted);
}

.brand-mark{
    font-size:34px;
    filter:drop-shadow(0 8px 12px rgba(255,91,77,.2));
    animation:brandFloat 4s ease-in-out infinite;
}

.topbar nav{
    display:flex;
    align-items:center;
    gap:25px;
}

.topbar nav a{
    font-weight:700;
    font-size:14px;
    position:relative;
}

.topbar nav a:not(.btn)::after{
    content:"";
    position:absolute;
    left:0;
    right:100%;
    bottom:-8px;
    height:2px;
    border-radius:99px;
    background:linear-gradient(90deg,var(--red),var(--green));
    transition:.25s ease;
}

.topbar nav a:not(.btn):hover::after{
    right:0;
}

.menu-btn{
    display:none;
    border:0;
    background:none;
    font-size:25px;
    cursor:pointer;
}

/* Buttons */
.btn{
    border:0;
    background:linear-gradient(135deg,var(--red),#ff7a55);
    color:#fff;
    padding:13px 22px;
    border-radius:14px;
    font-weight:800;
    cursor:pointer;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    box-shadow:0 10px 25px rgba(255,91,77,.2);
    transition:transform .25s ease,box-shadow .25s ease,filter .25s ease;
    position:relative;
    overflow:hidden;
}

.btn::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,transparent 25%,rgba(255,255,255,.34),transparent 75%);
    transform:translateX(-120%);
    transition:transform .55s ease;
}

.btn:hover::before{transform:translateX(120%)}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 34px rgba(255,91,77,.28);
    filter:saturate(1.05);
}

.btn:active{transform:translateY(-1px)}

.btn.small{
    padding:9px 15px;
    border-radius:10px;
    font-size:13px;
}

.btn.ghost{
    background:#fff;
    color:var(--dark);
    border:1px solid var(--line);
    box-shadow:none;
}

.btn.ghost:hover{
    border-color:rgba(21,155,104,.45);
    box-shadow:0 12px 28px rgba(21,155,104,.1);
}

.eyebrow{
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
    color:var(--green);
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.eyebrow::before{
    content:"";
    width:22px;
    height:2px;
    border-radius:99px;
    background:linear-gradient(90deg,var(--green),var(--yellow));
}

h1,h2,h3,h4{
    line-height:1.15;
    color:var(--dark);
}

h1,h2{font-family:Fredoka}

h1{
    font-size:clamp(40px,6vw,75px);
    margin:14px 0;
}

h2{
    font-size:clamp(28px,4vw,43px);
    margin:8px 0;
}

/* Hero */
.hero{
    min-height:620px;
    border-radius:var(--radius-lg);
    background:
        radial-gradient(circle at 12% 10%,#fff7d7 0,transparent 30%),
        radial-gradient(circle at 85% 22%,rgba(21,155,104,.15),transparent 28%),
        linear-gradient(135deg,#fff5ed,#effff4);
    padding:72px;
    display:grid;
    grid-template-columns:1.15fr .85fr;
    align-items:center;
    overflow:hidden;
    position:relative;
    isolation:isolate;
    box-shadow:0 28px 70px rgba(38,86,64,.08);
}

.hero::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    border:45px solid rgba(255,255,255,.45);
    right:-95px;
    bottom:-95px;
    z-index:-1;
}

.hero::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,91,77,.08);
    left:-70px;
    top:-70px;
    z-index:-1;
}

.hero-copy{
    position:relative;
    z-index:3;
}

.hero p{
    font-size:19px;
    color:var(--muted);
    max-width:680px;
}

.hero-search{
    position:relative;
    margin-bottom:14px;
}

.search{
    display:flex;
    align-items:center;
    background:#fff;
    padding:7px;
    border-radius:18px;
    max-width:590px;
    box-shadow:var(--shadow);
    margin:28px 0 18px;
    border:1px solid rgba(21,155,104,.08);
    transition:.25s ease;
}

.search:focus-within{
    transform:translateY(-2px);
    box-shadow:0 24px 55px rgba(21,155,104,.16);
    border-color:rgba(21,155,104,.28);
}

.search-icon{
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--green-soft);
    color:var(--green);
    font-size:20px;
    flex:0 0 auto;
}

.search input{
    flex:1;
    min-width:0;
    border:0;
    outline:0;
    padding:12px 14px;
    background:transparent;
}

.search button{
    border:0;
    background:linear-gradient(135deg,var(--green),#1bbd7c);
    color:#fff;
    border-radius:12px;
    padding:13px 24px;
    font-weight:800;
    cursor:pointer;
    transition:.25s;
}

.search button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(21,155,104,.24);
}

.popular-searches{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    align-items:center;
    font-size:12px;
    color:var(--muted);
    margin-bottom:20px;
}

.popular-searches span{font-weight:800}

.popular-searches a{
    padding:5px 10px;
    border-radius:99px;
    border:1px solid rgba(21,155,104,.14);
    background:rgba(255,255,255,.7);
    transition:.2s;
}

.popular-searches a:hover{
    background:var(--green);
    color:#fff;
    transform:translateY(-2px);
}

.hero-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.trust-row{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:25px;
    color:var(--muted);
    font-size:13px;
}

.trust-row span{
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-weight:700;
}

.hero-visual{
    text-align:center;
    position:relative;
    min-height:380px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    isolation:isolate;
}

.hero-glow{
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:radial-gradient(circle,rgba(21,155,104,.25),rgba(21,155,104,0) 70%);
    filter:blur(4px);
    z-index:-1;
    animation:pulseGlow 4s ease-in-out infinite;
}

.floating-shape{
    position:absolute;
    border-radius:50%;
    opacity:.8;
    filter:blur(.2px);
}

.shape-one{
    width:28px;
    height:28px;
    background:var(--yellow);
    right:68px;
    bottom:45px;
    animation:shapeFloat 4.5s ease-in-out infinite;
}

.shape-two{
    width:18px;
    height:18px;
    background:var(--red);
    left:84px;
    top:82px;
    animation:shapeFloat 3.8s ease-in-out infinite .7s;
}

.shape-three{
    width:12px;
    height:12px;
    background:var(--green);
    right:52px;
    top:48px;
    animation:shapeFloat 5s ease-in-out infinite 1.2s;
}

.big-melon{
    font-size:165px;
    animation:float 4s ease-in-out infinite;
    filter:drop-shadow(0 35px 30px rgba(21,155,104,.18));
    position:relative;
    z-index:2;
}

.hero-visual>span{
    font-weight:800;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);
    padding:10px 19px;
    border-radius:99px;
    box-shadow:var(--shadow-sm);
    position:relative;
    z-index:3;
}

.orbit{
    position:absolute;
    font-size:42px;
    background:rgba(255,255,255,.94);
    width:80px;
    height:80px;
    border-radius:24px;
    display:grid;
    place-items:center;
    box-shadow:var(--shadow);
    animation:bob 3s ease-in-out infinite;
    border:1px solid rgba(255,255,255,.8);
    z-index:3;
}

.orbit.one{top:35px;left:20px}
.orbit.two{top:80px;right:10px;animation-delay:.6s}
.orbit.three{bottom:50px;left:45px;animation-delay:1.1s}

/* Statistics strip */
.stats-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin-top:-24px;
    position:relative;
    z-index:5;
}

.stats-strip article{
    background:rgba(255,255,255,.94);
    border:1px solid rgba(21,155,104,.1);
    border-radius:20px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.stats-strip article:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.stat-icon{
    width:48px;
    height:48px;
    border-radius:15px;
    display:grid;
    place-items:center;
    background:linear-gradient(145deg,var(--cream-2),var(--green-soft));
    font-size:22px;
    flex:0 0 auto;
}

.stats-strip strong,
.stats-strip small{
    display:block;
}

.stats-strip strong{
    font-size:14px;
    margin-bottom:2px;
}

.stats-strip small{
    color:var(--muted);
    font-size:11px;
}

/* Section headers */
.section-head{
    display:flex;
    align-items:end;
    justify-content:space-between;
    gap:20px;
    margin-bottom:26px;
}

.section-head p{
    margin:8px 0 0;
    color:var(--muted);
    max-width:620px;
}

.section-link{
    color:var(--green);
    font-weight:800;
    display:inline-flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    transition:.2s;
}

.section-link:hover{
    gap:12px;
    color:var(--green-dark);
}

/* Categories */
.category-section{
    padding:34px;
    border-radius:30px;
    background:linear-gradient(135deg,#fff,var(--cream));
    border:1px solid rgba(255,200,90,.25);
}

.chips{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.chips a{
    padding:12px 18px;
    border:1px solid var(--line);
    border-radius:99px;
    font-weight:700;
    background:#fff;
    transition:.25s ease;
    display:inline-flex;
    align-items:center;
    gap:8px;
    box-shadow:0 4px 15px rgba(30,64,50,.03);
}

.chips a span{
    color:var(--yellow);
    transition:.25s;
}

.chips a:hover{
    background:linear-gradient(135deg,var(--green),#1db779);
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(21,155,104,.2);
}

.chips a:hover span{transform:rotate(90deg)}

/* Cards */
.card-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.activity-card,
.teacher-card,
.simple-card,
.membership-card,
.review-card,
.panel,
.booking-card,
.video-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}

.activity-card:hover,
.teacher-card:hover,
.membership-card:hover,
.video-card:hover,
.review-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    border-color:rgba(21,155,104,.2);
}

.cover{
    height:210px;
    background:linear-gradient(145deg,#fff1e8,#e9fff1);
    display:grid;
    place-items:center;
    position:relative;
    font-size:72px;
    overflow:hidden;
}

.cover::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(13,31,24,.14),transparent 48%);
    opacity:0;
    transition:.3s;
}

.activity-card:hover .cover::after{opacity:1}

.cover img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.activity-card:hover .cover img{transform:scale(1.07)}

.cover em{
    position:absolute;
    top:15px;
    left:15px;
    background:var(--red);
    color:#fff;
    padding:5px 10px;
    border-radius:99px;
    font-size:11px;
    font-style:normal;
    z-index:2;
    box-shadow:0 8px 18px rgba(255,91,77,.24);
}

.card-body{padding:20px}

.card-body small{
    color:var(--green);
    font-weight:800;
}

.card-body h3{
    font-size:21px;
    margin:7px 0;
}

.card-body p{
    color:var(--muted);
    font-size:14px;
}

.meta,.price{
    display:flex;
    justify-content:space-between;
    gap:10px;
    color:var(--muted);
    font-size:13px;
}

.price{
    margin-top:17px;
    align-items:center;
}

.price b{
    font-size:22px;
    color:var(--dark);
}

/* Teachers */
.teacher-section{
    overflow:hidden;
}

.teacher-grid{
    align-items:stretch;
}

.teacher-card{
    padding:25px;
    text-align:left;
    width:100%;
    cursor:pointer;
    color:inherit;
    position:relative;
}

.teacher-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:var(--green-soft);
    right:-45px;
    top:-45px;
    transition:.35s;
}

.teacher-card:hover::before{
    transform:scale(1.25);
    background:rgba(21,155,104,.16);
}

.teacher-card-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    position:relative;
    z-index:2;
}

.avatar{
    width:84px;
    height:84px;
    border-radius:26px;
    background:#fff3e7;
    display:grid;
    place-items:center;
    font-size:42px;
    overflow:hidden;
    box-shadow:0 14px 28px rgba(255,91,77,.12);
    transition:.3s ease;
}

.teacher-card:hover .avatar{
    transform:scale(1.05) rotate(-2deg);
}

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

.avatar.large{
    width:145px;
    height:145px;
    font-size:70px;
}

.verified-pill{
    background:var(--green-soft);
    color:var(--green-dark);
    padding:6px 10px;
    border-radius:99px;
    font-size:11px;
    font-weight:800;
    position:relative;
    z-index:2;
}

.teacher-card h3{
    margin:17px 0 4px;
}

.teacher-card p{
    color:var(--muted);
    margin:0 0 14px;
}

.teacher-card .meta{
    justify-content:flex-start;
    flex-wrap:wrap;
}

.teacher-card .meta span{
    background:#f6faf7;
    padding:5px 9px;
    border-radius:99px;
}

.teacher-card-link{
    margin-top:18px;
    color:var(--green);
    font-weight:800;
    display:inline-flex;
    align-items:center;
    gap:7px;
}

.teacher-card:hover .teacher-card-link{gap:11px}

.teacher-bio{
    color:var(--muted);
    margin:22px 0;
}

/* Soft sections */
.soft{
    background:
        radial-gradient(circle at 100% 0%,rgba(255,200,90,.13),transparent 30%),
        var(--cream);
    border-radius:34px;
    padding:44px;
    border:1px solid rgba(255,200,90,.18);
}

/* Videos */
.video-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.video-card{
    position:relative;
}

.video-media{
    position:relative;
    overflow:hidden;
}

.video-card video,
.video-thumb{
    width:100%;
    height:210px;
    object-fit:cover;
    background:#10251d;
    display:grid;
    place-items:center;
    color:#fff;
    font-size:50px;
    transition:.35s;
}

.video-card:hover .video-thumb,
.video-card:hover video{
    transform:scale(1.02);
}

.video-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s ease;
}

.video-card:hover .video-thumb img{transform:scale(1.06)}

.video-play{
    width:72px;
    height:72px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.3);
    backdrop-filter:blur(8px);
    transition:.25s;
}

.video-card:hover .video-play{
    transform:scale(1.08);
    background:var(--red);
}

.video-content{padding:20px}

.video-label{
    color:var(--green);
    font-size:11px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.video-content h3{
    margin:7px 0;
}

.video-content p{
    color:var(--muted);
    margin:0;
}

/* Memberships */
.membership-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.membership-card{
    padding:32px;
    position:relative;
    overflow:hidden;
    isolation:isolate;
}

.membership-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:linear-gradient(135deg,rgba(255,91,77,.12),rgba(21,155,104,.11));
    right:-80px;
    bottom:-80px;
    z-index:-1;
    transition:.35s;
}

.membership-card:hover::after{
    transform:scale(1.25);
}

.plan-badge{
    background:linear-gradient(135deg,var(--green),#1cb276);
    color:#fff;
    border-radius:99px;
    padding:6px 11px;
    font-size:11px;
    font-weight:800;
    display:inline-block;
    box-shadow:0 8px 18px rgba(21,155,104,.18);
}

.membership-icon{
    width:52px;
    height:52px;
    margin:18px 0 8px;
    display:grid;
    place-items:center;
    border-radius:16px;
    background:linear-gradient(145deg,var(--red-soft),var(--cream));
    font-size:27px;
}

.plan-price{
    font-family:Fredoka;
    font-size:45px;
    color:var(--red);
    margin:10px 0;
    display:flex;
    align-items:flex-start;
    gap:2px;
}

.plan-price small{
    font-size:20px;
    margin-top:7px;
}

.membership-summary{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
    margin:18px 0 8px;
}

.membership-summary span{
    background:#f5faf7;
    color:var(--green-dark);
    padding:7px 10px;
    border-radius:99px;
    font-size:11px;
    font-weight:800;
}

.benefits{
    white-space:pre-line;
    color:var(--muted);
    margin:18px 0;
}

/* Reviews */
.reviews-section{scroll-margin-top:90px}

.review-marquee,
.reviews{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.review-card{
    padding:26px;
    position:relative;
}

.review-card::before{
    content:"“";
    position:absolute;
    right:20px;
    top:6px;
    font-size:70px;
    line-height:1;
    font-family:Georgia,serif;
    color:rgba(21,155,104,.08);
}

.review-stars,
.review-card>span{
    color:#ffad0a;
    font-size:19px;
    letter-spacing:2px;
}

.review-card p{
    position:relative;
    z-index:2;
}

.review-parent{
    display:flex;
    align-items:center;
    gap:11px;
    margin-top:18px;
}

.review-avatar{
    width:42px;
    height:42px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:linear-gradient(145deg,var(--green-soft),var(--cream-2));
    color:var(--green-dark);
    font-weight:800;
}

.review-parent b,
.review-parent small{
    display:block;
}

.review-parent small,
.review-card small{
    color:var(--muted);
}

.live-review-form{
    margin-top:30px;
    padding:28px;
    border-radius:24px;
    background:
        radial-gradient(circle at 90% 15%,rgba(255,200,90,.18),transparent 24%),
        linear-gradient(135deg,#effff4,#fff7ed);
    display:grid;
    grid-template-columns:1fr 150px 2fr auto;
    align-items:center;
    gap:15px;
    border:1px solid rgba(21,155,104,.1);
}

.review-login{
    text-align:center;
    padding:14px;
    border-radius:14px;
    background:#f7faf8;
}

.review-login a{
    color:var(--green);
    font-weight:800;
}

/* Why section */
.why{
    padding:54px;
    border-radius:34px;
    background:
        radial-gradient(circle at 85% 10%,rgba(21,155,104,.22),transparent 30%),
        linear-gradient(135deg,var(--dark-2),#163a2d);
    color:#fff;
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:35px;
    overflow:hidden;
}

.why h2,
.why h3,
.why h4{
    color:#fff;
}

.why .eyebrow{
    color:#82e4b8;
}

.why-copy p{
    color:#c6d5cf;
    max-width:500px;
}

.why .btn.ghost{
    margin-top:10px;
    background:rgba(255,255,255,.09);
    color:#fff;
    border-color:rgba(255,255,255,.15);
}

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.feature-grid>div,
.feature-grid>article{
    background:rgba(255,255,255,.08);
    padding:23px;
    border-radius:20px;
    font-size:25px;
    border:1px solid rgba(255,255,255,.08);
    transition:.25s ease;
}

.feature-grid>div:hover,
.feature-grid>article:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.16);
}

.feature-icon{
    display:block;
    margin-bottom:8px;
    font-size:28px;
}

.feature-grid b,
.feature-grid span{
    display:block;
    font-size:14px;
}

.feature-grid span{opacity:.72}

/* CTA */
.home-cta{
    padding:46px;
    border-radius:32px;
    background:
        radial-gradient(circle at 0% 100%,rgba(255,91,77,.13),transparent 30%),
        radial-gradient(circle at 100% 0%,rgba(21,155,104,.12),transparent 30%),
        linear-gradient(135deg,#fff8ef,#effff5);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    border:1px solid rgba(21,155,104,.1);
}

.home-cta h2{
    max-width:720px;
}

.home-cta p{
    color:var(--muted);
    margin-bottom:0;
}

/* Empty states */
.empty{
    text-align:center;
    padding:45px;
    border:1px dashed #ccd8d1;
    border-radius:22px;
    color:var(--muted);
}

.premium-empty{
    background:linear-gradient(135deg,#fff,#f8fcfa);
    border-style:solid;
    box-shadow:var(--shadow-sm);
}

.empty-icon{
    display:block;
    font-size:48px;
    margin-bottom:8px;
}

/* Footer */
.site-footer{
    background:
        radial-gradient(circle at 85% 10%,rgba(28,175,118,.18),transparent 25%),
        linear-gradient(135deg,#0c2119,#10261e);
    color:#fff;
    padding:78px max(24px,calc((100vw - 1240px)/2)) 28px;
    position:relative;
    overflow:hidden;
}

.site-footer::before{
    content:"";
    position:absolute;
    left:-5%;
    right:-5%;
    top:-34px;
    height:70px;
    border-radius:50%;
    background:#fff;
}

.footer-glow{
    position:absolute;
    width:500px;
    height:500px;
    background:#1caf76;
    border-radius:50%;
    filter:blur(150px);
    opacity:.16;
    right:-150px;
    top:-250px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:45px;
    position:relative;
}

.footer-grid>div{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.footer-grid p{
    color:#b9c9c2;
    margin:0;
}

.footer-grid h4{
    color:#ffcf78;
    margin:0 0 8px;
}

.footer-grid a{
    color:#d9e5df;
    transition:.2s;
}

.footer-grid a:hover{
    color:#fff;
    transform:translateX(4px);
}

.socials{
    display:flex!important;
    flex-direction:row!important;
    gap:8px!important;
    flex-wrap:wrap;
}

.socials span,
.footer-badge{
    border:1px solid rgba(255,255,255,.13);
    padding:7px 10px;
    border-radius:99px;
    font-size:11px;
    background:rgba(255,255,255,.03);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:45px;
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    color:#93a59d;
    font-size:12px;
}

/* Preloader */
.preloader{
    position:fixed;
    inset:0;
    z-index:9999;
    background:
        radial-gradient(circle at 50% 45%,rgba(255,200,90,.16),transparent 28%),
        linear-gradient(145deg,#fff8eb,#eafff2);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:opacity .55s,visibility .55s;
}

.preloader.hide{
    opacity:0;
    visibility:hidden;
}

.preloader strong{
    font-family:Fredoka;
    font-size:30px;
    margin-top:18px;
}

.preloader>span{color:var(--muted)}

.melon-loader{
    animation:loaderBounce 1s ease-in-out infinite;
    filter:drop-shadow(0 20px 25px rgba(255,91,77,.18));
}

.melon-rind{
    width:140px;
    height:70px;
    border-radius:0 0 100px 100px;
    background:#248a4d;
    padding:8px;
    transform-origin:center top;
}

.melon-flesh{
    height:100%;
    border-radius:0 0 90px 90px;
    background:#ff5d62;
    position:relative;
    border-top:5px solid #fff3b5;
}

.melon-flesh i{
    position:absolute;
    width:7px;
    height:14px;
    background:#231f20;
    border-radius:70% 30% 70% 30%;
    transform:rotate(-20deg);
}

.melon-flesh i:nth-child(1){left:25px;top:22px}
.melon-flesh i:nth-child(2){left:50px;top:36px}
.melon-flesh i:nth-child(3){left:68px;top:18px}
.melon-flesh i:nth-child(4){left:90px;top:35px}
.melon-flesh i:nth-child(5){left:108px;top:19px}

/* Reveal animations */
.reveal{
    opacity:0;
    transform:translateY(30px);
    transition:opacity .75s ease,transform .75s ease;
}

.reveal.visible{
    opacity:1;
    transform:none;
}

/* Existing pages */
.page-head{
    text-align:center;
    padding:55px 20px;
    background:linear-gradient(135deg,#fff6eb,#effff4);
    border-radius:30px;
}

.page-head h1{font-size:52px}

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

.stats>div{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:var(--shadow-sm);
}

.stats b{
    display:block;
    font-size:34px;
    font-family:Fredoka;
}

.stats span{color:var(--muted)}

.dash-grid,
.admin-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.admin-grid{grid-template-columns:repeat(2,1fr)}

.panel{padding:25px}

.compact,
.feedback-form{
    display:flex;
    flex-direction:column;
    gap:11px;
}

.compact input,
.compact textarea,
.compact select,
.feedback-form input,
.feedback-form textarea,
.feedback-form select,
.live-review-form textarea,
.live-review-form select,
.auth input,
.filters input,
.filters select{
    width:100%;
    padding:12px 14px;
    border:1px solid var(--line);
    border-radius:11px;
    background:#fff;
    outline:none;
    transition:.2s;
}

.compact input:focus,
.compact textarea:focus,
.compact select:focus,
.feedback-form input:focus,
.feedback-form textarea:focus,
.feedback-form select:focus,
.live-review-form textarea:focus,
.live-review-form select:focus,
.auth input:focus,
.filters input:focus,
.filters select:focus{
    border-color:rgba(21,155,104,.48);
    box-shadow:0 0 0 4px rgba(21,155,104,.08);
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.row,
.child-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:13px 0;
    border-bottom:1px solid var(--line);
}

.row small,
.child-card small{
    display:block;
    color:var(--muted);
}

.child-card{gap:12px}

.child-card>div:nth-child(2){flex:1}

.child-avatar{
    width:45px;
    height:45px;
    border-radius:14px;
    background:#effff4;
    display:grid;
    place-items:center;
    font-weight:800;
}

.child-actions{
    display:flex;
    gap:6px;
}

.child-actions form{margin:0}

.icon-btn{
    border:0;
    background:#f2f7f4;
    border-radius:10px;
    padding:8px;
    cursor:pointer;
}

.icon-btn.danger{background:#fff0ef}

.booking-list{
    display:grid;
    gap:18px;
}

.booking-card{
    padding:24px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.status{
    display:inline-block;
    background:#e9fff3;
    color:var(--green);
    font-size:11px;
    font-weight:800;
    padding:5px 10px;
    border-radius:99px;
}

.auth{
    min-height:650px;
    display:grid;
    place-items:center;
}

.auth-card{
    width:min(470px,100%);
    text-align:center;
}

.auth-card label{
    text-align:left;
    display:block;
    margin:12px 0;
}

.auth-icon{font-size:55px}

.auth-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:13px;
}

.check{
    display:flex!important;
    gap:8px;
    align-items:center;
}

.check input{width:auto!important}

.error{
    background:#fff0ef;
    color:#a8342a;
    padding:10px;
    border-radius:9px;
}

.dev-code{
    background:#fff4c8;
    padding:12px;
    border-radius:10px;
}

.layout{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:30px;
}

.filters{
    position:sticky;
    top:110px;
    display:flex;
    flex-direction:column;
    gap:13px;
}

.detail,
.profile{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.detail-media{
    height:480px;
    background:#fff4e9;
    border-radius:32px;
    display:grid;
    place-items:center;
    font-size:120px;
    overflow:hidden;
}

.detail-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.detail-price{
    font-size:36px;
    font-weight:800;
    margin:18px 0;
}

.detail-sections{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.detail-sections article{
    padding:24px;
    border:1px solid var(--line);
    border-radius:20px;
    background:#fff;
}

.badges{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.badges span{
    background:#eafff1;
    color:#16734f;
    padding:5px 10px;
    border-radius:99px;
    font-size:11px;
    font-weight:800;
}

.rating-big{
    font-size:22px;
    color:#f0a400;
    margin:10px 0;
}

.table-wrap{
    overflow:auto;
    border:1px solid var(--line);
    border-radius:18px;
}

table{
    border-collapse:collapse;
    width:100%;
    min-width:800px;
}

th,td{
    padding:13px;
    border-bottom:1px solid var(--line);
    text-align:left;
    font-size:13px;
}

th{background:#f6faf7}

.linkbtn{
    border:0;
    color:var(--green);
    font-weight:800;
    background:none;
    cursor:pointer;
}

/* Modals */
.modal,
.teacher-modal{
    position:fixed;
    inset:0;
    background:rgba(8,25,18,.68);
    backdrop-filter:blur(8px);
    z-index:150;
    display:none;
    place-items:center;
    padding:20px;
}

.modal.open,
.teacher-modal.open{
    display:grid;
}

.modal-box,
.teacher-modal-box{
    width:min(620px,100%);
    max-height:90vh;
    overflow:auto;
    background:#fff;
    padding:32px;
    border-radius:28px;
    position:relative;
    animation:pop .3s;
    box-shadow:var(--shadow-lg);
}

.close,
.modal-x{
    position:absolute;
    right:16px;
    top:12px;
    border:0;
    background:#f1f5f2;
    border-radius:50%;
    width:36px;
    height:36px;
    font-size:22px;
    cursor:pointer;
    transition:.2s;
}

.close:hover,
.modal-x:hover{
    background:var(--red-soft);
    color:var(--red);
    transform:rotate(90deg);
}

.profile-mini{
    display:flex;
    gap:18px;
    align-items:center;
}

.popup-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin:20px 0;
}

.popup-stats span{
    background:#f4faf6;
    padding:13px;
    border-radius:13px;
    font-size:11px;
}

.popup-stats b{
    display:block;
    font-size:14px;
}

/* Notifications */
.flash{
    position:fixed;
    right:20px;
    top:95px;
    z-index:500;
    background:#10261e;
    color:#fff;
    padding:13px 18px;
    border-radius:12px;
    box-shadow:var(--shadow);
    animation:slideIn .4s;
}

.flash.error{background:#a8342a}

/* WhatsApp / Mello */
.wa-float{
    position:fixed;
    right:24px;
    bottom:24px;
    border:0;
    border-radius:99px;
    background:linear-gradient(135deg,#25d366,#1ebd5c);
    color:#fff;
    padding:13px 18px;
    font-size:22px;
    z-index:90;
    box-shadow:0 13px 30px rgba(37,211,102,.35);
    cursor:pointer;
    transition:.25s;
    animation:waPulse 2.8s ease-in-out infinite;
}

.wa-float:hover{
    transform:translateY(-4px) scale(1.03);
}

.wa-float span{
    font-size:12px;
    font-weight:800;
    margin-left:5px;
}

.wa-bot{
    position:fixed;
    right:24px;
    bottom:90px;
    width:330px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 25px 70px rgba(0,0,0,.22);
    z-index:100;
    overflow:hidden;
    display:none;
}

.wa-bot.open{
    display:block;
    animation:pop .25s;
}

.wa-head{
    background:linear-gradient(135deg,#0c8f55,#16aa68);
    color:#fff;
    padding:16px;
    display:flex;
    gap:10px;
    align-items:center;
}

.wa-head small{display:block}

.wa-head button{
    margin-left:auto;
    background:none;
    border:0;
    color:#fff;
    font-size:22px;
    cursor:pointer;
}

.wa-body{
    background:#eef7f0;
    padding:16px;
}

.bot-msg{
    background:#fff;
    padding:11px;
    border-radius:0 12px 12px 12px;
    box-shadow:0 6px 15px rgba(12,95,57,.05);
}

.quick{
    display:block;
    width:100%;
    border:1px solid #b9dfca;
    background:#fff;
    color:#0c6f45;
    margin:7px 0;
    padding:10px;
    border-radius:10px;
    text-align:left;
    cursor:pointer;
    transition:.2s;
}

.quick:hover{
    background:#e9fff2;
    transform:translateX(3px);
}

.wa-open{
    display:block;
    background:#25d366;
    color:#fff;
    padding:13px;
    text-align:center;
    font-weight:800;
}

.muted{color:var(--muted)}

/* Keyframes */
@keyframes float{
    50%{transform:translateY(-18px) rotate(3deg)}
}

@keyframes bob{
    50%{transform:translateY(-12px) rotate(-5deg)}
}

@keyframes loaderBounce{
    50%{transform:translateY(-14px) rotate(2deg)}
}

@keyframes brandFloat{
    50%{transform:translateY(-3px) rotate(2deg)}
}

@keyframes shapeFloat{
    50%{transform:translateY(-12px) translateX(5px)}
}

@keyframes pulseGlow{
    50%{transform:scale(1.08);opacity:.7}
}

@keyframes pop{
    from{opacity:0;transform:scale(.92)}
    to{opacity:1;transform:scale(1)}
}

@keyframes slideIn{
    from{transform:translateX(80px);opacity:0}
}

@keyframes waPulse{
    0%,100%{box-shadow:0 13px 30px rgba(37,211,102,.35)}
    50%{box-shadow:0 13px 38px rgba(37,211,102,.55)}
}

/* Tablet */
@media(max-width:900px){
    .topbar nav{
        display:none;
        position:absolute;
        top:82px;
        left:0;
        right:0;
        background:#fff;
        padding:20px;
        flex-direction:column;
        border-bottom:1px solid var(--line);
        box-shadow:0 20px 34px rgba(21,37,31,.08);
    }

    .topbar nav.open{display:flex}
    .menu-btn{display:block}

    .hero{
        grid-template-columns:1fr;
        padding:44px 28px;
    }

    .hero-visual{min-height:320px}
    .big-melon{font-size:125px}

    .stats-strip{
        grid-template-columns:1fr 1fr;
        margin-top:20px;
    }

    .card-grid{grid-template-columns:repeat(2,1fr)}

    .video-grid,
    .membership-grid,
    .review-marquee,
    .reviews{
        grid-template-columns:1fr 1fr;
    }

    .why,
    .detail,
    .profile,
    .dash-grid,
    .admin-grid,
    .booking-card{
        grid-template-columns:1fr;
    }

    .home-cta{
        align-items:flex-start;
        flex-direction:column;
    }

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

    .live-review-form{grid-template-columns:1fr}

    .layout{grid-template-columns:1fr}

    .filters{position:static}

    .detail-sections{grid-template-columns:1fr}

    .stats{grid-template-columns:1fr 1fr}
}

/* Mobile */
@media(max-width:560px){
    main{padding:18px 16px 60px}

    section{margin:48px 0}

    .hero{
        border-radius:25px;
        padding:34px 20px;
        min-height:auto;
    }

    .hero h1{font-size:42px}

    .hero p{font-size:16px}

    .hero-visual{display:none}

    .search{
        flex-wrap:wrap;
        padding:8px;
    }

    .search-icon{display:none}

    .search input{
        width:100%;
        flex:1 1 100%;
        padding:13px;
    }

    .search button{
        width:100%;
        margin-top:5px;
        padding:12px;
    }

    .hero-actions .btn{width:100%}

    .trust-row{
        gap:9px;
        flex-direction:column;
    }

    .stats-strip{grid-template-columns:1fr}

    .category-section{padding:24px 18px}

    .card-grid,
    .video-grid,
    .membership-grid,
    .review-marquee,
    .reviews,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .soft{padding:25px 18px}

    .stats{grid-template-columns:1fr 1fr}

    .section-head{
        align-items:flex-start;
        flex-direction:column;
    }

    .section-link{margin-top:4px}

    .why{
        padding:32px 22px;
    }

    .feature-grid{grid-template-columns:1fr}

    .home-cta{padding:32px 22px}

    .footer-bottom{
        flex-direction:column;
        gap:8px;
    }

    .form-grid{grid-template-columns:1fr}

    .wa-bot{
        right:12px;
        left:12px;
        width:auto;
    }

    .wa-float{
        right:14px;
        bottom:14px;
    }

    .page-head h1{font-size:38px}

    .detail-media{height:310px}

    .profile-mini{
        align-items:flex-start;
        flex-direction:column;
    }

    .avatar.large{
        width:110px;
        height:110px;
    }
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
    *,
    *::before,
    *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        scroll-behavior:auto!important;
        transition-duration:.01ms!important;
    }

    .reveal{
        opacity:1!important;
        transform:none!important;
    }
}
.premium-activity-card{
    position:relative;
    display:flex;
    flex-direction:column;
    height:100%;
}

.activity-card-media{
    display:block;
}

.activity-card-media .cover{
    overflow:hidden;
}

.activity-placeholder{
    font-size:72px;
    transition:transform .35s ease;
}

.premium-activity-card:hover .activity-placeholder{
    transform:scale(1.12) rotate(-4deg);
}

.activity-badges{
    position:absolute;
    top:14px;
    left:14px;
    display:flex;
    gap:7px;
    flex-wrap:wrap;
    z-index:3;
}

.activity-badge{
    padding:6px 10px;
    border-radius:99px;
    color:#fff;
    font-size:10px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

.activity-badge.featured{
    background:linear-gradient(135deg,var(--red),#ff805d);
}

.activity-badge.popular{
    background:linear-gradient(135deg,var(--green),#1cbd7d);
}

.activity-mode{
    position:absolute;
    right:14px;
    bottom:14px;
    z-index:3;
    padding:6px 10px;
    border-radius:99px;
    background:rgba(255,255,255,.94);
    color:var(--dark);
    font-size:10px;
    font-weight:800;
    box-shadow:0 8px 20px rgba(21,37,31,.12);
}

.activity-card-heading{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.activity-card-heading small{
    text-transform:uppercase;
    letter-spacing:.7px;
}

.wishlist{
    width:38px;
    height:38px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border:1px solid var(--line);
    border-radius:50%;
    background:#fff;
    color:var(--red);
    font-size:20px;
    cursor:pointer;
    transition:.25s ease;
}

.wishlist:hover{
    transform:scale(1.08);
    background:var(--red-soft);
    border-color:rgba(255,91,77,.25);
}

.wishlist:disabled{
    opacity:.65;
    cursor:wait;
}

.premium-activity-card h3{
    transition:color .2s ease;
}

.premium-activity-card h3:hover{
    color:var(--green);
}

.activity-details{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin:16px 0 12px;
}

.activity-details span{
    padding:9px 10px;
    border-radius:12px;
    background:#f6faf7;
    color:var(--muted);
    font-size:11px;
}

.activity-details b{
    display:block;
    color:var(--dark);
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.activity-rating{
    min-height:28px;
    display:flex;
    align-items:center;
    gap:5px;
    color:var(--muted);
    font-size:12px;
}

.rating-stars{
    color:#ffad0a;
    font-size:18px;
}

.new-activity{
    padding:5px 9px;
    border-radius:99px;
    background:var(--green-soft);
    color:var(--green-dark);
    font-weight:800;
}

.premium-activity-card .price{
    padding-top:15px;
    border-top:1px solid var(--line);
}

.premium-activity-card .price div small{
    display:block;
    color:var(--muted);
    font-size:10px;
}

.activity-view-link{
    color:var(--green);
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
    transition:.2s ease;
}

.activity-view-link:hover{
    color:var(--green-dark);
    transform:translateX(3px);
}

@media(max-width:560px){
    .activity-details{
        grid-template-columns:1fr 1fr;
    }

    .premium-activity-card .cover{
        height:225px;
    }
}
.discover-head{
    background:
        radial-gradient(circle at 12% 15%,rgba(255,200,90,.18),transparent 28%),
        radial-gradient(circle at 88% 10%,rgba(21,155,104,.13),transparent 28%),
        linear-gradient(135deg,#fff6ec,#effff5);
}

.discover-head p{
    max-width:680px;
    margin:12px auto 0;
    color:var(--muted);
}

.discover-trust{
    margin-top:22px;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.discover-trust span{
    background:rgba(255,255,255,.82);
    border:1px solid rgba(21,155,104,.12);
    border-radius:99px;
    padding:8px 13px;
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}

.discover-layout{
    display:grid;
    grid-template-columns:280px minmax(0,1fr);
    gap:30px;
    align-items:start;
}

.discover-sidebar{
    position:sticky;
    top:105px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:24px;
    box-shadow:var(--shadow-sm);
}

.filter-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:12px;
    margin-bottom:20px;
}

.filter-heading h3{
    margin:6px 0 0;
}

.clear-filters{
    color:var(--red);
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
}

.discover-filters{
    position:static;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.discover-filters label{
    display:flex;
    flex-direction:column;
    gap:7px;
    font-size:13px;
    font-weight:800;
}

.discover-filters input,
.discover-filters select{
    width:100%;
    min-height:46px;
    padding:11px 13px;
    border:1px solid var(--line);
    border-radius:12px;
    background:#fff;
    outline:none;
    transition:.2s ease;
}

.discover-filters input:focus,
.discover-filters select:focus{
    border-color:rgba(21,155,104,.5);
    box-shadow:0 0 0 4px rgba(21,155,104,.08);
}

.filter-input-wrap{
    position:relative;
}

.filter-input-wrap > span{
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);
    color:var(--green);
    font-weight:800;
    pointer-events:none;
}

.filter-input-wrap input{
    padding-left:40px;
}

.filter-submit{
    width:100%;
    margin-top:4px;
}

.filter-help{
    margin-top:22px;
    padding:15px;
    border-radius:16px;
    background:linear-gradient(135deg,var(--green-soft),var(--cream));
    display:flex;
    gap:11px;
    align-items:flex-start;
}

.filter-help > span{
    font-size:25px;
}

.filter-help b{
    display:block;
    font-size:13px;
}

.filter-help p{
    margin:3px 0 0;
    color:var(--muted);
    font-size:11px;
}

.discover-results{
    min-width:0;
}

.results-toolbar{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:24px;
}

.results-toolbar h2{
    margin-bottom:4px;
}

.results-toolbar p{
    margin:0;
    color:var(--muted);
}

.discover-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
}

.discover-empty{
    min-height:380px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.discover-empty .hero-actions{
    margin-top:18px;
}

@media(max-width:1050px){
    .discover-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:800px){
    .discover-layout{
        grid-template-columns:1fr;
    }

    .discover-sidebar{
        position:static;
    }
}

@media(max-width:560px){
    .discover-trust{
        justify-content:flex-start;
    }

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

    .discover-empty .hero-actions{
        width:100%;
    }

    .discover-empty .btn{
        width:100%;
    }
}
/* =========================================
   PREMIUM TEACHER PROFILE
========================================= */

.teacher-profile-hero{
    min-height:560px;
    padding:55px;
    border-radius:38px;
    display:grid;
    grid-template-columns:minmax(280px,.8fr) 1.2fr;
    gap:55px;
    align-items:center;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(255,200,90,.22),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 12%,
            rgba(21,155,104,.15),
            transparent 28%
        ),
        linear-gradient(135deg,#fff6ec,#effff5);
    border:1px solid rgba(21,155,104,.1);
    overflow:hidden;
    position:relative;
}

.teacher-profile-hero::before{
    content:"";
    position:absolute;
    width:240px;
    height:240px;
    right:-85px;
    bottom:-85px;
    border-radius:50%;
    border:42px solid rgba(255,255,255,.52);
}

.teacher-profile-photo{
    position:relative;
    z-index:2;
}

.teacher-profile-avatar{
    width:100%;
    max-width:410px;
    aspect-ratio:1 / 1.08;
    margin:auto;
    border-radius:34px;
    display:grid;
    place-items:center;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 50% 35%,
            #fff,
            #fff2e4
        );
    font-size:130px;
    box-shadow:
        0 30px 70px rgba(21,37,31,.17);
    border:8px solid rgba(255,255,255,.8);
}

.teacher-profile-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.teacher-verified-label{
    position:absolute;
    left:50%;
    bottom:-16px;
    transform:translateX(-50%);
    padding:9px 17px;
    border-radius:99px;
    background:linear-gradient(
        135deg,
        var(--green),
        #1ab979
    );
    color:#fff;
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
    box-shadow:
        0 12px 27px rgba(21,155,104,.28);
}

.teacher-profile-content{
    position:relative;
    z-index:2;
}

.teacher-profile-content h1{
    margin-bottom:8px;
}

.teacher-specialisation{
    margin:0;
    color:var(--green-dark);
    font-size:19px;
    font-weight:800;
}

.teacher-rating-row{
    margin:20px 0;
    display:flex;
    align-items:center;
    gap:13px;
    flex-wrap:wrap;
}

.teacher-rating-row p{
    margin:0;
    color:var(--muted);
    font-size:13px;
}

.teacher-rating-score{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 13px;
    border-radius:99px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.teacher-rating-score span{
    color:#ffad0a;
    font-size:21px;
}

.teacher-rating-score b{
    font-size:17px;
}

.new-teacher-label{
    display:inline-flex;
    padding:8px 13px;
    border-radius:99px;
    background:var(--green-soft);
    color:var(--green-dark);
    font-size:12px;
    font-weight:800;
}

.teacher-profile-badges{
    display:flex;
    gap:9px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

.teacher-profile-badges span{
    padding:8px 12px;
    border-radius:99px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(21,155,104,.13);
    color:var(--green-dark);
    font-size:11px;
    font-weight:800;
}

.teacher-about{
    max-width:720px;
}

.teacher-about h3{
    margin-bottom:7px;
}

.teacher-about p{
    color:var(--muted);
    line-height:1.75;
}

.teacher-profile-actions{
    margin-top:25px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}


/* Teacher overview statistics */

.teacher-profile-stats{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
    margin-top:-24px;
    position:relative;
    z-index:5;
}

.teacher-profile-stats article{
    min-width:0;
    padding:20px;
    border-radius:20px;
    display:flex;
    align-items:flex-start;
    gap:13px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(21,155,104,.1);
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.teacher-profile-stats article:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.teacher-profile-stats article > span{
    width:48px;
    height:48px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:15px;
    background:linear-gradient(
        145deg,
        var(--red-soft),
        var(--green-soft)
    );
    font-size:23px;
}

.teacher-profile-stats small,
.teacher-profile-stats strong{
    display:block;
}

.teacher-profile-stats small{
    color:var(--muted);
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.6px;
    font-weight:800;
}

.teacher-profile-stats strong{
    margin-top:3px;
    font-size:13px;
    overflow-wrap:anywhere;
}


/* Teacher detail cards */

.teacher-detail-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}

.teacher-detail-card{
    padding:26px;
    border-radius:23px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    transition:.28s ease;
}

.teacher-detail-card:hover{
    transform:translateY(-7px);
    border-color:rgba(21,155,104,.2);
    box-shadow:var(--shadow);
}

.teacher-detail-icon{
    width:55px;
    height:55px;
    margin-bottom:17px;
    border-radius:17px;
    display:grid;
    place-items:center;
    background:linear-gradient(
        145deg,
        var(--cream-2),
        var(--green-soft)
    );
    font-size:26px;
}

.teacher-detail-card h3{
    margin:0 0 9px;
}

.teacher-detail-card p{
    margin:0;
    color:var(--muted);
}

.teacher-verification-list{
    display:flex;
    flex-direction:column;
    gap:9px;
}

.teacher-verification-list span{
    color:var(--muted);
    font-size:12px;
    font-weight:700;
}

.teacher-verification-list span.verified{
    color:var(--green-dark);
}


/* Teacher reviews */

.teacher-reviews-section{
    padding:45px;
    border-radius:34px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(255,200,90,.12),
            transparent 29%
        ),
        var(--cream);
    border:1px solid rgba(255,200,90,.19);
}

.teacher-overall-rating{
    min-width:130px;
    padding:14px 18px;
    border-radius:18px;
    background:#fff;
    text-align:center;
    box-shadow:var(--shadow-sm);
}

.teacher-overall-rating span{
    color:#ffad0a;
    font-size:22px;
}

.teacher-overall-rating strong{
    margin-left:5px;
    font-size:24px;
}

.teacher-overall-rating small{
    display:block;
    color:var(--muted);
    margin-top:2px;
}

.teacher-review-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.teacher-review-card{
    padding:26px;
    border-radius:23px;
    background:#fff;
    border:1px solid var(--line);
    box-shadow:var(--shadow-sm);
    transition:.27s ease;
    position:relative;
    overflow:hidden;
}

.teacher-review-card::after{
    content:"“";
    position:absolute;
    right:18px;
    top:2px;
    color:rgba(21,155,104,.08);
    font-family:Georgia,serif;
    font-size:75px;
    line-height:1;
}

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

.teacher-review-header{
    display:flex;
    align-items:center;
    gap:11px;
    margin-bottom:14px;
    position:relative;
    z-index:2;
}

.teacher-review-header b,
.teacher-review-header small{
    display:block;
}

.teacher-review-header small{
    color:var(--muted);
}

.teacher-review-card h3{
    margin:8px 0;
}

.teacher-review-card p{
    color:var(--muted);
    position:relative;
    z-index:2;
}

.review-session-label{
    margin-top:17px;
    padding:9px 11px;
    border-radius:12px;
    background:#f5faf7;
    color:var(--muted);
    font-size:10px;
}

.review-session-label strong{
    color:var(--green-dark);
}

.teacher-review-empty{
    background:#fff;
}


/* Teacher profile call to action */

.teacher-profile-cta{
    padding:44px;
    border-radius:31px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:28px;
    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(255,91,77,.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 100% 0%,
            rgba(21,155,104,.12),
            transparent 30%
        ),
        linear-gradient(135deg,#fff8ef,#effff5);
    border:1px solid rgba(21,155,104,.1);
}

.teacher-profile-cta h2{
    max-width:700px;
}

.teacher-profile-cta p{
    margin-bottom:0;
    color:var(--muted);
}


/* Tablet */

@media(max-width:1000px){

    .teacher-profile-hero{
        grid-template-columns:1fr 1.15fr;
        gap:35px;
        padding:42px;
    }

    .teacher-profile-stats{
        grid-template-columns:1fr 1fr;
        margin-top:20px;
    }

    .teacher-detail-grid{
        grid-template-columns:1fr 1fr;
    }

    .teacher-review-grid{
        grid-template-columns:1fr 1fr;
    }
}


/* Mobile */

@media(max-width:700px){

    .teacher-profile-hero{
        grid-template-columns:1fr;
        padding:30px 20px;
        min-height:auto;
        border-radius:27px;
    }

    .teacher-profile-avatar{
        max-width:300px;
    }

    .teacher-profile-content{
        text-align:center;
    }

    .teacher-profile-content .eyebrow{
        justify-content:center;
    }

    .teacher-rating-row,
    .teacher-profile-badges,
    .teacher-profile-actions{
        justify-content:center;
    }

    .teacher-profile-actions .btn{
        width:100%;
    }

    .teacher-profile-stats,
    .teacher-detail-grid,
    .teacher-review-grid{
        grid-template-columns:1fr;
    }

    .teacher-reviews-section{
        padding:28px 18px;
    }

    .teacher-profile-cta{
        padding:31px 21px;
        flex-direction:column;
        align-items:flex-start;
    }

    .teacher-profile-cta .hero-actions{
        width:100%;
    }

    .teacher-profile-cta .btn{
        width:100%;
    }
}
/* =========================================
   PREMIUM PARENT DASHBOARD
========================================= */

.parent-dashboard-head{
    min-height:330px;
    padding:48px;
    border-radius:36px;
    display:grid;
    grid-template-columns:1.3fr .7fr;
    align-items:center;
    gap:35px;
    overflow:hidden;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(255,200,90,.2),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(21,155,104,.15),
            transparent 30%
        ),
        linear-gradient(135deg,#fff6ec,#effff5);
    border:1px solid rgba(21,155,104,.1);
}

.parent-welcome p{
    max-width:680px;
    color:var(--muted);
    font-size:17px;
}

.parent-welcome-visual{
    min-height:230px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:30px;
    background:rgba(255,255,255,.55);
    border:1px solid rgba(255,255,255,.8);
    backdrop-filter:blur(10px);
}

.parent-melon{
    font-size:105px;
    animation:float 4s ease-in-out infinite;
    filter:drop-shadow(0 22px 22px rgba(21,155,104,.18));
}

.parent-welcome-visual strong,
.parent-welcome-visual span{
    display:block;
}

.parent-welcome-visual span{
    color:var(--muted);
    font-size:12px;
}


.parent-dashboard-stats{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
    margin-top:-28px;
    position:relative;
    z-index:5;
}

.parent-dashboard-stats article{
    padding:20px;
    display:flex;
    align-items:center;
    gap:14px;
    border-radius:20px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(21,155,104,.1);
    box-shadow:var(--shadow-sm);
    transition:.25s ease;
}

.parent-dashboard-stats article:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.dashboard-stat-icon{
    width:48px;
    height:48px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:15px;
    background:linear-gradient(
        145deg,
        var(--cream-2),
        var(--green-soft)
    );
    font-size:22px;
}

.parent-dashboard-stats strong,
.parent-dashboard-stats small{
    display:block;
}

.parent-dashboard-stats strong{
    font-family:Fredoka;
    font-size:27px;
    line-height:1;
}

.parent-dashboard-stats small{
    margin-top:4px;
    color:var(--muted);
}


.parent-dashboard-grid,
.parent-support-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:24px;
    align-items:start;
}

.parent-dashboard-grid .panel,
.parent-support-grid .panel{
    padding:28px;
}


.parent-child-list{
    display:grid;
    gap:15px;
}

.parent-child-card{
    padding:18px;
    display:flex;
    align-items:flex-start;
    gap:15px;
    border-radius:19px;
    border:1px solid var(--line);
    background:linear-gradient(135deg,#fff,#fbfdfc);
    transition:.25s;
}

.parent-child-card:hover{
    border-color:rgba(21,155,104,.22);
    box-shadow:var(--shadow-sm);
}

.parent-child-card .child-avatar{
    width:55px;
    height:55px;
    flex:0 0 auto;
    border-radius:17px;
    font-size:18px;
}

.parent-child-info{
    flex:1;
    min-width:0;
}

.parent-child-title{
    display:flex;
    justify-content:space-between;
    gap:15px;
}

.parent-child-title h3{
    margin:0 0 3px;
}

.parent-child-title > div > span{
    color:var(--muted);
    font-size:12px;
}

.child-profile-details{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
    margin-top:14px;
}

.child-profile-details > div{
    padding:10px;
    border-radius:12px;
    background:#f6faf7;
}

.child-profile-details small{
    display:block;
    color:var(--green-dark);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.5px;
    font-size:9px;
}

.child-profile-details p{
    margin:3px 0 0;
    color:var(--muted);
    font-size:11px;
}

.child-profile-details .important-child-note{
    background:var(--red-soft);
}


.saved-activity-list{
    display:grid;
    gap:11px;
}

.saved-activity-row{
    padding:12px;
    display:flex;
    align-items:center;
    gap:12px;
    border-radius:17px;
    border:1px solid var(--line);
    background:#fff;
    transition:.25s;
}

.saved-activity-row:hover{
    transform:translateX(4px);
    border-color:rgba(21,155,104,.22);
    box-shadow:var(--shadow-sm);
}

.saved-activity-icon{
    width:58px;
    height:58px;
    flex:0 0 auto;
    border-radius:15px;
    overflow:hidden;
    display:grid;
    place-items:center;
    background:linear-gradient(
        145deg,
        var(--cream-2),
        var(--green-soft)
    );
    font-size:28px;
}

.saved-activity-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.saved-activity-info{
    flex:1;
    min-width:0;
}

.saved-activity-info b,
.saved-activity-info small,
.saved-activity-info span{
    display:block;
}

.saved-activity-info small{
    color:var(--muted);
    font-size:10px;
}

.saved-activity-info span{
    color:var(--red);
    font-weight:800;
    margin-top:3px;
}

.saved-activity-arrow{
    color:var(--green);
    font-weight:800;
}


.parent-booking-section{
    scroll-margin-top:100px;
}

.parent-booking-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:20px;
}

.parent-booking-card{
    padding:25px;
    border-radius:24px;
    border:1px solid var(--line);
    background:#fff;
    box-shadow:var(--shadow-sm);
    transition:.28s;
}

.parent-booking-card:hover{
    transform:translateY(-5px);
    box-shadow:var(--shadow);
}

.booking-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:18px;
}

.booking-code{
    color:var(--muted);
    font-size:10px;
    font-weight:800;
}

.booking-activity-title{
    display:flex;
    align-items:center;
    gap:13px;
}

.booking-activity-title h3,
.booking-activity-title p{
    margin:0;
}

.booking-activity-title p{
    color:var(--muted);
    font-size:12px;
}

.booking-activity-icon{
    width:62px;
    height:62px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    overflow:hidden;
    border-radius:17px;
    background:linear-gradient(
        145deg,
        var(--cream-2),
        var(--green-soft)
    );
    font-size:29px;
}

.booking-activity-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.booking-information-grid{
    margin:20px 0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:9px;
}

.booking-information-grid div{
    padding:10px;
    border-radius:12px;
    background:#f7faf8;
}

.booking-information-grid small,
.booking-information-grid strong{
    display:block;
}

.booking-information-grid small{
    color:var(--muted);
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:.5px;
    font-weight:800;
}

.booking-information-grid strong{
    margin-top:3px;
    font-size:11px;
}

.booking-teacher{
    padding:12px;
    display:flex;
    align-items:center;
    gap:11px;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        var(--green-soft),
        var(--cream)
    );
}

.booking-teacher-icon{
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:#fff;
}

.booking-teacher small,
.booking-teacher strong{
    display:block;
}

.booking-teacher small{
    color:var(--muted);
    font-size:9px;
}

.booking-progress{
    margin:23px 0;
}

.booking-progress-line{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    align-items:center;
    position:relative;
}

.booking-progress-line::before{
    content:"";
    position:absolute;
    left:10%;
    right:10%;
    top:50%;
    height:3px;
    background:var(--line);
    transform:translateY(-50%);
}

.booking-progress-line span{
    width:14px;
    height:14px;
    margin:auto;
    border-radius:50%;
    background:#dfe8e3;
    border:3px solid #fff;
    box-shadow:0 0 0 2px var(--line);
    position:relative;
    z-index:2;
}

.booking-progress-line span.complete{
    background:var(--green);
    box-shadow:0 0 0 2px rgba(21,155,104,.22);
}

.booking-progress-labels{
    margin-top:8px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    color:var(--muted);
    font-size:9px;
}


.completed-booking-list{
    display:grid;
    gap:20px;
}

.completed-booking-card{
    padding:26px;
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:28px;
    border-radius:24px;
    border:1px solid var(--line);
    background:linear-gradient(135deg,#fff,#fbfdfc);
    box-shadow:var(--shadow-sm);
}

.completed-booking-summary{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.completed-booking-icon{
    width:48px;
    height:48px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--green);
    color:#fff;
    font-size:22px;
    font-weight:800;
}

.completed-booking-summary h3{
    margin:9px 0 4px;
}

.completed-booking-summary p{
    margin:0;
    color:var(--muted);
}

.completed-booking-summary small{
    display:block;
    margin-top:8px;
    color:var(--muted);
}

.parent-feedback-form{
    padding:20px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        var(--green-soft),
        var(--cream)
    );
}

.parent-feedback-form label > span,
.support-create-panel label > span{
    display:block;
    margin-bottom:5px;
    font-size:11px;
    font-weight:800;
}


.support-create-panel > p{
    color:var(--muted);
}

.support-ticket-list{
    display:grid;
    gap:13px;
}

.support-ticket-card{
    padding:17px;
    border-radius:17px;
    border:1px solid var(--line);
    background:#fff;
}

.support-ticket-heading{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:15px;
}

.support-ticket-heading h3{
    margin:4px 0 0;
    font-size:16px;
}

.support-ticket-heading b{
    color:var(--green);
    font-size:10px;
}

.support-ticket-reply{
    margin-top:14px;
    padding:12px;
    border-radius:13px;
    background:var(--green-soft);
}

.support-ticket-reply small{
    color:var(--green-dark);
    font-weight:800;
}

.support-ticket-reply p{
    margin:5px 0 0;
    color:var(--muted);
}


.parent-empty-state{
    padding:30px 18px;
}

.parent-booking-empty{
    min-height:330px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}


/* Tablet */

@media(max-width:1000px){

    .parent-dashboard-grid,
    .parent-support-grid{
        grid-template-columns:1fr;
    }

    .parent-dashboard-stats{
        grid-template-columns:1fr 1fr;
        margin-top:20px;
    }

    .parent-booking-grid{
        grid-template-columns:1fr;
    }
}


/* Mobile */

@media(max-width:700px){

    .parent-dashboard-head{
        grid-template-columns:1fr;
        padding:31px 21px;
        border-radius:27px;
    }

    .parent-welcome-visual{
        display:none;
    }

    .parent-dashboard-stats{
        grid-template-columns:1fr 1fr;
    }

    .parent-dashboard-grid .panel,
    .parent-support-grid .panel{
        padding:20px;
    }

    .parent-child-card{
        align-items:flex-start;
    }

    .parent-child-title{
        flex-direction:column;
    }

    .child-profile-details{
        grid-template-columns:1fr;
    }

    .completed-booking-card{
        grid-template-columns:1fr;
        padding:20px;
    }

    .booking-information-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:460px){

    .parent-dashboard-stats{
        grid-template-columns:1fr;
    }

    .booking-information-grid{
        grid-template-columns:1fr;
    }
}
/* =========================================
   PREMIUM ACTIVITY DETAILS PAGE
========================================= */

.activity-detail-hero{
    min-height:590px;
    padding:48px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
    border-radius:38px;
    background:
        radial-gradient(circle at 10% 10%,rgba(255,200,90,.18),transparent 30%),
        radial-gradient(circle at 90% 10%,rgba(21,155,104,.14),transparent 30%),
        linear-gradient(135deg,#fff6ec,#effff5);
    border:1px solid rgba(21,155,104,.1);
}

.activity-detail-media{
    height:500px;
    position:relative;
    display:grid;
    place-items:center;
    overflow:hidden;
    border-radius:32px;
    background:linear-gradient(145deg,#fff0e6,#e9fff2);
    box-shadow:0 28px 70px rgba(21,37,31,.14);
}

.activity-detail-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.activity-detail-placeholder{
    font-size:145px;
    animation:float 4s ease-in-out infinite;
}

.activity-detail-badges{
    position:absolute;
    top:18px;
    left:18px;
    display:flex;
    gap:8px;
}

.activity-video-button{
    position:absolute;
    left:50%;
    bottom:20px;
    transform:translateX(-50%);
    padding:10px 17px;
    border-radius:99px;
    background:rgba(255,255,255,.94);
    color:var(--dark);
    font-size:12px;
    font-weight:800;
    white-space:nowrap;
    box-shadow:var(--shadow);
}

.activity-detail-content h1{
    margin-bottom:10px;
}

.activity-detail-lead{
    color:var(--muted);
    font-size:18px;
    line-height:1.75;
}

.activity-detail-rating{
    margin:18px 0;
    display:flex;
    align-items:center;
    gap:11px;
}

.activity-detail-rating div{
    padding:7px 12px;
    display:flex;
    align-items:center;
    gap:7px;
    border-radius:99px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.activity-detail-rating div span{
    color:#ffad0a;
    font-size:20px;
}

.activity-detail-rating small{
    color:var(--muted);
}

.activity-summary-grid{
    margin:24px 0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:11px;
}

.activity-summary-grid article{
    padding:14px;
    display:flex;
    align-items:center;
    gap:11px;
    border-radius:16px;
    background:rgba(255,255,255,.82);
    border:1px solid rgba(21,155,104,.1);
}

.activity-summary-grid article > span{
    width:42px;
    height:42px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:13px;
    background:var(--green-soft);
    font-size:20px;
}

.activity-summary-grid small,
.activity-summary-grid strong{
    display:block;
}

.activity-summary-grid small{
    color:var(--muted);
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:.5px;
    font-weight:800;
}

.activity-summary-grid strong{
    font-size:12px;
    margin-top:2px;
}

.activity-detail-price{
    margin:20px 0;
}

.activity-detail-price small{
    display:block;
    color:var(--muted);
}

.activity-detail-price strong{
    display:block;
    color:var(--red);
    font-family:Fredoka;
    font-size:44px;
}

.activity-detail-price strong span{
    color:var(--muted);
    font-family:'DM Sans';
    font-size:12px;
}

.activity-detail-actions{
    display:flex;
    gap:11px;
    flex-wrap:wrap;
}

.activity-booking-trust{
    margin-top:20px;
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    color:var(--muted);
    font-size:11px;
    font-weight:700;
}

.activity-information-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.activity-information-card{
    padding:28px;
    border-radius:23px;
    border:1px solid var(--line);
    background:#fff;
    box-shadow:var(--shadow-sm);
    transition:.25s;
}

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

.activity-information-icon{
    width:55px;
    height:55px;
    margin-bottom:16px;
    display:grid;
    place-items:center;
    border-radius:17px;
    background:linear-gradient(145deg,var(--cream-2),var(--green-soft));
    font-size:26px;
}

.activity-information-card p{
    color:var(--muted);
    white-space:pre-line;
}

.activity-session-guide{
    padding:45px;
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:40px;
    align-items:center;
    border-radius:32px;
    background:linear-gradient(135deg,var(--dark-2),#17402f);
    color:#fff;
}

.activity-session-guide h2{
    color:#fff;
}

.activity-session-guide p{
    color:#bfd1c9;
}

.activity-session-guide .eyebrow{
    color:#83e4b8;
}

.activity-session-steps{
    display:grid;
    gap:12px;
}

.activity-session-steps article{
    padding:15px;
    display:flex;
    align-items:center;
    gap:13px;
    border-radius:16px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
}

.activity-session-steps article > span{
    width:40px;
    height:40px;
    flex:0 0 auto;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--red);
    font-weight:800;
}

.activity-session-steps strong,
.activity-session-steps small{
    display:block;
}

.activity-session-steps small{
    color:#bfd1c9;
}

.activity-teacher-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.activity-teacher-card{
    padding:25px;
    border-radius:23px;
    border:1px solid var(--line);
    background:#fff;
    box-shadow:var(--shadow-sm);
    transition:.25s;
}

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

.activity-teacher-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
}

.activity-teacher-card h3{
    margin:15px 0 4px;
}

.activity-teacher-card p{
    margin:0 0 12px;
    color:var(--muted);
}

.activity-teacher-meta{
    display:flex;
    gap:7px;
    flex-wrap:wrap;
    margin-bottom:12px;
}

.activity-teacher-meta span{
    padding:5px 9px;
    border-radius:99px;
    background:#f5faf7;
    color:var(--green-dark);
    font-size:10px;
    font-weight:800;
}

.teacher-experience{
    display:block;
    margin-bottom:16px;
    color:var(--muted);
}

.activity-reviews-section{
    padding:43px;
    border-radius:33px;
    background:var(--cream);
}

.activity-overall-rating{
    min-width:125px;
    padding:13px;
    text-align:center;
    border-radius:17px;
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.activity-overall-rating span{
    color:#ffad0a;
    font-size:21px;
}

.activity-overall-rating strong{
    font-size:23px;
}

.activity-overall-rating small{
    display:block;
    color:var(--muted);
}

.activity-review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.activity-review-card{
    padding:25px;
    border-radius:22px;
    border:1px solid var(--line);
    background:#fff;
    box-shadow:var(--shadow-sm);
}

.activity-review-card h3{
    margin:8px 0;
}

.activity-review-card p{
    color:var(--muted);
}

.activity-review-empty{
    background:#fff;
}

.booking-modal-box{
    width:min(650px,100%);
}

.activity-booking-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.activity-booking-form label > span{
    display:block;
    margin-bottom:6px;
    font-size:11px;
    font-weight:800;
}

.activity-booking-form input,
.activity-booking-form select,
.activity-booking-form textarea{
    width:100%;
    padding:12px 14px;
    border:1px solid var(--line);
    border-radius:12px;
    outline:none;
}

.activity-booking-form input:focus,
.activity-booking-form select:focus,
.activity-booking-form textarea:focus{
    border-color:rgba(21,155,104,.5);
    box-shadow:0 0 0 4px rgba(21,155,104,.08);
}

.booking-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.booking-modal-summary{
    padding:14px;
    display:flex;
    justify-content:space-between;
    border-radius:14px;
    background:var(--green-soft);
}

.booking-modal-summary strong{
    color:var(--green-dark);
    font-size:20px;
}

.booking-message{
    min-height:24px;
    margin:0;
    color:var(--green-dark);
    font-weight:700;
}

@media(max-width:950px){

    .activity-detail-hero{
        grid-template-columns:1fr;
    }

    .activity-detail-media{
        height:430px;
    }

    .activity-information-grid,
    .activity-teacher-grid,
    .activity-review-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:700px){

    .activity-detail-hero{
        padding:25px 18px;
        border-radius:27px;
    }

    .activity-detail-media{
        height:320px;
    }

    .activity-detail-placeholder{
        font-size:100px;
    }

    .activity-summary-grid,
    .activity-information-grid,
    .activity-teacher-grid,
    .activity-review-grid{
        grid-template-columns:1fr;
    }

    .activity-detail-actions .btn{
        width:100%;
    }

    .activity-session-guide{
        padding:30px 20px;
        grid-template-columns:1fr;
    }

    .activity-reviews-section{
        padding:27px 18px;
    }

    .booking-form-grid{
        grid-template-columns:1fr;
    }
}
.legal-page{
    max-width:1100px;
    margin:40px auto;
    display:grid;
    gap:24px;
}

.legal-card{
    background:#fff;
    border:1px solid #e7ece8;
    border-radius:20px;
    padding:28px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.legal-card h2{
    margin-bottom:14px;
    color:#1c3d33;
}

.legal-card h3{
    margin:20px 0 10px;
    color:#2d5b4c;
}

.legal-card ul{
    padding-left:22px;
    line-height:1.9;
}

.legal-card p{
    line-height:1.8;
    color:#555;
}

/* v2.3 careers, legal footer and promotional offers */
.footer-grid-expanded{grid-template-columns:1.35fr repeat(4,minmax(150px,1fr));gap:32px}.site-footer .footer-grid a{display:block;margin:.5rem 0}.footer-note{font-size:.9rem;opacity:.8}.home-offer-image{width:100%;height:170px;object-fit:cover;border-radius:18px;margin-bottom:14px}.admin-offer-thumb{width:110px;height:72px;object-fit:cover;border-radius:12px;margin-bottom:10px}.floating-offer{position:fixed;left:22px;bottom:22px;z-index:1100;width:min(390px,calc(100vw - 32px));background:#fff;border-radius:24px;box-shadow:0 24px 70px rgba(24,35,28,.24);overflow:hidden;border:1px solid rgba(0,0,0,.07);animation:offerPop .5s ease both}.floating-offer img{width:100%;height:150px;object-fit:cover;display:block}.floating-offer-copy{padding:18px 20px 20px}.floating-offer-copy>span{display:inline-block;font-weight:800;font-size:.78rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:6px}.floating-offer-copy strong{display:block;font-size:1.25rem;margin-bottom:6px}.floating-offer-copy p{margin:0 0 10px;line-height:1.45}.floating-code{display:inline-block;padding:7px 10px;border:1px dashed currentColor;border-radius:10px;margin-right:8px}.floating-offer-copy a{display:inline-block;font-weight:800;text-decoration:none;margin-top:8px}.floating-offer-close{position:absolute;right:10px;top:10px;width:34px;height:34px;border:0;border-radius:50%;background:rgba(255,255,255,.95);font-size:1.35rem;cursor:pointer;z-index:2}.floating-offer.is-hidden{display:none}@keyframes offerPop{from{opacity:0;transform:translateY(24px) scale(.96)}to{opacity:1;transform:none}}@media(max-width:1100px){.footer-grid-expanded{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.footer-grid-expanded{grid-template-columns:1fr}.floating-offer{left:16px;bottom:16px}.home-offer-image{height:145px}}
/* =========================================================
   PREMIUM MELONMINDS FOOTER
========================================================= */

.premium-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 0%,
            rgba(43, 189, 125, 0.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 110%,
            rgba(255, 91, 77, 0.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071f18 0%,
            #0a2b20 52%,
            #0d3425 100%
        );

    color: #ffffff;
    padding: 78px 0 0;
    margin-top: 70px;
}


.footer-decoration {
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}


.footer-decoration-one {
    width: 280px;
    height: 280px;
    right: -100px;
    top: -150px;
    background: rgba(44, 220, 132, 0.08);
}


.footer-decoration-two {
    width: 220px;
    height: 220px;
    left: -90px;
    bottom: -120px;
    background: rgba(255, 91, 77, 0.06);
}


.footer-main {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns:
        minmax(250px, 1.3fr)
        minmax(150px, .75fr)
        minmax(235px, 1.05fr)
        minmax(190px, .9fr)
        minmax(240px, 1.05fr);

    gap: 54px;
    align-items: start;
}


.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: #ffffff;
    text-decoration: none;

    margin-bottom: 20px;
}


.footer-logo-icon {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    font-size: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.13),
            rgba(255,255,255,.04)
        );

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.1),
        0 14px 30px rgba(0,0,0,.2);
}


.footer-logo strong {
    display: block;

    font-size: 23px;
    line-height: 1.05;

    letter-spacing: -0.4px;
}


.footer-logo small {
    display: block;

    color: rgba(255,255,255,.58);

    margin-top: 6px;

    font-size: 11px;
    letter-spacing: .7px;
}


.footer-brand-description {
    max-width: 310px;

    margin: 0 0 25px;

    color: rgba(255,255,255,.70);

    font-size: 14px;
    line-height: 1.8;
}


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


.footer-socials a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 12px;

    border-radius: 12px;

    color: rgba(255,255,255,.84);

    font-size: 11px;

    text-decoration: none;

    border: 1px solid rgba(255,255,255,.11);

    background: rgba(255,255,255,.045);

    transition:
        transform .2s ease,
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}


.footer-socials a:hover {
    transform: translateY(-2px);

    color: #ffffff;

    background: rgba(255,255,255,.09);

    border-color: rgba(255,255,255,.22);
}


.footer-column h4,
.footer-support-section h4 {
    margin: 0 0 23px;

    color: #ffc64d;

    font-size: 13px;

    letter-spacing: .45px;

    text-transform: uppercase;
}


.footer-column > a {
    position: relative;

    display: block;

    width: fit-content;

    color: rgba(255,255,255,.84);

    margin-bottom: 15px;

    text-decoration: none;

    font-size: 13px;

    line-height: 1.5;

    transition:
        color .2s ease,
        transform .2s ease;
}


.footer-column > a:not(.footer-career-cta)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -3px;

    width: 0;
    height: 1px;

    background: #39d98a;

    transition: width .2s ease;
}


.footer-column > a:hover {
    color: #ffffff;
    transform: translateX(3px);
}


.footer-column > a:not(.footer-career-cta):hover::after {
    width: 100%;
}


.footer-career-cta {
    width: 100% !important;

    display: flex !important;
    align-items: center;
    gap: 11px;

    padding: 13px 14px;

    margin: 0 0 17px !important;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            rgba(50, 212, 126, .15),
            rgba(50, 212, 126, .055)
        );

    border: 1px solid rgba(76, 224, 149, .22);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05);

    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease !important;
}


.footer-career-cta:hover {
    transform: translateY(-2px) !important;

    border-color: rgba(76, 224, 149, .44);

    background:
        linear-gradient(
            135deg,
            rgba(50, 212, 126, .23),
            rgba(50, 212, 126, .08)
        );
}


.career-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: rgba(255,255,255,.08);
}


.footer-career-cta strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
}


.footer-career-cta small {
    display: block;

    color: rgba(255,255,255,.55);

    margin-top: 3px;

    font-size: 10px;
}


.footer-note {
    margin: 18px 0 0;

    max-width: 230px;

    color: rgba(255,255,255,.45);

    font-size: 11px;

    line-height: 1.7;
}


.footer-legal {
    max-height: none;
}


.footer-support-card {
    display: flex;
    gap: 12px;
    align-items: center;

    padding: 15px;

    border-radius: 16px;

    background: rgba(255,255,255,.055);

    border: 1px solid rgba(255,255,255,.1);
}


.footer-support-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: #ffffff;

    background: rgba(57, 217, 138, .14);

    border: 1px solid rgba(57, 217, 138, .20);
}


.footer-support-card small {
    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.48);

    font-size: 10px;
}


.footer-support-card a {
    color: #ffffff;

    font-size: 12px;

    word-break: break-word;

    text-decoration: none;
}


.footer-support-card a:hover {
    color: #71e6a9;
}


.footer-support-text {
    color: rgba(255,255,255,.55);

    font-size: 11px;

    line-height: 1.7;

    margin: 16px 0;
}


.footer-mello-btn {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 14px;

    border: 0;

    border-radius: 13px;

    cursor: pointer;

    font-weight: 700;

    color: #06271b;

    background:
        linear-gradient(
            135deg,
            #54e394,
            #27c878
        );

    box-shadow:
        0 12px 26px rgba(25, 195, 108, .16);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.footer-mello-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 16px 32px rgba(25, 195, 108, .24);
}


.footer-trust {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;

    margin-top: 16px;
}


.footer-trust span {
    padding: 6px 8px;

    border-radius: 999px;

    color: rgba(255,255,255,.66);

    font-size: 9px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.09);
}


.premium-footer-bottom {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));

    margin: 58px auto 0;

    padding: 22px 0 25px;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    border-top: 1px solid rgba(255,255,255,.09);

    color: rgba(255,255,255,.43);

    font-size: 10px;
}


.footer-bottom-links {
    display: flex;
    gap: 18px;
}


.footer-bottom-links a {
    color: rgba(255,255,255,.48);

    text-decoration: none;

    transition: color .2s ease;
}


.footer-bottom-links a:hover {
    color: #ffffff;
}


.footer-made {
    text-align: right;
}


.footer-made span {
    margin-left: 4px;
}


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1180px) {

    .footer-main {
        grid-template-columns:
            1.2fr
            .8fr
            1fr;
    }

    .footer-support-section {
        grid-column: span 2;
    }

}


@media (max-width: 820px) {

    .premium-footer {
        padding-top: 58px;
    }

    .footer-main {
        width: min(100% - 32px, 700px);

        grid-template-columns:
            1fr 1fr;

        gap: 40px 28px;
    }

    .footer-brand-section {
        grid-column: 1 / -1;
    }

    .footer-brand-description {
        max-width: 520px;
    }

    .footer-support-section {
        grid-column: auto;
    }

    .premium-footer-bottom {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        text-align: center;

        gap: 14px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-made {
        text-align: center;
    }

}


@media (max-width: 560px) {

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

    .footer-brand-section,
    .footer-support-section {
        grid-column: auto;
    }

    .footer-column {
        padding-top: 5px;
    }

    .footer-column h4,
    .footer-support-section h4 {
        margin-bottom: 17px;
    }

    .footer-socials {
        gap: 7px;
    }

    .footer-socials a {
        padding: 8px 10px;
    }

}
/* =========================================================
   ABOUT US PAGE
========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;
    background:
        radial-gradient(circle at 80% 20%, rgba(46, 210, 132, .13), transparent 30%),
        radial-gradient(circle at 15% 20%, rgba(255, 91, 77, .10), transparent 26%),
        linear-gradient(180deg, #fffdf9 0%, #f7fff9 100%);
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    pointer-events: none;
}

.about-orb-one {
    width: 260px;
    height: 260px;
    right: -80px;
    top: 30px;
    background: rgba(59, 208, 134, .10);
    animation: aboutFloat 7s ease-in-out infinite;
}

.about-orb-two {
    width: 190px;
    height: 190px;
    left: -60px;
    bottom: -30px;
    background: rgba(255, 91, 77, .09);
    animation: aboutFloat 9s ease-in-out infinite reverse;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 80px;
    align-items: center;
}

.about-eyebrow,
.about-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #128256;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.about-copy h1 {
    max-width: 650px;
    margin: 17px 0 22px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2.4px;
    color: #102820;
}

.about-copy h1 span {
    color: #20a66c;
}

.about-copy > p {
    max-width: 620px;
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #64766e;
}

.about-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.about-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 19px;
    border-radius: 13px;
    text-decoration: none;
    color: #153d2d;
    font-weight: 700;
    border: 1px solid #d8e9df;
    background: rgba(255,255,255,.8);
    transition: .2s ease;
}

.about-secondary-btn:hover {
    transform: translateY(-2px);
    border-color: #9fd6bc;
    background: #ffffff;
}

.about-visual {
    position: relative;
    min-height: 470px;
}

.about-main-card {
    position: absolute;
    inset: 55px 35px 50px 35px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 32px;
    background:
        linear-gradient(160deg, rgba(255,255,255,.96), rgba(242,255,248,.94));
    border: 1px solid rgba(34, 168, 103, .14);
    box-shadow:
        0 34px 80px rgba(28, 85, 58, .13),
        inset 0 1px 0 #ffffff;
}

.about-main-icon {
    position: absolute;
    top: 40px;
    left: 42px;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    font-size: 45px;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(44, 130, 88, .13);
    animation: melonBounce 4s ease-in-out infinite;
}

.about-mini-label {
    color: #25a66f;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1px;
}

.about-main-card h3 {
    margin: 12px 0 13px;
    font-size: 29px;
    line-height: 1.15;
    color: #143629;
}

.about-main-card p {
    margin: 0;
    color: #6b7d75;
    line-height: 1.7;
}

.about-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(22, 118, 73, .10);
    box-shadow: 0 18px 42px rgba(23, 74, 51, .12);
}

.about-floating-card > span {
    font-size: 25px;
}

.about-floating-card b {
    display: block;
    color: #183b2d;
    font-size: 12px;
}

.about-floating-card small {
    display: block;
    margin-top: 2px;
    color: #7a8b83;
    font-size: 10px;
}

.about-floating-one {
    left: 0;
    top: 22px;
    animation: aboutCardFloat 5s ease-in-out infinite;
}

.about-floating-two {
    right: 0;
    top: 160px;
    animation: aboutCardFloat 6s ease-in-out infinite reverse;
}

.about-floating-three {
    left: 20px;
    bottom: 15px;
    animation: aboutCardFloat 5.5s ease-in-out infinite;
}

.about-intro-section,
.about-values-section,
.about-for-everyone-section,
.about-cta-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 90px 0;
}

.about-section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.about-section-heading h2 {
    margin: 12px 0 14px;
    font-size: clamp(31px, 4vw, 46px);
    color: #143327;
    letter-spacing: -1.3px;
}

.about-section-heading p {
    margin: 0;
    color: #72827a;
    font-size: 16px;
    line-height: 1.75;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.about-story-card {
    padding: 30px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e4eee8;
    box-shadow: 0 18px 45px rgba(25, 74, 51, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.about-story-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 60px rgba(25, 74, 51, .10);
}

.about-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 22px;
    font-size: 25px;
    background: #f0fbf5;
}

.about-story-card h3 {
    margin: 0 0 12px;
    color: #15392b;
    font-size: 20px;
}

.about-story-card p {
    margin: 0;
    color: #73827b;
    line-height: 1.75;
    font-size: 14px;
}

.about-mission-section {
    padding: 95px 0;
    background:
        linear-gradient(135deg, #09291f 0%, #0d3b2b 100%);
}

.about-mission-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 70px;
    align-items: center;
}

.about-mission-copy .about-section-kicker {
    color: #68e4a5;
}

.about-mission-copy h2 {
    max-width: 600px;
    margin: 14px 0 22px;
    color: #ffffff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.about-mission-copy > p {
    color: rgba(255,255,255,.68);
    line-height: 1.8;
    font-size: 15px;
}

.about-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 27px;
}

.about-check-list div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

.about-check-list span {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #06271a;
    font-weight: 800;
    background: #50d995;
}

.about-mission-panel {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.about-panel-badge {
    display: inline-flex;
    margin-bottom: 30px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #76e8ae;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(79, 217, 149, .08);
    border: 1px solid rgba(79, 217, 149, .16);
}

.about-approach-item {
    display: flex;
    gap: 18px;
    padding: 21px 0;
    border-top: 1px solid rgba(255,255,255,.09);
}

.about-approach-item:first-of-type {
    border-top: 0;
}

.about-approach-item > span {
    color: #69dda2;
    font-size: 12px;
    font-weight: 800;
}

.about-approach-item h4 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: 17px;
}

.about-approach-item p {
    margin: 0;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    font-size: 12px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.about-value-card {
    padding: 26px;
    text-align: center;
    border-radius: 22px;
    background: #fbfefc;
    border: 1px solid #e4eee8;
    transition: .25s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(26, 77, 52, .08);
}

.about-value-card > span {
    display: block;
    margin-bottom: 14px;
    font-size: 31px;
}

.about-value-card h3 {
    margin: 0 0 9px;
    color: #173a2c;
    font-size: 18px;
}

.about-value-card p {
    margin: 0;
    color: #77867f;
    line-height: 1.65;
    font-size: 13px;
}

.about-two-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-audience-card {
    position: relative;
    overflow: hidden;
    padding: 38px;
    min-height: 390px;
    border-radius: 28px;
}

.about-parent-card {
    background:
        linear-gradient(145deg, #f4fff8, #e6f9ef);
    border: 1px solid #d6eee0;
}

.about-teacher-card {
    background:
        linear-gradient(145deg, #fff7f3, #fff0e9);
    border: 1px solid #f1ddd2;
}

.about-audience-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    margin-bottom: 25px;
    font-size: 34px;
    background: rgba(255,255,255,.70);
}

.about-audience-card > span {
    font-size: 11px;
    font-weight: 800;
    color: #26855c;
    letter-spacing: 1px;
}

.about-audience-card h2 {
    max-width: 470px;
    margin: 13px 0 15px;
    color: #16372a;
    font-size: 30px;
    line-height: 1.17;
}

.about-audience-card p {
    max-width: 500px;
    color: #6d7e76;
    line-height: 1.75;
    font-size: 14px;
}

.about-audience-card a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
    color: #17784f;
    font-weight: 800;
    text-decoration: none;
}

.about-audience-card a span {
    transition: transform .2s ease;
}

.about-audience-card a:hover span {
    transform: translateX(5px);
}

.about-cta-section {
    padding-top: 30px;
}

.about-cta {
    padding: 45px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 95% 0%, rgba(83, 225, 149, .17), transparent 35%),
        linear-gradient(135deg, #092b20, #0f3d2d);
    box-shadow: 0 28px 60px rgba(18, 74, 47, .12);
}

.about-cta span {
    color: #6be3a6;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-cta h2 {
    max-width: 650px;
    margin: 10px 0 10px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 44px);
}

.about-cta p {
    margin: 0;
    color: rgba(255,255,255,.61);
}


/* =========================================================
   ABOUT PAGE ANIMATIONS
========================================================= */

.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.2,.65,.3,1);
}

.reveal-up {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(.94);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
    opacity: 1;
    transform: none;
}

@keyframes aboutFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

@keyframes aboutCardFloat {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes melonBounce {
    0%,100% {
        transform: rotate(-3deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-8px);
    }
}


/* =========================================================
   RESPONSIVE ABOUT
========================================================= */

@media (max-width: 950px) {

    .about-hero-inner,
    .about-mission-wrap {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 440px;
    }

    .about-story-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 700px) {

    .about-hero {
        padding: 75px 0 65px;
    }

    .about-copy h1 {
        font-size: 43px;
    }

    .about-story-grid,
    .about-values-grid,
    .about-two-cards {
        grid-template-columns: 1fr;
    }

    .about-main-card {
        inset: 45px 10px;
        padding: 30px;
    }

    .about-floating-one {
        left: -5px;
    }

    .about-floating-two {
        right: -5px;
    }

    .about-check-list {
        grid-template-columns: 1fr;
    }

    .about-cta {
        padding: 35px 28px;
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 480px) {

    .about-hero-inner,
    .about-intro-section,
    .about-values-section,
    .about-for-everyone-section,
    .about-cta-section,
    .about-mission-wrap {
        width: calc(100% - 28px);
    }

    .about-copy h1 {
        font-size: 37px;
        letter-spacing: -1.3px;
    }

    .about-visual {
        min-height: 420px;
    }

    .about-floating-card {
        padding: 10px 12px;
    }

    .about-floating-two {
        top: 150px;
    }

}
/* =========================================================
   MELONMINDS FAQ PAGE
========================================================= */

.faq-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 20px 90px;

    background:
        radial-gradient(
            circle at 16% 15%,
            rgba(255, 91, 77, .09),
            transparent 28%
        ),
        radial-gradient(
            circle at 86% 18%,
            rgba(39, 203, 122, .14),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #fffefa 0%,
            #f5fff9 100%
        );
}


.faq-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(8px);
}


.faq-glow-one {
    width: 260px;
    height: 260px;

    left: -100px;
    top: 10px;

    background: rgba(255, 94, 79, .07);

    animation: faqFloat 8s ease-in-out infinite;
}


.faq-glow-two {
    width: 300px;
    height: 300px;

    right: -110px;
    bottom: -100px;

    background: rgba(52, 216, 134, .09);

    animation: faqFloat 10s ease-in-out infinite reverse;
}


.faq-hero-inner {
    position: relative;
    z-index: 2;

    width: min(820px, 100%);
    margin: auto;

    text-align: center;
}


.faq-kicker {
    display: inline-flex;

    margin-bottom: 17px;

    color: #118256;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.4px;
}


.faq-hero h1 {
    margin: 0;

    color: #123528;

    font-size: clamp(42px, 6vw, 68px);

    line-height: 1.03;

    letter-spacing: -2.3px;
}


.faq-hero h1 span {
    display: block;

    color: #20a86d;
}


.faq-hero > div > p {
    max-width: 670px;

    margin: 21px auto 0;

    color: #6a7d74;

    font-size: 16px;

    line-height: 1.8;
}


.faq-search-wrap {
    max-width: 650px;

    margin: 31px auto 0;

    position: relative;
}


.faq-search-icon {
    position: absolute;

    left: 21px;
    top: 50%;

    transform: translateY(-50%);

    color: #6e8077;

    font-size: 23px;
}


.faq-search-wrap input {
    width: 100%;

    min-height: 60px;

    padding: 0 22px 0 57px;

    border: 1px solid #dbe9e1;

    border-radius: 19px;

    outline: none;

    color: #17392c;

    font: inherit;

    background: rgba(255,255,255,.93);

    box-shadow:
        0 18px 48px rgba(24, 82, 54, .08);

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}


.faq-search-wrap input:focus {
    border-color: #69cf9d;

    box-shadow:
        0 20px 50px rgba(24, 127, 77, .13);
}


.faq-quick-links {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 9px;

    margin-top: 18px;
}


.faq-quick-links button {
    border: 1px solid #dbe8e1;

    border-radius: 999px;

    padding: 8px 13px;

    color: #466157;

    cursor: pointer;

    background: rgba(255,255,255,.74);

    transition: .2s ease;
}


.faq-quick-links button:hover {
    transform: translateY(-2px);

    border-color: #aadbc1;

    color: #157b51;

    background: #ffffff;
}


/* MAIN */

.faq-main-section {
    padding: 90px 0;

    background: #ffffff;
}


.faq-layout {
    width: min(1180px, calc(100% - 40px));

    margin: auto;

    display: grid;

    grid-template-columns: 250px 1fr;

    gap: 55px;

    align-items: start;
}


/* SIDEBAR */

.faq-sidebar {
    position: sticky;

    top: 110px;

    padding: 23px;

    border: 1px solid #e3eee8;

    border-radius: 22px;

    background:
        linear-gradient(
            180deg,
            #fbfefc,
            #f7fcf9
        );

    box-shadow:
        0 18px 45px rgba(23, 74, 50, .05);
}


.faq-sidebar > span {
    display: block;

    margin-bottom: 15px;

    color: #84928b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.1px;

    text-transform: uppercase;
}


.faq-filter {
    width: 100%;

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px 12px;

    margin-bottom: 5px;

    border: 0;

    border-radius: 12px;

    color: #53685e;

    cursor: pointer;

    text-align: left;

    background: transparent;

    transition: .2s ease;
}


.faq-filter i {
    width: 25px;

    font-style: normal;

    text-align: center;
}


.faq-filter:hover {
    color: #167a50;

    background: #eef9f3;
}


.faq-filter.active {
    color: #116c47;

    font-weight: 700;

    background: #e9f8f0;
}


/* CONTENT */

.faq-content {
    min-width: 0;
}


.faq-section-heading {
    margin-bottom: 30px;
}


.faq-section-heading > span {
    color: #15905e;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


.faq-section-heading h2 {
    margin: 10px 0 9px;

    color: #14382a;

    font-size: clamp(31px, 4vw, 45px);

    letter-spacing: -1.3px;
}


.faq-section-heading p {
    margin: 0;

    color: #75867d;
}


/* FAQ ITEM */

.faq-item {
    overflow: hidden;

    margin-bottom: 13px;

    border: 1px solid #e2ece6;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(21, 74, 48, .035);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


.faq-item:hover {
    transform: translateY(-1px);

    border-color: #cbe2d6;

    box-shadow:
        0 14px 35px rgba(21, 74, 48, .06);
}


.faq-item.open {
    border-color: #a8d7be;

    box-shadow:
        0 18px 45px rgba(19, 116, 70, .08);
}


.faq-question {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    border: 0;

    cursor: pointer;

    color: #17382b;

    text-align: left;

    font: inherit;

    font-weight: 700;

    background: transparent;
}


.faq-question > span {
    display: flex;

    align-items: center;

    gap: 13px;
}


.faq-question i {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    font-style: normal;

    background: #f2faf6;
}


.faq-question b {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #188457;

    font-size: 20px;
    font-weight: 400;

    background: #eef9f3;

    transition:
        transform .25s ease,
        color .25s ease,
        background .25s ease;
}


.faq-item.open .faq-question b {
    transform: rotate(45deg);

    color: #ffffff;

    background: #22a86d;
}


.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows .32s ease;
}


.faq-answer > div {
    overflow: hidden;
}


.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}


.faq-answer p {
    margin: 0;

    padding:
        0 22px
        20px 71px;

    color: #718178;

    font-size: 14px;

    line-height: 1.8;
}


.faq-answer a {
    display: inline-block;

    margin:
        -7px 22px
        22px 71px;

    color: #168353;

    font-weight: 700;

    text-decoration: none;
}


.faq-answer a:hover {
    text-decoration: underline;
}


/* EMPTY SEARCH */

.faq-empty {
    display: none;

    padding: 55px 30px;

    text-align: center;

    border: 1px dashed #d4e4db;

    border-radius: 22px;

    background: #fbfefc;
}


.faq-empty > div {
    font-size: 38px;
}


.faq-empty h3 {
    margin: 12px 0 7px;

    color: #173a2c;
}


.faq-empty p {
    margin: 0;

    color: #74857c;
}


/* HELP CTA */

.faq-help-section {
    width: min(1180px, calc(100% - 40px));

    margin: auto;

    padding: 0 0 95px;
}


.faq-help-card {
    display: grid;

    grid-template-columns: auto 1fr auto;

    gap: 25px;

    align-items: center;

    padding: 36px 40px;

    border-radius: 26px;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(67, 223, 143, .14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #082a20,
            #0d3b2b
        );

    box-shadow:
        0 25px 60px rgba(15, 69, 43, .12);
}


.faq-help-icon {
    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    border-radius: 20px;

    font-size: 35px;

    background: rgba(255,255,255,.09);

    border: 1px solid rgba(255,255,255,.10);
}


.faq-help-card span {
    color: #6ee6a9;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.2px;
}


.faq-help-card h2 {
    margin: 8px 0 8px;

    color: #ffffff;

    font-size: 29px;
}


.faq-help-card p {
    margin: 0;

    color: rgba(255,255,255,.58);

    line-height: 1.6;
}


/* ANIMATION */

@keyframes faqFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        position: static;

        display: flex;

        overflow-x: auto;

        gap: 7px;

        padding: 12px;
    }

    .faq-sidebar > span {
        display: none;
    }

    .faq-filter {
        width: auto;

        flex: 0 0 auto;

        margin: 0;

        white-space: nowrap;
    }

    .faq-help-card {
        grid-template-columns: auto 1fr;
    }

    .faq-help-card .btn {
        grid-column: 1 / -1;

        width: fit-content;
    }

}


@media (max-width: 600px) {

    .faq-hero {
        padding: 75px 16px 65px;
    }

    .faq-layout,
    .faq-help-section {
        width: calc(100% - 28px);
    }

    .faq-question {
        padding: 17px;
    }

    .faq-question i {
        display: none;
    }

    .faq-answer p {
        padding:
            0 17px
            18px 17px;
    }

    .faq-answer a {
        margin:
            -5px 17px
            19px;
    }

    .faq-help-card {
        grid-template-columns: 1fr;

        padding: 30px 25px;
    }

}
