/* ======================== VARIABLES & BASE ======================== */
/* Using the same refined palette from before */
:root {
    --gold-color: #D4AF37;
    --gold-color-alt: #E5C100;
    --dark-color: #121212;
    --dark-blur-color: rgba(18, 18, 18, 0.6); /* Slightly less transparent for better readability */
    --text-color: #EAEAEA;
    --white-color: #FFFFFF;
    
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;

    --header-height: 5rem;
    --z-fixed: 100;
}

/* Base styles (body padding-top is critical) */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: clamp(13px, 1.6vw, 16px); }
body {
    font-family: var(--body-font);
    background-color: var(--dark-color);
    color: var(--text-color);
    padding-top: var(--header-height); 
}
a { text-decoration: none !important; }
ul { list-style: none; }
.container { max-width: 1280px; margin-left: auto; margin-right: auto; padding: 0 1.5rem; }

/* Reusable Button (no changes) */
.btn { display: inline-block; padding: 0.8rem 2rem; border-radius: 5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s ease; border: none; cursor: pointer; min-height: 40px; }
.btn--primary { background-color: var(--gold-color); color: var(--dark-color); box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); }
.btn--primary:hover { background-color: var(--gold-color-alt); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(229, 193, 0, 0.3); }

/* ======================== HEADER STYLES (VERSION 3 - PROFESSIONAL) ======================== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: transparent;
    transition: background-color 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.header--scroll {
    background-color: var(--dark-blur-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header__container {
    height: var(--header-height);
    display: flex;
    justify-content: space-between; /* This is KEY: Pushes logo and nav to opposite ends */
    align-items: center;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    line-height: 1;
    text-decoration: none;
    vertical-align: middle;
}

.header__logo img {
    display: block;
    height: clamp(36px, 4.2vw, 64px);
    width: auto;
    transition: transform .18s ease;
}

.brand-text {
    display: inline-block;
    font-family: var(--heading-font, 'Playfair Display', serif);
    font-weight: 700;
    font-size: clamp(14px, 1.4vw, 18px);
    letter-spacing: 0.2px;
    white-space: nowrap;
    line-height: 1;
    margin-left: 0;
    user-select: none;
}

.brand-text .brand-accent {
    color: #b08b3d;
    margin-right: 0.12rem;
}

.header__logo:hover {
    transform: scale(1.05);
}
.header__logo img {
    height: 40px;
    width: auto;
    display: block; /* Fixes potential spacing issues */
}

.header__toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gold-color);
}

/* ======================== NAVIGATION STYLES (Mobile First) ======================== */
@media screen and (max-width: 992px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--dark-color);
        width: 85%;
        max-width: 400px;
        height: 100%;
        padding: 6rem 1.5rem 2rem;
        z-index: var(--z-fixed);
        transition: right 0.4s ease-in-out;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        display: flex;
        flex-direction: column;
    }
        .header--scroll {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: var(--dark-color) !important; 
    }
    .header__nav-list{
            flex-grow: 1;
            overflow-y: auto;
            padding-right: 0.5rem;
    }
    .header--scroll .header__nav {
        background-color: var(--dark-color);
    }
    .header__nav-item--cta { padding-top: 2rem; }
    .header__nav-item--cta .btn { width: 100%; text-align: center; }
    .header__nav-item--whatsapp {
        order: -1; /* This moves it to the top of the mobile menu */
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .whatsapp-link {
        justify-content: center; /* Center the link in the mobile menu */
    }
    .dropdown__menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
        padding-left: 1.5rem;
        margin-top: 1.5rem;
    }

    /* 2. Add these new rules for the open state */
    .dropdown.submenu-active .dropdown__menu {
        max-height: 500px; /* A value larger than the menu's actual height */
    }

    .dropdown.submenu-active .dropdown__icon {
        transform: rotate(180deg);
    }
}

.header__nav-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.header__nav-link {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 0.5rem;
}

/* --- Active & Hover Link Style --- */
.header__nav-link:hover,
.active-link {
    color: var(--gold-color);
}

.header__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gold-color);
}

.show-menu {
    right: 0;
}

/* ======================== DROPDOWN STYLES ======================== */
.dropdown__icon { font-size: 0.8rem; margin-left: 0.3rem; transition: transform 0.3s; }
.dropdown__menu li { margin-bottom: 1rem; }
.dropdown__link { color: var(--text-color); opacity: 0.8; }

/* Add this new block */
/* ======================== WHATSAPP LINK STYLES ======================== */
.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.whatsapp-link:hover {
    color: #25D366; /* Official WhatsApp Green */
}

.whatsapp-link i {
    font-size: 1.5rem;
    color: #25D366;
}

/* ======================== DESKTOP & TABLET STYLES ======================== */
@media screen and (min-width: 993px) {
    .header__toggle, .header__close {
        display: none;
    }
    
    .header__nav-list {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    .header__nav-item--whatsapp {
        margin-left: auto; /* This is KEY: pushes it away from other links */
        padding-left: 1.5rem;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header__nav-item--cta {
        margin-left: 1rem; /* Adds a bit of space between links and button */
    }

    /* --- Elegant Underline Animation --- */
    .header__nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background-color: var(--gold-color);
        transition: width 0.3s ease;
    }
    .header__nav-link:hover::after,
    .active-link::after {
        width: 100%;
    }

    /* --- Polished Desktop Dropdown --- */
    .dropdown { position: relative; }
    .dropdown__menu {
        position: absolute;
        top: 180%;
        left: -1.5rem;
        background-color: var(--dark-color);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: 8px; /* Slightly more rounded */
        width: 240px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px); /* Start slightly higher */
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        display: block;
    }
    .dropdown:hover .dropdown__menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .dropdown:hover .dropdown__icon { transform: rotate(180deg); }
    .dropdown__menu li { margin-bottom: 0; }
    .dropdown__link { padding: 0.75rem 0; display: block; transition: color 0.3s, transform 0.3s; }
    .dropdown__link:hover { color: var(--gold-color); transform: translateX(5px); }
}

/* -----------------------
   Global fluid & image rules
   ----------------------- */
html { font-size: clamp(13px, 1.6vw, 16px); }
img, svg, picture, video, iframe { max-width: 100%; height: auto; display: block; }
.btn { min-height: 40px; }

/* Reduce container padding slightly on very small screens */
.container { padding-left: clamp(8px, 3vw, 16px); padding-right: clamp(8px, 3vw, 16px); }

/* -----------------------
   Small screen adjustments (<= 420px)
   ----------------------- */
@media (max-width: 420px) {
  :root { --header-height: 4.5rem; }
  body { padding-top: var(--header-height); }

  .header__container { padding: 0 .6rem; gap: .5rem; }
  .header__logo img { height: 34px; }
  .header__toggle { font-size: 1.2rem; }
  .header__nav-list { gap: 1rem; padding: 2.25rem 0.75rem; }
  .header__nav-link { font-size: 0.95rem; padding-bottom: 0.25rem; }
  .header__nav-item--cta .btn { padding: 0.55rem 0.85rem; font-size: 0.78rem; }

  .footer__content { gap: 1.25rem; }
  .footer__logo img { height: 34px; }

  /* Compact form and contact areas */
  .form-row { grid-template-columns: 1fr; gap: 0.75rem; }
  .contact-form button { align-self: stretch; }

  /* Reduce hero spacing */
  .hero__grid { gap: 0.75rem; }
  .hero__title { font-size: clamp(1.15rem, 5vw, 1.6rem); }
  .hero__subtitle { font-size: clamp(.85rem, 3.5vw, 1rem); }

  /* Reduce tag/button paddings */
  .service-slide__tags .tag,
  .brand-card__button,
  .btn { padding: .4rem .6rem; }
}

