/* ==========================================================================
   Design System & Base Styles
   ========================================================================== */

:root {
    /* Color Palette */
    --color-bg-base: #faf6f0;
    --color-card-bg: #ffffff;
    --color-orange: #f27a02;
    --color-orange-hover: #d56800;
    --color-teal: #00828a;
    --color-teal-hover: #00686e;
    --color-text-main: #2d3748;
    --color-text-muted: #5a6a85;

    /* Typography */
    --font-heading: "Comic Sans MS", "Chalkboard SE", "Comic Neue", sans-serif;
    --font-body: "Comic Sans MS", "Chalkboard SE", "Comic Neue", sans-serif;

    /* Shadows & Borders */
    --shadow-premium:
        0 15px 35px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    --shadow-hover:
        0 25px 50px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.03);
    --shadow-video: 0 15px 35px rgba(0, 0, 0, 0.12);
    --border-radius-large: 32px;
    --border-radius-medium: 20px;
    --border-radius-button: 20px;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ==========================================================================
   Layout - Hero Wrapper with Custom Background Image
   ========================================================================== */

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 1000px;
    min-height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 1;
    /* background-image: url('assets/hero-bg.png'); */
    background-image: url("/assets/img/summer-camp-global/hero-bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

/* Fallback background overlay if image fails to load */
.hero-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 246, 240, 0.2);
    /* Soft blend */
    z-index: -1;
}

/* ==========================================================================
   Hero Content Container
   ========================================================================== */

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    transform: translateY(-35px);
}

/* Left Content Section: Transparent background with no borders */
.hero-content {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition-smooth);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    /* Increased size to match UI mockup */
    font-weight: 800;
    /* Bolder font presence */
    line-height: 1.15;
    /* Tighter leading */
    letter-spacing: -0.8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.text-orange {
    color: var(--color-orange);
}

.text-teal {
    color: var(--color-teal);
}

.hero-description {
    font-size: 1.25rem;
    /* Slightly larger description text */
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 540px;
    font-weight: 500;
    /* Make the text slightly bolder for presence */
}

/* Buttons Styling */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius-button);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-orange);
    color: #ffffff;
    border: none;
    box-shadow: 0 6px 16px rgba(242, 122, 2, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 122, 2, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-teal);
    border: 2px solid var(--color-teal);
}

.btn-secondary:hover {
    background-color: var(--color-teal);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 130, 138, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-primary .btn-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--color-orange);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.btn-primary .btn-icon-circle svg {
    width: 14px;
    height: 14px;
}

.btn-secondary .btn-icon-svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: var(--color-teal);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.btn-secondary:hover .btn-icon-svg {
    color: #ffffff;
}

/* ==========================================================================
   Right Video Section (Direct YouTube Embedding)
   ========================================================================== */

.hero-video-section {
    position: relative;
    width: 100%;
}

.video-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000000;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-video);
    border: 6px solid #ffffff;
    position: relative;
    transition: var(--transition-smooth);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-container:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   Responsive Design Media Queries
   ========================================================================== */

/* Tablet Screens (under 1024px) */
@media (max-width: 1024px) {
    .hero-wrapper {
        padding: 50px 24px;
        height: auto;
        min-height: 100vh;
        background-size: 100% 100%;
    }

    .hero-container {
        grid-template-columns: 1fr;
        /* Single column flow */
        gap: 35px;
        max-width: 650px;
    }

    .hero-content {
        padding: 40px;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 3rem;
        font-weight: 800;
    }

    .hero-description {
        max-width: 100%;
        font-size: 1.15rem;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
}

/* Mobile Screens (under 600px) */
@media (max-width: 600px) {
    .hero-wrapper {
        padding: 30px 16px;
        background-size: cover;
    }

    .hero-container {
        gap: 25px;
    }

    .hero-content {
        padding: 30px 20px;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.1rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 1rem;
    }

    .video-container {
        border-width: 4px;
    }
}

/* ==========================================================================
   Why Parents Choose AHS Section Styles
   ========================================================================== */

.why-choose-section {
    background-color: #ffffff;
    padding: 80px 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 130, 138, 0.2);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-teal);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.section-badge .badge-star {
    width: 14px;
    height: 14px;
    color: var(--color-orange);
    flex-shrink: 0;
}

