:root {
    --navy: #0a1628;
    --navy-mid: #112240;
    --gold: #c9a84c;
    --gold-light: #e2c77a;
    --gold-pale: #f5edd4;
    --off-white: #f8f6f1;
    --slate: #4a5568;
    --slate-light: #718096;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--navy);
    overflow-x: hidden;
}
h1,
h2,
h3,
.display-font {
    font-family: "Playfair Display", serif;
}

/* ════════════════════════ NAVBAR ════════════════════════ */
.navbar-brand .brand-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.brand-dot {
    color: var(--gold);
}
.navbar {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 10px 0;
}
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    padding: 0.5rem 1rem !important;
}
.navbar .nav-link:hover {
    color: var(--gold) !important;
}
.navbar .btn-nav-cta {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 0.5rem 1.3rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: none;
    transition:
        background 0.2s,
        transform 0.15s;
}
.navbar .btn-nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

/* ════════════════════════ HERO ════════════════════════ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #040d1a 0%, #0a1e40 55%, #0f2a54 100%);
    overflow: hidden;
    /* FIX 1: push content down so it doesn't overlap navbar */
    padding-top: 100px;
    padding-bottom: 4rem;
}
.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 110%;
    background: linear-gradient(135deg, transparent 0%, rgba(201, 168, 76, 0.06) 40%, rgba(201, 168, 76, 0.12) 100%);
    transform: skewX(-12deg);
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, rgba(248, 246, 241, 0.04), transparent);
    pointer-events: none;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 1rem;
}
.hero h1 .accent {
    color: var(--gold);
}
.hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 500px;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 300;
}
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
}
.badge-item i {
    color: var(--gold);
    font-size: 0.9rem;
}
.badge-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
}

/* Quote form card */
.quote-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 100px;
}
.quote-card .form-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.4rem;
}
.quote-card .form-control,
.quote-card .form-select {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.65rem 0.9rem;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.quote-card .form-control:focus,
.quote-card .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
    color: var(--white);
    outline: none;
}
.quote-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.quote-card .form-select option {
    background: var(--navy-mid);
    color: var(--white);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    transition:
        background 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
    cursor: pointer;
}
.btn-gold:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-outline-white:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
}

/* ════════════════════════ AIRPORTS ════════════════════════ */
.airports-section {
    background: var(--off-white);
    padding: 5rem 0;
}
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-sub {
    color: var(--slate);
    font-size: 0.97rem;
    line-height: 1.7;
    max-width: 520px;
}
.airport-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(10, 22, 40, 0.07);
    transition:
        transform 0.25s,
        box-shadow 0.25s,
        border-color 0.25s;
    height: 100%;
}
.airport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.12);
    border-color: var(--gold);
}
.airport-code {
    font-family: "Playfair Display", serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.airport-code span {
    color: var(--gold);
}
.airport-name {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.8rem;
}
.airport-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.airport-icon i {
    color: var(--gold);
    font-size: 1.1rem;
}
.airport-desc {
    font-size: 0.83rem;
    color: var(--slate-light);
    line-height: 1.6;
}

/* ════════════════════════ HOW IT WORKS ════════════════════════ */
.how-section {
    background: var(--navy);
    padding: 5.5rem 0;
    position: relative;
    overflow: hidden;
}
.how-section::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* FIX 3: Force 3 cards in one row using flex, not Bootstrap col-md-4 which wraps with arrows */
.steps-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.step-col {
    flex: 1;
    min-width: 0;
}
.step-arrow-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    flex-shrink: 0;
}
.step-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.2rem 1.6rem;
    text-align: center;
    position: relative;
    transition:
        border-color 0.25s,
        background 0.25s;
    height: 100%;
}
.step-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(201, 168, 76, 0.04);
}
.step-num {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
}
.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}
.step-icon i {
    color: var(--gold);
    font-size: 1.3rem;
}
.step-title {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.7rem;
}
.step-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
}
.step-arrow {
    color: rgba(201, 168, 76, 0.5);
    font-size: 1.4rem;
}
@media (max-width: 767px) {
    .steps-row {
        flex-direction: column;
    }
    .step-arrow-col {
        transform: rotate(90deg);
        padding: 0.5rem 0;
    }
}