/* -----------------------
   Extra small screens (<= 360px)
   ----------------------- */
@media (max-width: 360px) {
  html { font-size: 13px; }

  .header__logo img { height: 30px; }
  .header__toggle { font-size: 1.05rem; }
  .header__nav-list { gap: 0.75rem; padding: 2rem 0.5rem; }

  /* Make CTA take full width and smaller text */
  .header__nav-item--cta .btn { width: 100%; padding: .45rem .5rem; font-size: .75rem; }

  /* Tighten card and grid gaps site-wide */
  .brands__grid,
  .fleet__grid,
  .intro__grid,
  .services-swiper,
  .why-choose-us__grid,
  .contact-grid { gap: 0.6rem; grid-template-columns: 1fr; }

  .hero__form-container,
  .iframe-wrapper { width: 100%; max-width: 100%; }

  .footer__socials { gap: 1rem; }
  .footer__logo img { height: 30px; }

  /* Smaller form controls for fit */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.95rem; padding: 0.6rem; }

  /* Compact pagination/bullets */
  .services-swiper .swiper-pagination-bullet { width: 6px; height: 6px; }
}

/* -----------------------
   Ultra small phones (<= 320px)
   ----------------------- */
@media (max-width: 320px) {
  html { font-size: 12.5px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .header__nav-link { font-size: 0.85rem; }
  .btn { padding: .45rem .5rem; font-size: .72rem; }
  .hero__title { font-size: clamp(1rem, 6vw, 1.4rem); }
  .hero__subtitle { font-size: clamp(.8rem, 4vw, .95rem); }

  /* Force long nav items to wrap instead of overflow */
  .header__nav-link { white-space: normal; word-break: break-word; }

  /* Ensure overlays and iframe controls are reachable */
  .iframe-overlay { font-size: .85rem; padding: .45rem; }
}

/* -----------------------
   Helpful utility fixes
   ----------------------- */
/* Ensure dropdown menus and nav use full width on very small devices */
@media (max-width: 768px) {
  /* Keep off-canvas behavior by default; only show when .show-menu is present */
  .header__nav {
    width: 100%;
    max-width: 100%;
    /* do NOT set left/right here so the earlier right: -100% stays effective */
  }

  /* When JS toggles the menu add .show-menu (or .header__nav.show-menu) to bring it onscreen */
  .header__nav.show-menu,
  .show-menu {
    right: 0;
    left: 0;
  }

  .dropdown__menu { left: 0; right: 0; }
}

/* Keep interactive targets tappable */
a, button, .btn, .header__toggle, .header__close { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* End of responsive additions */

/* ======================== FOOTER ======================== */
.footer {
    background-color: var(--dark-color);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer__logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.footer__title {
    font-family: var(--heading-font);
    color: var(--gold-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer__list li {
    margin-bottom: 0.75rem;
}

.footer__link {
    color: var(--text-color);
    opacity: 0.8;
    transition: color 0.3s, padding-left 0.3s;
}

.footer__link:hover {
    color: var(--gold-color);
    opacity: 1;
    padding-left: 5px;
}

.footer__list--contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__list--contact i {
    color: var(--gold-color);
}

.footer__socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.footer__social-link {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    transition: color 0.3s, transform 0.3s;
}

.footer__social-link:hover {
    color: var(--gold-color);
    opacity: 1;
    transform: translateY(-3px);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allows stacking on small screens */
    gap: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer__legal-links {
    display: flex;
    gap: 1rem;
}

/* --- Responsive Stacking for Footer --- */
@media screen and (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr 1fr; /* Two columns on tablet */
    }
    .footer__column--logo {
        grid-column: 1 / -1; /* Logo spans full width on tablet */
    }
}

@media screen and (max-width: 576px) {
    .footer__content {
        grid-template-columns: 1fr; /* Single column on mobile */
        text-align: center;
    }
    .footer__list--contact li {
        justify-content: center;
    }
    .footer__socials {
        justify-content: center;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Footer: center logo, brand text and tagline */
.footer__column--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.footer__logo img {
  height: clamp(56px, 6.6vw, 88px); /* desktop bigger, scales down on mobile */
  width: auto;
  display: block;
}

/* text below footer logo */
.footer-brand-text {
  font-family: var(--heading-font, 'Playfair Display', serif);
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1;
  display: block;
  user-select: none;
}

/* accent word in brand */
.footer-brand-text .brand-accent {
  color: #b08b3d;
  margin-right: .08rem;
}

/* ensure existing tagline is centered and slightly muted */
.footer__tagline {
  margin-top: 1rem;
  color: rgba(234,234,234,0.85);
  font-size: 0.95rem;
}

/* small screens: reduce logo height to keep footer tidy */
@media (max-width: 420px) {
  .footer__logo img { height: 64px; }
  .footer-brand-text { font-size: 14px; }
  .footer__tagline { font-size: 0.92rem; }
}
/* End footer brand adjustments */

/* ======================== HERO SECTION (with Background Slider) ======================== */
.hero {
    position: relative;
    padding: 8rem 0;
    display: flex;
    align-items: center;
    margin-top: calc(-1 * var(--header-height));
    min-height: 100vh;
    overflow: hidden; /* Hide anything that might bleed out */
}

/* --- The Slider Container --- */
.hero__background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* --- Individual Slides --- */
.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.2s ease-in-out; /* The smooth fade effect */
}

/* --- Active Slide --- */
.hero__slide.slide-active {
    opacity: 1;
    transition-duration: 0.5s; /* How long the image stays zoomed out */
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2; /* Sits on top of the slider */
}

/* --- The Two-Column Grid --- */
.hero__grid {
    position: relative;
    z-index: 3; /* Sits on top of the overlay */
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}
/* ... The rest of your hero CSS (.hero__content, .hero__form-container, etc.) remains unchanged ... */

/* --- Left Column: Content --- */
.hero__content {
    color: var(--white-color);
}

.hero__title {
    font-family: var(--heading-font);
    color: var(--gold-color);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero__cta {
    padding: 1rem 3rem;
    font-size: 1rem;
}

/* Find and replace this entire block for a clean update */
/* --- Right Column: Booking Form --- */
.hero__form-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 500px;
    display: flex;
    flex-direction: column;
}

.hero__form-header {
    background-color: var(--dark-color);
    padding: 1rem;
    text-align: center;
}

.hero__form-header h3 {
    color: var(--gold-color);
    margin: 0;
    font-family: var(--body-font);
    font-size: 1.1rem;
}

/* --- NEW CSS FOR THE OVERLAY --- */
.iframe-wrapper {
    position: relative; /* This is crucial for positioning the overlay */
    width: 100%;
    height: 100%;
}

.hero__form-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(18, 18, 18, 0); /* Starts fully transparent */
    opacity: 0; /* Hidden by default */
    transition: background-color 0.3s ease, opacity 0.3s ease;
    
    /* Center the content inside */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Show overlay on hover --- */
.iframe-wrapper:hover .iframe-overlay {
    background-color: rgba(18, 18, 18, 0.7);
    opacity: 1;
}

.overlay-content {
    color: var(--white-color);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.overlay-content i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

/* ==================== RESPONSIVE BEHAVIOR ==================== */
@media screen and (max-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr; /* Stack to a single column */
    }

    .hero__form-container {
        display: none; /* Hide the form completely on mobile and tablet */
    }

    .hero__content {
        text-align: center; /* Center the text on mobile */
        max-width: 600px;
        margin: 0 auto; /* Center the content block */
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ======================== BRANDS SECTION ======================== */
.brands-section {
    padding: 6rem 0;
    background-color: var(--dark-color); /* Ensures a solid background */
}

/* --- Reusable Section Header Styling --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--heading-font);
    color: var(--gold-color);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.7;
}

/* --- The Grid for the Cards --- */
.brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* --- Individual Card Styling --- */
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03); /* A very subtle background */
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color);
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.brand-card__logo {
    height: 80px; /* Adjust as needed */
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.brand-card__logo img {
    max-height: 100%;
    width: auto;
}

.brand-card__title {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.brand-card__button {
    font-weight: 500;
    color: var(--gold-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.brand-card:hover .brand-card__button {
    gap: 1rem; /* Arrow moves away on hover for a nice effect */
}

/* --- Responsive Behavior for Brands Section --- */
@media screen and (max-width: 992px) {
    .brands__grid {
        grid-template-columns: 1fr; /* Stack to a single column */
    }
}


/* ======================== INTRODUCTION SECTION ======================== */
.intro-section {
    padding: 6rem 0;
    background-color: #f4f4f4; /* A soft, light grey background */
    color: var(--dark-color); /* Switch to dark text for readability */
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro__image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* We need to adjust our reusable header for a light theme and left alignment */
.section-header--left {
    text-align: left;
}
.section-header--left .section-title {
    color: var(--dark-color); /* Dark title on light background */
}
.section-header--left .section-subtitle {
    margin: 0 0 1.5rem 0; /* Adjust margins for left alignment */
    font-size: 1rem;
    color: #555; /* A softer grey for the subtitle */
}

.intro__text {
    color: #333;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* --- New Secondary Button Style --- */
.btn--secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    box-shadow: none;
}

.btn--secondary:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: none; /* No lift effect needed for this style */
    box-shadow: none;
}

/* --- Responsive Behavior for Intro Section --- */
@media screen and (max-width: 992px) {
    .intro__grid {
        grid-template-columns: 1fr; /* Stack to a single column */
        gap: 3rem;
    }
}



/* ======================== SERVICES CAROUSEL SECTION ======================== */
.services-section {
    padding: 6rem 0;
    background-color: #f0f0f0; /* The light background from the reference */
}

.services-swiper {
    width: 100%;
    height: 600px; /* Adjust height as needed */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.service-slide {
    background-size: cover;
    background-position: center;
    color: var(--white-color);
}

.service-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
}

.service-slide__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Aligns content to the bottom */
    padding: 3rem;
    max-width: 650px;
}

.service-slide__title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white-color);
    line-height: 1.2;
    margin: 0;
}

.title-underline {
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--gold-color);
    margin: 1.5rem 0;
}

.service-slide__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-slide__tags {
    display: inline-flex;
    flex-wrap: nowrap;
    margin-bottom: 5rem;
}

.service-slide__tags .tag {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dark-color);
    padding: 0.6rem 1rem; /* Slightly increased padding for a better look */
    font-size: 0.9rem;
    font-weight: 500;
    align-content: center;
    min-height: 4rem;
    border-radius: 0; /* Reset radius for all tags by default */
}

/* Add a subtle separator line between tags */
.service-slide__tags .tag:not(:last-child) {
    border-right: 1px solid rgba(18, 18, 18, 0.2); /* Faint line using our dark color */
}

/* Apply radius ONLY to the top-left and bottom-left of the FIRST tag */
.service-slide__tags .tag:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

/* Apply radius ONLY to the top-right and bottom-right of the LAST tag */
.service-slide__tags .tag:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

/* --- Custom Swiper Pagination Dots --- */
.services-swiper .swiper-pagination {
    bottom: 30px !important;
    left: 50%; /* <-- UPDATED */
    transform: translateX(-50%); /* <-- ADD THIS */
    width: auto; /* This can remain */
}

.services-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--white-color);
    opacity: 0.5;
    transition: opacity 0.3s, background-color 0.3s;
}

.services-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--gold-color);
}

/* --- Responsive Adjustments --- */
@media screen and (max-width: 768px) {
    .service-slide__tags .tag {
        padding: 0.5rem 0.6rem; /* Tighter padding */
        font-size: 0.75rem;     /* Smaller font */
    }
    .services-swiper {
        height: 550px;
    }
    .service-slide__content {
        padding: 2rem;
    }
    .services-swiper .swiper-pagination {
        left: 50%;
    }
}


/* ======================== CTA BANNER SECTION ======================== */
.cta-banner {
    padding: 6rem 0;
    position: relative;
    
    /* --- The Parallax Background Effect --- */
    background-image: url('../assets/images/63.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the parallax effect */
}

/* --- Dark Overlay --- */
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

/* --- Content Box --- */
.cta-banner__content {
    position: relative; /* Sits on top of the overlay */
    z-index: 2;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.5); /* Gold border */
    border-radius: 8px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
}

.cta-banner__title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-color);
    margin-bottom: 2.5rem;
}