/* Absolute Positioning for Left and Right Side Doodles */
.choose-decor-left {
    position: absolute;
    top: 50px;
    left: 40px;
    width: 160px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.choose-decor-right {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 140px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.choose-decor-img {
    width: 100%;
    height: auto;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

.title-decor {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-decor-img {
    width: 61px;
    height: auto;
    display: block;
}

/* 3-Column Grid for Cards */
.choose-grid {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 24px;
    margin: 0 auto;
}

/* Individual Card Styling */
.choose-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-smooth);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 130, 138, 0.15);
}

/* Left Image Container */
.card-image-box {
    width: 125px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Right Content Area */
.card-info-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

/* Circular Number Badge */
.number-badge {
    width: 24px;
    height: 24px;
    background-color: var(--color-orange);
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Text style matching the playful Comic Sans look */
.card-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--color-text-main);
    line-height: 1.35;
}

/* ==========================================================================
   Responsive Section Adjustments
   ========================================================================== */

@media (max-width: 1200px) {
    .choose-decor-left,
    .choose-decor-right {
        display: none;
    }
}

/* Tablet Screens (under 1024px) */
@media (max-width: 1024px) {
    .why-choose-section {
        padding: 60px 24px;
    }

    .choose-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
        max-width: 800px;
    }

    .section-title {
        font-size: 2.1rem;
    }
}

/* Mobile Screens (under 768px / 600px) */
@media (max-width: 768px) {
    .choose-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .choose-card {
        padding: 16px 20px;
    }

    .card-image-box {
        width: 100px;
        height: 80px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Subjects Covered Section Styles
   ========================================================================== */

.subjects-section {
    background-color: #f7f6f6;
    padding: 80px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.subjects-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.subjects-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.subjects-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

.title-decor.title-left {
    justify-content: flex-start;
    margin-top: -5px;
    margin-bottom: 5px;
}

.subjects-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.subjects-grid-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

/* 2-Column Grid of Subjects */
.subjects-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    width: 100%;
    max-width: 580px;
}

/* Subject Card (More compact height and width) */
.subject-card {
    background: #f3f4f5;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.062);
    transition: var(--transition-smooth);
    height: 68px;
    width: 100%;
}

.subject-card.wide-card {
    grid-column: span 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.subject-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.subject-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: rgba(242, 122, 2, 0.2);
}

/* Subject Icon Container: Removed background, borders, and shadow */
.subject-icon-box {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    box-shadow: none;
    flex-shrink: 0;
    padding: 0;
    transition: var(--transition-fast);
}

.subject-card:hover .subject-icon-box {
    transform: scale(1.08);
}

/* Enlarged Icon Image size as requested */
.subject-icon-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.subject-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--color-text-main);
}

/* Exclusive Card (Centered Pill Badge inside compact card) */
.exclusive-card {
    justify-content: center;
    padding: 0 10px;
}

.exclusive-badge {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-orange);
    background-color: #fdf2e9;
    /* Soft orange tint */
    padding: 6px 14px;
    border-radius: 50px;
    text-align: center;
    white-space: nowrap;
    /* Keep it on a single line */
}

/* Right Mascot Column */
.subjects-mascot-box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Soft glow circle behind the mascot */
.subjects-mascot-box::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(
        circle,
        rgba(0, 130, 138, 0.08) 0%,
        rgba(0, 130, 138, 0) 70%
    );
    border-radius: 50%;
    z-index: 1;
}

.mascot-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: mascotFloat 6s ease-in-out infinite;
}

@keyframes mascotFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ==========================================================================
   Responsive Adjustments for Subjects Section
   ========================================================================== */

