/* ================================================================
   HOMEPAGE REDESIGN — Paced Learning Academy
   Theme: Reading Adventure · Parrot Mascot · Kid-Friendly
   ================================================================ */

/* ── EXTENDED COLOUR TOKENS ───────────────────────────────────── */
:root {
    --hp-cream:       #fffcf5;
    --hp-green:       #1aa260;
    --hp-green-dark:  #148a50;
    --hp-green-light: #e8f8f0;
    --hp-orange:      #ff8c5a;
    --hp-orange-lt:   #fff4ee;
    --hp-yellow:      #ffd45e;
    --hp-yellow-lt:   #fffbea;
    --hp-blue:        #4a9eff;
    --hp-blue-lt:     #e8f3ff;
    --hp-purple:      #9b6dff;
    --hp-purple-lt:   #f0eaff;
    --hp-teal:        #16c9a0;
    --hp-teal-lt:     #e4faf4;
    --hp-text:        #1e2a3a;
    --hp-text-mid:    #4a5568;
    --hp-text-soft:   #718096;
    --hp-radius-xl:   20px;
    --hp-radius-2xl:  28px;
    --hp-radius-pill: 999px;
    --hp-shadow-sm:   0 2px 8px rgba(0,0,0,0.07);
    --hp-shadow-md:   0 6px 24px rgba(0,0,0,0.10);
    --hp-shadow-lg:   0 12px 40px rgba(0,0,0,0.13);
    --hp-shadow-card: 0 4px 20px rgba(26,162,96,0.12);
}

/* ── BODY ─────────────────────────────────────────────────────── */
.hp-body {
    background: var(--hp-cream);
}

/* ── SHARED TYPOGRAPHIC HELPERS ───────────────────────────────── */
.hp-section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--hp-green);
    margin-bottom: 0.6rem;
}

.hp-section-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    color: var(--hp-text);
    line-height: 1.15;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.hp-section-sub {
    font-size: 1.05rem;
    color: var(--hp-text-mid);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.hp-btn-hero-primary {
    background: #fff;
    color: var(--hp-green-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
    border-radius: var(--hp-radius-pill);
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}
.hp-btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
    color: var(--hp-green-dark);
}

.hp-btn-hero-outline {
    background: transparent;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--hp-radius-pill);
    border: 2px solid rgba(255,255,255,0.7);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.hp-btn-hero-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

.hp-btn-green {
    background: var(--hp-green);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 0.85rem 2rem;
    border-radius: var(--hp-radius-pill);
    border: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 16px rgba(26,162,96,0.3);
}
.hp-btn-green:hover {
    background: var(--hp-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(26,162,96,0.4);
    color: #fff;
}

.hp-btn-yellow {
    background: var(--hp-yellow);
    color: #1e2a3a;
    font-family: var(--font-heading);
    font-weight: 800;
    padding: 0.9rem 2.2rem;
    border-radius: var(--hp-radius-pill);
    border: none;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 18px rgba(255,212,94,0.5);
}
.hp-btn-yellow:hover {
    background: #f5c400;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,212,94,0.6);
    color: #1e2a3a;
}

.hp-btn-outline-dark {
    background: transparent;
    color: var(--hp-green-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.8rem 1.75rem;
    border-radius: var(--hp-radius-pill);
    border: 2px solid var(--hp-green);
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}
.hp-btn-outline-dark:hover {
    background: var(--hp-green);
    color: #fff;
}

.hp-btn-wa {
    background: #25d366;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0.85rem 1.75rem;
    border-radius: var(--hp-radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
}
.hp-btn-wa:hover {
    background: #20b558;
    transform: translateY(-2px);
    color: #fff;
}

/* ── 1. HERO ──────────────────────────────────────────────────── */
.hp-hero {
    background: linear-gradient(135deg, #0e7a4a 0%, #1aa260 45%, #16c9a0 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
    min-height: 580px;
    display: flex;
    align-items: center;
}

/* Decorative blobs */
.hp-hero-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    pointer-events: none;
}
.hp-hero-blob--1 {
    width: 400px; height: 400px;
    background: #fff;
    top: -120px; left: -100px;
}
.hp-hero-blob--2 {
    width: 300px; height: 300px;
    background: var(--hp-yellow);
    bottom: -80px; right: 10%;
    opacity: 0.18;
}

.hp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hp-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--hp-radius-pill);
    padding: 0.4rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.hp-hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    line-height: 1.12;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-transform: uppercase;
}
.hp-hero-title em {
    font-style: normal;
    color: var(--hp-yellow);
}

.hp-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    max-width: 500px;
}
.hp-hero-sub strong { color: var(--hp-yellow); }

.hp-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.hp-hero-trust {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.88);
    font-weight: 500;
}

