/* ============================================
   RESET & BASE STYLES
   ============================================ */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none !important;
}

:root {
    /* Modern Color Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --accent-2: #f43f5e;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-lighter: #e2e8f0;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 100px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-lighter);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    width: 47%;
}

.logo svg {
    width: 100%;
    height: auto;
    margin-right: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 600;
}

.btn-nav::after {
    display: none;
}

.lang-toggle {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-toggle span,
.lang-toggle a {
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.lang-toggle span.active,
.lang-toggle a:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-lighter);
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1001;
        pointer-events: auto;
        cursor: pointer;
    }
    
    /* Add overlay when menu is open */
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        pointer-events: auto;
        animation: fadeIn 0.3s ease-out;
        display: none;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 200px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 400px;
    background-image: url('img/carbanner.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    z-index: 0;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-success);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 48px;
    line-height: 1.6;
}

/* Search Box */
.search-box {
    margin-bottom: 48px;
}

.search-wrapper {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-lighter);
    transition: all var(--transition-base);
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.search-icon {
    color: var(--gray);
    margin: 0 16px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 16px 0;
    color: var(--dark);
    background: transparent;
}

.search-input::placeholder {
    color: var(--gray-light);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.search-btn:active {
    transform: translateY(0);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-weight: 500;
}

.feature-item svg {
    color: var(--success);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

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

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--white), #f8fafc);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-lighter);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    line-height: 27px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================
   COMPREHENSIVE CHECKS SECTION
   ============================================ */
.comprehensive-checks-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.checks-visual-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.checks-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    margin: 60px 0 40px;
    gap: 60px;
}

.check-car-image {
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.car-top-view {
    width: 280px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: floatCar 6s ease-in-out infinite;
}

@keyframes floatCar {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.check-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    max-width: 380px;
    justify-content: center;
}

.check-features-left {
    align-items: flex-end;
}

.check-features-right {
    align-items: flex-start;
}

.check-item {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.check-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-success);
    transition: width var(--transition-base);
}

.check-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.check-item:hover::before {
    width: 5px;
}

.check-item-left {
    flex-direction: row-reverse;
}

.check-item-right {
    flex-direction: row;
}

.check-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-success);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: all var(--transition-base);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.25);
}

.check-item:hover .check-number {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.35);
}

.check-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    margin: 0 18px;
    flex: 1;
    transition: color var(--transition-base);
}

.check-item:hover .check-text {
    color: var(--success);
}

.check-line-left,
.check-line-right {
    display: none;
}

.checks-cta {
    text-align: center;
    margin-top: 60px;
}

.checks-cta-btn {
    padding: 18px 48px;
    background: var(--gradient-success);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
}

.checks-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.checks-cta-btn:active {
    transform: translateY(-1px);
}

/* ============================================
   REPORT SECTION
   ============================================ */
.report-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.report-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.report-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--dark);
    line-height: 1.2;
}

.report-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.report-list {
    display: grid;
    gap: 16px;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark);
    font-weight: 500;
}

.report-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.report-visual {
    display: flex;
    justify-content: center;
}

.report-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-lighter);
    max-width: 400px;
    width: 100%;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.report-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-lighter);
}

.report-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.report-card-status {
    padding: 6px 12px;
    background: var(--gradient-success);
    color: var(--white);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.report-card-content {
    display: grid;
    gap: 16px;
}

.report-card-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-lighter);
}

.report-card-item span:first-child {
    color: var(--gray);
}

.report-card-item span:last-child {
    color: var(--dark);
    font-weight: 600;
}

.status-good {
    color: var(--success) !important;
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    overflow: hidden;
}

/* Desktop Marquee Carousel */
.brands-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    /* background: linear-gradient(to bottom, rgba(99, 102, 241, 0.02), transparent); */
}

.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.brands-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    gap: 32px;
    width: fit-content;
    animation: marquee 60s linear infinite;
    will-change: transform;
}

.brands-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    cursor: pointer;
    flex-shrink: 0;
    width: 180px;
    height: 140px;
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
}

.brand-logo {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%) opacity(0.8);
    transition: all var(--transition-base);
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

/* Mobile Grid (No Slider) */
.brands-grid-mobile {
    display: none;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, #f8fafc, var(--white));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-lighter);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

.avatar-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.testimonial-badge {
    font-size: 14px;
    color: var(--gray);
}

.testimonial-rating {
    margin-bottom: 16px;
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark);
    user-select: none;
}