/* Laptop / Small Desktop (under 1200px) */
@media (max-width: 1200px) {
    .subjects-grid-layout {
        gap: 40px;
    }

    .subjects-title {
        font-size: 2.5rem;
    }
}

/* Tablet (under 1024px) */
@media (max-width: 1024px) {
    .subjects-container {
        align-items: center;
        text-align: center;
    }

    .subjects-header {
        align-items: center;
    }

    .title-decor.title-left {
        justify-content: center;
    }

    .subjects-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 750px;
        justify-items: center;
    }

    .subjects-list-grid {
        max-width: 580px;
        margin: 0 auto;
    }

    .subjects-mascot-box {
        max-width: 420px;
        margin: 0 auto;
        order: 2;
    }
}

/* Mobile (under 768px / 600px) */
@media (max-width: 768px) {
    .subjects-section {
        padding: 60px 24px;
    }

    .subjects-list-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .subjects-title {
        font-size: 2.1rem;
    }

    .subjects-subtitle {
        font-size: 1rem;
    }

    .subject-card {
        padding: 14px 18px;
        height: auto;
        min-height: 60px;
    }

    .subject-card.wide-card {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
    }

    .exclusive-badge {
        white-space: normal;
    }
}

/* ==========================================================================
   Who Is It For Section Styles
   ========================================================================== */

.target-audience-section {
    background-color: #ffffff;
    padding: 80px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.audience-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.audience-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.audience-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

.audience-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 750px;
    line-height: 1.6;
}

/* 4-Column Grid Layout */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
}

/* Audience Card Styling */
.audience-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 28px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 380px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: rgba(242, 122, 2, 0.15);
    background: #ffffff;
    color: #ffffff;
}

/* Icon Box Top-Left */
.audience-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.audience-card:hover .audience-icon-box {
    transform: scale(1.08);
}

.audience-icon {
    width: 24px;
    height: 24px;
}

/* Watermark backdrop */
.audience-watermark {
    position: absolute;
    right: 15px;
    top: 20px;
    width: 90px;
    height: 90px;
    opacity: 0.035;
    color: var(--color-text-main);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.audience-watermark svg {
    width: 100%;
    height: 100%;
}

.audience-card:hover .audience-watermark {
    transform: scale(1.1) rotate(-8deg);
    opacity: 0.07;
}

/* Colored Icon Box Styles */
.bg-light-red {
    background-color: #ffe8e8;
}

.icon-red {
    color: #e53e3e;
}

.bg-light-green {
    background-color: #e2fceb;
}

.icon-green {
    color: #38a169;
}

.bg-light-blue {
    background-color: #e0e7ff;
}

.bg-light-teal {
    background-color: #e6f5f6;
    /* Soft light teal tint */
}

.icon-blue {
    color: #4c51bf;
}

.bg-light-orange {
    background-color: #fff4e5;
}

.icon-orange {
    color: #dd6b20;
}

/* Card Body Content */
.audience-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: auto;
    text-align: left;
    width: 100%;
}

.audience-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: 0.5px;
}

.audience-card-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Orange buttons styled identically to mockup */
.btn-audience {
    width: 100%;
    padding: 12px 0;
    text-align: center;
    background-color: var(--color-orange);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 16px;
    text-decoration: none;
    display: block;
    box-shadow: 0 5px 12px rgba(242, 122, 2, 0.2);
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-audience:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(242, 122, 2, 0.35);
}

.btn-audience:active {
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Adjustments for Audience Section
   ========================================================================== */

/* Laptop Screens (under 1200px) */
@media (max-width: 1200px) {
    .audience-grid {
        gap: 20px;
    }

    .audience-card {
        padding: 24px 20px;
        height: 390px;
    }
}

/* Tablet Screens (under 1024px) */
@media (max-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on tablet */
        max-width: 750px;
        margin: 0 auto;
        gap: 24px;
    }

    .audience-title {
        font-size: 2.5rem;
    }
}

