/* =========================
   PREMIUM LUXURY VEHICLE IMPORTS
   Gold & Dark Theme - Complete Version
========================= */

:root {
    --gold: #D4AF37;          /* Premium Gold */
    --charcoal: #1A1A1A;      /* Dark Charcoal */
    --navy: #0A2342;          /* Deep Navy */
    --silver: #F5F5F5;        /* Light Silver */
    --platinum: #E5E4E2;      /* Platinum */
    --crimson: #DC143C;       /* Crimson Red (accents) */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-dark: #0F0F0F;
    --bg-light: #FFFFFF;
    --border-light: rgba(255,255,255,0.1);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --muted: #6b7280;
    --border: #e5e7eb;
    --success: #27ae60;
    --warning: #f39c12;
    --primary: #16263d;
    --secondary: #2f80ed;
    --accent: #e67e22;
    --text: #2b2b2b;
    --bg: #f5f7fb;
    --admin-orange: #e67e22;  /* Consistent orange for all admin buttons */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--silver);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   PREMIUM NAVBAR - GOLD & DARK
========================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.8rem;
}

.logo span {
    color: var(--gold);
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-nav a i {
    color: var(--gold);
    font-size: 0.9rem;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--gold);
    opacity: 1;
}

.nav-cta {
    background: transparent;
    color: var(--gold) !important;
    padding: 12px 28px;
    border: 1px solid var(--gold);
    margin-left: 1rem;
    transition: all 0.3s;
    border-radius: 2px;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--charcoal) !important;
    transform: translateY(-2px);
}

.nav-cta:hover::after {
    width: 0 !important;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 1rem;
    color: var(--gold);
    font-size: 0.95rem;
}

.phone-number i {
    color: var(--gold);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--charcoal);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    padding: 80px 20px;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    padding-bottom: 15px;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.mobile-nav a i {
    color: var(--gold);
}

.mobile-nav a:hover {
    color: var(--gold);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* =========================
   PREMIUM HERO SECTION
========================= */
.hero-modern {
    padding: 200px 0 120px;
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(26, 26, 26, 0.9)),
        url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-modern h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-modern h1 span {
    color: var(--gold);
}

.hero-sub {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(212,175,55,0.2);
    padding-top: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-top: 5px;
}

/* =========================
   PREMIUM BUTTONS
========================= */
.primary-btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--gold);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.primary-btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.secondary-btn {
    display: inline-block;
    padding: 16px 36px;
    background: transparent;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 2px;
    backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text-light);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.primary-btn i, 
.secondary-btn i {
    margin-right: 10px;
}

/* =========================
   TRUST SECTION
========================= */
.trust {
    background: var(--charcoal);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    color: var(--text-light);
}

.trust p {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

.trust strong {
    color: var(--gold);
    font-weight: 700;
}

/* =========================
   SERVICES SECTION
========================= */
.services {
    padding: 100px 20px;
    background: var(--silver);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.section-subtitle {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    opacity: 0.7;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: var(--charcoal);
}

.service-card p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.7;
    font-weight: 300;
}

/* =========================
   VEHICLES SECTION - GRID LAYOUT
========================= */
.vehicles-section {
    padding: 100px 20px;
    background: var(--charcoal);
}

.vehicles-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
}

.vehicles-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.vehicles-section .section-subtitle {
    color: rgba(255,255,255,0.7);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.vehicle-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
}

/* =========================
   VEHICLE CARD - PORTFOLIO STYLE
========================= */
.vehicle-card {
    background: white;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: var(--gold);
}

.vehicle-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.08);
}

.vehicle-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--charcoal);
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 2px;
}

.vehicle-info {
    padding: 25px;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-weight: 700;
    line-height: 1.3;
}

