*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:      #1a2332;
    --blue:      #2c4a7c;
    --blue-mid:  #4a6fa5;
    --white:     #ffffff;
    --grey-50:   #f8f9fb;
    --grey-100:  #f0f2f6;
    --grey-200:  #dde1e9;
    --grey-400:  #9aa5b4;
    --grey-600:  #6b7787;
    --grey-700:  #4a5568;
    --grey-900:  #1a202c;
    --font:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
    --shadow-md: 0 4px 20px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,.09);
    --r:  12px;
    --rl: 20px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--grey-900); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }

h1, h2, h3 { font-weight: 600; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.1rem; }
p  { color: var(--grey-700); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }

/* ─── NAV ─────────────────────────────────────────────────── */
#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-200);
    z-index: 200;
    transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
    max-width: 1080px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 68px; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--grey-700); font-size: .9rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta {
    background: var(--navy) !important; color: var(--white) !important;
    padding: 9px 20px; border-radius: 8px; font-weight: 600 !important;
    transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

.mobile-nav {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: white; border-bottom: 1px solid var(--grey-200);
    z-index: 199; padding: 8px 24px 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 13px 0; color: var(--grey-700); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--grey-100); font-size: .95rem; }
.mobile-nav a:last-child { border-bottom: none; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 10px;
    font-weight: 600; font-size: 1rem;
    text-decoration: none; cursor: pointer; border: none;
    transition: all .2s;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(44,74,124,.28); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
    display: flex; flex-direction: column;
    padding-top: 68px; position: relative;
}
.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 22, 36, 0.62) 0%,
        rgba(15, 22, 36, 0.50) 60%,
        rgba(15, 22, 36, 0.70) 100%
    );
}
.hero-inner {
    position: relative; z-index: 1;
    min-height: calc(100vh - 68px - 80px);
    display: flex; align-items: center;
}
.hero-content { text-align: center; max-width: 680px; margin: 0 auto; padding: 64px 0 56px; }
.hero-logo { margin: 0 auto 36px; }
.hero-logo img { max-width: 240px; height: auto; filter: brightness(0) invert(1); }
.hero-eyebrow { color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.hero-title { color: white; margin-bottom: 20px; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.82); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.7); font-weight: 600; }
.btn-outline-white:hover { background: white; color: var(--navy); border-color: white; }

.hero-trust-bar {
    position: relative; z-index: 1;
    background: white;
    border-top: 1px solid var(--grey-200);
    padding: 20px 0;
}
.hero-trust { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--grey-700); font-size: .88rem; font-weight: 500; }
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ─── SECTION HEADER ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { color: var(--blue); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 10px; }
.section-title { margin-bottom: 14px; }
.section-desc { color: var(--grey-600); font-size: 1.05rem; max-width: 480px; margin: 0 auto; }

/* ─── SERVICES ────────────────────────────────────────────── */
#services { background: var(--white); }

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px; margin-bottom: 52px;
}
.vehicle-card {
    background: var(--grey-50); border: 1px solid var(--grey-200);
    border-radius: var(--r); padding: 28px 16px 24px;
    text-align: center; transition: all .3s;
}
.vehicle-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vehicle-icon { width: 52px; height: 52px; margin: 0 auto 14px; color: var(--navy); }
.vehicle-icon svg { width: 100%; height: 100%; }
.vehicle-card h3 { font-size: .95rem; color: var(--navy); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 24px; background: var(--grey-50);
    border-radius: var(--r); border: 1px solid var(--grey-200);
    transition: box-shadow .2s;
}
.feature-item:hover { box-shadow: var(--shadow-sm); }
.feature-icon {
    width: 42px; height: 42px; background: var(--navy);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: white;
}
.feature-text h3 { font-size: .95rem; margin-bottom: 4px; }
.feature-text p { font-size: .875rem; }