/* Hero mascot side */
.hp-hero-mascot {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hp-mascot-img {
    width: 320px;
    max-width: 100%;
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.25));
    animation: hp-float 4s ease-in-out infinite;
}

@keyframes hp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.hp-hero-float-badge {
    position: absolute;
    top: 20px;
    right: 10px;
    background: var(--hp-yellow);
    border-radius: var(--hp-radius-xl);
    padding: 0.75rem 1rem;
    text-align: center;
    box-shadow: var(--hp-shadow-md);
    animation: hp-float 4s ease-in-out infinite 1s;
}
.hp-float-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--hp-green-dark);
    line-height: 1;
}
.hp-float-txt {
    display: block;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--hp-green-dark);
    line-height: 1.3;
}

.hp-hero-stars {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    border-radius: var(--hp-radius-pill);
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hp-green-dark);
    white-space: nowrap;
    box-shadow: var(--hp-shadow-sm);
}

.hp-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.hp-wave svg { display: block; width: 100%; }

.hp-wave-down {
    line-height: 0;
    margin-top: -1px;
}
.hp-wave-down svg { display: block; width: 100%; }

/* ── 2. PROOF BAR ─────────────────────────────────────────────── */
.hp-proof-bar {
    background: var(--hp-cream);
    padding: 40px 0;
}

.hp-proof-pills {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hp-proof-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1rem 1.5rem;
    border-radius: var(--hp-radius-xl);
    min-width: 110px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hp-proof-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-md);
}

.hp-proof-pill--green  { background: var(--hp-green-light); }
.hp-proof-pill--orange { background: var(--hp-orange-lt); }
.hp-proof-pill--yellow { background: var(--hp-yellow-lt); }
.hp-proof-pill--blue   { background: var(--hp-blue-lt); }
.hp-proof-pill--purple { background: var(--hp-purple-lt); }

.hp-pill-icon { font-size: 1.6rem; line-height: 1; }
.hp-pill-num  {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--hp-text);
    line-height: 1;
}
.hp-pill-lbl  {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--hp-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── 3. PARENT WORRIES ────────────────────────────────────────── */
.hp-worries {
    padding: 80px 0;
    background: var(--hp-cream);
}

.hp-worries-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hp-worry-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.hp-worry-card {
    background: #fff;
    border-radius: var(--hp-radius-xl);
    padding: 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    box-shadow: var(--hp-shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hp-worry-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hp-shadow-md);
}
.hp-worry-icon { font-size: 1.8rem; }
.hp-worry-card p {
    font-size: 0.9rem;
    color: var(--hp-text-mid);
    line-height: 1.5;
    margin: 0;
}

.hp-worries-quote {
    background: var(--hp-green-light);
    border-radius: var(--hp-radius-xl);
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid var(--hp-green);
}
.hp-worry-mascot {
    width: 60px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.hp-worries-quote blockquote {
    margin: 0;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--hp-text-mid);
    line-height: 1.55;
}

.hp-worries-image {
    position: relative;
}
.hp-worries-image img {
    width: 100%;
    border-radius: var(--hp-radius-2xl);
    box-shadow: var(--hp-shadow-lg);
}

.hp-worries-badge {
    position: absolute;
    bottom: -16px;
    right: 24px;
    background: var(--hp-green);
    color: #fff;
    border-radius: var(--hp-radius-xl);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: var(--hp-shadow-md);
}
.hp-wb-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--hp-yellow);
}
.hp-wb-txt {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.35;
    max-width: 100px;
}

