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

:root {
    /* Modern Gradient Color System */
    --primary-from: #6366f1;
    --primary-to: #8b5cf6;
    --primary-color: #6366f1;
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);

    --accent-from: #ec4899;
    --accent-to: #f43f5e;
    --accent-gradient: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);

    --secondary-color: #ec4899;
    --secondary-gradient: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);

    /* Dark pine green header - matches logo background */
    --header-gradient: #151f21;
    --header-shadow: rgba(15, 67, 54, 0.3);

    /* Updated neutrals */
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-gray: #f8fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --surface: #ffffff;

    /* Enhanced Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-bg-strong: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-light: rgba(255, 255, 255, 0.5);
    --shadow-primary: rgba(99, 102, 241, 0.15);
    --shadow-secondary: rgba(236, 72, 153, 0.15);
    --shadow-color: rgba(99, 102, 241, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 0.3s;

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --card-padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* ====== ANIMATION KEYFRAMES ====== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--transition-smooth), transform 0.5s var(--transition-smooth);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }

/* Glass Morphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

.glass-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border-light);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9ff 100%);
    min-height: 100vh;
    position: relative;
    font-feature-settings: 'cv11' on, 'ss01' on, 'ss03' on;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(91, 95, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* Header Styles */
.header {
    background: var(--header-gradient);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px var(--header-shadow);
    border-bottom: 1px solid rgba(15, 67, 54, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header:hover {
    box-shadow: 0 12px 40px rgba(15, 67, 54, 0.4);
    transform: translateY(-1px);
}

.navbar {
    padding: 0.4rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.logo {
    position: relative;
    text-decoration: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.8rem, 1.5vw, 1.2rem);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    opacity: 0.9;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(99, 102, 241, 0.05);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--white);
    opacity: 1;
}

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

/* Admin Link Styling */
.nav-menu .admin-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px !important;
    border-radius: 14px;
    margin-left: 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.8rem;
}

.nav-menu .admin-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.nav-menu .admin-link::after {
    display: none;
}

.nav-menu .admin-link i {
    margin-right: 4px;
    font-size: 0.75em;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Responsive adjustments for medium screens */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
    }
    
    .nav-menu .admin-link {
        margin-left: 10px;
        padding: 6px 12px !important;
    }
}

/* Document Upload Section */
.document-upload-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.upload-box {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.upload-box:hover {
    background: rgba(255, 255, 255, 0.08);
}

.upload-box h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upload-box p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    min-height: 2.5em;
}

.upload-box .upload-area {
    flex: 1;
}

.upload-area {
    position: relative;
    min-height: 120px;
}

.upload-placeholder {
    border: 2px dashed rgba(200, 200, 220, 0.5);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
}

.upload-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

/* Remove border from upload-area inside document-upload-section */
.document-upload-section .upload-area {
    border: none;
    background: transparent;
    min-height: auto;
}

.document-upload-section .upload-area:hover {
    border: none;
    background: transparent;
}

/* License Front/Back Upload Grid */
.license-upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.license-side {
    display: flex;
    flex-direction: column;
}

