/* ============================================
   PRIME RENT A CAR - LUXURY & PREMIUM DESIGN
   ============================================ */

/* CSS Custom Properties */
:root {
    /* Colors - Luxury Palette */
    --obsidian: #07070a;
    --charcoal: #101014;
    --graphite: #1a1a20;
    --slate: #26262e;
    --silver: #8a8a92;
    --pearl: #e8e8ee;
    --ivory: #fafafc;

    /* Gold Accents */
    --gold: #d4af37;
    --gold-light: #e6c656;
    --gold-dark: #a8862a;
    --gold-deep: #8a6a1f;
    --champagne: #f7e7ce;

    /* Functional Colors */
    --success: #2d5a27;
    --success-light: #4a7c44;
    --danger: #8b2635;
    --warning: #b8860b;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 4rem;
    --space-2xl: 8rem;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --duration-fast: 200ms;
    --duration-normal: 400ms;
    --duration-slow: 800ms;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 8px 32px rgba(201, 169, 98, 0.3);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--obsidian);
    color: var(--pearl);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ivory);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--silver);
    font-size: 1rem;
    max-width: 65ch;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

a:hover {
    color: var(--gold-light);
}

/* Selection */
::selection {
    background: var(--gold);
    color: var(--obsidian);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding: 1rem 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.98) !important;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ivory) !important;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand .brand-logo {
    height: 48px;
    width: auto;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.04);
}

.navbar.scrolled .brand-logo {
    height: 42px;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand .brand-main {
    font-size: 1.25rem;
    color: var(--ivory);
}

.navbar-brand .brand-sub {
    font-size: 0.7rem;
    color: var(--gold);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pearl) !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem !important;
    position: relative;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all var(--duration-normal) var(--ease-smooth);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.navbar-nav .nav-link:hover::after {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid var(--gold);
    padding: 0.5rem;
}

/* Navbar Dropdown */
.dropdown-menu {
    background: rgba(16, 16, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    min-width: 240px;
}

.dropdown-item {
    color: var(--pearl);
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--duration-fast) var(--ease-smooth);
    display: flex;
    align-items: center;
}

.dropdown-item i {
    color: var(--gold);
    width: 20px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.05);
    margin: 0.35rem 0;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.4rem;
    vertical-align: 0.1em;
    border-top-color: var(--gold);
}

/* Language Switcher */
.lang-switcher .nav-link {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
}

.lang-switcher .dropdown-menu {
    min-width: 180px;
}

.lang-switcher .dropdown-item {
    gap: 0.6rem;
}

.lang-switcher .dropdown-item.active {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

@media (min-width: 992px) {
    .lang-switcher {
        margin-left: 0.5rem;
        padding-left: 0.5rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a962' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    background: var(--obsidian);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    right: -10%;
    bottom: -20%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
    pointer-events: none;
    animation: heroGlow 18s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0%   { transform: translate(0,   0)   scale(1); }
    50%  { transform: translate(2%, -3%)  scale(1.03); }
    100% { transform: translate(-2%, 3%)  scale(1); }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--obsidian), transparent);
    pointer-events: none;
}

/* Subtle grid overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-smooth) forwards;
    opacity: 0;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.1s forwards;
    opacity: 0;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(212, 175, 55, 0.3);
    z-index: -1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--silver);
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.2s forwards;
    opacity: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.3s forwards;
    opacity: 0;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s var(--ease-smooth) 0.4s forwards;
    opacity: 0;
}

.hero-image {
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s var(--ease-smooth) 0.5s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--duration-slow) var(--ease-smooth);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--obsidian);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    color: var(--obsidian);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--obsidian);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--ivory);
    color: var(--obsidian);
}

.btn-light:hover {
    background: var(--pearl);
    transform: translateY(-3px);
    color: var(--obsidian);
}

.btn-secondary {
    background: var(--graphite);
    color: var(--pearl);
    border: 1px solid var(--slate);
}

.btn-secondary:hover {
    background: var(--slate);
    color: var(--ivory);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-light) 0%, var(--success) 100%);
    color: var(--ivory);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 39, 0.3);
}

.btn-warning {
    background: var(--gold);
    color: var(--obsidian);
}

.btn-warning:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #a63446 0%, var(--danger) 100%);
    color: var(--ivory);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 38, 53, 0.3);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

/* ============================================
   VEHICLE CARDS
   ============================================ */
#vehicles {
    background: var(--obsidian);
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-title::after {
    display: none;
}

.section-description {
    color: var(--silver);
    max-width: 600px;
    margin: 0 auto;
}