/* ── 4. JOURNEY MAP ───────────────────────────────────────────── */
.hp-journey {
    padding: 0;
}
.hp-journey-bg {
    background: linear-gradient(135deg, #0d6e42 0%, #1aa260 60%, #1ea86a 100%);
    padding: 80px 0 100px;
    text-align: center;
}

.hp-journey-steps {
    display: flex;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hp-journey-step {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--hp-radius-2xl);
    padding: 2rem 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.2s;
}
.hp-journey-step:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-4px);
}
.hp-journey-step--result {
    background: rgba(255,212,94,0.25);
    border-color: rgba(255,212,94,0.5);
}

.hp-js-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hp-js-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.4rem;
}
.hp-journey-step h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 0.5rem;
}
.hp-journey-step p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.55;
    margin: 0;
}

.hp-journey-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 1.8rem;
    flex-shrink: 0;
}
.hp-journey-mascot-arrow {
    width: 70px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}
.hp-arrow-sym {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    line-height: 1;
}

/* ── 5. PROGRAMS ──────────────────────────────────────────────── */
.hp-programs {
    padding: 80px 0 0;
    background: var(--hp-cream);
    text-align: center;
}

.hp-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    text-align: left;
}

.hp-program-card {
    border-radius: var(--hp-radius-2xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}
.hp-program-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hp-shadow-lg);
}
.hp-program-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    opacity: 0.12;
    background: currentColor;
}

.hp-program-card--teal   { background: var(--hp-teal-lt);   color: var(--hp-teal); }
.hp-program-card--orange { background: var(--hp-orange-lt); color: var(--hp-orange); }
.hp-program-card--purple { background: var(--hp-purple-lt); color: var(--hp-purple); }

.hp-pc-icon {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--hp-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
    box-shadow: var(--hp-shadow-sm);
}
.hp-pc-icon img { width: 60px; height: 60px; object-fit: contain; }

.hp-pc-age {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255,255,255,0.6);
    color: inherit;
    padding: 0.25rem 0.75rem;
    border-radius: var(--hp-radius-pill);
}

.hp-program-card h3 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--hp-text);
    margin: 0;
}

.hp-program-card p {
    font-size: 0.9rem;
    color: var(--hp-text-mid);
    line-height: 1.6;
    margin: 0;
}

.hp-pc-skills {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.hp-pc-skills li {
    font-size: 0.85rem;
    color: var(--hp-text-mid);
    padding-left: 1.2rem;
    position: relative;
}
.hp-pc-skills li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--hp-green);
    font-weight: 700;
}

.hp-pc-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: currentColor;
    text-decoration: none;
    margin-top: auto;
    display: inline-block;
}
.hp-pc-link:hover { text-decoration: underline; }

/* Text-link style (replaces non-essential buttons) */
.hp-text-link {
    color: var(--hp-green);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}
.hp-text-link:hover {
    border-bottom-color: var(--hp-green);
}

.hp-pc-title-link {
    color: inherit;
    text-decoration: none;
}
.hp-pc-title-link:hover { text-decoration: underline; }

/* ── 6. WHY PLA ───────────────────────────────────────────────── */
.hp-why {
    padding: 80px 0;
    background: #f0faf5;
    text-align: center;
}

.hp-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 4rem;
    text-align: left;
}