.cta-banner__contact-details {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.cta-banner__contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cta-banner__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s ease, transform 0.12s ease;
  padding: 0.08rem 0;
  cursor: pointer;
}

.cta-banner__contact-link i {
  font-size: 1.05rem;
  color: inherit;
}

.cta-banner__contact-link:hover {
  color: var(--gold-color);
  transform: translateY(-1px);
}

/* Multiple phone numbers wrapper */
.cta-phone-links {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.cta-phone-links a {
  color: inherit;
  text-decoration: none;
  padding: 0 0.12rem;
  transition: color 0.18s ease;
}

.cta-phone-links a:hover {
  color: var(--gold-color);
}

.cta-banner__button {
    padding: 1rem 3rem;
    font-size: 1rem;
}

/* --- Responsive Adjustments --- */
@media screen and (max-width: 576px) {
    .cta-banner__content {
        padding: 2rem;
    }
  .cta-banner__contact-details {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cta-banner__contact-details .contact-item {
    justify-content: center;
    width: 100%;
  }

  .cta-banner__contact-link {
    font-size: 0.98rem;
  }
}

/* ======================== AREAS WE COVER SECTION ======================== */
.areas-section {
    padding: 6rem 0;
    background-color: var(--dark-color);
}

.areas__grid {
    display: grid;
    /* --- Automatic Responsive Grid --- */
    /* Creates as many 280px columns as fit, and makes them share the space */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.area-card {
    position: relative;
    height: 380px;
    border-radius: 8px;
    overflow: hidden; /* Important for keeping the overlay and image inside the rounded corners */
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.area-card:hover {
    transform: translateY(-10px);
}

.area-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
    transition: background-color 0.3s ease;
}

.area-card:hover .area-card__overlay {
    background-color: rgba(0,0,0,0.2); /* Darkens the whole card slightly on hover */
}

.area-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    z-index: 2;
    color: var(--white-color);
}

.area-card__title {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: var(--white-color);
    margin: 0 0 0.25rem 0;
}

.area-card__description {
    font-size: 1rem;
    color: var(--gold-color);
    opacity: 0.9;
}

/* ======================== WHY CHOOSE US SECTION ======================== */
.why-choose-us-section {
    padding: 6rem 0;
    background-color: #f4f4f4; /* Light theme background */
}

/* We need to override the default dark-theme styles for our reusable section header */
.why-choose-us-section .section-title,
.fleet-grid-section .section-title{
    color: var(--dark-color);
}
.why-choose-us-section .section-subtitle,
.fleet-grid-section .section-subtitle {
    color: #555;
}

.why-choose-us__grid {
    display: grid;
    /* Two columns on desktop, adapts to one on mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: var(--white-color);
    padding: 2.5rem 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-card__icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card__title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.feature-card__text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.little-right{
    padding-left: 1rem;
}

.why-choose-us__cta {
    text-align: center;
    margin-top: 4rem;
}


/* ==========================================================================
   CORPORATE PAGE STYLES
   ========================================================================== */

/* ======================== CORPORATE HERO ======================== */
.corp-hero {
    padding: 6rem 0;
    background-color: var(--dark-color); /* CHANGED */
    color: var(--text-color);             /* CHANGED */
    margin-top: calc(-1 * var(--header-height));
}
.corp-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.corp-hero__title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color); /* CHANGED */
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.corp-hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color); /* CHANGED */
    opacity: 0.9;             /* ADDED for better text hierarchy */
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.corp-hero__image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Adjusted shadow for dark theme */
}

