/* logical-thinkids-styles-v6 */
:root {
    /* Color Palette */
    --primary-blue: #1A56DB;
    --accent-red: #FF4757;
    --text-navy: #0A192F;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --bg-light: #F8FAFC;

    --feat-blue-bg: #E3F2FD;
    --feat-teal-bg: #E0F2F1;
    --feat-yellow-bg: #FFF9C4;
    --feat-red-bg: #FFEBEE;

    /* Typography */
    --font-main: 'Zen Maru Gothic', sans-serif;
    --font-en: 'Varela Round', sans-serif;
}

/* Lenis Smooth Scroll */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 5px;
    background: var(--accent-red);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Text Mask Reveal Utils */
.reveal-text {
    position: relative;
    overflow: hidden;
    display: inline-block;
    color: transparent;
    /* Text hidden initially */
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #0A192F;
    /* Mask Color */
    transform: scaleX(1);
    transform-origin: right;
    /* Animation handled by GSAP */
}

.reveal-text.revealed {
    color: var(--text-navy);
}

.reveal-text.revealed::after {
    transform: scaleX(0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-navy);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #004a9f;
    text-shadow: none;
}

.section-title.in-view {
    opacity: 1;
    transform: translateY(0);
}

.section-title span {
    color: var(--primary-blue);
    font-size: 2.2rem;
    display: inline-block;
}

/* Header */
header {
    backface-visibility: hidden;
    /* Ensure header matches logo bg or blend logo */
    background: #ffffff;
    /* Made fully opaque to match logo background */
    backdrop-filter: blur(10px);
    padding: 10px 0;
    /* Adjusted padding for larger logo */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}

/* Hide header on scroll down, show on up (handled by JS)? Or just keep fixed. 
   Let's add a "pop down" on load. */
header {
    animation: slideDown 0.8s ease-out forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Reduced from 70px */
    width: auto;
    transition: transform 0.3s;
    /* Blend logo white background with header */
    mix-blend-mode: multiply;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-left: 10px;
    letter-spacing: -0.02em;
    /* Tighter spacing for logo feel */
    font-family: 'Varela Round', sans-serif;
    /* subtle shadow for depth */
    text-shadow: 2px 2px 0px rgba(230, 230, 250, 0.5);
}



.logo:hover img {
    transform: rotate(-5deg) scale(1.1);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-navy);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a.cta-btn {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

nav a.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
}

nav a.cta-btn::after {
    display: none;
}

/* Hero Section (Full Screen Future City) */
#hero {
    height: 100vh;
    min-height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image,
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Animation handled by JS (GSAP) */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.7) 0%, rgba(26, 86, 219, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    /* Changed from center */
    max-width: 1200px;
    /* Increased width for left align layout */
    padding: 0 40px;
    /* Increased padding */
    width: 100%;
}

/* Standard Title (No Video Clip) */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.3;
    font-weight: 900;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-sub {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    justify-content: flex-start;
    /* Changed from center */
    gap: 20px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}



.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main {
    background: var(--accent-red);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: none;
    display: inline-block;
}

/* Shine Effect on Button */
.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-main:hover::before {
    left: 100%;
}

.btn-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.6);
}

.btn-sub {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    display: inline-block;
}

.btn-sub:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsiveness for Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
        /* Safe fit for 360px without wrapping */
    }

    .hero-content {
        padding: 0 20px;
        /* More width for text */
        margin-top: 20px;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-main,
    .btn-sub {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    #hero {
        padding-top: 130px;
        /* Offset fixed header (~110px) + breathing room */
        align-items: flex-start;
        /* Align content to top */
        height: auto;
        /* Allow content to grow */
        min-height: 100vh;
        padding-bottom: 50px;
    }

    .hero-content {
        margin-top: 20px;
    }
}

/* About Section */
/* About Section */
#about {
    /* Future Tech Grid Background - Accelerated */
    background-color: #f0f7ff;
    background-image:
        linear-gradient(rgba(79, 172, 254, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 172, 254, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
    animation: futureGridMove 4s linear infinite;
}

@keyframes futureGridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

/* Optional: Add a glossy overlay for 'tech' feel */
#about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Text Box container to ensure readability against grid */
/* Reverted to clean text box, solid text */
.about-text-box {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    /* Minimal padding */
    position: relative;
    z-index: 2;
}

.about-lead {
    font-size: 1.8rem;
    color: #000000;
    /* PURE BLACK */
    font-weight: 700;
    /* BOLD */
    margin-bottom: 20px;
    line-height: 1.5;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    /* Re-added halo for contrast against grid */
}

.about-desc {
    font-size: 1.1rem;
    line-height: 2;
    color: #111111;
    /* Almost pure black */
    font-weight: 600;
    /* Semi-bold */
}

.about-image-box {
    flex: 1.4 !important;
    min-width: 500px !important;
    margin-top: 0 !important;
    justify-content: center;
}

.about-img {
    width: 100% !important;
    max-width: none !important;
    /* 幅はほどほどに */
    height: auto !important;
    background: transparent !important;
    border: none !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
}

/* Features */
#features {
    background: #fff;
}

