/* ===== TYeImportxpress - CSS ===== */

/* CSS Variables */
:root {
    --primary: #84cc16;
    --primary-dark: #65a30d;
    --primary-light: #a3e635;
    --green: #84cc16;
    --green-dark: #65a30d;
    --green-light: #a3e635;
    --blue: #0D9488;
    --blue-dark: #0F766E;
    --blue-light: #2DD4BF;
    --secondary: #1f2937;
    --text-dark: #111827;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-hero: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    font-size: 16px;
    letter-spacing: 0.01em;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 5rem 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo-image {
    height: 100px;
    width: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo-image {
    border-color: rgba(132, 204, 22, 0.2);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0.25rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo-text h1 {
    color: var(--blue);
    text-shadow: none;
}

.logo-text .tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo-text .tagline {
    color: var(--text-light);
    text-shadow: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--green);
}

.header.scrolled .nav-link.active::after {
    background: var(--primary);
}

/* Scroll reveal / fade-in on scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal.stagger-children .service-card,
.scroll-reveal.stagger-children .process-step,
.scroll-reveal.stagger-children .make-card,
.scroll-reveal.stagger-children .payment-method,
.scroll-reveal.stagger-children .feature-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.scroll-reveal.stagger-children.visible .service-card,
.scroll-reveal.stagger-children.visible .process-step,
.scroll-reveal.stagger-children.visible .make-card,
.scroll-reveal.stagger-children.visible .payment-method,
.scroll-reveal.stagger-children.visible .feature-item {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal.stagger-children .service-card:nth-child(1),
.scroll-reveal.stagger-children .process-step:nth-child(1),
.scroll-reveal.stagger-children .make-card:nth-child(1),
.scroll-reveal.stagger-children .payment-method:nth-child(1),
.scroll-reveal.stagger-children .feature-item:nth-child(1) { transition-delay: 0.05s; }
.scroll-reveal.stagger-children .service-card:nth-child(2),
.scroll-reveal.stagger-children .process-step:nth-child(2),
.scroll-reveal.stagger-children .make-card:nth-child(2),
.scroll-reveal.stagger-children .payment-method:nth-child(2),
.scroll-reveal.stagger-children .feature-item:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal.stagger-children .service-card:nth-child(3),
.scroll-reveal.stagger-children .process-step:nth-child(3),
.scroll-reveal.stagger-children .make-card:nth-child(3),
.scroll-reveal.stagger-children .payment-method:nth-child(3),
.scroll-reveal.stagger-children .feature-item:nth-child(3) { transition-delay: 0.15s; }
.scroll-reveal.stagger-children .service-card:nth-child(4),
.scroll-reveal.stagger-children .process-step:nth-child(4),
.scroll-reveal.stagger-children .payment-method:nth-child(4),
.scroll-reveal.stagger-children .feature-item:nth-child(4) { transition-delay: 0.2s; }
.scroll-reveal.stagger-children .service-card:nth-child(5),
.scroll-reveal.stagger-children .process-step:nth-child(5),
.scroll-reveal.stagger-children .make-card:nth-child(5),
.scroll-reveal.stagger-children .payment-method:nth-child(5) { transition-delay: 0.25s; }
.scroll-reveal.stagger-children .service-card:nth-child(6),
.scroll-reveal.stagger-children .make-card:nth-child(6) { transition-delay: 0.3s; }
.scroll-reveal.stagger-children .make-card:nth-child(7) { transition-delay: 0.35s; }
.scroll-reveal.stagger-children .make-card:nth-child(8) { transition-delay: 0.4s; }
.scroll-reveal.stagger-children .make-card:nth-child(9) { transition-delay: 0.45s; }
.scroll-reveal.stagger-children .make-card:nth-child(10) { transition-delay: 0.5s; }
.scroll-reveal.stagger-children .make-card:nth-child(11) { transition-delay: 0.55s; }
.scroll-reveal.stagger-children .make-card:nth-child(12) { transition-delay: 0.6s; }
.scroll-reveal.stagger-children .make-card:nth-child(13) { transition-delay: 0.65s; }

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal.visible,
    .scroll-reveal.stagger-children .service-card,
    .scroll-reveal.stagger-children .process-step,
    .scroll-reveal.stagger-children .make-card,
    .scroll-reveal.stagger-children .payment-method,
    .scroll-reveal.stagger-children .feature-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Mobile Menu */
.mobile-menu-toggle,
.mobile-menu-close {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 769px) {
    .mobile-menu-toggle,
    .mobile-menu-close {
        display: none !important;
    }
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.header.scrolled .hamburger {
    background: var(--text-dark);
    box-shadow: none;
}

.mobile-menu-close {
    font-size: 2rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .mobile-menu-close {
    color: var(--text-dark);
    text-shadow: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: var(--font-hero);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 500;
    font-family: var(--font-hero);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}

.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 500;
}

.hero-bullets .bullet {
    color: var(--green-light);
    font-weight: 700;
    margin-right: 0.25rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-submit {
    background: var(--primary);
    color: var(--white);
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--green);
    margin: 0 auto 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* About Section */
.about {
    background: var(--gray-50);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
}

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

.about-features {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.75rem;
}

.feature-item {
    text-align: center;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Services Section */
.services {
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-light);
}

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

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

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

/* How It Works Section */
.how-it-works {
    background: var(--white);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--primary);
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 5px solid var(--green);
}

.process-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.process-step:nth-child(even):hover {
    transform: translateX(-5px);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.step-content ul {
    list-style: none;
    margin-top: 0.75rem;
    padding: 0;
}

.step-content li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 0;
}

.step-content strong {
    color: var(--green);
    font-weight: 700;
}

.process-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
}

.process-cta p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Inventory Section */
.inventory {
    background: var(--gray-50);
}

.inventory-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Shop by Make */
.shop-by-make {
    margin-bottom: 3rem;
}

.shop-by-make-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    text-align: center;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.makes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.make-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.make-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
    background: var(--gray-50);
}

.make-card.active {
    border-color: var(--green);
    background: rgba(132, 204, 22, 0.1);
}

.make-logo {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
}

.make-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    margin: 0 auto;
}