.hp-why-card {
    background: #fff;
    border-radius: var(--hp-radius-xl);
    padding: 1.75rem;
    box-shadow: var(--hp-shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hp-why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-md);
}
.hp-why-icon {
    width: 72px; height: 72px;
    border-radius: var(--hp-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.hp-why-icon img { width: 44px; height: 44px; object-fit: contain; }
.hp-why-card h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: var(--hp-text);
    margin-bottom: 0.5rem;
}
.hp-why-card p {
    font-size: 0.88rem;
    color: var(--hp-text-mid);
    line-height: 1.6;
    margin: 0;
}

/* Approach block */
.hp-approach {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    text-align: left;
    background: #fff;
    border-radius: var(--hp-radius-2xl);
    padding: 2.5rem;
    box-shadow: var(--hp-shadow-sm);
}
.hp-approach-image img {
    width: 100%;
    border-radius: var(--hp-radius-xl);
    box-shadow: var(--hp-shadow-md);
}
.hp-approach-heading {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--hp-text);
    margin-bottom: 1.25rem;
}

/* ── 7. TESTIMONIALS ──────────────────────────────────────────── */
.hp-testi {
    padding: 80px 0;
    background: var(--hp-cream);
    text-align: center;
}

.hp-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}
.hp-big-stars { font-size: 1.5rem; color: #f5a623; line-height: 1; }
.hp-stars-label { font-size: 0.9rem; color: var(--hp-text-soft); font-weight: 600; }

/* Featured 3-card testimonial layout */
.hp-testi-featured {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.hp-testi-card {
    background: #fff;
    border-radius: var(--hp-radius-xl);
    padding: 2rem;
    box-shadow: var(--hp-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid transparent;
}
.hp-testi-card--green  { border-top-color: var(--hp-green); }
.hp-testi-card--orange { border-top-color: var(--hp-orange); }
.hp-testi-card--purple { border-top-color: var(--hp-purple); }

.hp-testi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-md);
}

.hp-testi-stars-top {
    color: #f5a623;
    font-size: 1rem;
    letter-spacing: 2px;
}

.hp-testi-quote {
    font-size: 1rem;
    color: var(--hp-text-mid);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin: 0;
}

.hp-testi-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
}

.hp-testi-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hp-testi-info strong {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--hp-text);
}
.hp-testi-info span {
    font-size: 0.76rem;
    color: var(--hp-text-soft);
}

.hp-testi-source {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--hp-text-soft);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

/* ── 8. ASSESSMENT CTA BANNER ─────────────────────────────────── */
.hp-cta-banner {
    background: linear-gradient(135deg, #0e7a4a 0%, #1aa260 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}
.hp-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hp-cta-inner {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hp-cta-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--hp-radius-pill);
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.hp-cta-content h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.hp-cta-content p {
    color: rgba(255,255,255,0.88);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    max-width: 560px;
}

.hp-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.hp-cta-locs {
    color: rgba(255,255,255,0.78);
    font-size: 0.85rem;
    margin: 0;
}

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

/* ── 9. GALLERY ───────────────────────────────────────────────── */
.hp-gallery {
    padding: 80px 0;
    background: var(--hp-cream);
    text-align: center;
}

.hp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.hp-gallery-item {
    border-radius: var(--hp-radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--hp-shadow-sm);
}
.hp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
    display: block;
}
.hp-gallery-item:hover img { transform: scale(1.05); }

/* ── 10. BOOKING FORM ─────────────────────────────────────────── */
.hp-booking {
    padding: 80px 0;
    background: #f0faf5;
}

.hp-booking-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.hp-booking-mascot {
    width: 130px;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

.hp-booking-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--hp-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hp-booking-left p {
    color: var(--hp-text-mid);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.hp-booking-left a { color: var(--hp-green); text-decoration: none; }
.hp-booking-left a:hover { text-decoration: underline; }

.hp-booking-reassurances {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--hp-text-soft);
}

.hp-booking-form-card {
    background: #fff;
    border-radius: var(--hp-radius-2xl);
    padding: 2rem;
    box-shadow: var(--hp-shadow-md);
}
.hp-booking-form-card h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--hp-text);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--hp-green-light);
}

.hp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ── 11. BLOG ─────────────────────────────────────────────────── */
.hp-blog {
    padding: 64px 0;
    background: var(--hp-cream);
    text-align: center;
}