/* ─── PRICING ─────────────────────────────────────────────── */
#pricing { background: var(--grey-50); }
.pricing-wrap { display: flex; justify-content: center; }
.pricing-card {
    background: var(--white); border-radius: var(--rl);
    padding: 52px 48px; box-shadow: var(--shadow-lg);
    max-width: 540px; width: 100%;
    border: 1px solid var(--grey-200);
}
.pricing-top-label { color: var(--blue); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.pricing-name { font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.pricing-amount-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-num { font-size: 4.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price-sym { font-size: 2rem; font-weight: 600; color: var(--navy); }
.price-per { color: var(--grey-600); font-size: 1rem; }
.price-vat { color: var(--grey-400); font-size: .85rem; margin-bottom: 28px; }
.pricing-hr { border: none; border-top: 1px solid var(--grey-200); margin: 28px 0; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pricing-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; color: var(--grey-700); }
.pricing-list li svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.pricing-note {
    margin-top: 28px; padding: 16px 18px;
    background: var(--grey-50); border-radius: 8px;
    border-left: 3px solid var(--blue);
    font-size: .875rem; color: var(--grey-700);
}
.pricing-note strong { color: var(--navy); }

/* ─── COMING SOON ─────────────────────────────────────────── */
#coming { background: var(--navy); }
#coming .section-label { color: rgba(255,255,255,.55); }
#coming .section-title { color: white; }
#coming .section-desc { color: rgba(255,255,255,.6); }
.coming-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.coming-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r); padding: 32px 26px; text-align: center;
    transition: background .2s;
}
.coming-card:hover { background: rgba(255,255,255,.09); }
.coming-badge {
    display: inline-block;
    background: rgba(74,111,165,.4);
    color: rgba(255,255,255,.85);
    font-size: .72rem; font-weight: 700;
    padding: 4px 10px; border-radius: 20px;
    letter-spacing: .07em; text-transform: uppercase;
    margin-bottom: 18px;
}
.coming-icon {
    width: 54px; height: 54px;
    background: rgba(255,255,255,.1); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; color: white;
}
.coming-card h3 { color: white; margin-bottom: 8px; }
.coming-card p { color: rgba(255,255,255,.6); font-size: .875rem; }

/* ─── LOCATION ────────────────────────────────────────────── */
#location { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 52px; align-items: start; }
.loc-addr { display: flex; gap: 14px; margin-bottom: 28px; }
.loc-addr-icon {
    width: 44px; height: 44px;
    background: var(--grey-50); border: 1px solid var(--grey-200);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0; color: var(--blue);
}
.loc-addr-text h3 { font-size: 1rem; margin-bottom: 4px; }
.loc-addr-text p { font-size: .9rem; line-height: 1.6; }
.loc-info {
    background: var(--grey-50); border: 1px solid var(--grey-200);
    border-radius: var(--r); padding: 24px;
}
.loc-info h3 { font-size: .95rem; margin-bottom: 14px; }
.loc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.loc-list li { display: flex; gap: 10px; align-items: center; font-size: .875rem; color: var(--grey-700); }
.loc-list li svg { color: var(--blue); flex-shrink: 0; }
.map-wrap {
    border-radius: var(--rl); overflow: hidden;
    box-shadow: var(--shadow-md); height: 380px;
    border: 1px solid var(--grey-200);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ─── CONTACT ─────────────────────────────────────────────── */
#contact { background: var(--grey-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-lede h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-lede p { margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; }
.contact-method {
    display: flex; gap: 14px; align-items: center;
    text-decoration: none; padding: 15px 18px;
    background: white; border: 1px solid var(--grey-200);
    border-radius: var(--r); transition: all .2s;
}
.contact-method:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.contact-method-icon {
    width: 42px; height: 42px; background: var(--navy);
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; color: white; flex-shrink: 0;
}
.contact-method-label { font-size: .75rem; color: var(--grey-400); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.contact-method-value { font-weight: 600; color: var(--navy); font-size: .95rem; }

.contact-form-wrap {
    background: white; border-radius: var(--rl);
    padding: 40px; box-shadow: var(--shadow-md);
    border: 1px solid var(--grey-200);
}
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--grey-900); margin-bottom: 6px; letter-spacing: .02em; }
.form-group input,
.form-group textarea {
    width: 100%; padding: 11px 14px;
    border: 1.5px solid var(--grey-200); border-radius: 8px;
    font-family: var(--font); font-size: .95rem; color: var(--grey-900);
    background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(44,74,124,.1); }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.6); padding: 52px 0 32px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.footer-logo img { height: 46px; filter: brightness(0) invert(1); opacity: .85; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-hr { width: 100%; border: none; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom { font-size: .82rem; text-align: center; color: rgba(255,255,255,.4); }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
    .vehicles-grid { grid-template-columns: repeat(3, 1fr); }
    .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .map-wrap { height: 300px; }
}
@media (max-width: 700px) {
    section { padding: 64px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .pricing-card { padding: 36px 24px; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-trust { gap: 16px; }
    .hero-logo img { max-width: 200px; }
}
@media (max-width: 480px) {
    .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 14px; }
}