.license-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-side .upload-area {
    min-height: 120px;
    border: 2px dashed rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.license-side .upload-area:hover {
    border-color: var(--primary-color) !important;
    background: rgba(99, 102, 241, 0.1);
}

.license-side .upload-placeholder {
    padding: 1rem;
    text-align: center;
    cursor: pointer;
}

.license-side .upload-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.license-side .upload-placeholder p {
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.license-side .upload-preview {
    padding: 1rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .license-upload-grid {
        grid-template-columns: 1fr;
    }
}

.upload-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.upload-placeholder p {
    margin: 0.5rem 0;
    color: white;
    font-weight: 500;
}

.file-types {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

.upload-preview {
    background: rgba(10, 92, 62, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.upload-preview i {
    font-size: 2rem;
    color: var(--primary-color);
}

.upload-preview .file-name {
    flex: 1;
    color: white;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-file {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-file:hover {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.optional-notice {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.optional-notice i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.optional-notice p {
    color: #999;
    margin: 0;
    flex: 1;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        gap: 10px;
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        color: var(--white);
        padding: 12px;
        text-align: center;
        font-size: 1rem;
        border-radius: 8px;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu .admin-link {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu .admin-link:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: none;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center center no-repeat;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 80px;
    position: relative;
}

/* Hero Confidence Section - White Theme */
.hero-confidence-section {
    background: #ffffff;
    padding: clamp(3rem, 6vw, 5rem) 0;
    margin-top: 100px;
    position: relative;
    z-index: 10;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.1);
    border: none;
}

.hero-confidence-section::before {
    display: none;
}

.hero-confidence-section .content-grid {
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    position: relative;
}

.hero-confidence-section h3 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-confidence-section p {
    color: var(--text-light);
}

.hero-confidence-section .benefits-list {
    margin: 2rem 0;
}

.hero-confidence-section .benefits-list li {
    color: var(--text-dark);
}

.hero-confidence-section .benefits-list i {
    color: var(--primary-color);
}

.hero-confidence-section .btn-primary {
    background: var(--primary-gradient);
    box-shadow: 0 10px 30px var(--shadow-primary);
    transform: scale(1.05);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-confidence-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s ease;
}

.hero-confidence-section .btn-primary:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 40px var(--shadow-primary);
}

.hero-confidence-section .btn-primary:hover::before {
    left: 100%;
}

.hero-confidence-section .image-placeholder {
    background: transparent;
    border: none;
    overflow: hidden;
}

.hero-confidence-section .image-placeholder i {
    display: none;
}

/* Hero Banner */
.hero-banner {
    background: transparent;
    color: var(--white);
    padding: clamp(4rem, 10vw, 6rem) 0 clamp(6rem, 12vw, 9rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 67, 54, 0.6) 0%, rgba(15, 67, 54, 0.4) 100%);
    z-index: -1;
}

.hero-banner::after {
    display: none;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.7);
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out;
    color: var(--white);
}

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

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Hero Choice Buttons */
.hero-choice-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.choice-btn {
    padding: 18px 50px;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.choice-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.choice-btn:hover::before {
    width: 300px;
    height: 300px;
}

.choice-btn-primary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.choice-btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.choice-btn-secondary {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.choice-btn-secondary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.choice-separator {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Cars */
.hero-cars {
    position: relative;
    height: 200px;
    margin-top: 2rem;
}

.hero-car {
    position: absolute;
    bottom: -50px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.hero-car-left {
    left: 10%;
    width: 250px;
    z-index: 2;
}

.hero-car-center {
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    z-index: 3;
}

.hero-car-right {
    right: 10%;
    width: 250px;
    z-index: 2;
}

.hero-car:hover {
    transform: translateY(-5px);
}

.hero-car-center:hover {
    transform: translateX(-50%) translateY(-5px);
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0;
}

/* Form Wizard Styles */
.form-wizard {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        0 0 80px rgba(99, 102, 241, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: floatIn 0.8s ease-out;
}

/* Required field indicator */
label[for] {
    position: relative;
}

input[required] + label::after,
label:has(input[required])::after {
    content: ' *';
    color: #dc3545;
    font-weight: bold;
}

/* Form validation */
.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.field-error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.form-wizard::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(91, 95, 237, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--primary-color);
    opacity: 0.8;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.progress-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.progress-bar {
    height: 12px;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    background-size: 200% 100%;
    border-radius: 20px;
    overflow: visible;
    position: relative;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% 100%;
    width: 33%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shimmer 2s infinite;
    border-radius: 20px;
}

.progress-fill::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid #6366f1;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    z-index: 1;
}

.form-step.active {
    display: block;
    animation: slideInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add floating animation to form elements */
.form-step.active .step-title {
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

.form-step.active .step-subtitle {
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.form-step.active .vehicle-option:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.form-step.active .vehicle-option:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.form-step.active .vehicle-option:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.form-step.active .vehicle-option:nth-child(4) {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.form-step.active .vehicle-option:nth-child(5) {
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.form-step.active .vehicle-option:nth-child(6) {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

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

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

.step-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.step-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Vehicle Selection Grid */
.vehicle-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.vehicle-option {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 10px 40px rgba(99, 102, 241, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vehicle-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 14px;
}

.vehicle-option:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow:
        0 25px 60px rgba(99, 102, 241, 0.25),
        0 0 0 3px rgba(99, 102, 241, 0.12),
        0 0 40px rgba(99, 102, 241, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.vehicle-option:hover::before {
    opacity: 0.05;
}

.vehicle-option.selected {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: transparent;
    color: white;
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 20px 50px rgba(99, 102, 241, 0.3),
        0 0 0 4px rgba(99, 102, 241, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.vehicle-option.selected::before {
    opacity: 0;
}

.vehicle-icon {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.vehicle-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-option:hover .vehicle-icon img {
    filter: grayscale(30%) contrast(1.15);
    transform: scale(1.08);
}

.vehicle-option.selected .vehicle-icon {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.vehicle-option.selected .vehicle-icon img {
    filter: brightness(1.8) contrast(1.1);
    transform: scale(1.1);
}

.vehicle-icon svg {
    width: 100%;
    height: 100%;
    color: #666;
}

.vehicle-option.selected .vehicle-icon svg {
    color: white;
}

.vehicle-option span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    margin-top: 0.5rem;
    display: block;
}

.vehicle-option:hover span {
    color: var(--primary-color);
}

.vehicle-option.selected span {
    color: white;
    font-weight: 700;
}

/* Option List (Radio buttons) */
.option-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.option-item {
    position: relative;
    display: flex;
    align-items: center;
    padding: 24px 24px 24px 65px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 2px solid #e8eaed;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 70px;
    overflow: hidden;
}

.option-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,102,204,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-item:hover {
    border-color: #b3d4ff;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,102,204,0.1);
}

.option-item:hover::after {
    opacity: 1;
}

.option-item input[type="radio"] {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    opacity: 0;
}

.option-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid #d1d5db;
    background-color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.option-item input[type="radio"]:checked ~ .option-content {
    font-weight: 500;
}

.option-item input[type="radio"]:checked ~ .radio-dot {
    opacity: 0;
}

.option-item input[type="radio"]:checked + .radio-dot::after {
    content: '\2713';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--primary-color);
    z-index: 3;
}

.option-item.selected {
    background: linear-gradient(145deg, #e8f4ff 0%, #deedff 100%);
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.15);
}

.option-item.selected::before {
    border-color: var(--primary-color);
    border-width: 2.5px;
    background-color: var(--primary-color);
}

.option-item.selected::after {
    content: '\2713';
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    z-index: 3;
}

.option-item.selected .radio-dot {
    opacity: 0;
}

.radio-dot {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    opacity: 0;
    z-index: 3;
}

.option-content {
    display: block;
    position: relative;
    font-size: 1rem;
}

/* Form Buttons */
.form-continue {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 16px;
    color: white;
    cursor: pointer;
    box-shadow:
        0 4px 12px rgba(99, 102, 241, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.form-continue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.form-continue:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(99, 102, 241, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.form-continue:hover::before {
    left: 100%;
}

.form-continue:active {
    transform: translateY(-1px);
}

.form-continue:disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.form-continue:disabled:hover {
    transform: none;
}

.form-continue:disabled::before {
    display: none;
}

.form-buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 15px;
}

.form-buttons .btn-secondary {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--text-dark);
    border: 2px solid #e8eaed;
    font-weight: 500;
    min-width: 120px;
}

.form-buttons .btn-secondary:hover {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #d1d5db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
}

/* Selection Summary */
.selection-summary {
    background-color: var(--bg-gray);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-icon {
    width: 80px;
    height: 50px;
    background-color: var(--white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.summary-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.summary-details {
    flex: 1;
}

.summary-type {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.summary-budget {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.edit-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.edit-link:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%) border-box;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.form-group input:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
    outline: none;
    border-color: transparent;
    background: white padding-box,
                linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) border-box;
    box-shadow:
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

/* Modern Select Dropdown Styling */
.form-group select {
    width: 100%;
    padding: 14px 18px;
    padding-right: 40px;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%) border-box;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236366f1' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group select:focus {
    outline: none;
    border-color: transparent;
    background: white padding-box,
                linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) border-box;
    box-shadow:
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

/* Textarea Styling */
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%) border-box;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    resize: vertical;
    min-height: 120px;
}

.form-group textarea:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group textarea:focus {
    outline: none;
    border-color: transparent;
    background: white padding-box,
                linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) border-box;
    box-shadow:
        0 0 0 4px rgba(99, 102, 241, 0.1),
        0 8px 24px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.consent-checkbox {
    margin: 24px 0;
    padding: 16px;
    background: rgba(99, 102, 241, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.consent-checkbox label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 12px;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 2px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.consent-checkbox .checkbox-custom {
    flex-shrink: 0;
}

.consent-checkbox span {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Income Input Styles */
.income-input-container {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 600;
    z-index: 2;
}

.income-input {
    width: 100%;
    padding: 24px 24px 24px 60px;
    font-size: 1.75rem;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%) border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.income-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.income-input:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.income-input:focus {
    outline: none;
    border-color: transparent;
    background: white padding-box,
                linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) border-box;
    box-shadow:
        0 0 0 5px rgba(99, 102, 241, 0.1),
        0 12px 32px rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
}

/* Duration Input Styles */
.duration-input-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin: 50px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.duration-input-group {
    flex: 1;
    position: relative;
}

.duration-input {
    width: 100%;
    padding: 20px;
    font-size: 1.5rem;
    text-align: center;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%) border-box;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.duration-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.duration-input:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.duration-input:focus {
    outline: none;
    border-color: transparent;
    background: white padding-box,
                linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%) border-box;
    box-shadow:
        0 0 0 5px rgba(99, 102, 241, 0.1),
        0 12px 32px rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
}

.duration-input-group label {
    display: block;
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Income Verification Styles */
.income-verification {
    text-align: center;
    margin: 50px 0;
}

.income-amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.verification-question {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

.verification-options {
    display: flex;
    gap: 24px;
    justify-content: center;
    max-width: 450px;
    margin: 0 auto;
}

.verification-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.verification-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.verification-label {
    display: block;
    padding: 24px 40px;
    border: 3px solid #e8eaed;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.verification-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0,102,204,0.1) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.verification-option:hover .verification-label {
    border-color: #b3d4ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.15);
}

.verification-option:hover .verification-label::before {
    left: 100%;
}

.verification-option input[type="radio"]:checked + .verification-label {
    background: linear-gradient(145deg, #e8f4ff 0%, #d6e9ff 100%);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.5;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.8s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(91, 95, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(91, 95, 237, 0.4),
        0 0 30px rgba(99, 102, 241, 0.3);
    animation: gradientShift 3s ease infinite;
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-secondary {
    background: var(--secondary-gradient);
    background-size: 200% 200%;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(236, 72, 153, 0.4),
        0 0 30px rgba(236, 72, 153, 0.3);
    animation: gradientShift 3s ease infinite;
}

.btn-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

/* Content Sections */
.content-section {
    padding: clamp(4rem, 10vw, 8rem) 0;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
}

.bg-gray {
    background-color: var(--bg-gray);
}

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse .content-text {
    direction: ltr;
}

.content-text h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.content-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits-list {
    list-style: none;
    margin: 2.5rem 0;
}

.benefits-list li {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

.benefits-list i {
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.content-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background-color: transparent;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Vehicle Types Section */
.vehicle-types {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 45px 25px;
    text-align: center;
    border-radius: 20px;
    border: 2px solid rgba(99, 102, 241, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.vehicle-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(99, 102, 241, 0.2),
        0 0 0 3px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.vehicle-card:hover::before {
    opacity: 0.05;
}

.vehicle-card i {
    font-size: 3.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.vehicle-card:hover i {
    transform: scale(1.15);
}

.vehicle-card h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    border: 2px solid rgba(99, 102, 241, 0.08);
    border-radius: 24px;
    box-shadow:
        0 10px 40px rgba(99, 102, 241, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 8rem;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.stars {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.25rem;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
    transition: transform 0.3s ease;
}

.testimonial:hover .stars i:nth-child(1) { animation: starTwinkle 1s ease infinite 0s; }
.testimonial:hover .stars i:nth-child(2) { animation: starTwinkle 1s ease infinite 0.1s; }
.testimonial:hover .stars i:nth-child(3) { animation: starTwinkle 1s ease infinite 0.2s; }
.testimonial:hover .stars i:nth-child(4) { animation: starTwinkle 1s ease infinite 0.3s; }
.testimonial:hover .stars i:nth-child(5) { animation: starTwinkle 1s ease infinite 0.4s; }

.testimonial p {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

/* Footer Styles */
.footer {
    background-color: #151f21;
    color: var(--white);
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(1rem, 2vw, 1.5rem);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-container {
    flex-shrink: 0;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Hero Banner Mobile */
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }

    .hero-choice-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .choice-btn {
        width: 200px;
    }

    .hero-cars {
        display: none; /* Hide cars on mobile for better UX */
    }

    /* Form Wizard Mobile */
    .form-wizard {
        padding: 20px;
    }

    .vehicle-selection {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .vehicle-option {
        padding: 20px 15px;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Trade-in Upload Styles */
.tradein-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.upload-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        10px 10px 30px rgba(91, 95, 237, 0.08),
        -10px -10px 30px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.upload-section:hover {
    transform: translateY(-2px);
    box-shadow: 
        12px 12px 35px rgba(91, 95, 237, 0.12),
        -12px -12px 35px rgba(255, 255, 255, 0.95);
}

.upload-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.upload-area {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 180px;
}

.upload-area:hover {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, #f8f9ff 0%, #eef0ff 100%);
}

.upload-area.has-image {
    border-style: solid;
    border-color: var(--primary-color);
}

.upload-area input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-label i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.upload-area:hover .upload-label i {
    opacity: 1;
    transform: scale(1.1);
}

.upload-label span {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.upload-label small {
    color: var(--text-light);
    font-size: 0.875rem;
}

.preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.preview-container.active {
    display: block;
}

.preview-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
}

.remove-photo {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.remove-photo:hover {
    background: rgba(255, 107, 107, 0.9);
    transform: scale(1.1);
}

.remove-photo i {
    color: var(--text-dark);
    font-size: 0.875rem;
}

.remove-photo:hover i {
    color: white;
}

/* Trade-in Information Form */
.tradein-info-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        10px 10px 30px rgba(91, 95, 237, 0.08),
        -10px -10px 30px rgba(255, 255, 255, 0.9);
}

.tradein-info-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8eaed;
    border-radius: 12px;
    font-size: 1rem;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    background: #ffffff;
    transform: translateY(-1px);
}

/* Responsive for Trade-in Section */
@media (max-width: 768px) {
    .tradein-upload-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Sell Car Wizard Styles */
.sell-car-wizard {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 30px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.sell-car-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sell-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.sell-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sell-car-steps h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-left: 40px;
}

.sell-car-steps h3::before {
    content: '1';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.sell-vehicle-info h3::before {
    content: '2';
}

.sell-contact-info h3::before {
    content: '3';
}

.photo-instructions {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sell-car-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sell-car-upload-grid .upload-section h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.upload-section-wide {
    grid-column: 1 / -1;
}

.photo-tips {
    background: rgba(91, 95, 237, 0.05);
    border: 1px solid rgba(91, 95, 237, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.photo-tips h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.photo-tips ul {
    list-style: none;
    padding: 0;
}

.photo-tips li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.photo-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.sell-vehicle-info,
.sell-contact-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        10px 10px 30px rgba(91, 95, 237, 0.08),
        -10px -10px 30px rgba(255, 255, 255, 0.9);
}

.sell-form-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 3rem;
}

.sell-form-buttons .btn {
    min-width: 200px;
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Improved Vehicle and Contact Form Styles */
.vehicle-form-grid,
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sell-vehicle-info label,
.sell-contact-info label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.sell-vehicle-info label i,
.sell-contact-info label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.optional {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 400;
}

.sell-vehicle-info input,
.sell-vehicle-info select,
.sell-contact-info input,
.sell-contact-info textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8eaed;
    border-radius: 12px;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.sell-vehicle-info select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.sell-vehicle-info input:hover,
.sell-vehicle-info select:hover,
.sell-contact-info input:hover,
.sell-contact-info textarea:hover {
    border-color: #d1d5db;
}

.sell-vehicle-info input:focus,
.sell-vehicle-info select:focus,
.sell-contact-info input:focus,
.sell-contact-info textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(91, 95, 237, 0.1);
}

.sell-vehicle-info input::placeholder,
.sell-contact-info input::placeholder,
.sell-contact-info textarea::placeholder {
    color: #9ca3af;
}

/* Mileage input with unit */
.input-with-unit {
    position: relative;
}

.input-with-unit input {
    padding-right: 50px;
}

.unit {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-weight: 500;
}

/* Full width fields */
.full-width {
    grid-column: 1 / -1;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Consent section */
.consent-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e8eaed;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
}

.consent-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    margin-right: 12px;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.consent-checkbox:hover .checkbox-custom {
    border-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
    transform: scale(1.05);
}

.consent-checkbox input[type="checkbox"]:focus + .checkbox-custom {
    outline: 2px solid rgba(99, 102, 241, 0.5);
    outline-offset: 2px;
}

.consent-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.consent-text a:hover {
    text-decoration: none;
}

/* Our Story Section Styles */
.our-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.our-story .section-title {
    font-size: 3rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.story-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-text > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.location-item h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-item h4 i {
    font-size: 1rem;
}

.location-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.founder-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.founder-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.founder-info h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-quote {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.achievement-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-label {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive for Our Story */
@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-section {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Responsive for Sell Car Form */
@media (max-width: 768px) {
    .sell-car-upload-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-form-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    
    .sell-form-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sell-form-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .our-story .section-title {
        font-size: 2rem;
    }
    
    .achievements {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
}

/* Success Animation Overlay */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background: white;
    padding: 3rem 4rem;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.success-overlay.active .success-content {
    transform: scale(1) translateY(0);
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.checkmark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #4bb71b;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #4bb71b;
}

.checkmark-circle-bg {
    stroke: #4bb71b;
    stroke-width: 2;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke: #4bb71b;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4bb71b 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.success-submessage {
    font-size: 1.2rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.success-app-id {
    background: #f3f4f6;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.success-app-id strong {
    color: #1a1a2e;
}

.success-btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* ========================================
   MODERN WEBSITE ENHANCEMENTS
   Colorful & Energetic Design System
======================================== */

/* New Gradient Backgrounds */
.gradient-vibrant {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
}

.gradient-sunset {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%) !important;
}

.gradient-ocean {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
}

.gradient-forest {
    background: linear-gradient(135deg, #0f4336 0%, #0a5e3c 50%, #2ecc71 100%) !important;
}

.mesh-gradient {
    background:
        radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.4) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(244, 114, 182, 0.3) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.3) 0px, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Animated Counter Keyframes */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes numberPop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

@keyframes rainbowBorder {
    0% { border-color: #667eea; }
    25% { border-color: #f093fb; }
    50% { border-color: #00f2fe; }
    75% { border-color: #fee140; }
    100% { border-color: #667eea; }
}

@keyframes pulseRainbow {
    0% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
    25% { box-shadow: 0 0 20px rgba(240, 147, 251, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 242, 254, 0.5); }
    75% { box-shadow: 0 0 20px rgba(254, 225, 64, 0.5); }
    100% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.5); }
}

/* 3D Card Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-10px);
}

/* Gradient Text Utility */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #00f2fe 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* ========================================
   MODERNIZED ACHIEVEMENTS/STATS SECTION
======================================== */
.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow:
        0 20px 60px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite;
}

.achievement-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.achievement-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.achievement-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.achievement-number.counting {
    animation: numberPop 0.3s ease;
}

.achievement-icon {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.achievement-item:nth-child(2) .achievement-icon { animation-delay: 0.5s; }
.achievement-item:nth-child(3) .achievement-icon { animation-delay: 1s; }
.achievement-item:nth-child(4) .achievement-icon { animation-delay: 1.5s; }

.achievement-label {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    white-space: nowrap;
}

/* Progress ring for stats */
.stat-ring {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    position: relative;
}

.stat-ring svg {
    transform: rotate(-90deg);
}

.stat-ring circle {
    fill: none;
    stroke-width: 8;
}

.stat-ring .ring-bg {
    stroke: rgba(255, 255, 255, 0.2);
}

.stat-ring .ring-progress {
    stroke: #ffffff;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease-out;
}

/* ========================================
   MODERNIZED VEHICLE TYPES SECTION
======================================== */
.vehicle-types {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.vehicle-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vehicle-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.vehicle-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Unified purple shadow on hover */
.vehicle-card:hover {
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-15px) scale(1.02);
}

.vehicle-card:hover::before {
    opacity: 1;
}

.vehicle-card:hover::after {
    opacity: 1;
}

.vehicle-card i {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    display: inline-block;
}

/* Unified purple gradient for all icons */
.vehicle-card i {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vehicle-card:hover i {
    animation: iconBounce 0.6s ease;
    transform: scale(1.2);
}

.vehicle-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

/* Vehicle count badge */
.vehicle-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* ========================================
   MODERNIZED TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: clamp(4rem, 10vw, 8rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
    position: relative;
}

.testimonials .section-title {
    background: linear-gradient(135deg, #667eea 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px) saturate(180%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

/* Different colored borders per testimonial */
.testimonial:nth-child(1) { border-color: rgba(102, 126, 234, 0.2); }
.testimonial:nth-child(2) { border-color: rgba(240, 147, 251, 0.2); }
.testimonial:nth-child(3) { border-color: rgba(0, 242, 254, 0.2); }
.testimonial:nth-child(4) { border-color: rgba(254, 225, 64, 0.2); }
.testimonial:nth-child(5) { border-color: rgba(250, 112, 154, 0.2); }
.testimonial:nth-child(6) { border-color: rgba(118, 75, 162, 0.2); }
.testimonial:nth-child(7) { border-color: rgba(67, 233, 123, 0.2); }

.testimonial:nth-child(1):hover { border-color: #667eea; box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2); }
.testimonial:nth-child(2):hover { border-color: #f093fb; box-shadow: 0 20px 50px rgba(240, 147, 251, 0.2); }
.testimonial:nth-child(3):hover { border-color: #00f2fe; box-shadow: 0 20px 50px rgba(0, 242, 254, 0.2); }
.testimonial:nth-child(4):hover { border-color: #fee140; box-shadow: 0 20px 50px rgba(254, 225, 64, 0.2); }
.testimonial:nth-child(5):hover { border-color: #fa709a; box-shadow: 0 20px 50px rgba(250, 112, 154, 0.2); }
.testimonial:nth-child(6):hover { border-color: #764ba2; box-shadow: 0 20px 50px rgba(118, 75, 162, 0.2); }
.testimonial:nth-child(7):hover { border-color: #43e97b; box-shadow: 0 20px 50px rgba(67, 233, 123, 0.2); }

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 7rem;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(240, 147, 251, 0.15));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
}

.testimonial:hover::before {
    transform: scale(1.1) rotate(-5deg);
}

.testimonial:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Customer Avatar - Photo Style */
.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 4px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #667eea, #f093fb, #00f2fe) border-box;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.35);
}

/* Different colored borders per testimonial */
.testimonial:nth-child(1) .testimonial-avatar { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #667eea, #764ba2) border-box; }
.testimonial:nth-child(2) .testimonial-avatar { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #f093fb, #f5576c) border-box; }
.testimonial:nth-child(3) .testimonial-avatar { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #4facfe, #00f2fe) border-box; }
.testimonial:nth-child(4) .testimonial-avatar { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #fa709a, #fee140) border-box; }
.testimonial:nth-child(5) .testimonial-avatar { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #43e97b, #38f9d7) border-box; }
.testimonial:nth-child(6) .testimonial-avatar { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #fa709a, #ff9a9e) border-box; }
.testimonial:nth-child(7) .testimonial-avatar { background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #667eea, #f093fb) border-box; }

/* Verified badge */
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.verified-badge i {
    font-size: 0.65rem;
}

/* Star shimmer effect */
.stars {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    transition: transform 0.3s ease;
}

/* ========================================
   MODERNIZED OUR STORY SECTION
======================================== */
.our-story {
    padding: 100px 0;
    background:
        radial-gradient(at 40% 20%, rgba(124, 58, 237, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(244, 114, 182, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
        linear-gradient(135deg, #f5f7fa 0%, #e8f0fe 100%);
    position: relative;
}

.our-story .section-title {
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
}

.location-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.location-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.location-item h4 {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-item h4 i {
    -webkit-text-fill-color: #667eea;
    font-size: 1rem;
}

.founder-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    position: relative;
}

.founder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #667eea, #f093fb, #00f2fe) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.founder-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.founder-info h4 {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.founder-title {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 1rem;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   MODERNIZED SELL YOUR CAR SECTION
======================================== */
.content-section.bg-gray#sell-car {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fce7f3 100%);
    position: relative;
    overflow: hidden;
}

.content-section.bg-gray#sell-car::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Floating dollar signs animation */
@keyframes floatDollar {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(10deg); opacity: 0.6; }
}

/* ========================================
   MODERNIZED FOOTER
======================================== */
.footer {
    background: #151f21;
    color: var(--white);
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(1rem, 2vw, 1.5rem);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #f093fb, #00f2fe, #fee140, #667eea);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

/* Wave separator */
.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%231a1a2e' d='M0,50 C360,100 720,0 1080,50 C1260,75 1380,50 1440,50 L1440,100 L0,100 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #667eea, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Brand colors on hover */
.social-links a:nth-child(1):hover { background: #1877f2; border-color: #1877f2; } /* Facebook */
.social-links a:nth-child(2):hover { background: #1da1f2; border-color: #1da1f2; } /* Twitter */
.social-links a:nth-child(3):hover { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); border-color: #dd2a7b; } /* Instagram */
.social-links a:nth-child(4):hover { background: #0077b5; border-color: #0077b5; } /* LinkedIn */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   MODERNIZED HERO CONFIDENCE SECTION
======================================== */
.hero-confidence-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #fce7f3 100%);
    padding: clamp(4rem, 8vw, 6rem) 0;
    margin-top: 100px;
    position: relative;
    z-index: 10;
    border-radius: 30px 30px 0 0;
    box-shadow: 0 -20px 60px rgba(99, 102, 241, 0.1);
    overflow: hidden;
}

.hero-confidence-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(240, 147, 251, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero-confidence-section h3 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-confidence-section .benefits-list li {
    color: var(--text-dark);
}

.hero-confidence-section .benefits-list i {
    color: var(--primary-color);
}

.hero-confidence-section .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    animation: pulseRainbow 3s ease infinite;
}

.hero-confidence-section .btn-primary:hover {
    animation: none;
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 50px rgba(99, 102, 241, 0.4);
    background-position: right center;
}

.hero-confidence-section .image-placeholder {
    position: relative;
}

.hero-confidence-section .image-placeholder::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #667eea, #f093fb, #00f2fe) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-confidence-section .image-placeholder:hover::after {
    opacity: 1;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS FOR MODERN STYLES
======================================== */
@media (max-width: 768px) {
    .achievements {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .achievement-number {
        font-size: 2.5rem;
    }

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .vehicle-card {
        padding: 1.5rem 1rem;
    }

    .vehicle-card i {
        font-size: 2.5rem;
    }

    .testimonial-carousel {
        grid-template-columns: 1fr;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .our-story .section-title {
        font-size: 2rem;
    }

    .footer::before {
        height: 3px;
    }
}