/* ════════════════════════ FLEET ════════════════════════ */
.fleet-section {
    background: var(--off-white);
    padding: 5.5rem 0;
}
.fleet-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(10, 22, 40, 0.06);
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(10, 22, 40, 0.14);
}
.fleet-img {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.fleet-img.sedan {
    background: linear-gradient(135deg, #0a1628 0%, #1a3a6e 100%);
}
.fleet-img.suv {
    background: linear-gradient(135deg, #1a2a40 0%, #0f3555 100%);
}
.fleet-img.sprinter {
    background: linear-gradient(135deg, #0d2035 0%, #1e4060 100%);
}
.fleet-car-svg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vehicle-silhouette {
    width: 220px;
    opacity: 0.55;
    filter: drop-shadow(0 4px 16px rgba(201, 168, 76, 0.3));
}
.fleet-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
}
.fleet-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.fleet-vehicle-name {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.fleet-capacity {
    font-size: 0.75rem;
    color: var(--slate-light);
    font-weight: 500;
    margin-bottom: 0.8rem;
}
.fleet-capacity i {
    color: var(--gold);
    margin-right: 0.3rem;
}
.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
}
.fleet-features li {
    font-size: 0.82rem;
    color: var(--slate);
    padding: 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.fleet-features li i {
    color: var(--gold);
    font-size: 0.7rem;
}
.fleet-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 22, 40, 0.07);
}
.fleet-price-label {
    font-size: 0.7rem;
    color: var(--slate-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.fleet-price {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
}
.fleet-price sup {
    font-size: 0.9rem;
    font-weight: 400;
    vertical-align: super;
}
.btn-book {
    display: block;
    width: 100%;
    background: var(--navy);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1rem;
    transition:
        background 0.2s,
        color 0.2s;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}
.btn-book:hover {
    background: var(--gold);
    color: var(--navy);
}
.fleet-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
ul.service-points li {
    list-style: none;
    line-height: 36px;
}
ul.service-points {
    padding: 0px;
    margin: 0px;
}
/* ════════════════════════ WHY CHOOSE US ════════════════════════ */
/* FIX 4: Only 3 boxes, bigger, more visual */
.why-section {
    background: var(--white);
    padding: 5.5rem 0;
}
.why-card {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(10, 22, 40, 0.07);
    background: var(--off-white);
    transition:
        border-color 0.25s,
        background 0.25s,
        transform 0.25s,
        box-shadow 0.25s;
    text-align: center;
    height: 100%;
}
.why-card:hover {
    border-color: var(--gold);
    background: var(--white);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(10, 22, 40, 0.1);
}
.why-icon-wrap {
    width: 72px;
    height: 72px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}
.why-icon-wrap i {
    color: var(--gold);
    font-size: 1.5rem;
}
.why-title {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}
.why-desc {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.7;
}

/* ════════════════════════ REVIEWS – Owl Carousel ════════════════════════ */
.reviews-section {
    background: var(--navy);
    padding: 5.5rem 0;
    overflow: hidden;
}
.rating-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.rating-score {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.rating-stars i {
    color: var(--gold);
    font-size: 1rem;
}
.rating-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}
.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 0.5rem;
    transition: border-color 0.25s;
}
.review-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
}
.review-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}
.review-quote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
    margin: 1rem 0;
    font-style: italic;
}
.reviewer-name {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--white);
}
.reviewer-meta {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}
.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    flex-shrink: 0;
}
/* Owl nav overrides */
.owl-theme .owl-nav [class*="owl-"] {
    background: rgba(201, 168, 76, 0.15) !important;
    border: 1px solid rgba(201, 168, 76, 0.3) !important;
    color: var(--gold) !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
    transition: background 0.2s;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
    background: var(--gold) !important;
    color: var(--navy) !important;
}
.owl-theme .owl-dots .owl-dot span {
    background: rgba(201, 168, 76, 0.3) !important;
}
.owl-theme .owl-dots .owl-dot.active span {
    background: var(--gold) !important;
}
.owl-theme .owl-nav {
    margin-top: 1.5rem !important;
}

