/* ==========================================================================
   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-pakistan/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: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.text-orange {
    color: var(--color-orange);
}

.text-teal {
    color: var(--color-teal);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 520px;
}

/* 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);
}

/* ==========================================================================
   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: 2.4rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }
}

/* Mobile Screens (under 600px) */
@media (max-width: 600px) {
    .hero-wrapper {
        padding: 30px 16px;
    }

    .hero-container {
        gap: 25px;
    }

    .hero-content {
        padding: 30px 20px;
        gap: 20px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .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-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
   ========================================================================== */

/* 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: #F3F4F5;
    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: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;
    }

    .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 {
    background-color: #ffffff;
    /* Contrast white background */
    padding: 80px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.activities-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.activities-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.activities-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.2;
}

/* 5-Column Grid Layout for Desktop */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    width: 100%;
}

/* Activity Card Styling */
.activity-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    /* Uniform height for card rows */
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.01);
    transition: var(--transition-smooth);
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border-color: rgba(242, 122, 2, 0.15);
}

/* Top-Right Color Status Dot Badge */
.activity-dot {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-green {
    background-color: #38a169;
}

.dot-blue {
    background-color: #3182ce;
}

.dot-purple {
    background-color: #805ad5;
}

.dot-orange {
    background-color: #f27a02;
}

.dot-red {
    background-color: #e53e3e;
}

.dot-teal {
    background-color: #00a896;
}

/* Circular container for activity icons */
.activity-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.activity-card:hover .activity-icon-box {
    transform: scale(1.08);
}

.activity-icon-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/* Circular backgrounds matching the theme color */
.activity-card.theme-green .activity-icon-box {
    background-color: #e2fceb;
}

.activity-card.theme-blue .activity-icon-box {
    background-color: #e8f0fe;
}

.activity-card.theme-purple .activity-icon-box {
    background-color: #f3e8ff;
}

.activity-card.theme-orange .activity-icon-box {
    background-color: #fdf2e9;
}

.activity-card.theme-red .activity-icon-box {
    background-color: #ffe8e8;
}

.activity-card.theme-teal .activity-icon-box {
    background-color: #e6fffa;
}

/* Card Title */
.activity-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-align: center;
    line-height: 1.3;
}

/* ==========================================================================
   Responsive Adjustments for Activities Section
   ========================================================================== */

/* Laptop / Small Desktop (under 1200px) */
@media (max-width: 1200px) {
    .activities-grid {
        grid-template-columns: repeat(4, 1fr);
        /* 4 columns on small desktop */
        gap: 20px;
    }
}

/* Tablet Screens (under 992px) */
@media (max-width: 992px) {
    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns on tablet */
        gap: 20px;
        max-width: 800px;
        margin: 0 auto;
    }

    .activities-title {
        font-size: 2.5rem;
    }
}

/* Mobile Screens (under 768px) */
@media (max-width: 768px) {
    .activities-section {
        padding: 60px 24px;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on mobile devices */
        max-width: 480px;
        gap: 16px;
    }

    .activities-title {
        font-size: 2.1rem;
    }

    .activity-card {
        height: 200px;
        padding: 20px 12px;
    }

    .activity-icon-box {
        width: 70px;
        height: 70px;
    }

    .activity-icon-img {
        width: 44px;
        height: 44px;
    }
}

/* Extra Small Screens (under 480px) */
@media (max-width: 480px) {
    .activities-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
}

/* ==========================================================================
   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: 30px;
    left: 20px;
    width: 120px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.fee-decor-right {
    position: absolute;
    top: 40px;
    right: -30px;
    width: 200px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.fee-decor-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
}

/* Table Card Layout */
.fee-table-card {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: 100%;
    z-index: 3;
    position: relative;
}

.fee-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.fee-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    /* Equal width columns */
}

/* Header Columns */
.fee-table th {
    position: relative;
    padding: 32px 20px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fee-table th:last-child {
    border-right: none;
}

/* Header Cell Colors */
.bg-header-blue {
    background-color: #EBF5FF;
}

.bg-header-orange {
    background-color: #FFF2E5;
}

/* Triangle Down Arrows via ::after */
.fee-table th::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    z-index: 5;
    transition: var(--transition-fast);
}

.fee-table th.bg-header-blue::after {
    border-top: 8px solid #EBF5FF;
}

.fee-table th.bg-header-orange::after {
    border-top: 8px solid #FFF2E5;
}

/* Header Content Alignment */
.th-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.35;
    color: #2D3748;
    /* Force black/dark text color matching mockup */
}

.text-blue {
    color: #1A73E8;
}

.text-orange {
    color: var(--color-orange);
}

/* Header Icons */
.th-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.th-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.icon-blue {
    color: #1A73E8;
}

.icon-orange {
    color: var(--color-orange);
}

/* Table Body Cells */
.fee-table td {
    padding: 30px 20px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-family: var(--font-body);
}

.fee-table td:last-child {
    border-right: none;
}

.fee-table tr:last-child td {
    border-bottom: none;
}

.cell-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
    font-size: 1.25rem;
}

/* Student circle badge */
.student-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #EBF5FF;
    color: #1A73E8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(26, 115, 232, 0.08);
}

/* Hover transitions on rows */
.fee-table tbody tr {
    transition: var(--transition-fast);
}

.fee-table tbody tr:hover {
    background-color: #F8FAFC;
}

/* ==========================================================================
   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 th {
        padding: 24px 12px;
    }

    .fee-table td {
        padding: 22px 12px;
    }

    .th-content {
        font-size: 0.8rem;
        gap: 10px;
    }

    .font-bold {
        font-size: 1.1rem;
    }

    .student-badge {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .fee-decor-left,
    .fee-decor-right {
        display: none;
        /* Hide side decorations on mobile viewport */
    }

    /* Make table scrollable but keep columns wide enough */
    .fee-table {
        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: 850px; /* Centered, clean layout width */
    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: flex;
    flex-direction: column;
    width: 100%;
    z-index: 3;
    position: relative;
}

/* 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: 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;
    }
}
