/* =========================================
   UK STUDY VISA - AEO REDESIGN (DARK THEME)
   ========================================= */

/* Utilities */
.mobile-line { display: inline; }
@media (max-width: 600px) {
    .mobile-line { display: block; }
}

:root {
    /* Brand Colors matching Premium AEO Dark Theme */
    --bg-primary: #08100E;         /* Deep rich dark green-black */
    --bg-secondary: #0D1A17;       /* Slightly lighter section bgColor */
    --bg-card: #152723;            /* Card background */
    
    --accent-red: #FF4438;         /* Core CTA Red */
    --accent-red-glow: rgba(255, 68, 56, 0.4);
    
    --accent-green: #00E676;       /* Success / Freedom Green */
    --accent-blue: #00D5FF;        /* FAQ / Informational Blue */
    --text-primary: #F8FAFC;       /* Off-white for readability */
    --text-secondary: #94A3B8;     /* Slate for paragraphs */
    --text-neon-yellow: #FFEA00;   /* Highlighting yellow */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.theme-dark {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.relative { position: relative; }

/* typography helpers */
.text-neon-green { color: var(--accent-green); }
.text-neon-red { color: var(--accent-red); }
.text-neon-yellow { color: var(--text-neon-yellow); }

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.fail-badge {
    background: var(--accent-red);
    color: #fff;
    padding: 0px 12px;
    border-radius: 6px;
    display: inline-block;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: -1.5rem auto 2rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* ==================
   BUTTONS
   ================== */
.cta-button-glowing {
    background: linear-gradient(135deg, #FF4438 0%, #D81B1B 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 25px var(--accent-red-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
}
.btn-main-text {
    font-size: 1.3rem;
    line-height: 1.2;
}
.btn-sub-text {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center; /* PERFECTLY CENTER THE ICON AND TEXT */
    gap: 6px;
    padding-top: 6px;
    text-align: center;
}
.icon-tiny {
    width: 14px;
    height: 14px;
}
.cta-button-glowing:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px var(--accent-red-glow);
}

.cta-button-outline {
    background: transparent;
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button-outline:hover {
    background: var(--accent-green);
    color: var(--bg-primary);
}

/* ==================
   TOP MARQUEE
   ================== */
.top-marquee-container {
    background-color: #060B0A;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
}
.top-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scrollHoverLeft 30s linear infinite;
}
.marquee-block {
    display: flex;
    gap: 3rem;
    padding-right: 3rem;
    white-space: nowrap;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: #e2f1f8;
}
.marquee-item i {
    width: 20px;
    height: 20px;
    color: #e2f1f8;
}
@keyframes scrollHoverLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================
   HERO SECTION
   ================== */
.hero-aeo {
    padding: 1rem 0 1rem;
    background: radial-gradient(circle at top, #142E28 0%, var(--bg-primary) 70%);
}
.hero-hook-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.6rem;
}
.hero-subline {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 1100px;
    margin: 0 auto 1.2rem;
}

.hero-cta-scarcity {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
}

.icon-small {
    width: 16px;
    height: 16px;
    color: var(--accent-red);
}
.hero-trust-strip {
    background: #08110F; /* dark green matched with the theme */
    border: 1px solid rgba(255,255,255,0.05); /* very subtle border */
    border-radius: 8px;
    padding: 1.25rem 2.5rem;
    margin-top: 2.5rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.trust-strip-title {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-weight: 500;
}
.trust-strip-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

@media (max-width: 600px) {
    .hero-trust-strip { padding: 1rem 1.5rem; }
    .trust-strip-title { font-size: 1rem; }
    .trust-strip-icons { gap: 1rem; font-size: 0.85rem; flex-wrap: wrap; }
}
.icon-green { color: var(--accent-green); width: 18px; height: 18px; vertical-align: middle; }
.icon-red { color: var(--accent-red); width: 18px; height: 18px; vertical-align: middle; }
.icon-yellow { color: var(--text-neon-yellow); width: 18px; height: 18px; vertical-align: middle; }
.icon-neon-blue { color: var(--accent-blue); width: 20px; height: 20px; vertical-align: middle; }

/* Video Box */
.hero-video-box {
    margin: 2rem auto 0;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-vid {
    width: 100%;
    display: block;
}

/* Student Carousel */
.hero-carousel {
    max-width: 1100px; /* Standardizing with the rest of the page */
    margin: 2rem auto 0;
    overflow: hidden;
}
.carousel-caption {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.carousel-track {
    display: flex;
    gap: 20px; /* Increased gap slightly for larger cards */
    width: max-content;
    animation: scroll 25s linear infinite; /* Slowed down slightly for larger images */
}
.student-img-wrapper {
    width: 250px;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    border-radius: 12px;
    border: 3px solid rgba(255,255,255,0.1);
    overflow: hidden;
    background: #000;
}
.student-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==================
   STUDENT REVIEWS GRID
   ================== */
.student-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 2.5rem auto 0;
    padding-bottom: 2rem;
}

.student-review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    color: #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.student-review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-profile-pic {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.review-user-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.review-user-meta {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
}

.review-stars i {
    width: 14px;
    height: 14px;
    fill: #00b67a;
    color: #00b67a;
}

.review-headline {
    font-size: 1.15rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}

.review-body {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.highlight-text {
    background-color: #ffff00;
    color: #000;
    padding: 1px 2px;
    font-weight: 600;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .student-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 15px;
    }
}

@media (max-width: 600px) {
    .student-reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .review-headline {
        font-size: 1.05rem;
    }
    .review-body {
        font-size: 0.9rem;
    }
}

/* ==================
   FRUSTRATION VS FREEDOM
   ================== */
.frustration-freedom-section {
    padding: 2rem 0;
    background-color: var(--bg-secondary);
}
.timeline-split {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.timeline-box {
    flex: 1;
    background: var(--bg-card);
    padding: 0; /* Removing padding to allow header to touch edges */
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.frustration-box { margin-right: 25px; border-top: 3px solid var(--accent-red); }
.freedom-box { margin-left: 25px; border-top: 3px solid var(--accent-green); }

.box-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.problem-header .header-icon-box {
    background: rgba(255, 68, 56, 0.1);
    color: var(--accent-red);
}
.solution-header .header-icon-box {
    background: rgba(0, 230, 118, 0.1);
    color: var(--accent-green);
}
.box-header h3 {
    margin-bottom: 0 !important;
    font-size: 1.4rem !important;
}

.comparison-list {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.comparison-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.comparison-item i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}
.item-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 0.4rem;
}
.item-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 850px) {
    .timeline-split { flex-direction: column; gap: 2rem; }
    .frustration-box, .freedom-box { margin: 0; width: 100%; }
    .timeline-connector { display: none; }
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: rgba(255,255,255,0.1);
    transform: translateX(-50%);
}
.dot-top, .dot-bottom {
    position: absolute;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
}
.dot-top { top: -10px; }
.dot-bottom { bottom: -10px; }


/* ==================
   JOURNEY SECTION
   ================== */
.journey-section {
    padding: 1.5rem 0;
    background-color: var(--bg-primary);
}

.journey-header {
    margin-bottom: 2rem;
}

.journey-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.journey-subtitle {
    margin-top: 0.2rem;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.journey-card {
    background: var(--bg-card);
    padding: 3rem 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 234, 0, 0.2);
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: 32px;
    padding: 0 16px;
    background: linear-gradient(135deg, #FF4438 0%, #D81B1B 100%);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.95rem;
    white-space: nowrap;
    z-index: 5;
    box-shadow: 0 0 15px rgba(255, 68, 56, 0.6), 0 0 30px rgba(255, 68, 56, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Icon Box */
.journey-icon-box {
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid rgba(255, 234, 0, 0.3);
    border-radius: 12px;
    background: rgba(255, 234, 0, 0.05);
    box-shadow: 0 0 20px rgba(255, 234, 0, 0.1);
}

.journey-icon-box i {
    width: 24px;
    height: 24px;
    color: var(--text-neon-yellow);
}

.journey-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.journey-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .journey-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 900px) {
    .journey-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; gap: 2rem; }
    .journey-title { font-size: 2rem; }
}

@media (max-width: 600px) {
    .journey-card { padding: 2.5rem 1.5rem 1.5rem; }
    .journey-title { font-size: 1.6rem; }
}


/* ==================
   SVPG SECTION
   ================== */
.svpg-section {
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1c270d 100%);
}

/* ==================
   REJECTION BOX SECTION 
   ================== */
.rejection-box-section {
    max-width: 900px;
    margin: 2rem auto;
    background: #111814;
    border: 2px solid #FFD700;
    border-radius: 24px;
    padding: 1rem 2rem 2rem;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
    text-align: center;
}

.floating-box-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFD700;
    color: #000;
    font-weight: 900;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    white-space: nowrap;
    z-index: 10;
}

.rejection-box-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
}

.rejection-box-subtitle {
    text-align: center;
    color: #ffffff;
    font-size: 0.87rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.not-yet-badge {
    background: #FFD700;
    color: #000;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 800;
    margin: 0 4px;
    display: inline-block;
}

.rejection-benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.benefit-item-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.benefit-item-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.benefit-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: left;
}

.benefit-left strong {
    color: var(--accent-green);
}

.benefit-left i {
    color: #FFD700;
    width: 20px;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 12px;
}

.old-price {
    text-decoration: line-through;
    color: #64748b;
    font-size: 0.9rem;
}

.free-box {
    background: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.program-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--text-neon-yellow);
    color: #000;
    padding: 1rem 3.5rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(255, 234, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
    text-decoration: none;
}

.program-cta-btn i {
    display: flex;
    align-items: center;
    transform: translateY(1.5px);
}

@keyframes pulse-glow {
    0% { box-shadow: 0 4px 15px rgba(255, 234, 0, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(255, 234, 0, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(255, 234, 0, 0.3); }
}

.program-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5);
    filter: brightness(1.1);
}

.mentor-tip-box {
    margin-top: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #FFD700;
    padding: 0.8rem 1.2rem;
    border-radius: 0 12px 12px 0;
    color: #FFD700;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 600px) {
    .rejection-box-section { padding: 3rem 1.5rem 1.5rem; margin: 3rem 1rem; }
    .rejection-box-title { font-size: 1.6rem; }
    .floating-box-tag { font-size: 0.9rem; padding: 0.5rem 1.2rem; }
    .benefit-item-card { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 1rem; }
    .benefit-left { font-size: 0.95rem; }
    .program-cta-btn { font-size: 1.1rem; }
}

/* ==================
   NEW MENTOR SECTION (RE-DESIGN)
   ================== */
.expert-profile-section {
    padding: 1rem 0; /* Vertical shrink */
    background-color: var(--bg-primary);
    overflow: hidden;
}

.mentor-header {
    text-align: center;
    margin-bottom: 1rem; /* Reduced gap */
}

.mentor-main-title {
    font-size: 2.5rem; /* Reduced Title */
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0.5rem;
}

.mentor-subtitle {
    font-size: 1.05rem; /* Reduced size */
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

.mentor-flex-container {
    display: flex;
    align-items: stretch; /* Stretch to align bottoms perfectly */
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.mentor-image-column {
    flex: 0 0 420px;
    position: relative;
    max-height: 550px; /* Prevents the image from being 'too long' */
}

.mentor-image-card {
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: #000;
    height: 100%; /* Fills the stretched height */
}

.mentor-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* High-quality cropping */
}

.mentor-info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mentor-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.mentor-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #ffffff;
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.mentor-badge:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-green);
}