/* ======================== CORPORATE ACCOUNTS ======================== */
.corp-accounts-section {
    padding: 6rem 0;
    background-color: var(--white-color);
}
.corp-accounts-section .section-title {
    color: var(--dark-color);
}
.corp-accounts-section .section-subtitle {
    color: #555;
}

/* ======================== FEATURED SERVICES ======================== */
.featured-services-section {
    padding: 6rem 0;
    background-color: var(--dark-color);
}
.featured-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.service-card {
    background-color: var(--dark-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.service-card__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
.service-card__content {
    padding: 2rem;
}
.service-card__title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 1rem;
}
.service-card__text {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.7;
}

/* --- Responsive adjustments for corporate page --- */
@media screen and (max-width: 992px) {
    .corp-hero__grid {
        grid-template-columns: 1fr; /* Stack hero content */
    }
    .corp-hero__image-container {
        order: -1; /* Move image to the top on mobile */
        margin-bottom: 2rem;
    }
    .featured-services__grid {
        grid-template-columns: 1fr; /* Stack service cards */
    }
}



/* ==========================================================================
   AIRPORT PAGE STYLES
   ========================================================================== */

/* ======================== AIRPORT HERO (Split Layout) ======================== */
.airport-hero-split {
    padding: 6rem 0;
    background-color: var(--dark-color); /* CHANGED */
    color: var(--text-color);             /* CHANGED */
    margin-top: calc(-1 * var(--header-height));
}
.airport-hero-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.airport-hero-split__title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color); /* CHANGED */
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.airport-hero-split__subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color); /* CHANGED */
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.airport-hero-split__image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Adjusted for dark theme */
}

/* ======================== AIRPORT CONTENT ======================== */
.airport-content-section {
    padding: 6rem 0;
    background-color: var(--white-color);
}
.airport-content-section .section-title { color: var(--dark-color); }
.airport-content-section .section-subtitle { color: #555; }

/* ======================== AIRPORTS LIST ======================== */
.airports-list-section {
    padding: 6rem 0;
    background-color: var(--dark-color);
}
.airports__table {
    margin-top: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}
.airports__row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: rgba(255, 255, 255, 0.03);
}
.airports__row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.airports__header {
    background-color: rgba(255, 255, 255, 0.05);
    font-weight: 700;
}
.airports__cell {
    padding: 1rem 1.5rem;
    color: var(--text-color);
}
.airports__header .airports__cell {
    color: var(--gold-color);
}

/* ======================== FEATURES SPLIT ======================== */
.features-split-section {
    padding: 6rem 0;
    background-color: #f4f4f4;
}
.features-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.features-split__title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-color);
    margin-bottom: 3rem;
}
.features-split__cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.feature-card-alt {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}
.feature-card-alt__icon {
    font-size: 2rem;
    color: var(--gold-color);
    margin-top: 5px;
}
.feature-card-alt__title {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}
.feature-card-alt__text {
    color: #555;
    line-height: 1.7;
}
.features-split__image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* --- Responsive for Airport Page --- */
@media screen and (max-width: 992px) {
    .airport-hero-split__grid {
        grid-template-columns: 1fr;
    }
    .airport-hero-split__image-container {
        order: -1;
        margin-bottom: 2rem;
    }
    .features-split__grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 768px) {
    .airports__header { display: none; }
    .airports__row { grid-template-columns: 1fr; }
    .airports__cell {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 1rem;
    }
    .airports__cell::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--gold-color);
    }
}



/* ==========================================================================
   EVENT PAGE STYLES
   ========================================================================== */

