:root {
    --bg: #05070d;
    --bg-alt: #101620;
    --panel: rgba(18, 26, 44, 0.92);
    --surface: rgba(255, 255, 255, 0.04);
    --text: #f5f2ed;
    --muted: #9a98a4;
    --gold: #d8ab65;
    --gold-soft: #e1b879;
    --copper: #b77d54;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius: 20px;
    font-family: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    min-width: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: radial-gradient(circle at top, rgba(255, 214, 143, 0.06), transparent 32%),
                linear-gradient(180deg, #070b11 0%, #05070d 100%);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(216, 171, 101, 0.38);
    outline-offset: 2px;
}

nav {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
    background: rgba(5, 7, 13, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#nav {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.nav-logo span {
    color: var(--text);
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--muted);
    font-size: 0.92rem;
    padding: 0.8rem 1rem;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
    color: var(--gold-soft);
    transform: translateY(-1px);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: #05070d;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nav-cta:hover {
    background: linear-gradient(135deg, var(--white), #d99f71);
}

.nav-links a.nav-active {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 2px solid var(--gold);
}

.nav-links a.nav-active:hover {
    color: var(--gold-soft);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
    width: 2.2rem;
    height: 2.2rem;
    position: relative;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 999px;
    position: absolute;
    left: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) {
    top: 0.55rem;
}

.nav-toggle span:nth-child(2) {
    top: 1rem;
}

.nav-toggle span:nth-child(3) {
    top: 1.45rem;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(0.45rem) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-0.45rem) rotate(-45deg);
}

#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    z-index: -1;
}

.hero-bg-inner {
    width: 100%;
    height: 80%;
    background-image: url('../images/BG.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 em {
    color: var(--gold);
    font-style: normal;
}

.silver-text {
    color: #C0C0C0;
}

.hero-sub {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 1rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: #05070d;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-soft), #d99f71);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(216, 171, 101, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-services {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 600px;
}

.marquee-content {
    display: inline-flex;
    gap: 2rem;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.hero-svc-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.hero-svc-btn:hover {
    color: var(--gold);
}

.svc-icon {
    font-size: 1.2rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 1rem 0;
}

.trust-card {
    position: relative;
    min-height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.trust-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 13, 0.35), rgba(5, 7, 13, 0.85));
}

.trust-card__copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: #fff;
    z-index: 1;
}

.trust-card__copy .ti {
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
}

.trust-card__copy p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.trust-card--fleet {
    background-image: url('../images/fleet.png');
}

.trust-card--support {
    background-image: url('../images/24 7.png');
}

.trust-card--insured {
    background-image: url('../images/L&I.png');
}

.trust-card--rated {
    background-image: url('../images/star.png');
}

.trust-card--airport {
    background-image: url('../images/airport.png');
}

.ti {
    font-size: 1.2rem;
}

.eyebrow {
    display: block;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--copper));
    margin: 1.5rem 0 2rem;
}