.vehicle-card {
    background: var(--charcoal);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--duration-normal) var(--ease-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-lg);
}

.vehicle-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.vehicle-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--charcoal), transparent);
    pointer-events: none;
}

.vehicle-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

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

.vehicle-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: var(--obsidian);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ivory);
    margin-bottom: 0.25rem;
}

.card-year {
    font-size: 0.875rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.vehicle-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.vehicle-features .badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--silver);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.vehicle-features .badge i {
    color: var(--gold);
    font-size: 0.75rem;
}

.price-info {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
    margin-top: auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 0.8rem;
    color: var(--silver);
}

.price-value {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
}

.card-cta {
    margin-top: auto;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    background: linear-gradient(180deg, var(--obsidian) 0%, var(--charcoal) 100%);
    padding: var(--space-2xl) 0;
}

.contact-card {
    background: var(--graphite);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.contact-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--obsidian);
}

.contact-card h5 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0 auto;
}

.contact-card strong {
    color: var(--pearl);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    background: var(--charcoal);
    padding: var(--space-2xl) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badge {
    background: var(--graphite);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.trust-badge:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.trust-badge h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--ivory);
    margin-bottom: 0.75rem;
}

.trust-badge p {
    color: var(--silver);
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
    background: var(--obsidian);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    opacity: 0.3;
}

.process-steps h2 {
    color: var(--ivory) !important;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.process-step::after {
    display: none;
}

.process-step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--obsidian);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--ivory) !important;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--silver);
    font-size: 0.875rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--charcoal);
    padding: var(--space-2xl) 0;
}

.testimonial-card {
    background: var(--graphite);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    margin: 1rem;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.testimonial-card > p {
    color: var(--silver);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid var(--gold);
}

.testimonial-author strong {
    color: var(--ivory);
    font-size: 0.95rem;
    display: block;
}

.testimonial-author .text-muted {
    color: var(--silver) !important;
    font-size: 0.8rem;
}

/* ============================================
   OFFER BANNER
   ============================================ */
.offer-banner {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    color: var(--obsidian);
    box-shadow: var(--shadow-gold);
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-banner h3 {
    font-family: var(--font-display);
    color: var(--obsidian);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.offer-banner p {
    color: var(--obsidian);
    opacity: 0.9;
}

.offer-banner .lead {
    font-size: 1.125rem;
    font-weight: 500;
}

.offer-banner strong {
    color: var(--obsidian);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    background: var(--obsidian);
    padding: var(--space-2xl) 0;
}

.accordion {
    background: transparent;
}

.accordion-item {
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    background: var(--charcoal);
    color: var(--ivory);
    font-family: var(--font-body);
    font-weight: 500;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--graphite);
    color: var(--gold);
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(73%) sepia(47%) saturate(385%) hue-rotate(8deg);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.3);
}

.accordion-body {
    background: var(--graphite);
    color: var(--silver);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--obsidian) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: var(--space-xl) 0 var(--space-lg);
}