.features-sub {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #555;
}

/* Features */
#features {
    /* Bright Background with Animated Grid Pattern */
    background-color: #f0f8ff;
    background-image:
        linear-gradient(rgba(79, 172, 254, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 172, 254, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    padding-bottom: 80px;
    overflow: hidden;
    animation: futureGridMove 4s linear infinite;
}



#features .section-title span {
    color: #004a9f;
    background: linear-gradient(transparent 70%, #ffeb3b 70%);
    /* Yellow highlight style */
    -webkit-text-fill-color: initial;
}

/* Specific styling for the lead text - MATCH ABOUT SECTION */
#features>.container>p {
    font-size: 1.8rem !important;
    /* Matched to .about-lead size */
    color: #333 !important;
    /* Dark text for readability */
    font-weight: 700 !important;
    line-height: 1.8;
}

#features p {
    color: #555;
}

#features .grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #fff;
    /* White card for bright theme */
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #004a9f;
}

/* Keep images circular but adjust border to fit bright theme */
.feat-img-container {
    width: 170px;
    height: 170px;
    margin: 0 auto 15px auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 0px solid #004a9f;
    /* Blue border instead of neon */
    box-shadow: 0 0 10px rgba(0, 74, 159, 0.2);
    background: #000;
    /* Keep black bg for the image itself */
}

.feat-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.feature-card:hover .feat-img-container img {
    transform: scale(1.1);
}

.feat-title {
    font-size: 1.4rem;
    color: #004a9f;
    /* Blue title */
    margin-bottom: 15px;
    font-weight: 700;
}

.feat-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

/* Removing old pastel classes by overwriting or omitting them */

.feat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feat-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-navy);
}

.feat-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile Header */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 5px;
        padding: 10px 10px;
        /* Reduced side padding to 10px */
    }

    nav ul {
        gap: 12px;
        /* Increased from 5px for better separation */
        font-size: 0.7rem;
        flex-wrap: nowrap;
        /* Prevent wrapping */
        justify-content: center;
        /* Center items */
        width: 100%;
        padding: 0;
        margin: 0;
        white-space: nowrap;
        /* Keep text together */
    }

    nav li {
        flex-shrink: 0;
        /* Prevent items from squishing too much */
    }

    .logo img {
        height: 28px;
        /* Reduced from 35px */
    }

    .logo-text {
        font-size: 0.9rem;
    }

    /* Optimize CTA button for mobile line */
    nav a.cta-btn {
        padding: 5px 10px;
        /* Tighter padding */
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
        /* Reduced from 100px */
    }

    .section-title {
        margin-bottom: 1.5rem;
        /* Reduced from 3rem */
    }

    .about-content {
        flex-direction: column;
        text-align: left;
    }

    .about-text-box {
        padding: 10px 0;
        /* Reduced from 20px all around */
    }

    .about-image-box {
        min-width: 100% !important;
        margin-top: 5px !important;
        /* Further reduced from 15px */
    }

    .about-lead {
        font-size: 1.5rem;
        margin-bottom: 5px;
        /* Further reduced from 10px */
    }

    .about-desc {
        line-height: 1.6;
        font-size: 1rem;
    }

    .about-img-placeholder {
        height: 200px;
    }

    #features .grid-4 {
        grid-template-columns: 1fr;
        /* Stack cards on mobile */
    }

    .feat-title {
        font-size: 1.3rem;
        /* Increased from 1.2rem */
    }

    .feat-desc {
        font-size: 1.05rem;
        /* Increased from 0.9rem */
        line-height: 1.7;
        /* Slightly more breathing room for larger text */
    }
}

.feature-card:hover .feat-icon {
    transform: rotate(15deg) scale(1.2);
}