.mentor-badge i {
    color: var(--accent-green);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.mentor-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.mentor-intro-heading {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 1rem;
}

.mentor-intro-heading span {
    color: var(--text-neon-yellow);
}

.mentor-bio-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.mentor-bio-text strong {
    color: #fff;
}

.highlight-yellow {
    color: var(--text-neon-yellow);
    font-weight: 700;
}

.highlight-box {
    background: var(--text-neon-yellow);
    color: #000;
    padding: 0 6px;
    font-weight: 700;
    border-radius: 4px;
}

.mentor-quote-bar {
    background: var(--text-neon-yellow);
    color: #000;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem; 
    text-align: center;
    box-shadow: 0 6px 20px rgba(255, 234, 0, 0.3);
}
.mentor-quote-bar h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem; /* Smaller font */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .expert-profile-section { padding: 4rem 0; }
    .mentor-flex-container { gap: 2rem; }
    .mentor-intro-heading { font-size: 1.8rem; }
}

@media (max-width: 900px) {
    .mentor-flex-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .mentor-image-column { width: 100%; max-width: 380px; }
    .mentor-info-column { width: 100%; }
    .mentor-badges-grid { grid-template-columns: repeat(2, 1fr); margin-left: auto; margin-right: auto; max-width: 500px; }
    .mentor-badge { text-align: left; }
    .mentor-main-title { font-size: 2.2rem; }
}

