:root {
    --navy-900: #0b1622;
    --navy-800: #101f30;
    --navy-700: #16283c;
    --amber: #f5a623;
    --amber-dark: #d4890f;
    --ink: #1c2733;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    scroll-padding-top: 80px;
}

h1, h2, h3, .brand-text {
    font-family: 'Barlow Condensed', 'Inter', sans-serif;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--amber-dark);
    font-size: .9rem;
    margin-bottom: .5rem;
}

/* Navbar */
.site-navbar {
    background: rgba(11, 22, 34, 0.92);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, .25);
    padding-top: .6rem;
    padding-bottom: .6rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.brand-icon {
    color: var(--amber);
    font-size: 1.4rem;
}

.brand-text {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, .85);
    font-weight: 500;
    padding: .5rem 1rem;
}

.site-navbar .nav-link:hover {
    color: var(--amber);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(160deg, rgba(11,22,34,.92) 0%, rgba(16,31,48,.88) 55%, rgba(11,22,34,.95) 100%),
        repeating-linear-gradient(45deg, rgba(245,166,35,.05) 0 2px, transparent 2px 40px);
    padding-top: 6rem;
    padding-bottom: 4rem;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .hero {
        min-height: auto;
        padding-top: 7.5rem;
        padding-bottom: 4rem;
    }
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(245,166,35,.15), transparent 55%);
    pointer-events: none;
}

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

.badge-outline {
    border: 1px solid rgba(245, 166, 35, .5);
    color: var(--amber);
    padding: .35rem .9rem;
    border-radius: 50rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.hero-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, .8);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 640px;
    margin: 0 auto;
}

.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .6);
    font-size: 1.5rem;
    z-index: 2;
    animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* Sections */
.section-block {
    padding: 5.5rem 0;
}

.bg-light-alt {
    background: #f4f6f8;
}

.section-dark {
    background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
}

.section-heading {
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-heading h2 {
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

/* Service cards */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 6px 24px rgba(16, 31, 48, .06);
    border: 1px solid rgba(16, 31, 48, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(16, 31, 48, .12);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(160deg, var(--amber), var(--amber-dark));
    color: var(--navy-900);
    font-size: 1.6rem;
}

/* Vehicle cards */
.vehicle-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(245, 166, 35, .18);
    border-radius: 18px;
    padding: 2rem;
}

.vehicle-card-top {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.4rem;
    color: var(--amber);
}

.vehicle-card-top i {
    font-size: 1.8rem;
}

.vehicle-specs li {
    display: flex;
    justify-content: space-between;
    padding: .55rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
}

.vehicle-specs li:last-child {
    border-bottom: none;
}

.vehicle-specs li strong {
    color: #fff;
}

/* Map */
.map-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 31, 48, .12);
}

/* About */
.about-portrait {
    width: 100%;
    aspect-ratio: 1;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 24px;
    background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 6rem;
    box-shadow: 0 14px 34px rgba(16, 31, 48, .18);
}

/* CTA band */
.cta-band {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy-900), var(--amber-dark) 180%);
}

/* Footer */
.site-footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, .7);
    padding: 3.5rem 0 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    letter-spacing: .04em;
}

.footer-heading {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list li {
    margin-bottom: .5rem;
}

.footer-list a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
}

.footer-list a:hover {
    color: var(--amber);
}

.footer-divider {
    border-color: rgba(255, 255, 255, .12);
    margin: 2rem 0 1.2rem;
}

/* Mobile call FAB */
.call-fab {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    z-index: 1030;
}

@media (max-width: 991.98px) {
    .site-navbar .navbar-collapse {
        background: var(--navy-800);
        border-radius: 12px;
        padding: 1rem;
        margin-top: .75rem;
    }
}
