/* ============================================
   2026 MODERN DESIGN SYSTEM
   Premium UI/UX with Glassmorphism & Depth
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 2026 Color Palette - Softer, More Sophisticated */
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --accent-light: #fbbf24;
    --success-color: #10b981;
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-surface: rgba(255, 255, 255, 0.8);
    --border-color: #e2e8f0;
    --border-light: rgba(226, 232, 240, 0.5);
    
    /* 2026 Shadow System - Softer, More Layered */
    --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.03);
    --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.06), 0 1px 2px -1px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -4px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.12);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.15);
    
    /* 2026 Gradient System - Softer, More Elegant */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #0ea5e9 100%);
    --gradient-primary-subtle: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #0ea5e9 75%, #06b6d4 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Spacing System - More Generous */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius - More Rounded */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions - Smoother */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    width: 100%;
}

/* ============================================
   Header Styles - 2026 Glassmorphism Design
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 2rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition-fast);
}

.logo-section:hover {
    transform: translateY(-1px);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: start;
}

.logo-icon img {
    width: 197px;
    transition: transform var(--transition-base);
}

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

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
    font-weight: 400;
}

.nav-menu {
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    letter-spacing: -0.01em;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary-subtle);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

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

.mobile-menu-toggle.active {
    background: rgba(102, 126, 234, 0.1);
    border-color: var(--primary-color);
}

.mobile-menu-toggle.active span {
    background: var(--primary-color);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Hero Section - 2026 Premium Design
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 6rem 0;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 25s ease-in-out infinite reverse;
    filter: blur(60px);
}

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

.hero-illustration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: url(../images/mainbanner.jpeg) no-repeat center top;
    background-size: cover;
}

.car-illustration {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.35;
    background: red;
}

.car-1 {
    animation: carMove1 20s linear infinite;
}

.car-2 {
    animation: carMove2 25s linear infinite;
}

@keyframes carMove1 {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes carMove2 {
    0% {
        transform: translateX(calc(100vw + 100px));
    }
    100% {
        transform: translateX(-100px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #391b61c9;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-title {
    font-size: 45px;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.03em;
}

.hero-title-line {
    display: block;
    margin-bottom: 0.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-title-line.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    display: inline-block;
    font-weight: 800;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3.5rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.01em;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

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

.search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-2xl);
    padding: 3.5rem clamp(2rem, 4vw, 3rem);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5), 0 0 80px rgba(102, 126, 234, 0.2);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
    overflow: hidden;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0.5;
}

.search-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
    filter: blur(20px);
}

.search-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.6), 0 0 100px rgba(102, 126, 234, 0.3);
}

.search-box:hover::after {
    opacity: 0.3;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0.5;
}

.search-box::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
    filter: blur(20px);
}

.search-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.6), 0 0 100px rgba(102, 126, 234, 0.3);
}

.search-box:hover::after {
    opacity: 0.3;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.registration-input {
    flex: 1;
    padding: 1.375rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 1.0625rem;
    font-family: inherit;
    transition: all var(--transition-base);
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.registration-input:focus {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(102, 126, 234, 0.1), var(--shadow-md);
    transform: translateY(-2px);
}

.registration-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1rem;
}

.btn-check {
    padding: 1.375rem 3rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.35), 0 4px 12px rgba(245, 158, 11, 0.2);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-check::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 var(--transition-slow);
}

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

.btn-check:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.45), 0 6px 18px rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.btn-check:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
    font-size: 0.9375rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: -0.01em;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transition: transform var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

/* ============================================
   Features Section - 2026 Modern Cards
   ============================================ */
.features-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary-subtle);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    position: relative;
}