.faq-icon {
    color: var(--primary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></svg>');
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-search {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.cta-input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
}

.cta-btn {
    padding: 18px 40px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-btn:active {
    transform: translateY(0);
}

/* Button press effect */
button:active,
.search-btn:active {
    transform: scale(0.98);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    margin: 0 auto 24px;
    display: flex;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.contact-badge svg {
    width: 16px;
    height: 16px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-lighter);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.contact-card-text {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
    line-height: 1.5;
    margin-left: 52px;
}

.contact-card-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    transition: all var(--transition-fast);
    margin-left: 52px;
}

.contact-card-link:hover {
    color: var(--secondary);
    gap: 6px;
}

.contact-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 52px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-text {
    color: var(--success);
    font-weight: 600;
    font-size: 13px;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-lighter);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    position: relative;
}

.form-icon {
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: auto;
    transform: none;
    color: var(--primary);
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: color var(--transition-base);
}

.form-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.form-icon-top {
    top: 18px;
    transform: none;
}

.form-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1.5px solid var(--gray-lighter);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    transition: all var(--transition-base);
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input::placeholder {
    color: var(--gray-light);
}

/* Form Validation Styles */
.form-input.error,
.search-input.error,
.cta-input.error {
    border-color: #ef4444;
    background-color: #fef2f2;
    padding-right: 40px;
}

.form-input.error:focus,
.search-input.error:focus,
.cta-input.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success,
.search-input.success,
.cta-input.success {
    border-color: var(--success);
    background-color: #f0fdf4;
}

.form-input.success:focus,
.search-input.success:focus,
.cta-input.success:focus {
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-error-message {
    display: none;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    margin-left: 0;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-error-message.show {
    display: block;
}

.form-group.has-error {
    border-color: #ef4444;
}

.form-group.has-error .form-icon {
    color: #ef4444;
    top: 14px;
    transform: none;
}

.form-group.has-success .form-icon {
    color: var(--success);
    top: 14px;
    transform: none;
}

/* Ensure icon alignment for textarea in error/success states */
.form-group.has-error .form-icon-top,
.form-group.has-success .form-icon-top {
    top: 18px;
    transform: none;
}

/* Error message styling matching homepage registration field */
.form-group.has-error .form-error-message {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
    margin-left: 0;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search input error styles */
.search-wrapper.has-error,
.cta-search.has-error {
    border-color: #ef4444;
}

.search-wrapper.has-error .search-input,
.cta-search.has-error .cta-input {
    border-color: #ef4444;
}

.search-error-message,
.cta-error-message {
    display: none;
    color: #ef4444;
    font-size: 13px;
    margin-top: 8px;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
}

.search-error-message.show,
.cta-error-message.show {
    display: block;
}

.form-textarea {
    padding-top: 14px;
    padding-left: 44px;
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    padding: 16px 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    margin-top: 4px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn svg {
    transition: transform var(--transition-base);
}

.form-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Thank You Message */
.thank-you-message {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    animation: fadeInScale 0.5s ease-out;
}

.thank-you-message.show {
    display: flex;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: checkmarkAnimation 0.6s ease-out 0.3s both;
}

@keyframes checkmarkAnimation {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.thank-you-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.thank-you-text {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.thank-you-btn {
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.thank-you-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--gray-light);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero::before {
        height: 300px;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .checks-visual {
        flex-direction: column;
        gap: 50px;
        min-height: auto;
    }
    
    .check-features {
        max-width: 100%;
        width: 100%;
        gap: 18px;
    }
    
    .check-features-left {
        align-items: stretch;
    }
    
    .check-features-right {
        align-items: stretch;
    }
    
    .check-item {
        width: 100%;
    }
    
    .check-item-left {
        flex-direction: row;
    }
    
    .car-top-view {
        width: 250px;
    }
    
    .report-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .report-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
  
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 150px;
    }
    
    .hero::before {
        height: 250px;
        opacity: 0.8;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .search-wrapper {
        flex-direction: column;
        padding: 16px;
    }
    
    .search-input {
        width: 100%;
        margin-bottom: 12px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .checks-visual {
        gap: 35px;
        margin: 40px 0 30px;
    }
    
    .check-features {
        gap: 16px;
    }
    
    .check-item {
        padding: 14px 16px;
    }
    
    .check-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .check-text {
        font-size: 15px;
        margin: 0 14px;
    }
    
    .car-top-view {
        width: 220px;
    }
    
    .checks-cta-btn {
        padding: 16px 36px;
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide marquee on tablet/mobile */
    .brands-marquee-wrapper {
        display: none;
    }
    
    /* Show mobile grid */
    .brands-grid-mobile {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 1200px;
        margin: 40px auto 0;
        padding: 0 24px;
    }
    
    .brands-grid-mobile .brand-card {
        width: 100%;
        height: 100px;
        padding: 16px;
    }
    
    .brands-grid-mobile .brand-logo {
        max-height: 50px;
    }
    
    .cta-search {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-form-card {
        padding: 28px 24px;
        min-height: 450px;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .thank-you-message {
        padding: 32px 24px;
    }
    
    .thank-you-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 120px;
    }
    
    .hero::before {
        height: 180px;
        opacity: 0.7;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .checks-visual {
        gap: 30px;
        margin: 30px 0 20px;
    }
    
    .check-features {
        gap: 14px;
    }
    
    .check-item {
        padding: 12px 14px;
    }
    
    .check-number {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
    
    .check-text {
        font-size: 14px;
        margin: 0 12px;
    }
    
    .car-top-view {
        width: 180px;
    }
    
    .checks-cta {
        margin-top: 40px;
    }
    
    .checks-cta-btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 18px;
    }
    
    .contact-card-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .contact-card-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-card-title {
        font-size: 17px;
    }
    
    .contact-card-text,
    .contact-card-link,
    .contact-status {
        margin-left: 46px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header {
        margin-bottom: 28px;
    }
    
    .contact-title {
        font-size: 26px;
    }
    
    .contact-subtitle {
        font-size: 15px;
    }
    
    .contact-form-card {
        padding: 24px 20px;
        min-height: 420px;
    }
    
    .contact-form-title {
        font-size: 22px;
    }
    
    .contact-form-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .contact-form {
        gap: 16px;
    }
    
    .form-input {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }
    
    .form-textarea {
        padding-left: 40px;
        min-height: 90px;
    }
    
    .form-submit-btn {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .thank-you-message {
        padding: 28px 20px;
    }
    
    .thank-you-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .thank-you-title {
        font-size: 22px;
    }
    
    .thank-you-text {
        font-size: 14px;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .brands-grid-mobile {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }
    
    .brands-grid-mobile .brand-card {
        height: 80px;
        padding: 12px;
    }
    
    .brands-grid-mobile .brand-logo {
        max-height: 40px;
    }
}

/* ============================================
   CHECKOUT PAGE STYLES
   ============================================ */
.checkout-section {
    padding: 100px 0 60px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%);
    min-height: 100vh;
    position: relative;
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
    pointer-events: none;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
    transition: all var(--transition-fast);
}

.checkout-back-link:hover {
    gap: 12px;
    color: var(--secondary);
}

.checkout-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.checkout-subtitle {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 32px;
}

.checkout-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    position: relative;
    transition: all var(--transition-base);
}

.checkout-form-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.checkout-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.checkout-form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.checkout-summary-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    position: sticky;
    top: 100px;
    height: fit-content;
    transition: all var(--transition-base);
}

.checkout-summary-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.checkout-summary-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-lighter);
}

.checkout-plan-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.checkout-plan-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.checkout-plan-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.checkout-delivery-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--gray-lighter);
    margin-top: 20px;
}

.checkout-total-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.checkout-total-amount {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.checkout-features-list {
    list-style: none;
    margin-bottom: 24px;
}

.checkout-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 14px;
}

.checkout-features-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
}

.checkout-security-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-lighter);
}

.checkout-security-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.checkout-security-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================
   CHECKOUT SECURITY FEATURES - NEW DESIGN
   ============================================ */
.checkout-security-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-lighter);
}

.checkout-security-features-left {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-lighter);
    border-radius: 0;
    width: 100%;
}

.checkout-container > div:first-child {
    display: flex;
    flex-direction: column;
}

.checkout-feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-lighter);
    position: relative;
    overflow: hidden;
}