.vehicle-info .year {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 10px;
    display: inline-block;
    background: var(--silver);
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.vehicle-description {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
    opacity: 0.8;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin: 10px 0 15px;
    font-family: 'Inter', sans-serif;
}

.vehicle-specs {
    display: flex;
    justify-content: space-between;
    margin: 15px 0 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.spec {
    text-align: center;
    flex: 1;
}

.spec-label {
    font-size: 0.7rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0.6;
}

.spec-value {
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
}

.vehicle-card .btn {
    width: 100%;
    margin-top: auto;
    background: var(--charcoal);
    color: white;
    border: none;
    padding: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 2px;
    text-decoration: none;
}

.vehicle-card .btn:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.vehicle-card .btn i {
    font-size: 0.9rem;
}

/* No vehicles message */
.no-vehicles {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.1);
}

.no-vehicles i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.no-vehicles h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.no-vehicles p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

/* =========================
   PROCESS SECTION
========================= */
.process {
    padding: 100px 20px;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
    position: relative;
}

.process h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
    flex-wrap: wrap;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent, var(--gold));
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 23%;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.step p {
    color: var(--text-dark);
    line-height: 1.7;
    opacity: 0.7;
    font-weight: 300;
}

/* =========================
   PROMISE SECTION
========================= */
.promise {
    padding: 100px 20px;
    background: linear-gradient(rgba(10,35,66,0.9), rgba(26,26,26,0.95)),
        url('https://images.unsplash.com/photo-1568605117036-5fe5e7bab0b7?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.promise h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
    position: relative;
}

.promise h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.promise p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}

/* =========================
   SOURCE COUNTRIES
========================= */
.source-countries {
    padding: 60px 20px;
    background: white;
    border-top: 1px solid rgba(212,175,55,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.countries-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--charcoal);
}

.country-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.country-item {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.3);
    transition: all 0.3s;
    position: relative;
    padding: 10px 20px;
}

.country-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.country-item:hover::before {
    width: 80%;
}

.country-item:hover {
    color: var(--charcoal);
}

/* =========================
   CONTACT CTA
========================= */
.contact-cta {
    padding: 100px 20px;
    background: var(--silver);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.contact-cta p {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.contact-cta strong {
    color: var(--gold);
    font-weight: 700;
}

/* =========================
   FLASH MESSAGES
========================= */
.flash {
    background: var(--gold);
    color: var(--charcoal);
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================
   FOOTER - PREMIUM
========================= */
footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212,175,55,0.1);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--gold);
}

.footer-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding: 30px 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    font-weight: 300;
}

/* =========================
   VEHICLE DETAIL PAGE - PREMIUM
========================= */
.vehicle-page {
    padding: 150px 20px 100px;
    background: var(--silver);
}

.vehicle-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.vehicle-image {
    position: relative;
    border: 10px solid rgba(212,175,55,0.1);
    background: white;
}

.vehicle-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.vehicle-details h1 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.vehicle-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.year-badge {
    background: var(--charcoal);
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
}

