/* ============================================
   Kiamichi Chevrolet — Custom Styles
   ============================================ */

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

:root {
    --emerald-50:  #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    
    --cream-50:  #FDFDF8;
    --cream-100: #F9F9EE;
    --cream-200: #F5F5DC;
    --cream-300: #EDE8D0;
    
    --dark-900:  #0a0f0d;
    --dark-800:  #111a16;
    --dark-700:  #1a2620;
    --dark-600:  #24332c;
    
    --gray-50:   #f8faf9;
    --gray-100:  #f1f5f3;
    --gray-200:  #e2e8e5;
    --gray-300:  #c8d1cc;
    --gray-400:  #9aa5a0;
    --gray-500:  #6b7a74;
    --gray-600:  #4a5752;
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(10, 15, 13, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 15, 13, 0.10);
    --shadow-lg: 0 8px 32px rgba(10, 15, 13, 0.14);
    --shadow-xl: 0 16px 48px rgba(10, 15, 13, 0.18);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-800);
    background: var(--cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* --- Geometric Background Shapes --- */
.geo-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--emerald-600);
    top: -200px;
    right: -150px;
}

.geo-circle--2 {
    width: 400px;
    height: 400px;
    background: var(--emerald-500);
    bottom: 20%;
    left: -100px;
}

.geo-circle--3 {
    width: 200px;
    height: 200px;
    background: var(--emerald-600);
    top: 50%;
    right: 5%;
    opacity: 0.04;
}

.geo-diamond {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--emerald-600);
    transform: rotate(45deg);
    opacity: 0.04;
    top: 35%;
    right: 8%;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid var(--emerald-500);
    opacity: 0.04;
    bottom: 15%;
    left: 5%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 253, 248, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(5, 150, 105, 0.1);
    transition: box-shadow 0.3s ease;
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--dark-800);
}

.nav-logo-text {
    font-size: 1.5rem;
}

.text-emerald {
    color: var(--emerald-600);
}

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

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--emerald-600);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald-600);
    transition: width 0.2s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-emerald {
    background: var(--emerald-600);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
}

.btn-emerald:hover {
    background: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-cream {
    background: var(--cream-200);
    color: var(--dark-800);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
}

.btn-cream:hover {
    background: var(--cream-300);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-800);
    padding: 8px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 0;
    background: linear-gradient(135deg, var(--cream-50) 0%, var(--cream-100) 50%, var(--emerald-50) 100%);
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--emerald-100);
    color: var(--emerald-800);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-600);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    color: var(--dark-900);
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    min-height: 420px;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card--main {
    width: 100%;
    aspect-ratio: 5 / 3.4;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10, 15, 13, 0.7), transparent);
}

.card-tag {
    display: inline-block;
    background: var(--emerald-600);
    color: #fff;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-card--1 {
    bottom: 60%;
    left: -30px;
    animation-delay: 0s;
}

.float-card--2 {
    top: 10%;
    right: -20px;
    animation-delay: 1.3s;
}

.float-card--3 {
    bottom: 15%;
    right: -25px;
    animation-delay: 2.6s;
}

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

.float-card-icon {
    width: 40px;
    height: 40px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card-text {
    display: flex;
    flex-direction: column;
}

.float-card-number {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark-800);
    line-height: 1.2;
}

.float-card-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Hero Accent Bar */
.hero-accent {
    display: flex;
    gap: 8px;
    margin-top: 60px;
    padding-bottom: 60px;
}

.accent-bar {
    height: 6px;
    border-radius: 3px;
    flex-shrink: 0;
}

.accent-bar--emerald {
    background: var(--emerald-600);
}

.accent-bar--cream {
    background: var(--cream-200);
}

/* --- Section Shared --- */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-600);
    background: var(--emerald-100);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--dark-900);
    line-height: 1.05;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 540px;
}

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

.section-header .section-desc {
    margin: 0 auto;
}

/* --- Vehicles --- */
.vehicles {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
    z-index: 1;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.vehicle-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vehicle-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 400 / 260;
}

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

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