/* ======================== EVENT HERO ======================== */
.event-hero-split {
    padding: 6rem 0;
    background-color: var(--dark-color);
    color: var(--text-color);
    margin-top: calc(-1 * var(--header-height));
}
.event-hero-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.event-hero-split__title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.event-hero-split__subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.event-hero-split__image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ======================== EVENT CONTENT ======================== */
.event-content-section {
    padding: 6rem 0;
    background-color: var(--white-color);
}
.event-content-section .section-title { color: var(--dark-color); }
.event-content-section .section-subtitle { color: #555; }

/* ======================== FEATURED SERVICES (LIGHT) ======================== */
.featured-services-light {
    padding: 6rem 0;
    background-color: #f4f4f4;
}
.featured-services-light .section-title {
    color: var(--dark-color);
}
.featured-services-light__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.event-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.event-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.event-card__content {
    padding: 1.5rem;
}
.event-card__title {
    font-family: var(--heading-font);
    color: var(--dark-color);
    margin: 0 0 0.75rem;
}
.event-card__text {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Responsive for Event Page --- */
@media screen and (max-width: 992px) {
    .event-hero-split__grid {
        grid-template-columns: 1fr;
    }
    .event-hero-split__image-container {
        order: -1;
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   PERSONAL HIRE PAGE STYLES
   ========================================================================== */

/* ======================== PERSONAL HERO ======================== */
.personal-hero-split {
    padding: 6rem 0;
    background-color: var(--dark-color);
    color: var(--text-color);
    margin-top: calc(-1 * var(--header-height));
}
.personal-hero-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.personal-hero-split__title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.personal-hero-split__subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.personal-hero-split__image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ======================== PERSONAL CONTENT ======================== */
.personal-content-section {
    padding: 6rem 0;
    background-color: var(--white-color);
}
.personal-content-section .section-title { color: var(--dark-color); }
.personal-content-section .section-subtitle { color: #555; }

/* ======================== PERSONAL FEATURES ======================== */
.personal-features-section {
    padding: 6rem 0;
    background-color: #f4f4f4;
}
.personal-features__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.personal-features__image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.personal-features__title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}
.personal-features__content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* --- Responsive for Personal Hire Page --- */
@media screen and (max-width: 992px) {
    .personal-hero-split__grid,
    .personal-features__grid {
        grid-template-columns: 1fr;
    }
    .personal-hero-split__image-container {
        order: -1;
        margin-bottom: 2rem;
    }
    .personal-features__grid {
        gap: 3rem;
    }
}


/* ==========================================================================
   SELF-DRIVE PAGE STYLES
   ========================================================================== */

/* ======================== SELF-DRIVE HERO ======================== */
.self-drive-hero-split {
    padding: 6rem 0;
    background-color: var(--dark-color);
    color: var(--text-color);
    margin-top: calc(-1 * var(--header-height));
}
.self-drive-hero-split__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.self-drive-hero-split__title {
    font-family: var(--heading-font); font-size: clamp(2.5rem, 5vw, 3.5rem); color: var(--gold-color); line-height: 1.2; margin-bottom: 1.5rem;
}
.self-drive-hero-split__subtitle {
    font-size: 1.1rem; line-height: 1.8; color: var(--text-color); opacity: 0.9; margin-bottom: 2.5rem; max-width: 600px;
}
.self-drive-hero-split__image-container img {
    width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ======================== SELF-DRIVE CONTENT ======================== */
.self-drive-content-section {
    padding: 6rem 0;
    background-color: var(--white-color);
}
.self-drive-content-section .section-title { color: var(--dark-color); }
.self-drive-content-section .section-subtitle { color: #555; }

/* ======================== REQUIREMENTS SECTION ======================== */
.requirements-section {
    padding: 6rem 0;
    background-color: var(--dark-color);
}

.requirements__grid {
    display: grid;
    /* --- Desktop: 4 columns --- */
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem auto 0;
    max-width: 1100px; /* This "shrinks" the grid container for more breathing room */
}

.req-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.req-card:hover {
    transform: translateY(8px);
    border-color: var(--gold-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.req-card__image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    display: block;
    transition: filter 0.4s ease;
}

.req-card__title {
    color: var(--text-color);
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ======================== BRANDING & MEDIA ======================== */
.branding-media-section {
    padding: 6rem 0;
    background-color: var(--white-color);
}
.branding-media__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.branding-media__image img {
    width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.branding-media__title {
    font-family: var(--heading-font); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--dark-color); margin-bottom: 1.5rem;
}
.branding-media__content p {
    color: #555; line-height: 1.8; margin-bottom: 1.5rem;
}

/* --- Responsive for Self-Drive Page --- */
@media screen and (max-width: 992px) {
    .self-drive-hero-split__grid,
    .branding-media__grid {
        grid-template-columns: 1fr;
    }
    .self-drive-hero-split__image-container {
        order: -1; margin-bottom: 2rem;
    }
    .branding-media__grid {
        gap: 3rem;
    }
    .requirements__grid {
        max-width: 90%; /* Adjust max-width for tablets */
    }
}
@media screen and (max-width: 768px) {
    .requirements__grid {
        /* --- Mobile: The requested 2 columns --- */
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* ==========================================================================
   FLEET PAGE STYLES (v2)
   ========================================================================== */

/* ======================== FLEET HERO ======================== */
.fleet-hero {
    position: relative;
    height: 80vh; /* Taller, more immersive height */
    margin-top: calc(-1 * var(--header-height));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.fleet-hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.fleet-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.fleet-hero__title {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--gold-color);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.fleet-hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white-color);
    opacity: 0.9;
}
.scroll-down-link {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white-color);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}
/* ======================== BRANDS BANNER ======================== */
.brands-banner-section {
    padding: 6rem 0;
    background-color: var(--dark-color);
}
.brands-banner__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.brand-banner-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.brand-banner-card:hover {
    transform: translateY(-8px); /* The "lift" effect */
    border-color: var(--gold-color); /* The border highlight */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* The subtle glow */
}
.brand-banner-card__logo {
    height: 60px;
    margin-bottom: 1.5rem;
}
.brand-banner-card__logo img {
    max-height: 100%;
    width: auto;
}
.brand-banner-card__title {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}
.brand-banner-card__models {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
}

/* ======================== FLEET GRID (LIGHT THEME) ======================== */
.fleet-grid-section {
    padding: 6rem 0;
    background-color: #f4f4f4; /* Light theme */
}
.fleet-grid-section .section-title { color: var(--dark-color); }

.fleet__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Reduced min-width */
    gap: 2rem;
    margin: 4rem auto 0;
    max-width: 1100px;
}

.fleet-card {
    background-color: var(--white-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.fleet-card__image img {
    width: 100%; height: 240px; object-fit: contain; display: block;
}
.fleet-card__content {
    padding: 1.5rem;
}
.fleet-card__title {
    font-family: var(--heading-font); font-size: 1.5rem; color: var(--dark-color); margin: 0 0 1rem;
}
.fleet-card__specs, .fleet-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}
.fleet-card__amenities {
    border-bottom: none;
    margin-bottom: 1.5rem;
}
.fleet-card__specs span, .fleet-card__amenities span {
    display: flex; align-items: center; gap: 0.5rem; font-weight: 500;
}
.fleet-card__specs i, .fleet-card__amenities i {
    color: var(--gold-color);
    font-size: 1.1rem;
}
.fleet-card__buttons {
    display: flex;
    gap: 0.75rem;
}
.btn--outline-dark {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid #e0e0e0;
    box-shadow: none;
}
.btn--outline-dark:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    border-color: var(--dark-color);
    transform: none;
}

/* ==========================================================================
   CAR DETAIL PAGE STYLES
   ========================================================================== */

/* ======================== CAR DETAIL HEADER ======================== */
.car-detail-header {
    padding: 8rem 0; /* More padding than a standard page header */
    position: relative;
    background-size: cover; background-position: center;
    margin-top: calc(-1 * var(--header-height)); text-align: center;
}
.car-detail-header__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.car-detail-header__title {
    position: relative; z-index: 2;
    font-family: var(--heading-font); font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--gold-color);
}

/* ======================== CAR DETAIL MAIN ======================== */
.car-detail-main {
    padding: 6rem 0;
    background-color: var(--dark-color);
}
.car-detail-main__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.car-detail-main__title {
    font-family: var(--heading-font); font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color); margin-bottom: 1.5rem;
}
.car-detail-main__content p {
    color: var(--text-color); opacity: 0.9; line-height: 1.8; margin-bottom: 1.5rem;
}
.car-detail-main__buttons {
    display: flex; gap: 1rem; margin-top: 2.5rem;
}
.btn--outline-gold {
    background-color: transparent; color: var(--gold-color);
    border: 2px solid var(--gold-color); box-shadow: none;
}
.btn--outline-gold:hover {
    background-color: var(--gold-color); color: var(--dark-color);
    border-color: var(--gold-color); transform: none;
}
.car-detail-main__image img {
    width: 100%; border-radius: 8px;
}

/* ======================== CAR FEATURES ======================== */
.car-features-section {
    padding: 6rem 0; background-color: #f4f4f4;
}
.car-features-section .section-title { color: var(--dark-color); }
.car-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Compact cards */
    gap: 1.5rem; margin-top: 4rem;
}
.spec-card {
    background-color: var(--white-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px; padding: 2rem 1.5rem;
    text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spec-card:hover {
    transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.spec-card__icon {
    font-size: 2.5rem; color: var(--gold-color); margin-bottom: 1rem;
}
.spec-card__value {
    display: block; font-size: 1.25rem; font-weight: 700; color: var(--dark-color);
}
.spec-card__label {
    display: block; font-size: 0.9rem; color: #555;
}

/* --- Responsive for Car Detail Page --- */
@media screen and (max-width: 992px) {
    .car-detail-main__grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 576px) {
    .car-features__grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}


/* ==========================================================================
   OUR STORY PAGE STYLES
   ========================================================================== */

/* ======================== STORY HERO ======================== */
.story-hero-split {
    padding: 6rem 0;
    background-color: var(--dark-color); /* CHANGED */
    color: var(--text-color);             /* CHANGED */
    margin-top: calc(-1 * var(--header-height));
}
.story-hero-split__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-hero-split__title {
    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color); /* CHANGED */
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.story-hero-split__subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color); /* CHANGED */
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
}
.story-hero-split__image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); /* Adjusted for dark theme */
}

/* ======================== STORY CONTENT ======================== */
.story-content-section {
    padding: 6rem 0;
    background-color: var(--white-color);
}
.story-content__container {
    max-width: 800px; /* Constrain width for better readability of long text */
    margin: 0 auto;
    text-align: left;
}
.story-content-section .section-title {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 3rem;
}
.story-content-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 2rem;
}
.story__quote {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--dark-color);
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    border-left: 4px solid var(--gold-color);
    background-color: #f9f9f9;
    font-style: italic;
}

/* --- Responsive for Story Page --- */
@media screen and (max-width: 992px) {
    .story-hero-split__grid {
        grid-template-columns: 1fr;




    }
    .story-hero-split__image-container {
        order: -1; /* This moves the image to the top on mobile */
        margin-bottom: 2rem; /* Add some space below the image */
    }
}


/* ==========================================================================
   BOOKING PAGE STYLES (Dark Theme)
   ========================================================================== */

/* ======================== BOOKING HERO ======================== */
.booking-hero {
    position: relative;
    height: 70vh; /* A substantial but not full-screen height */
    margin-top: calc(-1 * var(--header-height));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.booking-hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.booking-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.booking-hero__title {
    font-family: var(--heading-font);
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--gold-color);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}
.booking-hero__subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white-color);
    opacity: 0.9;
}
/* The scroll-down-link animation is already in your CSS from the Fleet page, so it will work automatically */