.status-badge {
    background: var(--gold);
    color: var(--charcoal);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

.description-box {
    background: white;
    padding: 30px;
    margin: 30px 0;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.description-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

/* =========================
   PURCHASE FORM - PREMIUM
========================= */
.purchase-section {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
}

.purchase-form-wrapper {
    background: white;
    padding: 50px 40px;
    border: 1px solid rgba(212,175,55,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.purchase-form-wrapper h2 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.purchase-form-wrapper h2 i {
    color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.purchase-form .form-group {
    margin-bottom: 20px;
}

.purchase-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
}

.purchase-form input {
    width: 100%;
    padding: 16px 18px;
    background: white;
    border: 1px solid rgba(26, 26, 26, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.purchase-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.1);
}

.vehicle-summary {
    background: var(--silver);
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid var(--gold);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.summary-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.purchase-submit-btn {
    width: 100%;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.purchase-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
}

/* =========================
   ADMIN DASHBOARD STYLES - ALL ORANGE BUTTONS
========================= */
.admin-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    background: var(--bg) !important;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.admin-header h2 {
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
}

.admin-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* VEHICLES TABLE */
.vehicles-table-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.vehicles-table {
    width: 100%;
    border-collapse: collapse;
}

.vehicles-table thead {
    background: var(--primary);
}

.vehicles-table th {
    color: white;
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicles-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.vehicles-table tbody tr:hover {
    background: #f8fafc;
}

.vehicles-table td {
    padding: 20px 15px;
    color: var(--text);
    font-size: 14px;
}

.vehicle-image-cell {
    width: 120px;
}

.vehicle-image-preview {
    width: 100px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid var(--border);
    transition: transform 0.3s ease;
}

.vehicle-image-preview:hover {
    transform: scale(2);
    position: relative;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* ACTION BUTTONS */
.action-buttons {
    display: flex;
    gap: 10px;
    width: 200px;
}

/* NO VEHICLES MESSAGE */
.no-vehicles {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
}

.no-vehicles i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--border);
}

.no-vehicles h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

/* ADMIN FORM STYLES */
.admin-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.admin-form-container h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
}

.admin-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.image-preview-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-preview {
    width: 200px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border);
}

/* FORM BUTTONS */
.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.form-buttons .btn {
    flex: 1;
    padding: 14px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-buttons .btn.submit {
    background: var(--accent);
    color: white;
}

.form-buttons .btn.submit:hover {
    background: #d36f1e;
}

.form-buttons .btn.cancel {
    background: #f1f5f9;
    color: var(--muted);
    border: 1px solid var(--border);
}

.form-buttons .btn.cancel:hover {
    background: #e2e8f0;
    color: var(--primary);
}

/* BACK LINK */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary);
}

/* =========================
   ADMIN BUTTON OVERRIDES - ALL ORANGE
   All admin buttons now use the same orange color
========================= */

/* Reset ALL button styles for admin pages - ALL ORANGE */
.admin-container .admin-btn,
.admin-container .admin-btn:link,
.admin-container .admin-btn:visited {
    background: var(--accent) !important;  /* Orange */
    color: white !important;
    border: 2px solid var(--accent) !important;
    opacity: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    position: relative !important;
    z-index: 1 !important;
}

/* Hover state - all orange */
.admin-container .admin-btn:hover {
    background: transparent !important;
    color: var(--accent) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2) !important;
}

/* Success button (View Site) - orange */
.admin-container .admin-btn.success {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white !important;
}

.admin-container .admin-btn.success:hover {
    background: transparent !important;
    color: var(--accent) !important;
}

/* Danger button (Logout) - orange (not red) */
.admin-container .admin-btn.danger {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white !important;
}

.admin-container .admin-btn.danger:hover {
    background: transparent !important;
    color: var(--accent) !important;
}

/* Messages button (gold) - now orange */
.admin-container .admin-btn[style*="background: #D4AF37"] {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white !important;
}

.admin-container .admin-btn[style*="background: #D4AF37"]:hover {
    background: transparent !important;
    color: var(--accent) !important;
}

/* Purchases button (green) - now orange */
.admin-container .admin-btn[style*="background: #10b981"] {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white !important;
}

.admin-container .admin-btn[style*="background: #10b981"]:hover {
    background: transparent !important;
    color: var(--accent) !important;
}

/* Add Vehicle button (default blue) - orange */
.admin-container .admin-btn:not(.success):not(.danger):not([style*="background"]) {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: white !important;
}

.admin-container .admin-btn:not(.success):not(.danger):not([style*="background"]):hover {
    background: transparent !important;
    color: var(--accent) !important;
}

/* Login button specifically - orange */
.admin-container .btn.submit {
    background: var(--accent) !important;
    color: white !important;
    border: 2px solid var(--accent) !important;
    opacity: 1 !important;
    padding: 14px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    width: 100% !important;
    font-size: 16px !important;
}

.admin-container .btn.submit:hover {
    background: transparent !important;
    color: var(--accent) !important;
}

/* Table action buttons (Edit, Delete, View) - now all orange */
.admin-container .action-btn {
    background: #f1f5f9 !important;
    color: var(--accent) !important;
    border: 1px solid var(--accent) !important;
    opacity: 1 !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.admin-container .action-btn:hover {
    background: var(--accent) !important;
    color: white !important;
}

/* Delete button - now orange (not red) */
.admin-container .action-btn.delete {
    background: #fef2f2 !important;
    color: var(--accent) !important;
    border-color: var(--accent) !important;
}

.admin-container .action-btn.delete:hover {
    background: var(--accent) !important;
    color: white !important;
}

/* Status select dropdown */
.admin-container .status-select {
    background: white !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--border) !important;
    padding: 8px 12px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    font-size: 13px !important;
}

.admin-container .status-select:hover {
    border-color: var(--accent) !important;
}

/* WhatsApp small button - keep green (special case) */
.admin-container .whatsapp-small-btn {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-size: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.admin-container .whatsapp-small-btn:hover {
    background: #1da851 !important;
    transform: translateY(-2px) !important;
}

/* Badge for counts */
.admin-container .badge {
    background: #ef4444 !important;
    color: white !important;
    padding: 2px 8px !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    margin-left: 5px !important;
    display: inline-block !important;
}

/* ADMIN PURCHASES STYLES */
.whatsapp-small-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.whatsapp-small-btn:hover {
    background: #1da851;
}

.status-select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    min-width: 120px;
    background: white;
    transition: all 0.2s ease;
}

.status-select option[value="pending"] {
    color: #f59e0b;
}

.status-select option[value="contacted"] {
    color: #3b82f6;
}

.status-select option[value="completed"] {
    color: #10b981;
}

.status-select:focus {
    outline: none;
    border-color: var(--secondary);
}

/* BADGE FOR PENDING COUNT */
.badge {
    background: #ef4444;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 1200px) {
    .vehicle-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 2rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step {
        width: 45%;
        margin-bottom: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-modern h1 {
        font-size: 3.5rem;
    }
    
    .vehicle-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hero-modern {
        padding: 150px 0 80px;
    }
    
    .hero-modern h1 {
        font-size: 2.8rem;
    }
    
    .hero-sub {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 2rem;
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .services h2,
    .vehicles-section h2,
    .process h2,
    .promise h2 {
        font-size: 2.5rem;
    }
    
    .service-grid,
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .vehicle-image {
        height: 220px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .country-grid {
        gap: 1.5rem;
    }
    
    .country-item {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .admin-actions {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 5px;
        width: auto;
    }
    
    .action-btn {
        width: 100%;
        justify-content: center;
    }
    
    .admin-form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-modern h1 {
        font-size: 2.2rem;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
    
    .primary-btn,
    .secondary-btn {
        padding: 14px 25px;
        font-size: 0.85rem;
    }
    
    .services h2,
    .vehicles-section h2,
    .process h2,
    .promise h2 {
        font-size: 2rem;
    }
    
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-image {
        height: 200px;
    }
    
    .vehicle-info {
        padding: 20px;
    }
    
    .vehicle-info h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.4rem;
    }
    
    .vehicle-specs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .spec {
        flex: 0 0 calc(50% - 5px);
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .purchase-form-wrapper {
        padding: 30px 20px;
    }
}

/* =========================
   TOUCH DEVICE OPTIMIZATIONS
========================= */
@media (hover: none) and (pointer: coarse) {
    .vehicle-card:hover {
        transform: none;
    }
    
    .vehicle-card:hover .vehicle-image img {
        transform: none;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .primary-btn:hover,
    .secondary-btn:hover {
        transform: none;
    }
    
    .vehicle-card .btn:hover {
        transform: none;
        background: var(--charcoal);
        color: white;
    }
}