.checkout-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, transparent);
    transition: all var(--transition-base);
}

.checkout-feature-secure::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.checkout-feature-delivery::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.checkout-feature-support::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.checkout-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.checkout-feature-card:hover::before {
    height: 4px;
}

.checkout-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.checkout-feature-card:hover .checkout-feature-icon {
    transform: scale(1.05);
}

.checkout-feature-secure .checkout-feature-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
}

.checkout-feature-delivery .checkout-feature-icon {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #2563eb;
}

.checkout-feature-support .checkout-feature-icon {
    background: linear-gradient(135deg, #e9d5ff 0%, #ddd6fe 100%);
    color: #7c3aed;
}

.checkout-feature-icon svg {
    width: 24px;
    height: 24px;
}

.checkout-feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.checkout-feature-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Responsive Design for Checkout Features */
@media (max-width: 768px) {
    .checkout-security-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
        padding-top: 24px;
    }
    
    .checkout-feature-card {
        padding: 20px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    
    .checkout-feature-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
    
    .checkout-feature-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .checkout-feature-title {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .checkout-feature-subtitle {
        font-size: 13px;
    }
}

.checkout-registration-display {
    background: rgba(99, 102, 241, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-registration-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.checkout-registration-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .checkout-summary-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 80px 0 40px;
    }
    
    .checkout-container {
        padding: 0 16px;
        gap: 24px;
    }
    
    .checkout-form-card,
    .checkout-summary-card {
        padding: 24px;
    }
    
    .checkout-title {
        font-size: 28px;
    }
    
    .checkout-security-features-left {
        margin-top: 24px;
        padding-top: 24px;
    }
}

/* ============================================
   LEGAL/CONTENT PAGES STYLES
   ============================================ */
.legal-page-section {
    padding: 120px 0 80px;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 50%);
    min-height: 100vh;
}

.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-page-header {
    margin-bottom: 48px;
    text-align: center;
}

.legal-page-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.legal-page-content {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    line-height: 1.8;
}

.legal-page-content h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-lighter);
}