/* ======================== BOOKING SECTION (DARK) ======================== */
.booking-section {
    padding: 6rem 0;
    background-color: var(--dark-color); /* Dark theme */
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-intro-text {
    text-align: center;
    color: var(--text-color); /* Light text */
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.booking-iframe-wrapper {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0.25); /* More pronounced shadow on dark bg */
    overflow: hidden;
}

#booking-iframe {
    border: none;
    width: 100%;
}



/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* ======================== CONTACT HERO ======================== */
.contact-hero {
    position: relative; height: 70vh; margin-top: calc(-1 * var(--header-height));
    background-size: cover; background-position: center; display: flex;
    align-items: center; justify-content: center; text-align: center;
}
.contact-hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}
.contact-hero__content { position: relative; z-index: 2; max-width: 800px; }
.contact-hero__title {
    font-family: var(--heading-font); font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--gold-color); text-shadow: 2px 2px 10px rgba(0,0,0,0.5); margin-bottom: 1rem;
}
.contact-hero__subtitle {
    font-size: 1.2rem; line-height: 1.8; color: var(--white-color); opacity: 0.9;
}

/* ======================== MAIN CONTACT SECTION ======================== */
.contact-section { padding: 6rem 0; background-color: var(--dark-color); }
.contact-grid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 4rem; align-items: flex-start;
}
.contact-form-container h2 {
    font-family: var(--heading-font); font-size: 2.5rem; color: var(--gold-color); margin-bottom: 0.5rem;
}
.contact-form-container p { color: var(--text-color); opacity: 0.8; margin-bottom: 3rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
    color: var(--text-color); opacity: 0.9; margin-bottom: 0.5rem; font-size: 0.9rem;
}
.form-group input, .form-group select, .form-group textarea {
    background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem; border-radius: 5px; color: var(--white-color); font-family: var(--body-font); font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--gold-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}
.form-group select option {
    background-color: var(--dark-color);
    color: var(--text-color);
}
.contact-form button { align-self: flex-start; margin-top: 1rem; }
.contact-info-container { display: flex; flex-direction: column; gap: 2rem; }
.info-card {
    background-color: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem; border-radius: 8px;
}
.info-card__icon { font-size: 2rem; color: var(--gold-color); margin-bottom: 1rem; }
.info-card__title { font-family: var(--heading-font); font-size: 1.5rem; color: var(--white-color); margin-bottom: 1rem; }
.info-card__link, .info-card__text {
    display: block; color: var(--text-color); opacity: 0.8; line-height: 1.7; margin-bottom: 0.5rem;
}
.info-card__link:hover { color: var(--gold-color); opacity: 1; }

/* --- Responsive for Contact Page --- */
@media screen and (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 5rem; }
}
@media screen and (max-width: 576px) {
    .form-row { grid-template-columns: 1fr; }
}

/* Header & nav polish: hide toggle when menu is open, keep Services left, center other links,
   increase header/footer logo sizes, preserve mobile centered logo and tap targets */

/* 1) Hide the menu toggle when the off-canvas menu is shown.
   Covers cases where the "show-menu" class may be applied to nav, header, or a global container. */
.header__nav.show-menu ~ .header__toggle,
.header__nav.show-menu + .header__toggle,
.show-menu .header__toggle,
.header.menu-open .header__toggle,
.header__nav.show-menu .header__toggle {
  display: none !important;
  pointer-events: none;
}

/* 2) Keep toggle hidden on desktop (reinforce) */
@media screen and (min-width: 993px) {
  .header__toggle { display: none !important; }
}

/* 3) Desktop nav alignment: center the group but push "services" to the left edge */
@media screen and (min-width: 993px) {
  .header__nav-list {
    display: flex;
    justify-content: center; /* center the main links */
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 880px; /* keeps nav width tidy on very large screens */
    margin: 0 auto;
  }

  /* Make the Services item hug the left side of the nav area */
  .header__nav-item--services {
    margin-right: auto;
    text-align: left;
  }

  /* Keep whatsapp/cta positioned to the right as before */
  .header__nav-item--whatsapp { margin-left: 1rem; }
  .header__nav-item--cta { margin-left: 1rem; }
}

/* 4) Logo sizing — slightly larger everywhere, with graceful scaling */
.header__logo {
  transition: transform 0.25s ease, height 0.25s ease;
}
.header__logo img {
  height: 48px; /* default */
  width: auto;
  display: block;
}

/* Larger header logo on desktop for a more premium feel */
@media screen and (min-width: 993px) {
  .header__logo img { height: 60px; }
}

/* Mobile: keep logo visually centered in the header container (already positioned),
   but ensure toggle remains clickable and not visually crowded */
@media (max-width: 420px) {
  .header__logo img { height: 54px; }
  .header__toggle { width: 48px; height: 48px; }
  .header__container { padding: 0.6rem; }
}

/* 5) Footer logo: increase size and keep centered on small screens */
.footer__logo img {
  height: 56px; /* default larger */
  width: auto;
  transition: height 0.2s ease;
}
@media (max-width: 768px) { .footer__logo img { height: 48px; } }
@media (max-width: 420px) { .footer__logo img { height: 64px; } }