footer h5 {
    font-family: var(--font-display);
    color: var(--ivory);
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

footer p {
    color: var(--silver);
    font-size: 0.9rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: var(--silver);
    font-size: 0.875rem;
    transition: all var(--duration-fast) var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

footer ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

footer ul li a::before {
    content: '→';
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

footer ul li a:hover::before {
    opacity: 1;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--silver);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--duration-normal) var(--ease-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float i {
    margin: 0;
}

/* ============================================
   FORMS
   ============================================ */
.form-control {
    background: var(--graphite);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--pearl);
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.form-control:focus {
    background: var(--slate);
    border-color: var(--gold);
    color: var(--ivory);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--silver);
}

.form-label {
    font-weight: 500;
    color: var(--pearl);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.form-select {
    background: var(--graphite);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--pearl);
    padding: 0.875rem 1rem;
}

.form-select:focus {
    background: var(--slate);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.input-group-text {
    background: var(--gold);
    border: none;
    color: var(--obsidian);
    font-weight: 600;
}

.form-check-input {
    background-color: var(--graphite);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-check-label {
    color: var(--silver);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(45, 90, 39, 0.2);
    border: 1px solid rgba(74, 124, 68, 0.3);
    color: var(--success-light);
}

.alert-danger {
    background: rgba(139, 38, 53, 0.2);
    border: 1px solid rgba(166, 52, 70, 0.3);
    color: #e57373;
}

.alert-warning {
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
}

.alert-info {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    color: var(--obsidian);
}

.btn-close {
    filter: brightness(0) saturate(100%) invert(1);
    opacity: 0.5;
}

.btn-close:hover {
    opacity: 1;
}

/* ============================================
   TABLES (Admin)
   ============================================ */
.table {
    color: var(--pearl);
    border-collapse: separate;
    border-spacing: 0;
}

.table thead {
    background: var(--gold);
    color: var(--obsidian);
}

.table thead th {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 1.25rem;
    border: none;
    white-space: nowrap;
}

.table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.table tbody tr {
    background: var(--graphite);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.table tbody tr:hover {
    background: var(--slate);
}

.table tbody td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 8px;
}

.table tbody tr:last-child td:last-child {
    border-radius: 0 0 8px 0;
}

.table-responsive {
    border-radius: 12px;
    overflow: hidden;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.badge.bg-success {
    background: var(--success-light) !important;
}

.badge.bg-danger {
    background: var(--danger) !important;
}

.badge.bg-secondary {
    background: var(--slate) !important;
}

.badge.bg-info {
    background: var(--gold) !important;
    color: var(--obsidian) !important;
}

/* ============================================
   MODALS
   ============================================ */
.modal-content {
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--obsidian);
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}

.modal-header.bg-success {
    background: linear-gradient(135deg, var(--success-light) 0%, var(--success) 100%) !important;
    color: var(--ivory) !important;
}

.modal-header.bg-warning {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
    color: var(--obsidian) !important;
}

.modal-title {
    font-family: var(--font-display);
    font-weight: 600;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    background: var(--graphite);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: 0 0 15px 15px;
}

.modal-backdrop.show {
    opacity: 0.8;
}

/* ============================================
   CARDS (General)
   ============================================ */
.card {
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-4px);
}

.card-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--obsidian);
    font-family: var(--font-display);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border-bottom: none;
}

.card-header.bg-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
    color: var(--obsidian) !important;
}

.card-body {
    padding: 1.5rem;
}

.card.shadow {
    box-shadow: var(--shadow-md) !important;
}

.card.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--obsidian);
    position: relative;
    padding: 2rem;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
}

.login-card:hover {
    transform: none;
}

.login-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--obsidian);
    text-align: center;
    padding: 2rem;
}

.login-header .brand-icon {
    width: 64px;
    height: 64px;
    background: var(--obsidian);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: var(--gold);
}

.login-header h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--obsidian);
    margin: 0;
}

.login-body {
    padding: 2rem;
}

/* ============================================
   ADMIN DASHBOARD
   ============================================ */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-header h2 {
    font-family: var(--font-display);
    color: var(--ivory);
    font-size: 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-header h2 i {
    color: var(--gold);
}

/* ============================================
   SEO CONTENT
   ============================================ */
.seo-section {
    background: var(--charcoal);
    padding: var(--space-xl) 0;
}

.seo-section h2,
.seo-section h3 {
    color: var(--ivory);
}

.seo-section h2::after {
    display: none;
}

.seo-section p {
    color: var(--silver);
}

.seo-section ul {
    color: var(--silver);
}

.seo-section ul li {
    margin-bottom: 0.5rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-primary { background: var(--gold) !important; }
.bg-dark { background: var(--obsidian) !important; }
.bg-light { background: var(--charcoal) !important; }

.text-primary { color: var(--gold) !important; }
.text-muted { color: var(--silver) !important; }
.text-white { color: var(--ivory) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.5) !important; }

.border-secondary { border-color: rgba(255, 255, 255, 0.1) !important; }

.shadow { box-shadow: var(--shadow-md) !important; }
.shadow-sm { box-shadow: var(--shadow-sm) !important; }

.min-vh-50 {
    min-height: 50vh;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.animate-fadeIn {
    animation: fadeIn 0.6s var(--ease-smooth) forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s var(--ease-smooth) forwards;
}

/* Staggered animations */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .hero-image-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .navbar-brand .brand-text {
        display: none;
    }

    .process-steps::before {
        display: none;
    }

    .offer-banner {
        text-align: center;
    }

    .offer-banner .text-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-header {
        padding: 0 1rem;
    }

    .vehicle-card {
        margin-bottom: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .trust-badge {
        padding: 1.5rem;
    }

    footer h5::after {
        display: none;
    }
}

/* ============================================
   BOOKING WIDGET (Hero)
   ============================================ */
.booking-widget {
    background: linear-gradient(180deg, rgba(26, 26, 32, 0.85) 0%, rgba(16, 16, 20, 0.92) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 1.75rem;
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 5;
    margin-top: 2rem;
    animation: fadeInUp 0.8s var(--ease-smooth) 0.6s forwards;
    opacity: 0;
}

.booking-widget-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-widget-title i {
    color: var(--gold);
}

.booking-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.booking-field label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.booking-field input,
.booking-field select {
    width: 100%;
    background: rgba(7, 7, 10, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    color: var(--ivory);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.booking-field input:focus,
.booking-field select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(7, 7, 10, 0.85);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.booking-field input::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
    cursor: pointer;
}

.booking-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--obsidian);
    border: none;
    border-radius: 10px;
    padding: 0.95rem 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-gold);
}

.booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.45);
    color: var(--obsidian);
}

