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

:root {
    --navy: #0F1E2E;
    --charcoal: #1F2933;
    --white: #FFFFFF;
    --electric-blue: #3B82F6;
    --electric-blue-glow: rgba(59, 130, 246, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--navy);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background: rgba(15, 30, 46, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background: rgba(15, 30, 46, 0.98);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-link {
    display: block;
    height: 158px;
    transition: opacity 0.3s ease;
    background-color: transparent;
}

.logo-link:hover {
    opacity: 0.85;
}

.logo-img {
    height: 100%;
    width: auto;
    display: block;
    background-color: transparent;
}

/* Legacy text logo styles - kept for policy pages */
.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    height: 28px;
    line-height: 28px;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.85;
}

.logo-regular {
    font-weight: 500;
}

.logo-bold {
    font-weight: 700;
}

/* HERO SECTION - FULL BLEED */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(15, 30, 46, 0.82), rgba(15, 30, 46, 0.82)), url('../images/vw-passat.jpg');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.85;
}

/* CTA BUTTONS */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.primary-cta {
    background-color: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 20px var(--electric-blue-glow);
}

.primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--electric-blue-glow);
    background-color: #1a2f42;
}

.large-cta {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    background-color: var(--electric-blue);
    color: var(--white);
    box-shadow: 0 6px 25px var(--electric-blue-glow);
}

.large-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px var(--electric-blue-glow);
    background-color: #2563eb;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* CONTENT SECTIONS */
.content-section {
    padding: 8rem 2rem;
    animation: fadeIn 0.8s ease-out;
    background: linear-gradient(135deg, #0F1E2E 0%, #1F2933 100%);
}

.dark-section {
    background-color: var(--charcoal);
    color: var(--white);
}

/* PARALLAX SECTION WRAPPER */
.parallax-wrapper {
    padding: 0;
    background: linear-gradient(135deg, #0F1E2E 0%, #1F2933 100%);
}

/* PARALLAX SECTIONS */
.parallax-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center 70%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 30, 46, 0.55);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

/* Individual Parallax Images */
.parallax-1 {
    background-image: url('../images/skoda-superb.jpg');
}

.parallax-2 {
    background-image: url('../images/volvo-xc60.jpg');
}

.parallax-3 {
    background-image: url('../images/mercedes-a-class.jpg');
}

.parallax-4 {
    background-image: url('../images/bmw-m3.jpg');
}

/* Spacer Sections Between Parallax */
.parallax-spacer {
    padding: 60px 2rem;
    background: #0F1E2E;
}

.parallax-spacer.light {
    background: #F5F7FA;
    border-top: 1px solid rgba(15, 30, 46, 0.08);
}

.parallax-spacer.dark {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    color: var(--white);
}

/* INFO GRID */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-section .info-card {
    background-color: rgba(255, 255, 255, 0.08);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.dark-section .info-card h3 {
    color: var(--white);
}

.info-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.dark-section .info-card p {
    color: rgba(255, 255, 255, 0.9);
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--electric-blue);
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ELIGIBILITY */
.eligibility-content {
    text-align: center;
    margin: 2rem 0;
}

.large-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
}

/* CLAIM INFO SECTION */
.claim-info {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.sub-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-top: 1.5rem;
}

/* TIMELINE INFO */
.timeline-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.timeline-item {
    text-align: center;
    padding: 2rem;
}

.timeline-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.timeline-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* PROCESS GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--electric-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 700;
}

.process-step p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* IMAGE SECTIONS - HIDDEN (Using parallax-section instead) */
.image-section {
    display: none;
}

/* Mobile Parallax Adjustments */
@media (max-width: 900px) {
    .parallax-section {
        min-height: 420px;
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .parallax-section {
        min-height: 320px;
    }
    
    .parallax-spacer {
        padding: 40px 1.5rem;
    }
}

/* FINAL CTA */
.final-cta {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F1E2E 0%, #1F2933 100%);
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 30, 46, 0.3);
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.final-cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2.5rem;
}

/* FOOTER */
.footer {
    background-color: #0a1520;
    color: var(--white);
    padding: 2rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--white);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer Minimal Version (for policy pages) */
.footer-minimal {
    padding: 1.5rem 2rem;
}

.footer-minimal .footer-content {
    max-width: 800px;
}

.footer-minimal .footer-links {
    margin-bottom: 0.8rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        height: 120px;
    }
    
    .header-container {
        padding: 0 1.5rem;
    }
    
    .logo-link {
        height: 100px;
    }
    
    .logo {
        font-size: 1.2rem;
        height: 24px;
        line-height: 24px;
    }
    
    .hero {
        background-position: center center;
        background-attachment: scroll;
    }
    
    .final-cta {
        min-height: 400px;
    }
    
    .footer {
        padding: 1.5rem 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}
    
    .info-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .large-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .hero,
    .image-section,
    .final-cta {
        background-attachment: scroll !important;
    }
}

/* FOCUS STATES */
.cta-button:focus {
    outline: 3px solid var(--electric-blue);
    outline-offset: 4px;
}