/* 6) Minor touch-target & visual tweaks to keep things elegant */
.header__toggle,
.header__close,
.btn {
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
}

/* 7) Ensure the off-canvas nav still uses the show behavior (no accidental overrides) */
@media (max-width: 768px) {
  .header__nav { right: -100%; left: auto; } /* keep off-canvas hidden by default */
  .header__nav.show-menu,
  .show-menu { right: 0; left: 0; }
}

/* === Layout & Responsiveness fixes: desktop nav, buttons, footer logo on mobile === */

/* Restore clean desktop nav layout and prevent unintended wrapping/clutter */
@media screen and (min-width: 993px) {
  /* Keep header container spacing consistent */
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }

  /* Ensure the off-canvas nav is static in desktop view */
  .header__nav {
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  /* Keep nav links in one row, centered as a group, but allow Services to sit left */
  .header__nav-list {
    display: flex !important;
    flex-direction: row !important;
    gap: 2.5rem !important;
    align-items: center !important;
    margin: 0 auto; /* center the nav group between logo and actions */
    max-width: none; /* override any restrictive max-width */
    width: auto;
  }

  /* Services stays left within the nav group */
  .header__nav-item--services {
    margin-right: auto;
    text-align: left;
  }

  /* Keep whatsapp/cta pinned to the right side */
  .header__nav-item--whatsapp,
  .header__nav-item--cta {
    margin-left: 1rem;
  }

  /* Slightly larger header logo on desktop for a premium look */
  .header__logo img { height: 64px; }
}

/* Button content vertical alignment and consistent sizing */
.btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.45rem;
  line-height: 1;
  box-sizing: border-box;
  padding: 0.7rem 1.25rem; /* gentle normalized padding */
  min-height: 44px;
}

/* Icon/text inside buttons align properly */
.btn i, .btn svg, .btn img {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

/* Ensure header toggle remains hidden on desktop and restores on mobile */
@media screen and (min-width: 993px) {
  .header__toggle { display: none !important; }
}

/* Keep off-canvas behavior intact for mobile/tablet */
@media (max-width: 768px) {
  .header__nav { right: -100%; left: auto; } /* hidden by default */
  .header__nav.show-menu,
  .show-menu { right: 0; left: 0; }
}

/* Protect header and mobile toggle from ScrollReveal transforms */
.header,
.header__container,
.header__logo,
.header__logo * ,
.header__toggle,
.header__toggle * ,
#nav-toggle,
.header__close {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  transition: none !important;
  will-change: auto !important;
  pointer-events: auto; /* keep toggle clickable */
  -webkit-transform: none !important;
  -moz-transform: none !important;
}

/* Ensure toggle stays pinned/right on very small screens */
@media (max-width: 420px) {
  .header__toggle {
    position: relative;
    right: 0;
    margin-left: auto;
    z-index: 9999;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
/* End header protection */

/* ==========================================================================
   POLICY PAGES (Privacy Policy & Terms & Conditions)
   ========================================================================== */

/* ======================== POLICY HERO ======================== */
.policy-hero {
  position: relative;
  height: 70vh;
  margin-top: calc(-1 * var(--header-height));
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.policy-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.policy-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.policy-hero__title {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.policy-hero__subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.3rem);
  color: var(--white-color);
  opacity: 0.9;
  line-height: 1.7;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* ======================== POLICY SECTION ======================== */
.policy-section {
  background-color: var(--dark-color);
  padding: 4rem 0;
}

.policy-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
}

/* --- Table of Contents --- */
.policy-toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--gold-color);
  padding: 1.5rem;
  border-radius: 8px;
  height: fit-content;
}

.policy-toc__title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  color: var(--gold-color);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-toc__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.policy-toc__list li a {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  padding: 0.4rem 0;
  border-left: 2px solid transparent;
  padding-left: 0.75rem;
}

.policy-toc__list li a:hover {
  color: var(--gold-color);
  opacity: 1;
  border-left-color: var(--gold-color);
  transform: translateX(4px);
}

/* --- Policy Body --- */
.policy-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.policy-section-item {
  scroll-margin-top: var(--header-height);
}

.policy-section-title {
  font-family: var(--heading-font);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-color);
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 0.75rem;
}

.policy-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-color), transparent);
}

.policy-subsection-title {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-body p {
  color: var(--text-color);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.policy-body a {
  color: var(--gold-color);
  transition: all 0.2s ease;
  text-decoration: underline;
}

.policy-body a:hover {
  opacity: 0.8;
  text-decoration-thickness: 2px;
}

/* --- Policy Lists --- */
.policy-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.policy-list li {
  color: var(--text-color);
  opacity: 0.9;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
  font-size: 0.98rem;
}

.policy-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-color);
  font-weight: bold;
  font-size: 1.1rem;
}

.policy-list strong {
  color: var(--gold-color);
}

/* --- Contact Info --- */
.policy-contact-info {
  background: rgba(212, 175, 55, 0.06);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.policy-contact-info p {
  margin-bottom: 0.8rem;
  font-size: 0.98rem;
}

.policy-contact-info strong {
  color: var(--gold-color);
}

/* --- Footer Note --- */
.policy-footer-note {
  background: rgba(212, 175, 55, 0.04);
  border-left: 3px solid var(--gold-color);
  padding: 1.5rem;
  border-radius: 6px;
  margin-top: 2rem;
}

.policy-footer-note p {
  font-style: italic;
  opacity: 0.85;
  margin: 0;
}

/* ======================== RESPONSIVE ADJUSTMENTS ======================== */

/* Tablet & Large Mobile (992px - 992px) */
@media screen and (max-width: 992px) {
  .policy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .policy-toc {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }

  .policy-hero {
    height: 50vh;
  }

  .policy-hero__title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .policy-hero__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }
}

/* Tablet (768px - 992px) */
@media screen and (max-width: 768px) {
  .policy-section {
    padding: 2.5rem 0;
  }

  .policy-hero {
    height: 45vh;
  }

  .policy-hero__title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }

  .policy-hero__subtitle {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }

  .policy-toc {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    border-left: none;
    border-top: 3px solid var(--gold-color);
    padding: 1rem;
    position: relative;
    top: auto;
  }

  .policy-toc__title {
    grid-column: 1 / -1;
    font-size: 1rem;
  }

  .policy-toc__list {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem;
  }

  .policy-toc__list li a {
    font-size: 0.9rem;
    padding: 0.3rem 0;
  }

  .policy-body {
    gap: 2rem;
  }

  .policy-section-title {
    font-size: 1.2rem;
  }

  .policy-subsection-title {
    font-size: 1rem;
    margin-top: 1.25rem;
  }

  .policy-body p {
    font-size: 0.95rem;
  }
}

/* Small Mobile (576px - 768px) */
@media screen and (max-width: 576px) {
  .policy-section {
    padding: 1.5rem 0;
  }

  .policy-hero {
    height: 40vh;
    margin-top: calc(-1 * var(--header-height));
  }

  .policy-hero__title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  }

  .policy-hero__subtitle {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  }

  .policy-hero__content {
    padding: 1rem;
  }

  .policy-toc {
    grid-template-columns: 1fr;
    padding: 0.8rem;
    gap: 0.6rem;
  }

  .policy-toc__title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .policy-toc__list {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .policy-toc__list li a {
    font-size: 0.87rem;
    padding: 0.3rem 0.5rem;
  }

  .policy-section-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .policy-section-title::after {
    width: 40px;
  }

  .policy-subsection-title {
    font-size: 0.95rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
  }

  .policy-body {
    gap: 1.5rem;
  }

  .policy-body p {
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 0.8rem;
  }

  .policy-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.3rem;
  }

  .policy-contact-info {
    padding: 1rem;
  }

  .policy-contact-info p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .policy-footer-note {
    padding: 1rem;
  }

  .policy-footer-note p {
    font-size: 0.9rem;
  }
}