.vehicle-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vehicle-tag--new {
    background: var(--emerald-600);
    color: #fff;
}

.vehicle-tag--used {
    background: var(--cream-200);
    color: var(--dark-800);
}

.vehicle-tag--hot {
    background: #ef4444;
    color: #fff;
}

.vehicle-card-body {
    padding: 24px;
}

.vehicle-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--dark-900);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.vehicle-card-body p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald-600);
    transition: gap 0.2s ease;
}

.link-arrow:hover {
    gap: 10px;
}

.section-cta {
    text-align: center;
}

/* --- Services --- */
.services {
    padding: 100px 0;
    background: var(--dark-900);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: var(--emerald-600);
    border-radius: 50%;
    opacity: 0.06;
}

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

.services-content .section-tag {
    background: rgba(16, 185, 129, 0.15);
}

.services-content .section-title {
    color: #fff;
}

.services-content .section-desc {
    color: var(--gray-400);
    margin-bottom: 40px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.service-item p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.5;
}

.services-visual {
    position: relative;
}

.service-card-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 480 / 560;
}

.service-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--emerald-600);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    box-shadow: var(--shadow-lg);
}

.accent-number {
    display: flex;
    flex-direction: column;
}

.accent-number .number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #fff;
    line-height: 1;
}

.accent-number .number-label {
    font-size: 0.8rem;
    color: var(--emerald-200);
    font-weight: 500;
}

/* --- Why Us --- */
.why-us {
    padding: 100px 0;
    background: var(--cream-100);
    position: relative;
    z-index: 1;
}

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

.why-content .section-desc {
    margin-bottom: 0;
}

.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.stat-card--cream {
    background: var(--emerald-600);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--emerald-600);
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-number-emerald {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
    line-height: 1.4;
}

.stat-card--cream .stat-label {
    color: var(--emerald-200);
}

/* --- Testimonial --- */
.testimonial-banner {
    padding: 80px 0;
    background: var(--emerald-600);
    position: relative;
    overflow: hidden;
}

.testimonial-banner::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--emerald-700);
    border-radius: 50%;
    opacity: 0.3;
}

.testimonial-banner::after {
    content: '';
    position: absolute;
    top: -80px;
    right: 5%;
    width: 200px;
    height: 200px;
    background: var(--emerald-500);
    border-radius: 50%;
    opacity: 0.2;
}

.testimonial-inner {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    margin-bottom: 28px;
}

.testimonial-quote p {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.meta-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}

.meta-location {
    display: block;
    font-size: 0.8rem;
    color: var(--emerald-200);
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--cream-50);
    position: relative;
    z-index: 1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-desc {
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--emerald-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-800);
    font-weight: 500;
}

.contact-value a {
    color: var(--dark-800);
    transition: color 0.2s ease;
}

.contact-value a:hover {
    color: var(--emerald-600);
}

.contact-form-wrapper {
    max-width: 100%;
}

.form-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark-900);
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark-800);
    background: var(--gray-50);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark-900);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* --- Map Strip --- */
.map-strip {
    padding: 60px 0;
    background: var(--dark-900);
}

.map-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.map-info p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 2 / 1;
}

.map-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 0;
    background: var(--dark-800);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-500);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.8;
}

.footer-contact a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--dark-600);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--emerald-500);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Mobile Menu --- */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 13, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .hero-visual {
        min-height: 340px;
    }
    
    .float-card--1 {
        left: -10px;
    }
    
    .float-card--2,
    .float-card--3 {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream-50);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 24px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-toggle {
        display: block;
        z-index: 1001;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        min-height: 280px;
        order: -1;
    }
    
    .float-card {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .services-visual {
        order: -1;
    }
    
    .service-card-main {
        aspect-ratio: 4 / 3;
    }
    
    .service-card-accent {
        bottom: -10px;
        left: -10px;
        padding: 16px 24px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .why-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-strip-inner {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .form-card {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .why-stats {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

@media not all and (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