.feature-icon-large::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    opacity: 0;
    filter: blur(12px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.feature-card:hover .feature-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-card:hover .feature-icon-large::before {
    opacity: 0.6;
}

.feature-icon-large svg {
    width: 40px;
    height: 40px;
    transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon-large svg {
    transform: scale(1.1);
}

.feature-icon-green {
    background: var(--gradient-primary);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon-green {
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-card-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1.4;
}

.feature-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.03em;
    word-break: break-word;
    hyphens: auto;
}

/* Special handling for "By Registration" text */
.feature-card:first-child .feature-card-value {
    display: inline-block;
    max-width: 100%;
}

/* ============================================
   How-to Guide Section
   ============================================ */
.how-to-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.how-to-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.how-to-title {
    font-size: clamp(1.625rem, 4vw, 2.375rem);
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3.5rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.how-to-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.how-to-steps::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
    z-index: 0;
    display: none;
}

@media (min-width: 1024px) {
    .how-to-steps::before {
        display: block;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 3rem 2rem;
    }
}

.step-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card:nth-child(4) {
    animation-delay: 0.4s;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

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

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.3);
}

.step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.2);
    letter-spacing: 1px;
    z-index: 2;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.step-card:hover .step-icon::before {
    opacity: 0.5;
}

.step-icon svg {
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon svg {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    line-height: 26px;
}

.step-card:hover .step-title {
    color: var(--primary-color);
}

.step-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ============================================
   Pricing/Inspection Plan Section
   ============================================ */
.pricing-section {
    background: var(--bg-light);
    padding: 3rem 0;
    position: relative;
}

.plan-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 1.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.plan-selector-btn:hover {
    background: linear-gradient(135deg, #bae6fd 0%, #bfdbfe 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.pricing-title {
    font-size: clamp(1.5rem, 4vw, 2.125rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.pricing-title .highlight-blue {
    color: var(--primary-color);
}

.pricing-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.pricing-card-wrapper {
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius-2xl);
    padding: 3.5rem clamp(2rem, 4vw, 3rem);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary-subtle);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    filter: blur(20px);
}

.pricing-card-content {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pricing-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-right {
    display: flex;
    flex-direction: column;
    padding-left: 3rem;
    border-left: 2px solid rgba(102, 126, 234, 0.15);
}

@media (max-width: 768px) {
    .pricing-right {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(102, 126, 234, 0.15);
        padding-top: 2rem;
    }
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-2xl), 0 0 0 1px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

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

.pricing-card:hover::after {
    opacity: 0.2;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.plan-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--primary-color);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.plan-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.plan-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 4px;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.delivery-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.delivery-time,
.delivery-fast {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.delivery-time svg,
.delivery-fast svg {
    color: var(--primary-color);
}

.includes-section {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.includes-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
}

.includes-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.375rem 0;
}

.includes-list li svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.btn-buy-report {
    width: 100%;
    max-width: 350px;
    padding: 1.25rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-family: inherit;
    letter-spacing: 0.3px;
}

.btn-buy-report:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.45);
}

.btn-buy-report:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    background: var(--bg-white);
    padding: 5rem 0;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-title-large {
    font-size: clamp(1.75rem, 4.5vw, 2.375rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.75rem 2rem;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-sm);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.benefit-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary-subtle);
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--radius-2xl);
    z-index: -1;
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

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

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.3);
}

.benefit-icon-wrapper {
    width: 88px;
    height: 88px;
    background: var(--gradient-primary-subtle);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    position: relative;
}