.make-card:hover .make-logo img {
    transform: scale(1.1);
}

.make-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Vehicle Listings */
.vehicle-listings {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--green);
}

.vehicle-listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.vehicle-listings-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin: 0;
}

.btn-back {
    background: var(--gray-100);
    color: var(--text-dark);
    border: 2px solid var(--gray-100);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.btn-back:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.vehicle-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green);
}

.vehicle-card-quote {
    cursor: pointer;
}
.vehicle-card-quote .vehicle-get-quote {
    color: var(--green);
    font-weight: 600;
}

.vehicle-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-info {
    padding: 1.5rem;
}

.vehicle-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.vehicle-info .vehicle-year {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.vehicle-info .vehicle-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.vehicle-info .vehicle-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(132, 204, 22, 0.1);
    color: var(--green);
}

.inventory-note {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 2rem auto 0;
    border-left: 5px solid var(--primary);
}

.inventory-note p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.inventory-note a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.inventory-note a:hover {
    color: var(--green-dark);
}

/* Payment Methods Section */
.payment-methods-section {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.payment-methods-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    text-align: center;
}

.payment-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.payment-method {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}

.payment-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.payment-method h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.payment-method p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

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

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--green);
}

.contact-form {
    background: var(--gray-50);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-100);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(132, 204, 22, 0.1);
}

.form-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--green);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section p strong {
    color: var(--green);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        padding: 5rem 2rem 2rem;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav.active .nav-link {
        color: var(--text-dark);
        text-shadow: none;
    }

    .nav.active .nav-link:hover,
    .nav.active .nav-link.active {
        color: var(--green);
    }

    .nav.active .nav-link.active::after {
        background: var(--green);
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mobile-menu-toggle,
    .mobile-menu-close {
        display: flex;
    }

    .mobile-menu-close {
        position: fixed;
        top: 1.5rem;
        right: 1.5rem;
        z-index: 1000;
    }

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

    .hero-subtitle {
        font-size: 1.25rem;
    }

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

    .hero {
        background-attachment: scroll;
    }

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

    .process-step {
        flex-direction: column !important;
        text-align: center;
    }

    .process-step:nth-child(even) {
        flex-direction: column !important;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

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

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

    .makes-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 1rem;
    }

    .make-card {
        min-height: 120px;
        padding: 1rem 0.5rem;
    }

    .make-logo {
        font-size: 2.5rem;
    }

    .make-card h4 {
        font-size: 0.85rem;
    }

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

    .vehicle-listings-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .payment-methods-grid {
        grid-template-columns: 1fr;
    }


    .logo-image {
        height: 70px;
        width: 70px;
    }

    .logo-text h1 {
        font-size: 1.25rem;
    }

    .logo-text .tagline {
        font-size: 0.75rem;
    }
}