.section-sub {
    max-width: 600px;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#events {
    padding: 4rem 1.5rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.event-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.event-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(216, 171, 101, 0.12);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.event-date {
    margin: 0;
    color: var(--gold-soft);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-desc {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.svc-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.svc-num {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.svc-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.svc-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.svc-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.svc-link:hover {
    color: var(--gold-soft);
}

.fade-up {
    animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* REVIEWS SECTION */
#reviews {
    padding: 4rem 1.5rem;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
}

.reviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.review-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.review-stars {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.review-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.review-form {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
}

.review-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.review-form p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.form-review {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    color: var(--text);
    -webkit-text-fill-color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.form-row select option {
    color: var(--text);
    background: rgba(5, 7, 13, 0.96);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(216, 171, 101, 0.28);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 900px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-list {
        grid-template-columns: 1fr;
    }
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.fleet-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.fleet-card img {
    width: 100%;
    height: 125px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.fleet-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.fleet-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-card img {
    width: 23%;
    height: auto;
    border-radius: 8px;
    margin-right: 1%;
    margin-bottom: 0;
}

.service-card img:last-child {
    margin-right: 0;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-section {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

.image-card {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s ease;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.service-section p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Bridal services specific 2x2 grid layout */
.bridal-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
    aspect-ratio: 1 / 1; /* Make the grid square */
}

.bridal-grid .image-card {
    height: 100% !important;
    width: 100% !important;
}

.bridal-grid .image-card img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* Tours services specific 2x2 grid layout */
.tours-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
    aspect-ratio: 1 / 1; /* Make the grid square */
}

.tours-grid .image-card {
    height: 100% !important;
    width: 100% !important;
}

.tours-grid .image-card img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

/* Concierge single images - cover entire card (excluding bridal) */
.service-section:not(:has(h2:contains("BRIDAL"))) .images-grid:has(.image-card:only-child) .image-card {
    height: 300px !important;
}

.service-section:not(:has(h2:contains("BRIDAL"))) .images-grid:has(.image-card:only-child) .image-card img {
    object-fit: cover !important;
    width: 100% !important;
    height: 100% !important;
}

.service-note {
    color: var(--text);
    font-style: normal;
    font-weight: 600;
    margin-top: -0.5rem;
}

.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

section {
    padding: 3.5rem 1.5rem;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    border: 4px solid rgba(216, 171, 101, 0.3);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#booking {
    min-height: calc(100vh - 96px);
    display: grid;
    place-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.booking-content {
    width: min(100%, 960px);
    background: linear-gradient(180deg, rgba(18, 26, 44, 0.98), rgba(7, 9, 13, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(14px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem;
}

.booking-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.02;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
    color: var(--text);
}

.booking-content p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

.contact-content {
    width: min(100%, 960px);
    background: linear-gradient(180deg, rgba(18, 26, 44, 0.98), rgba(7, 9, 13, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    backdrop-filter: blur(14px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem;
    margin: 0 auto;
}

.contact-copy {
    display: grid;
    gap: 1.25rem;
}

.contact-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.02;
    margin-bottom: 0.75rem;
    letter-spacing: -0.04em;
    color: var(--text);
}

.contact-copy p {
    max-width: 680px;
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

form {
    display: grid;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    gap: 0.55rem;
}

label {
    color: var(--muted);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

input,
select {
    width: 100%;
    padding: 1rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    color: var(--text);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.personalized-vehicles input {
    width: 100%;
    padding: 1rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    color: var(--text);
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

input:hover,
select:hover,
.personalized-vehicles input:hover {
    border-color: rgba(216, 171, 101, 0.28);
}

input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: #05070d;
    padding: 1rem 1.9rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(216, 171, 101, 0.24);
}

footer {
    padding: 2rem 1.5rem 3rem;
    background: rgba(5, 7, 13, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1.75rem;
}

.footer-brand h4,
.footer-col h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand p,
.footer-col ul {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.85rem;
}

.footer-col a {
    color: var(--muted);
}

.footer-col a:hover {
    color: var(--gold-soft);
}

.social-links {
    margin-top: 1.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .booking-content,
    .contact-content {
        padding: 2.5rem 1.5rem;
        width: 100%;
    }

    .contact-copy p,
    .booking-content p {
        max-width: 100%;
    }

    form {
        gap: 1rem;
    }

    #nav {
        padding: 1rem 1rem;
    }

    .nav-links {
        justify-content: flex-end;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-links a {
        padding: 0.75rem 0.9rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    #nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0.85rem 1rem;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        margin: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 0.9rem 1rem;
        white-space: normal;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
    }

    .booking-content,
    .contact-content {
        width: 100%;
        max-width: 100%;
        padding: 1.75rem 1.25rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .booking-content h1,
    .contact-copy h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .form-row {
        gap: 0.85rem;
    }

    .hero-content {
        padding: 0 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-badge {
        padding: 0.45rem 1rem;
        font-size: 0.85rem;
    }

    .hero-sub {
        font-size: 1.05rem;
    }

    .footer-bottom {
        padding-top: 1rem;
    }
}

@media (max-width: 520px) {
    .nav-links {
        gap: 0.65rem;
    }

    .nav-links a {
        padding: 0.85rem 0.9rem;
    }

    .booking-content,
    .contact-content {
        padding: 1.25rem 1rem;
        border-radius: 16px;
    }

    input,
    select,
    textarea {
        padding: 0.95rem 1rem;
    }

    section {
        padding: 1.5rem 0.75rem;
    }

    label {
        font-size: 0.85rem;
    }

    .hero-actions {
        gap: 0.75rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-sub {
        margin-bottom: 1.5rem;
    }

    .hero-actions .btn {
        font-size: 0.95rem;
    }

    .footer-grid {
        gap: 1rem;
    }
}

/* Page-specific background images */
.page-home body {
    background-image: url('../images/home-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-about body {
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-booking body {
    background-image: url('../images/booking-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-concierge body {
    background-image: url('../images/concierge-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-contact body {
    background-image: url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-fleet body {
    background-image: url('../images/fleet-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-tours body {
    background-image: url('../images/tours-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Range Rover images */
.img-range-rover-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.img-range-rover-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}