.legal-page-content h1:first-child {
    margin-top: 0;
}

.legal-page-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-page-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page-content ul,
.legal-page-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--gray);
}

.legal-page-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page-content strong {
    color: var(--dark);
    font-weight: 600;
}

.legal-page-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.legal-page-content a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.legal-page-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
    transition: all var(--transition-fast);
}

.legal-page-back-link:hover {
    gap: 12px;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .legal-page-section {
        padding: 100px 0 60px;
    }
    
    .legal-page-container {
        padding: 0 16px;
    }
    
    .legal-page-title {
        font-size: 32px;
    }
    
    .legal-page-content {
        padding: 32px 24px;
    }
    
    .legal-page-content h1 {
        font-size: 28px;
    }
    
    .legal-page-content h2 {
        font-size: 22px;
    }
    
    .legal-page-content h3 {
        font-size: 18px;
    }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar,
    .search-box,
    .cta-section,
    .footer {
        display: none;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for grid items */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }

.testimonials-grid .testimonial-card:nth-child(1) { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2) { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3) { transition-delay: 0.3s; }
.testimonials-grid .testimonial-card:nth-child(4) { transition-delay: 0.4s; }

.brands-grid-mobile .brand-card:nth-child(1) { transition-delay: 0.05s; }
.brands-grid-mobile .brand-card:nth-child(2) { transition-delay: 0.1s; }
.brands-grid-mobile .brand-card:nth-child(3) { transition-delay: 0.15s; }
.brands-grid-mobile .brand-card:nth-child(4) { transition-delay: 0.2s; }
.brands-grid-mobile .brand-card:nth-child(5) { transition-delay: 0.25s; }
.brands-grid-mobile .brand-card:nth-child(6) { transition-delay: 0.3s; }
.brands-grid-mobile .brand-card:nth-child(7) { transition-delay: 0.35s; }
.brands-grid-mobile .brand-card:nth-child(8) { transition-delay: 0.4s; }

/* ============================================
   LOADING STATES
   ============================================ */
body:not(.loaded) .hero-badge,
body:not(.loaded) .hero-title,
body:not(.loaded) .hero-description,
body:not(.loaded) .search-box,
body:not(.loaded) .hero-features {
    opacity: 0;
    transform: translateY(20px);
}

/* ============================================
   HOVER EFFECTS
   ============================================ */
.feature-card,
.testimonial-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before,
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before,
.testimonial-card:hover::before {
    left: 100%;
}


.logo-img 
    {
            width: 230px;
    }


@media (max-width: 768px) {

    .logo-img 
    {
            width: 90%;
    }
    
    .logo {
width: 100%;
}

        
    .search-icon 
    {
        display: none;
    }

        }


        .form-group.has-error .form-icon
        {
            top: 19% !important;
        }