/* Mobile Screens (under 768px / 600px) */
@media (max-width: 768px) {
    .target-audience-section {
        padding: 60px 24px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: 20px;
    }

    .audience-title {
        font-size: 2.1rem;
    }

    .audience-subtitle {
        font-size: 1rem;
    }

    .audience-card {
        height: auto;
        min-height: 340px;
    }
}

/* ==========================================================================
   Your 6-Step Journey Section Styles
   ========================================================================== */

.journey-section {
    background-color: #00454e;
    /* Deep dark teal background */
    padding: 90px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.journey-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: relative;
    z-index: 3;
}

.journey-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.journey-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    /* White title on dark background */
    line-height: 1.2;
}

/* Absolute Image positioning */
.journey-decor {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.journey-decor.decor-top-right {
    top: 25px;
    right: 40px;
    width: 109px;
    height: auto;
}

.journey-decor.decor-bottom-left {
    bottom: 25px;
    left: 40px;
    width: 64px;
    height: auto;
}

.journey-decor-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Timeline wrapper with absolute dotted line behind circles */
.journey-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
    gap: 20px;
}

/* Horizontal dotted line */
.journey-timeline::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 32px;
    /* Vertically aligned with circle center (64px / 2) */
    height: 0;
    border-top: 3px dotted rgba(255, 255, 255, 0.25);
    z-index: 1;
}

/* Individual Step Container */
.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    flex: 1;
    z-index: 2;
    position: relative;
}

/* Circle Badge with Thick Borders & Matching Number Color */
.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: var(--transition-smooth);
}

/* Subtle bounce/scale interaction on step hover */
.journey-step:hover .step-circle {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Color codes mapping to borders & numbers inside */
.step-1 .step-circle {
    border: 4.5px solid #1e88e5;
    color: #1e88e5;
}

.step-2 .step-circle {
    border: 4.5px solid #a57c1b;
    color: #a57c1b;
}

.step-3 .step-circle {
    border: 4.5px solid #8e24aa;
    color: #8e24aa;
}

.step-4 .step-circle {
    border: 4.5px solid #00bfa5;
    color: #00bfa5;
}

.step-5 .step-circle {
    border: 4.5px solid var(--color-orange);
    color: var(--color-orange);
}

.step-6 .step-circle {
    border: 4.5px solid #1e88e5;
    color: #1e88e5;
}

/* Text Content Area */
.step-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.step-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* ==========================================================================
   Responsive Adjustments for Journey Section
   ========================================================================== */

/* Tablet & Laptop (under 1024px) */
@media (max-width: 1024px) {
    .journey-section {
        padding: 70px 30px;
    }

    .journey-title {
        font-size: 2.4rem;
    }

    .journey-timeline::before {
        left: 10%;
        right: 10%;
    }

    .step-title {
        font-size: 1.05rem;
    }

    .step-text {
        font-size: 0.9rem;
    }
}

/* Responsive Shift: Vertical Timeline for Mobile Screens (under 900px) */
@media (max-width: 900px) {
    .journey-timeline {
        flex-direction: column;
        gap: 35px;
        align-items: flex-start;
        max-width: 500px;
        margin: 0 auto;
        padding-left: 20px;
    }

    /* Transition dotted line to run vertically */
    .journey-timeline::before {
        left: 52px;
        /* Center aligned with vertical circles (32px padding + 20px offset) */
        right: auto;
        top: 10px;
        bottom: 10px;
        width: 0;
        height: auto;
        border-left: 3px dotted rgba(255, 255, 255, 0.25);
        border-top: none;
    }

    .journey-step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 24px;
        width: 100%;
    }

    .step-info {
        align-items: flex-start;
        text-align: left;
        gap: 4px;
    }

    /* Move corner decorations further into borders on tablets/mobiles */
    .journey-decor.decor-top-right {
        top: 15px;
        right: 15px;
        transform: scale(0.8);
    }

    .journey-decor.decor-bottom-left {
        bottom: 15px;
        left: 15px;
        transform: scale(0.8);
    }
}