/* Courses */
#courses {
    /* Featuresセクションと同じ明るい背景色とグリッド模様 */
    background-color: #f0f8ff;
    background-image:
        linear-gradient(rgba(79, 172, 254, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 172, 254, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
    /* 同じアニメーションを適用 */
    animation: futureGridMove 4s linear infinite;
}

@keyframes diagonalStripeMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

.courses-subtitle {
    text-align: left;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    line-height: 1.8;
}






.section-subtitle {
    text-align: left;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    line-height: 1.8;
}


#courses .grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    /* Init for scroll stagger */
    transform: translateY(40px);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.course-icon-container {
    width: 180px;
    height: 130px;
    margin: 30px auto 20px auto;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 0px solid #004a9f;
    box-shadow: 0 0 15px rgba(0, 74, 159, 0.2);
    background: #fff;
}

.course-icon-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.course-card:hover .course-icon-container img {
    transform: scale(1.1);
}

.course-content {
    padding: 25px;
}

.course-title {
    font-size: 1.4rem;
    color: #004a9f;
    margin-bottom: 10px;
    font-weight: 700;
}

.course-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.duration-icon {
    font-size: 1.1rem;
}

.course-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.course-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-badge {
    background: #e8f4f8;
    color: #004a9f;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tag-badge:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Teachers */
/* Teachers Section (Tech Background) */
#teachers {
    background-color: #E0F7FA;
    /* Hexagon/Triangle Geometric Pattern */
    background-image:
        linear-gradient(30deg, #B2EBF2 12%, transparent 12.5%, transparent 87%, #B2EBF2 87.5%, #B2EBF2),
        linear-gradient(150deg, #B2EBF2 12%, transparent 12.5%, transparent 87%, #B2EBF2 87.5%, #B2EBF2),
        linear-gradient(30deg, #B2EBF2 12%, transparent 12.5%, transparent 87%, #B2EBF2 87.5%, #B2EBF2),
        linear-gradient(150deg, #B2EBF2 12%, transparent 12.5%, transparent 87%, #B2EBF2 87.5%, #B2EBF2),
        linear-gradient(60deg, #4DD0E1 25%, transparent 25.5%, transparent 75%, #4DD0E1 75%, #4DD0E1),
        linear-gradient(60deg, #4DD0E1 25%, transparent 25.5%, transparent 75%, #4DD0E1 75%, #4DD0E1);
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
    animation: techScroll 20s linear infinite;
}

@keyframes techScroll {
    from {
        background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
    }

    to {
        background-position: 0 140px, 0 140px, 20px 175px, 20px 175px, 0 140px, 20px 175px;
    }
}

.teacher-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.teacher-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    /* Init */
    opacity: 0;
    transform: translateX(-30px);
}

.teacher-card:nth-child(even) {
    transform: translateX(30px);
}

.teacher-card:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.teacher-img {
    width: 120px;
    height: 120px;
    background: #ccc;
    object-fit: cover;
    border-radius: 50%;
    /* Rounded for friendlier look */
    border: 4px solid var(--feat-yellow-bg);
    transition: 0.3s;
}

.teacher-card:hover .teacher-img {
    border-color: var(--primary-blue);
    transform: rotate(-5deg);
}

/* FAQ */
.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    /* Init */
    opacity: 0;
    transform: translateY(20px);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question::after {
    content: '+';
    font-weight: 900;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
    /* or usage of JS to set specific height */
}

/* Form */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    /* GSAP handles animation */
}

.form-container.in-view {
    opacity: 1;
    transform: scale(1);
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: #fcfcfc;
    font-family: var(--font-main);
    transition: 0.3s;
}

.form-input:focus {
    border-color: var(--primary-blue);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.1);
}

.form-submit {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    background: #1545b0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
}

/* Global Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger Classes (applied by JS) */
/* Course Pages Specific Styles */

/* Award Section */
.award-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f6f9fc 0%, #e9f2f9 100%);
}

.award-container {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.award-img {
    flex: 1;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.award-text {
    flex: 1;
}

.award-label {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.award-text h3 {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--text-navy);
}

.award-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Feature Showcase (Alternating Layout) */
.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 60px;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 60px;
    opacity: 1;
    /* GSAP will handle 'from' opacity */
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.step-badge {
    display: inline-block;
    font-family: var(--font-en);
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 10px;
}

.showcase-text h3 {
    font-size: 2rem;
    color: var(--text-navy);
    margin-bottom: 20px;
    position: relative;
}

.showcase-text p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.showcase-img-wrapper {
    flex: 1;
    position: relative;
}

.showcase-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* Responsive Styles for Course Pages */
@media (max-width: 900px) {
    .award-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .award-img {
        width: 100%;
        max-width: 100%;
    }

    .showcase-item,
    .showcase-item.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .step-badge {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .showcase-text h3 {
        font-size: 1.8rem;
    }
}

/* Fix for Access Grid on small mobile */
@media (max-width: 600px) {
    .access-grid {
        grid-template-columns: 1fr !important;
    }
}