/* MODERN LANDING PAGE DESIGN SYSTEM (2025) - DEEP BLUE THEME */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Deep Black & Vibrant Yellow */
    --primary: #FFDE00;       /* Vibrant Yellow */
    --primary-hover: #e6c800;
    --secondary: #000000;     /* Pure Black */
    --accent: #333333;        /* Dark Gray Accent */
    
    --bg-deep: #050505;       /* Deepest Black */
    --bg-gradient: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
    --bg-light: #f4f4f4;      /* Light Gray */
    --surface-white: #FFFFFF;
    
    --text-main: #111111;     /* Dark Black-Gray */
    --text-muted: #555555;
    --text-inverse: #FFFFFF;
    
    /* Shadows & Glass */
    --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(12px);

    /* Spacing & Radius */
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
}

/* GLOBAL RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

img {
    max-width: 100%;
    height: auto;
}

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

/* -------------------------------------------
   HEADER (Floating, Top-Left)
------------------------------------------- */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5%;
}

nav {
    display: flex;
    justify-content: space-between; /* Align items to edges (Lang Left, Logo Right) */
    align-items: center;
    gap: 2rem;
}

/* Language Switcher - Glass Pill */
.lang-switch {
    order: -1; /* First element */
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 4px;
    border-radius: var(--radius-pill);
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--surface-white);
    color: var(--secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lang-divider { display: none; } /* Hide divider */

.logo-container {
    display: flex;
    align-items: center;
}

.main-logo {
    height: 50px; /* Reduced size as requested */
    width: auto;
    object-fit: contain;
    border-radius: 12px; /* Refined roundness */
}

.main-logo:hover {
    transform: scale(1.02);
}

.nav-logo { height: 32px; filter: brightness(0) invert(1); } /* White Icon */


/* -------------------------------------------
   HERO SECTION (Deep Blue)
------------------------------------------- */
/* Hero Section (Deep Blue Theme) */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('../assets/hero_inclusive.jpg') no-repeat center center;
    background-size: 100% 100%; /* Force image to stretch and fit fully without cropping */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 2rem;
    color: var(--text-inverse);
    z-index: 10; /* Ensure it stays on top of the fixed background elements */
}

/* Mobile Hero Background */
@media (max-width: 768px) {
    .hero {
        background-image: url('../assets/hero_inclusive_mobile.png');
    }
    .main-logo {
        border-radius: 12px;
    }
}

/* Background overlay pattern (optional) - Removed or made very subtle */
.hero::before {
    display: none; 
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeUp 0.8s ease-out;
    text-shadow: 0 4px 20px rgba(0,0,0,0.9); /* Enhanced global shadow for content */
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5rem) !important;
    font-weight: 900 !important;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #FFDE00 !important; /* Force Vibrant Yellow */
    z-index: 11;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0,0,0,0.6); /* Even stronger shadow */
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    color: var(--text-inverse);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 1); /* Full white */
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 1); /* Strong shadow for readability */
}

/* Modern Buttons */
.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-nid {
    background: #FFDE00;
    color: #000000 !important; /* Force black text on gold */
    box-shadow: 0 4px 20px rgba(255, 222, 0, 0.3);
}

.btn-nid span {
    color: #000000 !important;
}

.btn-nid-inverted {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-nid-inverted span {
    color: #FFFFFF !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-logo { height: 24px; margin-right: 10px; }


/* -------------------------------------------
   SECTIONS (Features, Testimonials)
------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section { padding: 8rem 0; }

/* HERO SECTION CONTENT */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeUp 0.8s ease-out;
}

/* HIGH-CONTRAST SECTIONS */
.section-dark {
    background-color: #000000;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* THEMED SECTIONS (Rhythmic Backdrop Flow) */
.energy-clean .section-title h2,
.energy-dynamic .section-title h2 {
    color: #FFDE00 !important;
    font-weight: 800;
}

.energy-clean .section-title p,
.energy-dynamic .section-title p,
.qr-caption {
    color: #FFFFFF !important;
    font-weight: 500;
}

.qr-container,
.faq-item,
.testimonial-card,
.feature-card,
.who-item,
.step-item {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 222, 0, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 64px 0 rgba(0, 0, 0, 0.9);
}

.qr-container {
    display: block !important;
    max-width: 400px;
    margin: 3rem auto 0 !important;
    padding: 3rem;
    text-align: center;
}

#vanta-bg { display: none; }

/* Removed CSS meshGlow keyframes */

/* Glassmorphism Panel - Enhanced for 3D Background */
.glass-panel {
    background: rgba(0, 0, 0, 0.75); /* Darker overlay for maximum contrast */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 222, 0, 0.3); /* Stronger amber border */
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 16px 64px 0 rgba(0, 0, 0, 0.9);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-panel:hover {
    border-color: rgba(255, 222, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.section-dark .section-title h2 {
    color: var(--primary);
}

.section-dark .section-title p {
    color: #cccccc;
}

.section-yellow, section.section-yellow {
    background-color: #FFDE00 !important;
    color: #000000 !important;
}

.section-yellow .section-title h2, 
section.section-yellow .section-title h2 {
    color: #000000 !important;
}

.section-yellow .section-title p {
    color: #333333;
}

.energy-clean .section-title h2,
.energy-dynamic .section-title h2 {
    color: #FFDE00 !important;
    font-weight: 800;
}

.energy-clean .section-title p,
.energy-dynamic .section-title p,
.qr-caption {
    color: #FFFFFF !important;
    font-weight: 500;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 222, 0, 0.3);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 64px 0 rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FFDE00 !important; /* Force Amber Icons */
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(255, 222, 0, 0.1);
}

.feature-card h3 { 
    font-size: 1.25rem; 
    margin-bottom: 1rem; 
    color: #FFDE00 !important; /* Amber headings */
}

.feature-card p { 
    color: #FFFFFF !important; /* Pure white text */
}


/* -------------------------------------------
   TESTIMONIALS (Polished - White Cards)
------------------------------------------- */
.testimonials { background: transparent; }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 3rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--secondary);
}

/* Decorative Quote Icon */
.quote-icon {
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.2); /* Faded Gold */
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    z-index: 0;
}