/* ════════════════════════ FINAL CTA ════════════════════════ */
.cta-section {
    background: var(--gold);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 10px,
        rgba(10, 22, 40, 0.04) 10px,
        rgba(10, 22, 40, 0.04) 20px
    );
    pointer-events: none;
}
.cta-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}
.cta-sub {
    color: rgba(10, 22, 40, 0.65);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.btn-cta-navy {
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 2rem;
    text-decoration: none;
    display: inline-block;
    transition:
        background 0.2s,
        transform 0.15s;
}
.btn-cta-navy:hover {
    background: #0f2a54;
    color: var(--white);
    transform: translateY(-2px);
}
.btn-cta-outline {
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 2px solid rgba(10, 22, 40, 0.35);
    border-radius: 8px;
    padding: 0.85rem 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition:
        border-color 0.2s,
        background 0.2s;
}
.btn-cta-outline:hover {
    border-color: var(--navy);
    background: rgba(10, 22, 40, 0.06);
    color: var(--navy);
}

/* ════════════════════════ FOOTER – FIX 6: Rich redesign ════════════════════════ */
footer {
    background: #050e1d;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Top accent bar */
.footer-top {
    background: var(--navy-mid);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-top-stat {
    text-align: center;
    padding: 1rem;
}
.footer-top-stat .stat-num {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.footer-top-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-top-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    align-self: stretch;
    margin: 1rem 0;
}

/* Main footer body */
.footer-main {
    padding: 4rem 0 2.5rem;
}
.footer-brand-wrap {
    margin-bottom: 1.5rem;
}
.footer-brand {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.03em;
}
.footer-brand span {
    color: var(--gold);
}
.footer-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0.2rem;
}
.footer-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
}

/* Newsletter strip */
.footer-newsletter {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin-top: 1.5rem;
}
.footer-newsletter p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.7rem;
}
.footer-nl-input {
    display: flex;
    gap: 0.5rem;
}
.footer-nl-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.82rem;
    padding: 0.55rem 0.8rem;
    outline: none;
}
.footer-nl-input input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.footer-nl-input input:focus {
    border-color: var(--gold);
}
.footer-nl-input button {
    background: var(--gold);
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    cursor: pointer;
    white-space: nowrap;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.6rem;
}
.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition:
        color 0.2s,
        padding-left 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-links a::before {
    content: "›";
    color: var(--gold);
    font-size: 1rem;
    opacity: 100%;
    transition: opacity 0.2s;
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}
.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}
.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-icon i {
    color: var(--gold);
    font-size: 0.85rem;
}
.footer-contact-text strong {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 600;
}
.footer-contact-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.38);
}

/* Social */
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
}
.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-3px);
}

/* Footer bottom bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.copyright {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}
.footer-bottom-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin-left: 1.2rem;
    transition: color 0.2s;
}
.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 768px) {
    .hero {
        padding-top: 90px;
    }
    .trust-badges {
        gap: 0.6rem;
    }
    .badge-divider {
        display: none;
    }
    .fleet-img {
        height: 160px;
    }
    .footer-top-divider {
        display: none;
    }
    .quote-card {
        margin-top: 0px;
    }
    .footer-main .col-lg-12.d-flex.justify-content-center.gap-5 {
        flex-direction: column;
        gap: 10px !important;
    }
}

html {
    scroll-behavior: smooth;
}
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
a.navbar-brand img {
    width: 150px;
}
.owl-dots {
    display: none;
}
.footer-contact-text a {
    color: #fff;
}
.input-group .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  width: 1%;
}






.quote-card .input-group .wpcf7-form-control-wrap {
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin: 0;
}



/* Book Now button par bolt icon (CF7 submit ke andar <i> nahi daal sakte) */




#book-btn::before {
  content: "\f0e7";              /* fa-bolt */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
}

/* CF7 ki "Thank you" message ko theek se dikhane ke liye */
.quote-card .wpcf7-response-output {
  margin: 0.75rem 0 0;
  border-radius: 8px;
}


.quote-card .wpcf7-form-control-wrap,
.quote-card .wpcf7-form-control {
  display: block;
  width: 100%;
}
.screen-reader-response p, .screen-reader-response li {
    color: #fff;
}

span.wpcf7-not-valid-tip {
    color: #fff;
}
.quote-card form p{
	margin-bottom: 0px;
}
.quote-card form br{
	display:none;
}