/* ============================================
   CATEGORY FILTER PILLS
   ============================================ */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 0 0 3rem 0;
    padding: 0.5rem;
}

.filter-pill {
    background: var(--charcoal);
    color: var(--silver);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
}

.filter-pill i {
    font-size: 0.95rem;
}

.filter-pill:hover {
    color: var(--ivory);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-1px);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--obsidian);
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

/* Hidden card via filter */
.vehicle-card-wrapper {
    transition: all 0.4s var(--ease-smooth);
}

.vehicle-card-wrapper.filtered-out {
    display: none;
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(7, 7, 10, 0.85) 0%, rgba(7, 7, 10, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.7rem 0.9rem;
    z-index: 1000;
    gap: 0.5rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.mobile-cta-bar .cta-btn {
    flex: 1;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-cta-bar .cta-call {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--obsidian);
}

.mobile-cta-bar .cta-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 90px;
    }
}

/* ============================================
   SERVICE CARDS (Multi-page nav)
   ============================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--graphite) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.75rem;
    text-decoration: none;
    color: inherit;
    transition: all var(--duration-normal) var(--ease-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.35);
    color: inherit;
}

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

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--ivory);
    margin: 0;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--silver);
    margin: 0;
}

.service-card-link {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}

.service-card:hover .service-card-link {
    color: var(--gold-light);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-nav {
    padding: 100px 0 1rem;
    background: var(--obsidian);
}

.breadcrumb-nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.breadcrumb-nav li {
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-nav li + li::before {
    content: '/';
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-nav a {
    color: var(--silver);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--gold);
}

.breadcrumb-nav li[aria-current="page"] {
    color: var(--gold);
}

/* ============================================
   PAGE HEADER (for sub-pages)
   ============================================ */
.page-header {
    background: var(--obsidian);
    padding: 1rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header h1 .highlight {
    color: var(--gold);
}

.page-header p {
    color: var(--silver);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ============================================
   ENHANCED VEHICLE CARD
   ============================================ */
.vehicle-card {
    position: relative;
}

.vehicle-category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.vehicle-features .badge {
    transition: all var(--duration-fast) var(--ease-smooth);
}

.vehicle-card:hover .vehicle-features .badge {
    border-color: rgba(212, 175, 55, 0.25);
    color: var(--pearl);
}

.vehicle-card .card-cta {
    display: flex;
    gap: 0.5rem;
}

.vehicle-card .btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    flex: 0 0 auto;
    padding: 1rem 1.1rem;
}

.vehicle-card .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: #fff;
}

/* ============================================
   ENHANCED PROCESS STEPS (visual connectors)
   ============================================ */
.process-steps .row {
    position: relative;
}

.process-step {
    position: relative;
    z-index: 2;
}

.process-step-number {
    position: relative;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.process-step:hover .process-step-number {
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.process-step-number::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.35);
    animation: rotateSlow 30s linear infinite;
}

/* ============================================
   TRUST BADGE ENHANCEMENT
   ============================================ */
.trust-badge {
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left var(--duration-slow) var(--ease-smooth);
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge i {
    transition: all var(--duration-normal) var(--ease-smooth);
}

.trust-badge:hover i {
    transform: scale(1.15) translateY(-4px);
    text-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

/* ============================================
   IMAGE LAZY LOAD FADE
   ============================================ */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s var(--ease-smooth);
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ============================================
   SCROLL REVEAL HELPER
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FLOATING SEARCH HINT
   ============================================ */
.search-hint {
    text-align: center;
    color: var(--silver);
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.7;
}

.search-hint kbd {
    background: var(--graphite);
    color: var(--gold);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--silver);
}

.empty-state i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 1rem;
    display: block;
}

.empty-state h4 {
    font-family: var(--font-display);
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

/* ============================================
   PRICE CALC RESULT
   ============================================ */
.price-result {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    text-align: center;
}

.price-result-label {
    font-size: 0.75rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.25rem;
}

.price-result-value {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ivory);
}

.price-result-meta {
    font-size: 0.8rem;
    color: var(--silver);
    margin-top: 0.25rem;
}