.quote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

/* Profile Snippet Style */
.driver-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}


.driver-avatar {
    width: 80px; height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex; /* Flex is safe */
    align-items: center; /* Center icon */
    justify-content: center; /* Center icon */
    color: var(--secondary);
    font-size: 2.5rem;
    flex-shrink: 0;
}

.driver-text {
    display: flex;
    flex-direction: column;
}

.author {
    font-weight: 800;
    color: var(--text-main);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.who-grid-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.who-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem !important;
    text-align: left;
    color: #FFFFFF !important;
    font-weight: 600;
}

.who-item i {
    color: #FFDE00;
    font-size: 1.5rem;
}

.partner-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #FFFFFF !important; /* Force white for partners */
}

/* -------------------------------------------
   STEPS & FAQ (Simplified)
------------------------------------------- */
.steps { background: transparent; }
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.step-item {
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 222, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-item h4 {
    color: var(--primary) !important;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-item p {
    color: #FFFFFF !important;
    font-size: 1rem;
    line-height: 1.5;
}

/* FAQ Question Color */
.section-dark .faq-question {
    color: #FFDE00 !important;
}

.section-dark .faq-answer {
    color: #FFFFFF !important;
}

/* Testimonial Icon/Quotes */
.testimonials .testimonial-card i {
    color: #FFDE00 !important;
}

.testimonials .author {
    color: #FFDE00 !important;
}

.testimonials .testimonial-card p {
    color: #FFFFFF !important; /* Pure white for testimonial quotes */
}

.testimonials .role {
    color: rgba(255, 255, 255, 0.7) !important;
}

.step-item h4 { position: relative; z-index: 1; margin-bottom: 0.5rem; }

/* FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* Tight when closed */
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    margin: 1.5rem 0; /* 'Be apart' when showing content */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: #FFDE00 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-amber);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    content: '×';
}

.faq-question:hover { 
    background: rgba(255, 222, 0, 0.05); 
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    color: #FFFFFF !important;
    font-weight: 500;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer { 
    padding-bottom: 1.5rem; 
    max-height: 500px; 
    opacity: 1;
}

/* -------------------------------------------
   FOOTER
------------------------------------------- */
.cta-footer {
    background: var(--bg-deep);
    color: var(--text-inverse);
    padding-top: 5rem;
}

.cta-box {
    background: var(--bg-gradient);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    margin-bottom: 5rem;
    box-shadow: 0 20px 50px rgba(255, 222, 0, 0.2); /* Changed blue shadow to brand yellow */
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--text-inverse);
    margin-bottom: 1rem;
}
.cta-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 { color: var(--primary); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.8rem; color: rgba(255,255,255,0.6); display: flex; gap: 10px; align-items: center;}

/* UTILS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.curve-divider { display: none; } /* Hide old curves for cleaner look */

@keyframes energyPan {
    from { background-position: 0% 0%; }
    to { background-position: 100% 100%; }
}

.section-dark {
    animation: energyPan 60s linear infinite alternate;
}

.qr-container {
    padding: 3rem;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.qr-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.qr-image {
    max-width: 180px; /* Constrain size */
    height: auto;
    display: block;
    margin: 0 auto 1.5rem;
}

.qr-caption {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* -------------------------------------------
   WHO CAN APPLY (Modern Grid)
------------------------------------------- */
.who-apply { background: var(--surface-white); }

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.who-list {
    display: contents; /* Flattens the UL so LIs participate in grid */
    list-style: none;
}

.who-list li {
    background: var(--surface-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.who-list li:hover {
    transform: translateX(5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-card);
}

.who-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(54, 179, 126, 0.1);
    color: var(--success-color);
    width: 32px; height: 32px;
    border-radius: 50%;
    margin-right: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Partners Section */
.partners-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    background-color: #000000 !important; /* Force solid black like footer */
    text-align: center;
}

.partners-section .section-title h2 {
    color: #ffffff;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem; /* Increased gap */
    flex-wrap: wrap;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 280px; /* Wider item */
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-8px);
}

.partner-logo {
    height: 90px; /* Taller logo */
    width: auto;
    max-width: 240px; /* Wider max-width */
    object-fit: contain;
}

.partner-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff; /* White text for black background */
}

@media (max-width: 768px) {
    .partners-grid {
        gap: 3rem;
    }
    .partner-logo {
        max-height: 50px;
        max-width: 150px;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 12px; /* Refined roundness */
}