@media (max-width: 600px) {
    .mentor-main-title { font-size: 1.8rem; }
    .mentor-badges-grid { grid-template-columns: 1fr; }
    .mentor-intro-heading { font-size: 1.5rem; }
    .expert-profile-section { padding: 1rem 0; }
}

/* ==================
   RE-DESIGNED STUDENT TESTIMONIALS (USER PROVIDED STYLE)
   ================== */
.video-testimonials-section {
    padding: 2rem 0;
    background-color: var(--bg-primary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: #ffffff; /* User provided: white background */
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: var(--transition, all 0.3s ease);
    aspect-ratio: 4 / 5; /* Specific aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vid-frame {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 12px; /* Slightly inner rounding */
    overflow: hidden;
}

.video-card video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Response logic */
@media (max-width: 1024px) {
    .video-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .video-grid { 
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .video-card {
        max-width: 300px;
    }
}



/* ==================
   FAQ SECTION
   ================== */
.faq-section { padding: 1rem 0; background: var(--bg-secondary); }
.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-accordion {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-accordion[open] {
    background: var(--bg-card);
    border-color: rgba(0, 230, 118, 0.3);
}
.faq-summary {
    padding: 1.25rem 1.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    list-style: none;
    user-select: none;
    font-family: var(--font-heading);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover {
    background: rgba(255,255,255,0.03);
}
.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}
.faq-accordion[open] .faq-icon {
    transform: rotate(90deg);
    color: var(--accent-green);
}
.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 5px;
    padding-top: 1rem;
}

@media (max-width: 600px) {
    .faq-summary { font-size: 1.05rem; padding: 1rem; }
    .faq-content { padding: 0 1rem 1rem; font-size: 0.95rem; }
}

/* ==================
   MODALS (PRESERVED LOGIC)
   ================== */
.popup-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex; justify-content: center; align-items: center;
    z-index: 9999;
    opacity: 0; visibility: hidden; transition: 0.3s;
    backdrop-filter: blur(5px);
}
.popup-modal-overlay.active { opacity: 1; visibility: visible; }
.popup-modal-content {
    background: var(--bg-primary);
    width: 90%; max-width: 500px; padding: 2.5rem; border-radius: 16px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.popup-close-btn {
    position: absolute; top: 20px; right: 20px;
    background: transparent; border: none; color: var(--text-secondary);
    cursor: pointer; transition: 0.2s;
}
.popup-close-btn:hover { color: #fff; }
/* ==================
   FORM HEADER REDESIGN
   ================== */
.popup-header {
    text-align: center;
}
.popup-header h3 {
    font-family: var(--font-heading);
    color: #fff;
    margin-bottom: 0.5rem !important;
}

.popup-header p {
    font-size: 0.95rem;
    color: var(--text-neon-yellow) !important; /* Actionable highlight */
    font-weight: 700;
    margin-bottom: 1.5rem !important;
    opacity: 1 !important;
}

.form-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 2rem;
}

.trust-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.trust-pill:hover {
    border-color: var(--accent-green);
    background: rgba(0, 230, 118, 0.05);
}

.trust-pill i {
    width: 14px;
    height: 14px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.trust-pill span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 480px) {
    .form-trust-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2x2 even on smaller mobile if possible, or 1fr if text wraps */
    }
    .trust-pill span { font-size: 0.65rem; }
}
.form-group { margin-bottom: 1rem; }
.form-select, .form-input {
    width: 100%; padding: 12px 16px; border-radius: 8px;
    background: var(--bg-card); border: 1px solid rgba(255,255,255,0.1);
    color: #fff; font-size: 1rem; font-family: var(--font-body);
}
.form-select:focus, .form-input:focus { outline: none; border-color: var(--accent-green); }
.glowing-btn-submit {
    width: 100%; background: linear-gradient(135deg, #FF4438 0%, #D81B1B 100%);
    color: #fff; font-weight: 700; padding: 14px; border: none; border-radius: 8px;
    font-size: 1.1rem; font-family: var(--font-heading); cursor: pointer;
    box-shadow: 0 4px 15px var(--accent-red-glow); margin-top: 10px;
}
.glowing-btn-whatsapp {
    width: 100%; background: #25D366; color: #111; font-weight: 700; padding: 14px; border: none; border-radius: 8px;
    font-size: 1.1rem; font-family: var(--font-heading); cursor: pointer; box-shadow: 0 4px 15px rgba(37,211,102,0.4); margin-top: 10px;
}
/* Ensure dark text visibility when input is empty (placeholders) */
::placeholder { color: #64748b; }
.form-select option { background: var(--bg-card); color: #fff; }

/* Helpers */
.tilt-animation { display: inline-block; cursor: pointer; }
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ==================
   RESPONSIVE DESIGN
   ================== */
@media (max-width: 900px) {
    .timeline-split { flex-direction: column; align-items: center; gap: 2rem; }
    .timeline-connector { display: none; }
    .frustration-box, .freedom-box { margin: 0; width: 100%; }
    
    .svpg-card { flex-direction: column; text-align: center; }
    .expert-box { flex-direction: column-reverse; text-align: center; }
    .expert-outcome-line { border-left: none; border-top: 4px solid var(--accent-green); padding-left: 0; padding-top: 1rem; }
    
    .cert-grid { flex-direction: column; }
    .icef-cert-box { flex-direction: column; text-align: center; }

    /* Redesigned Mentor Responsive */
    .mentor-flex-container { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
    .mentor-image-column { flex: 0 0 auto; width: 100%; max-width: 500px; }
    .mentor-info-column { width: 100%; align-items: center; }
    .mentor-quote-bar { margin-top: 2rem; width: 100%; }
}

.faq-main-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

@media (max-width: 600px) {
    .faq-main-title {
        font-size: 1.5rem !important; /* Force single line on most screen sizes */
        white-space: nowrap;
        letter-spacing: -0.3px;
        margin: 0 auto 0.5rem;
    }
    .hero-hook-title { 
        font-size: 1.85rem; 
        line-height: 1.25;
        margin-bottom: 1rem;
    }
    .hero-subline {
        font-size: 0.9rem;
        line-height: 1.3;
        max-width: 340px;
        margin: 0 auto 1.5rem;
        color: var(--text-secondary);
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .mobile-line {
        display: block;
        margin: 0;
        white-space: normal; /* Allow natural wrap if truly forced, but spans will try to stay together */
    }
    .frust-title {
        font-size: 1.15rem;
        max-width: 400px;
        margin: 0 auto 1.5rem;
        line-height: 1.4;
    }
    .section-subtitle {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 380px;
        margin: 0 auto 1.5rem;
    }
    .mobile-line {
        display: block;
        margin-bottom: 2px;
    }
    .journey-title {
        font-size: 1.2rem;
        max-width: 350px;
        margin: 0 auto;
        line-height: 1.3;
    }
    .cta-button-glowing { width: 92%; padding: 1rem; font-size: 1rem; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .video-grid { grid-template-columns: 1fr; }
    .premium-list li { font-size: 1rem; align-items: flex-start; }
    .popup-modal-content { padding: 1.5rem; }
    .program-cta-btn { width: 92%; padding: 1rem; font-size: 1rem; margin: 0 auto; }
    .mentor-badges-grid {
        grid-template-columns: 1fr;
        width: 100%;
        gap: 10px;
        padding-top: 1.5rem;
        
    }
    .mentor-badge {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1rem;
    }
}

/* ==================
   BOTTOM CTA CARD
   ================== */
.bottom-cta-card {
    background: linear-gradient(135deg, #062618 0%, #04140c 100%);
    border: 1px solid rgba(0, 230, 118, 0.1);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    max-width: 750px;
    margin: 2.5rem auto 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.bottom-cta-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bottom-cta-btn {
    background: linear-gradient(135deg, #FF4438 0%, #D81B1B 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.9rem 1.8rem;
    width: 100%;
    max-width: 620px;
    cursor: pointer;
    box-shadow: 0 8px 25px var(--accent-red-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.bottom-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px var(--accent-red-glow);
}

.btn-main-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.btn-sub-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

.bottom-cta-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.scarcity-badge-wrap {
    margin-bottom: 0.5rem;
}

.scarcity-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 500;
}

.scarcity-badge i.zap-icon {
    width: 20px;
    height: 20px;
    color: #ffd700;
}

.scarcity-badge strong {
    color: #fff;
    background: #e63946;
    padding: 2px 8px;
    border-radius: 4px;
    margin: 0 4px;
}

.bottom-cta-deadline {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.bottom-cta-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-green);
    fill: var(--accent-green);
}

.testimonial-grid-title {
    font-size: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 900px;
}

@media (max-width: 600px) {
    .testimonial-grid-title {
        font-size: 1.22rem;
        max-width: 320px;
        line-height: 1.35;
        margin: 0 auto 1.5rem;
    }
    .bottom-cta-card {
        padding: 2rem 1rem;
        margin: 3rem auto 1rem;
    }
    .bottom-cta-heading {
        font-size: 1.38rem;
        max-width: 300px;
        margin: 0 auto 0.6rem;
        line-height: 1.25;
    }
    .bottom-cta-btn {
        width: 92%;
        margin: 0 auto 1.5rem;
    }
    .btn-main-text {
        font-size: 1.05rem;
    }
    .btn-sub-text {
        font-size: 0.75rem;
    }
    .scarcity-badge {
        font-size: 0.84rem;
        padding: 0.7rem 1.2rem;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        text-align: left;
        max-width: 320px;
        line-height: 1.3;
        border-radius: 20px;
        margin: 0 auto;
    }
    .scarcity-badge strong {
        font-size: 0.82rem;
        padding: 1px 5px;
    }
    .scarcity-badge i.zap-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-right: 4px;
        transform: translateY(-1px); /* Sublte tweak for visual baseline */
    }
}
/* ==================
   TESTIMONIAL IMAGE GRID (TIGHTENED LAYOUT)
   ================== */
.testimonial-image-grid {
    display: grid;
    grid-template-columns: repeat(2, auto); /* Fit items precisely */
    gap: 15px; /* Significantly reduced gap */
    max-width: 1000px; /* More compact container */
    margin: 1.5rem auto; /* Reduced vertical margin */
    justify-content: center; /* Keep the whole grid centered */
}

.testimonial-image-card {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 460px; /* Slightly more compact cards */
    width: 100%;
}

.testimonial-image-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Tablet: 2 per line for everything */
@media (max-width: 1024px) {
    .testimonial-image-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 15px;
    }
    .testimonial-image-card:nth-child(n) {
        grid-column: span 1;
    }
}

/* Mobile: 1 per line */
@media (max-width: 600px) {
    .testimonial-image-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 25px;
    }
    .testimonial-image-card:nth-child(n) {
        grid-column: span 1;
    }
    .testimonial-image-card {
        max-width: 100%;
        margin: 0 auto;
    }
}