/* Very Small Mobile (320px - 576px) */
@media screen and (max-width: 420px) {
  .policy-hero {
    height: 35vh;
    margin-top: calc(-1 * var(--header-height) - 0.5rem);
  }

  .policy-hero__title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 0.7rem;
  }

  .policy-hero__subtitle {
    font-size: clamp(0.75rem, 1.2vw, 0.88rem);
    line-height: 1.5;
  }

  .policy-hero__content {
    padding: 0.75rem;
  }

  .policy-toc {
    grid-template-columns: 1fr;
    padding: 0.6rem;
    gap: 0.4rem;
  }

  .policy-toc__title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .policy-toc__list li a {
    font-size: 0.82rem;
    padding: 0.25rem 0.4rem;
  }

  .policy-section {
    padding: 1rem 0;
  }

  .policy-section-title {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .policy-section-title::after {
    width: 35px;
  }

  .policy-subsection-title {
    font-size: 0.9rem;
    margin-top: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .policy-body {
    gap: 1.2rem;
  }

  .policy-body p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.7rem;
  }

  .policy-list li {
    font-size: 0.87rem;
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
  }

  .policy-list li::before {
    font-size: 1rem;
  }

  .policy-contact-info {
    padding: 0.8rem;
  }

  .policy-contact-info p {
    font-size: 0.87rem;
    margin-bottom: 0.5rem;
  }

  .policy-footer-note {
    padding: 0.8rem;
  }

  .policy-footer-note p {
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 360px) {
  .policy-hero {
    height: 32vh;
  }

  .policy-hero__title {
    font-size: 1.2rem;
  }

  .policy-hero__subtitle {
    font-size: 0.75rem;
  }

  .policy-section-title {
    font-size: 0.95rem;
  }

  .policy-body p {
    font-size: 0.88rem;
  }

  .policy-list li {
    font-size: 0.85rem;
  }
}

/* End Policy Pages CSS */
/* ==========================================================================
   FINAL RESPONSIVE & LAYOUT FIXES
   ========================================================================== */

/* --- Fix for Header Scattering on Desktop --- */
@media screen and (min-width: 993px) {
    .header__nav-list {
        gap: 2rem; /* Reduce gap between main nav items */
    }
    .header__nav-link {
        font-size: 0.95rem; /* Slightly reduce font size */
    }
    .header__nav-item--whatsapp {
        padding-left: 1rem;
    }
    .header__nav-item--cta {
        margin-left: 0.75rem;
    }
    .header__nav-item--cta .btn {
        padding: 0.7rem 1.2rem; /* Make CTA button slightly smaller */
        font-size: 0.85rem;
    }
}
@media screen and (min-width: 1200px) {
    .header__nav-list {
        gap: 2.5rem; /* Restore gap on very wide screens */
    }
    .header__nav-link {
        font-size: 1rem; /* Restore font size */
    }
}

/* ==========================================================================
   FINAL DYNAMIC LOCATIONS PAGE STYLES
   ========================================================================== */
.location-hero {
    position: relative; height: 70vh; margin-top: calc(-1 * var(--header-height));
    background-size: cover; background-position: center; display: flex;
    align-items: center; justify-content: center; text-align: center;
}
.location-hero__overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8));
}
.location-hero__content { position: relative; z-index: 2; max-width: 800px; }
.location-hero__title {
    font-family: var(--heading-font); font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--gold-color); text-shadow: 2px 2px 10px rgba(0,0,0,0.5); margin-bottom: 1rem;
}
.location-hero__subtitle {
    font-size: 1.2rem; line-height: 1.8; color: var(--white-color); opacity: 0.9;
}
.faq-section { padding: 6rem 0; background-color: var(--dark-color); }
.faq-container { max-width: 800px; margin: 4rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.faq-question { padding: 1.5rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question h3 { font-family: var(--body-font); font-size: 1.1rem; font-weight: 500; color: var(--white-color); }
.faq-icon { transition: transform 0.3s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-answer p { color: var(--text-color); opacity: 0.8; line-height: 1.7; }
.faq-item.active .faq-answer { padding-bottom: 1.5rem; max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.location-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}
.location-service-item {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.location-service-item__title {
    font-family: var(--heading-font);
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.location-service-item__description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.location-service-item__features-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.location-service-item__features-list li {
    color: #555;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}
.location-service-item__features-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold-color);
    margin-right: 0.75rem;
    margin-top: 4px;
}
@media screen and (min-width: 992px) {
    .location-services__grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   CONCLUSION SECTION REFINEMENTS
   ========================================================================== */

.why-choose-us-section .section-header .section-subtitle {
    color: var(--text-color);
    opacity: 0.9;
}

.conclusion-points-list {
    list-style: none; /* We will use a custom pseudo-element for the bullet */
    padding-left: 3rem; /* THIS CREATES THE INDENTATION */
    margin: 2rem 0;
    display: grid;
    gap: 0.75rem;
}

/* This pseudo-element creates the custom bullet */
.conclusion-points-list li::before {
    content: '•'; /* Standard bullet character */
    font-family: serif; /* Ensures a clean, round bullet */
    position: absolute;
    left: 0;
    top: -2px; /* Fine-tune vertical alignment */
    color: var(--gold-color); /* Brand color for the bullet */
    font-size: 1.5rem; /* Makes the bullet slightly larger and more prominent */
    font-weight: bold;
}
.conclusion-points-list li {
    color: var(--text-color); /* CHANGED */
    opacity: 0.9;             /* ADDED */
    line-height: 1.8;
    padding-left: 1rem;
    position: relative;
}

/* ==========================================================================
   DEFINITIVE HEADER LAYOUT FIXES
   ========================================================================== */

/* --- Tighter spacing for mid-size desktops where scattering occurs --- */
@media screen and (min-width: 993px) and (max-width: 1300px) {
    .header__nav-list {
        gap: 1.2rem; /* Reduce gap between main nav items */
    }
    .header__nav-link {
        font-size: 0.9rem; /* Slightly reduce font size */
        padding: 0.5rem 0.1rem;
        white-space: nowrap; /* Prevent text from wrapping */
    }
    .header__nav-item--whatsapp {
        padding-left: 0.8rem;
        margin-left: auto;
    }
    .header__nav-item--cta {
        margin-left: 0.5rem;
    }
    .header__nav-item--cta .btn {
        padding: 0.7rem 1rem; /* Make CTA button slightly smaller */
        font-size: 0.8rem;
    }
    .whatsapp-link span {
        display: none; /* Hide WhatsApp number to save space */
    }
}

/* --- Restore spacing and text on very wide screens --- */
@media screen and (min-width: 1301px) {
    .header__nav-list {
        gap: 2.5rem;
    }
    .header__nav-link {
        font-size: 1rem;
    }
    .whatsapp-link span {
        display: inline; /* Show WhatsApp number again */
    }
    .header__nav-item--cta .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}