.hp-blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.hp-blog-card {
    background: #fff;
    border-radius: var(--hp-radius-xl);
    overflow: hidden;
    box-shadow: var(--hp-shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hp-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hp-shadow-md);
}
.hp-blog-img { aspect-ratio: 16/9; overflow: hidden; }
.hp-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.35s;
    display: block;
}
.hp-blog-card:hover .hp-blog-img img { transform: scale(1.05); }

.hp-blog-body { padding: 1.25rem; }
.hp-blog-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--hp-green);
    background: var(--hp-green-light);
    padding: 0.2rem 0.6rem;
    border-radius: var(--hp-radius-pill);
    margin-bottom: 0.6rem;
}
.hp-blog-body h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.97rem;
    line-height: 1.45;
    color: var(--hp-text);
    margin: 0;
}
.hp-blog-body h3 a {
    color: inherit;
    text-decoration: none;
}
.hp-blog-body h3 a:hover { color: var(--hp-green); }

/* ── 12. FAQ ──────────────────────────────────────────────────── */
.hp-faq {
    padding: 72px 0;
    background: #fff;
}
.hp-faq-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}
.hp-faq-head { text-align: left; }
.hp-faq-mascot {
    width: 180px;
    margin-top: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}
.hp-faq-list { display: flex; flex-direction: column; gap: 0; }

/* ── SCROLL REVEAL ANIMATION ──────────────────────────────────── */
@keyframes hp-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hp-animate {
    opacity: 0;
    animation: hp-fade-up 0.55s ease forwards;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hp-hero-inner { grid-template-columns: 1fr 340px; }
    .hp-why-grid   { grid-template-columns: repeat(2, 1fr); }
    .hp-testi-featured { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .hp-hero { padding: 60px 0 70px; min-height: auto; }
    .hp-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hp-hero-ctas  { justify-content: center; }
    .hp-hero-trust { justify-content: center; }
    .hp-hero-mascot { justify-content: center; margin-top: 2rem; }
    .hp-mascot-img { width: 220px; }
    .hp-hero-float-badge { top: 0; right: 0; transform: none; }

    .hp-worries-inner { grid-template-columns: 1fr; }
    .hp-worries-image { display: none; }

    .hp-journey-steps { gap: 1rem; }
    .hp-journey-arrow { display: none; }

    .hp-programs-grid { grid-template-columns: 1fr; }
    .hp-why-grid      { grid-template-columns: 1fr 1fr; }
    .hp-approach      { grid-template-columns: 1fr; }
    .hp-approach-image { display: none; }

    .hp-testi-featured { grid-template-columns: 1fr; }
    .hp-cta-inner   { grid-template-columns: 1fr; }
    .hp-cta-mascot  { display: none; }

    .hp-booking-inner { grid-template-columns: 1fr; }
    .hp-blog-grid     { grid-template-columns: 1fr; }
    .hp-faq-inner     { grid-template-columns: 1fr; }
    .hp-faq-mascot    { display: none; }
    .hp-form-row      { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
    .hp-why-grid       { grid-template-columns: 1fr; }
    .hp-worry-cards    { grid-template-columns: 1fr; }
    .hp-proof-pills    { gap: 0.6rem; }
    .hp-proof-pill     { min-width: 90px; padding: 0.75rem 1rem; }
    .hp-gallery-grid   { grid-template-columns: 1fr 1fr; }
    .hp-programs-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
    .hp-proof-bar      { overflow: hidden; }
    .hp-proof-pills    { gap: 0.5rem; justify-content: center; }
    .hp-proof-pill     { min-width: 0; width: calc(33.333% - 0.5rem); padding: 0.65rem 0.5rem; }
    .hp-pill-icon      { font-size: 1.3rem; }
    .hp-pill-num       { font-size: 1.1rem; }
    .hp-pill-lbl       { font-size: 0.65rem; letter-spacing: 0; }

    .hp-hero-trust     { flex-direction: column; align-items: center; gap: 0.5rem; }

    .hp-journey-step   { max-width: 100%; width: 100%; }
}
