:root {
    --gold: #C8A84E;
    --gold-dark: #A8882E;
    --dark: #0C0E0D;
    --navy: #111312;
    --surface: #FAF9F7;
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* Navbar */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 450;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    border-radius: 0.5rem;
}
.nav-link:hover { color: var(--gold); background: rgba(200, 168, 78, 0.06); }
.nav-link.active { color: var(--gold); }

/* Hero */
.hero-bg {
    background: linear-gradient(135deg, #080909 0%, #0C0E0D 50%, #111312 100%);
}

/* Section spacing */
.section-padding { padding: 6rem 0; }
@media (max-width: 768px) { .section-padding { padding: 4rem 0; } }

/* Section titles */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}
.section-title {
    font-family: 'Lato', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
@media (max-width: 768px) { .section-title { font-size: 1.8rem; } }
.section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: #6B7280;
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover { background: var(--gold-dark); }

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Cards */
.service-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: var(--transition);
}
.service-card:hover { border-color: rgba(200,168,78,0.3); }

.feature-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: var(--transition);
    text-align: center;
}
.feature-card:hover { border-color: rgba(200,168,78,0.3); }

/* Vehicle card */
.vehicle-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}
.vehicle-card:hover { border-color: rgba(200,168,78,0.3); }

/* Testimonial */
.testimonial-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(200,168,78,0.3); }

/* Stats */
.stat-number {
    font-family: 'Lato', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

/* Forms */
.input-field {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.input-field:focus { border-color: var(--gold); background: rgba(255, 255, 255, 0.06); }
.input-field::placeholder { color: rgba(255, 255, 255, 0.25); }
.input-icon {
    position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.25); pointer-events: none; transition: var(--transition);
}
.input-field:focus ~ .input-icon,
.input-field:focus + .input-icon { color: var(--gold); }
select.input-field {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A84E' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
    cursor: pointer;
}
.input-field option { background: #111312; color: white; }

/* Contact form light */
.contact-input, .contact-textarea {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    background: white;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.contact-input:focus, .contact-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,168,78,0.08); }
.contact-textarea { min-height: 130px; resize: vertical; }

/* Glass card for hero */
.glass-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Utilities */
.pulse-dot {
    width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(200,168,78,0.5); }
    70% { box-shadow: 0 0 0 10px rgba(200,168,78,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,168,78,0); }
}

#userMenu.show { display: block; animation: fadeIn 0.15s ease-out; }

.success-toast { animation: slideInRight 0.3s ease-out; }
@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.toast {
    position: fixed; top: 1.5rem; right: 1.5rem;
    padding: 0.9rem 1.5rem; border-radius: 0.5rem;
    color: white; font-weight: 500; z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: slideInRight 0.3s ease-out;
}
.toast.success { background: #065F46; }
.toast.error { background: #991B1B; }
.toast.info { background: #1E40AF; }

.loader {
    width: 22px; height: 22px;
    border: 2px solid rgba(200,168,78,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Vehicle image placeholder */
/* Content page styles */
.content-card h2 {
    font-family: 'Lato', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.content-card h3 {
    font-family: 'Lato', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.content-card p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.content-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.content-card ul li {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.25rem;
}
.content-card a { color: #C8A84E; }
.content-card a:hover { text-decoration: underline; }

.vehicle-img-placeholder {
    background: linear-gradient(135deg, #0C0E0D 0%, #111312 100%);
}

/* Autocomplete */
.autocomplete-wrapper { position: relative; }
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 280px;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
}
.autocomplete-dropdown.active { display: block; }
.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid #f3f4f6;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover,
.autocomplete-item.selected { background: #fefce8; }
.autocomplete-item.disabled {
    color: #9ca3af;
    cursor: default;
    font-size: 0.85rem;
    justify-content: center;
}
.autocomplete-item-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fefce8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.85rem;
    flex-shrink: 0;
}
.autocomplete-item-text { display: flex; flex-direction: column; min-width: 0; }
.autocomplete-item-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.autocomplete-item-type {
    font-size: 0.7rem;
    color: #9ca3af;
}

/* CAPTCHA */
.captcha-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 12px 16px;
}
.captcha-code {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1f2937;
    background: #fff;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 4px 18px 4px 20px;
    letter-spacing: 8px;
    user-select: none;
    line-height: 1.4;
}
.captcha-box input[type="text"] {
    margin-top: 8px;
}