.benefit-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    opacity: 0;
    filter: blur(12px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.benefit-card:hover .benefit-icon-wrapper::before {
    opacity: 0.5;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(102, 126, 234, 0.08);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(102, 126, 234, 0.2);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    color: #fbbf24;
    width: 20px;
    height: 20px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.stat-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   CTA Section - 2026 Premium Design
   ============================================ */
.cta-section {
    background: var(--gradient-hero);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
    opacity: 0.7;
    z-index: 0;
    animation: float 30s ease-in-out infinite;
}

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-badge svg {
    color: #fbbf24;
}

.cta-title {
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.cta-title-main {
    display: block;
    margin-bottom: 0.25rem;
}

.cta-title-sub {
    display: block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.cta-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.cta-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    min-width: 140px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.cta-feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.cta-feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.cta-feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.cta-feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

.cta-feature-item svg {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-feature-item:hover svg {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-primary {
    padding: 1.375rem 3.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left var(--transition-slow);
}

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

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.4);
    background: #ffffff;
}

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

.btn-primary svg {
    transition: transform 0.3s ease;
}

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

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

.cta-note svg {
    color: #fbbf24;
    flex-shrink: 0;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.375rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    font-family: inherit;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

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

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

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

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: var(--accent-light);
    background: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-light);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Scroll to Top Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: rgba(102, 126, 234, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(102, 126, 234, 0.4);
    background: rgba(102, 126, 234, 1);
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   Chat Widget
   ============================================ */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: var(--shadow-lg), 0 0 20px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.chat-toggle::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.chat-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(102, 126, 234, 0.4);
}

.chat-toggle:hover::before {
    opacity: 1;
}

.chat-bubble {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    animation: fadeInUp 0.3s ease;
}

.chat-bubble p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.chat-hand {
    font-size: 1.25rem;
    animation: wave 1s ease-in-out infinite;
}

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

@keyframes wave {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-20deg);
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero {
        min-height: 550px;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: clamp(1.75rem, 5.5vw, 2.5rem);
        margin-bottom: 1.75rem;
        line-height: 1.2;
    }

    .hero-title-line {
        margin-bottom: 0.35rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.1875rem);
        margin-bottom: 3rem;
        line-height: 1.7;
    }

    .search-box {
        padding: 1.75rem 1.5rem;
        border-radius: 16px;
    }

    .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .registration-input {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .btn-check {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.875rem;
        align-items: stretch;
        justify-content: center;
        margin-top: 2rem;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    .car-illustration {
        opacity: 0.5;
    }

    .cta-section {
        padding: 3.5rem 0;
    }

    .cta-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-title {
        font-size: clamp(1.5rem, 4.5vw, 2.125rem);
        margin-bottom: 1rem;
    }

    .cta-text {
        font-size: clamp(0.9375rem, 2vw, 1.125rem);
        margin-bottom: 2rem;
    }

    .cta-features {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-feature-item {
        min-width: 120px;
        font-size: 0.875rem;
    }

    .cta-feature-item svg {
        width: 42px;
        height: 42px;
        padding: 10px;
    }

    .btn-primary {
        padding: 1.125rem 2.5rem;
        font-size: 1.0625rem;
    }

    .cta-note {
        font-size: 0.8125rem;
        flex-wrap: wrap;
        text-align: center;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
    }

    .features-section {
        padding: 3rem 0;
    }

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

    .feature-card {
        padding: 1.75rem 1.25rem;
    }

    .feature-icon-large {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }

    .feature-icon-large svg {
        width: 32px;
        height: 32px;
    }

    .feature-card-title {
        font-size: 0.75rem;
    }

    .feature-card-value {
        font-size: 1.25rem;
    }

    .how-to-section {
        padding: 3.5rem 0;
    }

    .how-to-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 2.5rem;
    }

    .how-to-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .step-card {
        padding: 2.25rem 1.75rem;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

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

    .step-description {
        font-size: 0.9375rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .pricing-card-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .popular-badge {
        top: 15px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }

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

    .scroll-to-top {
        bottom: 90px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-toggle {
        width: 56px;
        height: 56px;
    }

    .chat-bubble {
        bottom: 66px;
        right: -20px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo-title {
        font-size: 1.25rem;
    }

    .logo-subtitle {
        font-size: 0.75rem;
    }

    .hero {
        min-height: 500px;
        padding: 2.5rem 0;
    }

    .hero-title {
        font-size: 1.625rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-title-line {
        margin-bottom: 0.3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 2.5rem;
    }

    .search-box {
        padding: 2rem 1.5rem;
    }

    .search-box {
        padding: 2rem 1.5rem;
    }

    .feature-item {
        font-size: 0.8125rem;
        padding: 0.625rem 1.25rem;
    }

    .search-box {
        padding: 1.25rem;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
        margin-bottom: 1.25rem;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
        line-height: 1.25;
    }

    .cta-text {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
        line-height: 1.65;
    }

    .cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        margin-bottom: 1.75rem;
        display: grid;
    }

    .cta-feature-item {
        min-width: auto;
        font-size: 0.8125rem;
    }

    .cta-feature-item svg {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .cta-note {
        font-size: 0.75rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.625rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }

    .chat-bubble {
        right: -40px;
        min-width: 160px;
        padding: 0.875rem 1.25rem;
    }

    .features-section {
        padding: 2.5rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.75rem 1.5rem;
    }

    .feature-icon-large {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .feature-icon-large svg {
        width: 28px;
        height: 28px;
    }

    .feature-card-title {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }

    .feature-card-value {
        font-size: 1.1875rem;
    }

    .how-to-section {
        padding: 3rem 0;
    }

    .how-to-title {
        font-size: 1.375rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .how-to-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .step-number {
        top: 1.25rem;
        right: 1.25rem;
        font-size: 0.75rem;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 1.5rem;
    }

    .step-title {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
    }

    .step-description {
        font-size: 0.875rem;
        line-height: 1.7;
    }

    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-card {
        padding: 1.75rem 1.5rem;
    }

    .pricing-card-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .plan-name {
        font-size: 1.75rem;
    }

    .plan-price .amount {
        font-size: 2.75rem;
    }

    .includes-list {
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
    }

    .why-choose-section {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

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

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .benefit-card {
        padding: 1.75rem 1.25rem;
    }

    .benefit-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .benefit-title {
        font-size: 1.25rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .scroll-to-top {
        bottom: 80px;
        right: 15px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================
   Notification System
   ============================================ */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    font-weight: 500;
    max-width: 350px;
    animation: slideInRight 0.3s ease;
    transition: all 0.3s ease;
}

.notification-success {
    background: var(--success-color);
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: var(--primary-color);
    color: white;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Input Messages */
.input-message {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    padding: 0.5rem;
    border-radius: 6px;
}

.input-message.error {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.input-message.success {
    color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
}

.registration-input.error {
    border-color: #ef4444;
}

.registration-input.success {
    border-color: var(--success-color);
}

/* Header Scroll Effect */
.header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Menu Open State */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   Browser Compatibility
   ============================================ */
/* Fallback for older browsers */
@supports not (backdrop-filter: blur(10px)) {
    .feature-item {
        background: rgba(255, 255, 255, 0.2);
    }
}

/* Smooth scrolling fallback */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Cross-browser compatibility for gradients */
.btn-check,
.btn-primary,
.cta-section {
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

/* Ensure proper rendering in older browsers */
.hero,
.cta-section {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Fix for iOS Safari viewport */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

/* IE11 fallbacks */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .hero-features {
        display: -ms-flexbox;
        -ms-flex-pack: center;
    }

    .input-group {
        display: -ms-flexbox;
    }

    .newsletter-input-group {
        display: -ms-flexbox;
    }
}

/* Print styles */
@media print {
    .header,
    .chat-widget,
    .footer {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
}

/* ============================================
   Checkout Page Styles
   ============================================ */
.checkout-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkout-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.checkout-nav-link:hover {
    color: var(--primary-color);
}

.checkout-nav-secure {
    color: var(--success-color);
}

.checkout-section {
    background: var(--bg-light);
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
}

.checkout-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-form-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.checkout-form-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.checkout-form-title svg {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.required {
    color: #ef4444;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon svg {
    position: absolute;
    left: 1rem;
    color: var(--text-gray);
    pointer-events: none;
}

.input-with-icon .form-input {
    padding-left: 3rem;
}

.form-helper {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.btn-checkout-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--text-gray);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: inherit;
}

.btn-checkout-submit:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.order-summary-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.order-summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.order-summary-subtitle {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-summary-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.order-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.order-item-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.order-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-item-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.order-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-detail-label {
    font-size: 0.9375rem;
    color: var(--text-gray);
    font-weight: 500;
}

.order-detail-value {
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 600;
}

.order-detail-total {
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
    margin-top: 0.5rem;
}

.order-detail-total .order-detail-label,
.order-detail-total .order-detail-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.order-contact-info {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.order-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.order-includes {
    padding-bottom: 0;
}

.order-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
}

.order-features-list li svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.order-more-features {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
    margin: 0;
    padding-left: 2rem;
}

.checkout-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0;
}

.checkout-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-footer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkout-footer-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.checkout-footer-icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.checkout-footer-icon-blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.checkout-footer-icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.checkout-footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.checkout-footer-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.checkout-footer-text span {
    font-size: 0.875rem;
    color: var(--text-gray);
}

/* Checkout Responsive */
@media (max-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .order-summary-card {
        position: relative;
        top: 0;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 2rem 0;
    }

    .checkout-form-card,
    .order-summary-card {
        padding: 1.75rem 1.5rem;
    }

    .checkout-footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .checkout-nav-content {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .checkout-form-card,
    .order-summary-card {
        padding: 1.5rem 1.25rem;
    }

    .checkout-form-title {
        font-size: 1.25rem;
    }

    .order-summary-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   Vehicle Financing Page Styles
   ============================================ */
.financing-hero {
    background: var(--gradient-primary);
    padding: 5rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.financing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.financing-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.financing-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.financing-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.financing-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.financing-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.financing-stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
    font-weight: 500;
}

.financing-benefits {
    background: var(--bg-light);
    padding: 5rem 0;
}

.financing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.financing-benefit-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.financing-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.financing-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.financing-benefit-card:hover .financing-benefit-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.financing-benefit-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.financing-benefit-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.financing-how-it-works {
    background: var(--bg-white);
    padding: 5rem 0;
}

.financing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.financing-step {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.financing-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.financing-step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.875rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.2);
    letter-spacing: 1px;
}

.financing-step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.financing-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.financing-step-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.financing-calculator {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 5rem 0;
}

.calculator-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.calculator-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2.5rem;
}

.calculator-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
}

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

.calculator-input,
.calculator-select {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    background: var(--bg-white);
    color: var(--text-dark);
}

.calculator-input:focus,
.calculator-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.calculator-input.error,
.calculator-select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.calculator-result {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    text-align: center;
}

.calculator-result-box {
    margin-bottom: 2rem;
}

.calculator-result-label {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.calculator-result-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.calculator-result-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.calculator-detail-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
    opacity: 0.9;
}

.financing-cta {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.financing-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.financing-cta-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.financing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-financing-primary {
    padding: 1rem 2.5rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

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

.btn-financing-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-financing-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.financing-apply {
    background: var(--bg-light);
    padding: 5rem 0;
}

.apply-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.apply-form-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.apply-form-card.hidden {
    display: none;
}

.financing-success-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.apply-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.apply-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.apply-form-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
}

.apply-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.apply-form-consent {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

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

.consent-checkbox a:hover {
    text-decoration: underline;
}

.btn-apply-submit {
    width: 100%;
    padding: 1.125rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: var(--shadow-lg);
}

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

/* Financing Responsive */
@media (max-width: 1024px) {
    .calculator-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .financing-hero {
        padding: 3rem 0;
    }

    .financing-hero-stats {
        gap: 2rem;
    }

    .financing-stat-number {
        font-size: 2rem;
    }

    .financing-benefits,
    .financing-how-it-works,
    .financing-calculator,
    .financing-apply {
        padding: 3rem 0;
    }

    .financing-benefits-grid,
    .financing-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .calculator-card,
    .apply-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .apply-form-grid {
        grid-template-columns: 1fr;
    }

    .financing-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-financing-primary,
    .btn-financing-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .financing-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .calculator-card,
    .apply-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .calculator-title,
    .apply-form-title {
        font-size: 1.5rem;
    }

    .calculator-result-amount {
        font-size: 2.25rem;
    }
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-hero {
    background: var(--gradient-primary);
    padding: 4rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    opacity: 0.95;
}

.contact-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

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

.contact-form-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.contact-form-card.hidden {
    display: none;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
    background: var(--bg-white);
    color: var(--text-dark);
    resize: vertical;
    min-height: 150px;
}

.form-textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-textarea.error,
.form-input.error,
select.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.btn-contact-submit {
    padding: 1.125rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: var(--shadow-md);
    margin-top: 0.5rem;
}

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

.btn-contact-submit:active {
    transform: translateY(-1px);
}

.contact-success-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--success-color);
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.0625rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-success-back {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

.contact-info-wrapper {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-info-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-subtitle {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-item-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-item-text {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

.contact-social {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.contact-social-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Contact Responsive */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-wrapper {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 2rem 1.5rem;
    }

    .contact-success-card {
        padding: 3rem 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-form-card,
    .contact-info-card,
    .contact-success-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-form-title,
    .contact-info-title {
        font-size: 1.5rem;
    }

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

    .success-icon-wrapper {
        width: 80px;
        height: 80px;
    }
}