/* Small Mobile Screens (under 480px) */
@media (max-width: 480px) {
    .journey-section {
        padding: 50px 20px;
    }

    .journey-title {
        font-size: 1.95rem;
    }

    .journey-timeline {
        padding-left: 5px;
    }

    .journey-timeline::before {
        left: 37px;
        /* Adjusting dotted line to fit smaller margin */
    }

    .step-circle {
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .journey-step {
        gap: 16px;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-text {
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   Interactive Activities Section Styles
   ========================================================================== */

.activities-section-new {
    background-color: #ffffff;
    padding: 100px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Floating Doodles/Decorations */
.activities-decor-left {
    position: absolute;
    left: 4%;
    top: 10%;
    width: 160px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.activities-decor-right {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 70px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.activities-container-new {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 55px;
    position: relative;
    z-index: 2;
}

.activities-header-new {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Star Badge */
.activities-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border: 1.5px solid var(--color-teal);
    border-radius: 50px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 168, 150, 0.05);
    font-size: 0.95rem;
    font-weight: 700;
}

.activities-badge .text-teal {
    color: var(--color-teal);
}

.activities-badge .text-orange {
    color: var(--color-orange);
}

.badge-icon-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background-color: var(--color-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.badge-icon {
    width: 12px;
    height: 12px;
}

.activities-title-new {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.15;
    margin: 0;
}

.activities-subtitle-new {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Grid Wrapper */
.activities-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
}

/* Activity Card Styling */
.activity-card-new {
    border-radius: 28px;
    padding: 35px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition:
        transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    cursor: default;
}

.activity-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* Card Pastel Background Colors */
.card-pastel-blue {
    background-color: #ecf3fc;
    border: 1.5px solid rgba(236, 243, 252, 0.8);
}

.card-pastel-green {
    background-color: #edf7f2;
    border: 1.5px solid rgba(237, 247, 242, 0.8);
}

.card-pastel-yellow {
    background-color: #fcf7eb;
    border: 1.5px solid rgba(252, 247, 235, 0.8);
}

.card-pastel-purple {
    background-color: #f6f1fc;
    border: 1.5px solid rgba(246, 241, 252, 0.8);
}

.card-pastel-blue-grey {
    background-color: #eef4fa;
    border: 1.5px solid rgba(238, 244, 250, 0.8);
}

.card-pastel-mint {
    background-color: #f0f7f3;
    border: 1.5px solid rgba(240, 247, 243, 0.8);
}

/* Illustration Box */
.activity-illustration-box {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.activity-illustration {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.activity-card-new:hover .activity-illustration {
    transform: scale(1.05);
}

/* Card Title */
.activity-card-title-new {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.3;
}

/* ==========================================================================
   Responsive Adjustments for Activities Section
   ========================================================================== */

/* Laptop / Small Desktop (under 1200px) */
@media (max-width: 1200px) {
    .activities-grid-new {
        gap: 24px;
    }

    .activities-decor-left {
        left: 2%;
        width: 130px;
    }

    .activities-decor-right {
        right: 2%;
        width: 55px;
    }
}

/* Tablet Screens (under 992px) */
@media (max-width: 992px) {
    .activities-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 800px;
        margin: 0 auto;
    }

    .activities-title-new {
        font-size: 2.8rem;
    }

    .activities-decor-left,
    .activities-decor-right {
        display: none;
    }
}

/* Mobile Screens (under 768px) */
@media (max-width: 768px) {
    .activities-section-new {
        padding: 60px 24px;
    }

    .activities-grid-new {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 20px;
        margin: 0 auto;
    }

    .activities-title-new {
        font-size: 2.3rem;
    }

    .activities-subtitle-new {
        font-size: 1.05rem;
    }

    .activity-card-new {
        padding: 30px 20px;
    }

    .activity-illustration-box {
        height: 140px;
        margin-bottom: 18px;
    }

    .activity-card-title-new {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   Parents Info Section Styles
   ========================================================================== */

.parents-info-section {
    background-color: #faf6f0;
    /* Warm cream background matching the body */
    padding: 90px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.parents-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.parents-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Program Info Pill Badge */
.program-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1.5px solid var(--color-teal);
    border-radius: 50px;
    padding: 8px 20px;
    color: var(--color-teal);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.info-icon {
    width: 16px;
    height: 16px;
    color: var(--color-teal);
}

.parents-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

/* Corner Doodle Placement */
.parents-doodle-decor {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 120px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.parents-doodle-img {
    width: 100%;
    height: auto;
}

/* White Card Layout */
.parents-info-card {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
    background: #ffffff;
    border-radius: 36px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 3;
}

/* Graphic Column on Left */
.parents-left-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Dotted Divider between Left & Right Columns */
.parents-left-column::after {
    content: "";
    position: absolute;
    right: -30px;
    top: 5%;
    bottom: 5%;
    width: 1px;
    border-right: 2px dotted rgba(0, 0, 0, 0.1);
}

.parents-graphic-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Content Columns on Right */
.parents-right-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    /* Dividers between rows */
    transition: var(--transition-smooth);
}

.info-row:hover {
    background-color: rgba(0, 130, 138, 0.015);
    padding-left: 8px;
}

.info-row-icon-box {
    transition: var(--transition-smooth);
}

.info-row:hover .info-row-icon-box {
    transform: scale(1.08) rotate(3deg);
}

.info-row.border-none {
    border-bottom: none;
}

/* Circular icon backgrounds */
.info-row-icon-box {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: transparent !important;
    border-radius: 0;
}

.info-row-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.info-row-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-row-label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-orange);
    /* Orange thematic labels */
}

.info-row-value {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.35;
}

/* Batch pills styled layout */
.batch-pills-container {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}

.batch-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 8px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-fast);
}

.batch-pill.pill-evening {
    border: 1.5px solid var(--color-teal);
}

.batch-pill.pill-evening:hover {
    background-color: #e6fffa;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 130, 138, 0.1);
}

.batch-pill.pill-morning {
    border: 1.5px solid var(--color-orange);
}

.batch-pill.pill-morning:hover {
    background-color: #fdf2e9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(242, 122, 2, 0.1);
}

.batch-pill-icon {
    width: 16px;
    height: 16px;
}

.batch-pill-icon.icon-teal {
    color: var(--color-teal);
}

.batch-pill-icon.icon-orange {
    color: var(--color-orange);
}

/* ==========================================================================
   Responsive Adjustments for Parents Section
   ========================================================================== */

/* Tablet Screens (under 992px) */
@media (max-width: 992px) {
    .parents-info-card {
        grid-template-columns: 1fr;
        /* Stack layout vertically */
        gap: 40px;
        padding: 40px;
        max-width: 700px;
        margin: 0 auto;
    }

    .parents-left-column::after {
        display: none;
        /* Hide vertical divider line */
    }

    .parents-graphic-img {
        max-width: 380px;
        margin: 0 auto;
    }

    .parents-title {
        font-size: 2.4rem;
    }

    .parents-doodle-decor {
        top: 20px;
        right: 20px;
        width: 90px;
    }
}

/* Mobile Screens (under 768px / 600px) */
@media (max-width: 768px) {
    .parents-info-section {
        padding: 60px 24px;
    }

    .parents-info-card {
        padding: 30px 24px;
    }

    .info-row {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 16px 0;
    }

    .info-row-icon-box {
        width: 48px;
        height: 48px;
        background-color: transparent !important;
        border-radius: 0;
    }

    .info-row-icon-img {
        width: 48px;
        height: 48px;
    }

    .info-row-value {
        font-size: 1.05rem;
    }

    .batch-pills-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .batch-pill {
        width: 100%;
        justify-content: center;
    }

    .parents-title {
        font-size: 1.95rem;
    }

    .program-info-badge {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   Fee Information Section Styles
   ========================================================================== */

.fee-info-section {
    background-color: #ffffff;
    /* Contrast white background */
    padding: 90px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.fee-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    /* Anchor doodles relative to container width */
}

.fee-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.fee-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

.fee-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 750px;
    line-height: 1.6;
}

/* absolute positioning for side decorations inside container */
.fee-decor-left {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 170px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.fee-decor-right {
    position: absolute;
    top: -10px;
    right: -30px;
    width: 250px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.fee-decor-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Table Card Layout */
.fee-table-card {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 100%;
    z-index: 3;
    position: relative;
}

.fee-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.fee-table-new {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

/* Header Columns */
.fee-table-new th {
    padding: 24px 30px;
    text-align: center;
    vertical-align: middle;
    border-right: 1.5px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.04);
}

.fee-table-new th:last-child {
    border-right: none;
}

/* Header Cell Colors */
.bg-header-blue {
    background-color: #ebf5ff;
}

.bg-header-teal {
    background-color: #e6f7f8;
}

.bg-header-orange {
    background-color: #fff2e5;
}

.th-content-new {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.th-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.circle-blue {
    background-color: #d3e7fc;
    color: #1a73e8;
}

.circle-teal {
    background-color: #d1f2f4;
    color: #00828a;
}

.circle-orange {
    background-color: #ffe5cc;
    color: var(--color-orange);
}

.th-svg {
    width: 18px;
    height: 18px;
    display: block;
}

.th-dollar-sign {
    font-size: 1.35rem;
    font-weight: 800;
}

.th-title-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.text-dark-blue {
    color: #1a365d;
}

/* Table Body Cells */
.fee-table-new td {
    padding: 28px 30px;
    vertical-align: middle;
    border-right: 1.5px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.04);
}

.fee-table-new td:last-child {
    border-right: none;
}

.fee-table-new tr:last-child td {
    border-bottom: none;
}

/* Custom Alignments for columns */
.cell-plan {
    text-align: left;
}

.plan-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 20px;
}

.plan-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e2ecf8;
    color: #1a365d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    flex-shrink: 0;
}

.plan-name {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
}

.cell-duration {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00828a;
}

.cell-price {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-orange);
}

/* Hover transitions on rows */
.fee-table-new tbody tr {
    transition: var(--transition-fast);
}

.fee-table-new tbody tr:hover {
    background-color: #fafcff;
}

/* ==========================================================================
   Responsive Adjustments for Fee Section
   ========================================================================== */

@media (max-width: 1024px) {
    .fee-decor-left {
        width: 90px;
        top: -20px;
        left: 10px;
    }

    .fee-decor-right {
        width: 140px;
        top: 135px;
        right: -10px;
    }

    .fee-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .fee-info-section {
        padding: 60px 24px;
    }

    .fee-title {
        font-size: 1.95rem;
    }

    .fee-subtitle {
        font-size: 1rem;
    }

    .fee-table-new th {
        padding: 18px 12px;
    }

    .fee-table-new td {
        padding: 18px 12px;
    }

    .th-title-text {
        font-size: 1.05rem;
    }

    .th-icon-wrapper {
        width: 32px;
        height: 32px;
    }

    .th-svg {
        width: 15px;
        height: 15px;
    }

    .th-dollar-sign {
        font-size: 1.15rem;
    }

    .plan-info {
        padding-left: 0;
        gap: 10px;
    }

    .plan-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .plan-name {
        font-size: 1.05rem;
    }

    .cell-duration {
        font-size: 1.05rem;
    }

    .cell-price {
        font-size: 1.35rem;
    }

    .fee-decor-left,
    .fee-decor-right {
        display: none;
    }

    .fee-table-new {
        table-layout: auto;
        min-width: 650px;
    }
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section Styles
   ========================================================================== */

.faq-section {
    background-color: #faf6f0;
    /* Warm cream background */
    padding: 90px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.faq-container {
    max-width: 1200px;
    /* Centered, clean layout width updated to support 2 columns side-by-side */
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    /* Anchor doodles relative to FAQ box container */
}

.faq-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

/* Absolute Positioning for Side Doodles */
.faq-decor-birds {
    position: absolute;
    top: 40px;
    left: 0;
    /* Align flush to the very left edge of the screen */
    margin: 0;
    margin-left: 0;
    padding: 0;
    width: 160px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.faq-decor-sun {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 110px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.faq-decor-cloud {
    position: absolute;
    bottom: 80px;
    left: 40px;
    width: 64px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.faq-decor-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Accordion Wrapper */
.faq-accordion-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
    align-items: start;
    width: 100%;
    z-index: 3;
    position: relative;
}

.faq-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Accordion Card */
.faq-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015);
    margin-bottom: 16px;
    padding: 24px 30px;
    transition: var(--transition-smooth);
}

.faq-card:last-child {
    margin-bottom: 0;
}

.faq-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.035);
    border-color: rgba(242, 122, 2, 0.15);
}

/* Accordion Header */
.faq-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-card-header h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0;
    transition: var(--transition-fast);
}

.faq-card-header:hover h4 {
    color: var(--color-orange);
}

/* Orange Arrow Chevron */
.faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff2e5;
    /* Light orange tint */
    color: var(--color-orange);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-arrow svg {
    width: 18px;
    height: 18px;
}

/* Active State Styles */
.faq-card.active {
    border-color: rgba(0, 130, 138, 0.15);
}

.faq-card.active .faq-card-header h4 {
    color: var(--color-teal);
}

.faq-card.active .faq-arrow {
    transform: rotate(180deg);
    background-color: var(--color-orange);
    color: #ffffff;
}

/* Accordion Body */
.faq-card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding: 16px 0 8px 0;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

/* ==========================================================================
   Responsive Adjustments for FAQ Section
   ========================================================================== */

@media (max-width: 1200px) {
    .faq-decor-birds {
        left: 0;
        margin-left: 0;
        width: 120px;
    }

    .faq-decor-sun {
        right: 20px;
        width: 90px;
    }

    .faq-decor-cloud {
        left: 20px;
        width: 50px;
    }
}

@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.4rem;
    }

    .faq-decor-birds {
        top: 40px;
        left: 0;
        margin-left: 0;
        width: 100px;
    }

    .faq-decor-sun {
        top: 40px;
        right: 15px;
        width: 80px;
    }
}

@media (max-width: 992px) {
    .faq-accordion-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 24px;
    }

    .faq-title {
        font-size: 1.95rem;
    }

    .faq-card {
        padding: 20px 24px;
    }

    .faq-card-header h4 {
        font-size: 1.05rem;
    }

    .faq-decor-birds,
    .faq-decor-sun,
    .faq-decor-cloud {
        display: none;
        /* Hide doodles on mobile */
    }
}

/* ==========================================================================
   Contact AHS Education Section Styles
   ========================================================================== */

.contact-section {
    background-color: #ffffff;
    padding: 90px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-subheading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-orange);
    line-height: 1.2;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background-color: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-icon-box {
    background-color: var(--color-orange);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-svg-icon {
    width: 24px;
    height: 24px;
}

.contact-info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-text-main);
    margin: 0 0 6px 0;
}

.contact-info-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.contact-detail {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-main);
    display: block;
}

.contact-form-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 40px 48px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    color: var(--color-orange);
    margin: 0 0 8px 0;
}

.form-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background-color: #ffffff;
    color: var(--color-text-main);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 3px rgba(242, 122, 2, 0.15);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding-right: 40px;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
}

.select-arrow svg {
    width: 16px;
    height: 16px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ==========================================================================
   Responsive Adjustments for Contact Section
   ========================================================================== */

@media (max-width: 1024px) {
    .contact-title {
        font-size: 2.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-card {
        padding: 30px 36px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 24px;
    }

    .contact-title {
        font-size: 1.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-card {
        padding: 24px 24px;
    }

    .contact-info-card {
        padding: 20px 20px;
    }
}
