/* ================================================================
   GANGULY CABS — Main Stylesheet
   Premium Heritage Mobility | Est. 1994
   ================================================================ */

/* ----------------------------------------------------------------
   TABLE OF CONTENTS
   ----------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   2. CSS Reset & Base Styles
   3. Typography
   4. Layout & Container
   5. Buttons & Links
   6. Form Elements
   7. Header & Navigation
   8. Hero Section
   9. Heritage Section
   10. Services Section
   11. Destinations Section
   12. Why Us Section
   13. Testimonials Section
   14. Quick Booking Section
   15. CTA Banner
   16. Footer
   17. Modals
   18. WhatsApp Float
   19. Utility Classes
   ---------------------------------------------------------------- */

/* ================================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ================================================================ */

:root {
    /* -------- Primary Colors -------- */
    --color-emerald: #0F6B57;
    --color-emerald-dark: #0A5A48;
    --color-emerald-light: #148F73;
    --color-gold: #C3A74A;
    --color-gold-light: #D4BC6A;
    --color-gold-dark: #A68F3A;
    --color-cream: #F8F6F1;
    --color-cream-dark: #EDE9E0;
    --color-charcoal: #1C1C1C;
    --color-charcoal-light: #2D2D2D;
    
    /* -------- Secondary Colors -------- */
    --color-sand: #E5DFD3;
    --color-beige: #D9D0C1;
    --color-navy: #1A2A3A;
    --color-white: #FFFFFF;
    --color-black: #000000;
    
    /* -------- Text Colors -------- */
    --text-primary: #1C1C1C;
    --text-secondary: #4A4A4A;
    --text-muted: #6B6B6B;
    --text-light: #F8F6F1;
    --text-gold: #C3A74A;
    
    /* -------- Background Colors -------- */
    --bg-primary: #FFFFFF;
    --bg-cream: #F8F6F1;
    --bg-charcoal: #1C1C1C;
    --bg-emerald: #0F6B57;
    
    /* -------- Border Colors -------- */
    --border-light: rgba(0, 0, 0, 0.08);
    --border-medium: rgba(0, 0, 0, 0.12);
    --border-gold: rgba(195, 167, 74, 0.4);
    
    /* -------- Typography -------- */
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes - Desktop */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    --text-5xl: 3rem;        /* 48px */
    --text-6xl: 3.75rem;     /* 60px */
    --text-7xl: 4.5rem;      /* 72px */
    
    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 1.8;
    
    /* Letter Spacing */
    --tracking-tighter: -0.02em;
    --tracking-tight: -0.01em;
    --tracking-normal: 0;
    --tracking-wide: 0.02em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    
    /* -------- Spacing -------- */
    --space-1: 0.25rem;      /* 4px */
    --space-2: 0.5rem;       /* 8px */
    --space-3: 0.75rem;      /* 12px */
    --space-4: 1rem;         /* 16px */
    --space-5: 1.25rem;      /* 20px */
    --space-6: 1.5rem;       /* 24px */
    --space-8: 2rem;         /* 32px */
    --space-10: 2.5rem;      /* 40px */
    --space-12: 3rem;        /* 48px */
    --space-16: 4rem;        /* 64px */
    --space-20: 5rem;        /* 80px */
    --space-24: 6rem;        /* 96px */
    --space-32: 8rem;        /* 128px */
    
    /* -------- Layout -------- */
    --container-max: 1280px;
    --container-narrow: 900px;
    --container-wide: 1440px;
    --container-padding: 1.5rem;
    
    /* -------- Borders & Radius -------- */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* -------- Shadows -------- */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(195, 167, 74, 0.25);
    --shadow-emerald: 0 4px 20px rgba(15, 107, 87, 0.25);
    
    /* -------- Transitions -------- */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-slower: 600ms ease;
    --transition-luxury: 800ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* -------- Z-Index Scale -------- */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-max: 9999;
    
    /* -------- Header Height -------- */
    --header-height: 80px;
    --announcement-height: 36px;
}

/* ================================================================
   2. CSS RESET & BASE STYLES
   ================================================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-regular);
    line-height: var(--leading-normal);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Remove default anchor styles */
a {
    color: inherit;
    text-decoration: none;
}

/* Images */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Form elements */
input, button, textarea, select {
    font: inherit;
    color: inherit;
}

/* Button reset */
button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Remove textarea resize */
textarea {
    resize: vertical;
}

/* Table */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-3) var(--space-6);
    background: var(--color-charcoal);
    color: var(--color-white);
    font-weight: var(--font-medium);
    border-radius: var(--radius-md);
    z-index: var(--z-max);
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: var(--space-4);
}

/* Selection */
::selection {
    background-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* ================================================================
   3. TYPOGRAPHY
   ================================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-wide);
    color: var(--text-primary);
}

h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-medium);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
}

p {
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: var(--font-semibold);
}

em, i {
    font-style: italic;
}

small {
    font-size: var(--text-sm);
}

/* Section Label */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-3);
}

.section-label--gold {
    color: var(--color-gold);
}

/* Gold Divider */
.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: var(--space-6) auto;
}

.gold-line {
    display: block;
    width: 80px;
    height: 1px;
    background: var(--color-gold);
}

/* ================================================================
   4. LAYOUT & CONTAINER
   ================================================================ */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

/* Section Spacing */
.section {
    padding: var(--space-20) 0;
}

.section--cream {
    background-color: var(--bg-cream);
}

.section--charcoal {
    background-color: var(--bg-charcoal);
    color: var(--text-light);
}

.section--charcoal h2,
.section--charcoal h3 {
    color: var(--text-light);
}

/* Section Header */
.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.section__header--light {
    color: var(--text-light);
}

.section__title {
    margin-bottom: var(--space-4);
}

.section__subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.section__header--light .section__subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ================================================================
   5. BUTTONS & LINKS
   ================================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn .icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

/* Primary Button - Gold */
.btn--primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-charcoal);
    border-color: var(--color-gold);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn--primary:active {
    transform: translateY(0);
}

/* Gold Button */
.btn--gold {
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-color: var(--color-gold);
}

.btn--gold:hover {
    background: var(--color-gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

/* Outline Button */
.btn--outline {
    background: transparent;
    color: var(--color-emerald);
    border-color: var(--color-emerald);
}

.btn--outline:hover {
    background: var(--color-emerald);
    color: var(--color-white);
}

/* Outline Light Button */
.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

/* Text Button */
.btn--text {
    padding: var(--space-2) 0;
    background: transparent;
    color: var(--color-emerald);
    border: none;
    text-transform: none;
    letter-spacing: normal;
}

.btn--text:hover {
    color: var(--color-gold);
}

.btn--text:hover .icon {
    transform: translateX(4px);
}

/* Button Sizes */
.btn--small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn--large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn--full {
    width: 100%;
}

/* ================================================================
   6. FORM ELEMENTS
   ================================================================ */

.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-base);
    color: var(--text-primary);
    background-color: var(--color-white);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(195, 167, 74, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-10);
}

.form-textarea {
    min-height: 100px;
}

/* ================================================================
   7. HEADER & NAVIGATION
   ================================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    transition: transform var(--transition-base), background-color var(--transition-base);
}

/* Announcement Bar */
.header__announcement-bar {
    background: var(--color-charcoal);
    padding: var(--space-2) 0;
    text-align: center;
}

.header__announcement-bar p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.header__announcement-bar a {
    color: var(--color-gold);
    font-weight: var(--font-medium);
    transition: color var(--transition-fast);
}

.header__announcement-bar a:hover {
    color: var(--color-gold-light);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.navbar__logo {
    flex-shrink: 0;
}

.navbar__logo-img {
    height: 62px;
    max-height: calc(var(--header-height) - 12px);
    width: auto;
    transition: height var(--transition-base);
}

/* Nav Menu */
.navbar__menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.navbar__link {
    position: relative;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    letter-spacing: var(--tracking-wide);
    transition: color var(--transition-fast);
}

.navbar__link::after {
    content: '✦';
    position: absolute;
    bottom: 1.5px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    font-size: 10px;
    color: var(--color-gold);
    line-height: 1;
    transition: transform var(--transition-base), opacity var(--transition-base);
    opacity: 0;
}

.navbar__link::before {
    content: '';
    position: absolute;
    bottom: 5.7px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    transition: transform var(--transition-base);
    transform-origin: center;
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--color-emerald);
}

.navbar__link.active::after,
.navbar__link:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.navbar__link.active::before,
.navbar__link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Navbar Actions */
.navbar__actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.navbar__phone {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.navbar__phone:hover {
    color: var(--color-emerald);
}

.navbar__phone .icon {
    color: var(--color-gold);
}

/* Navbar CTA */
.navbar__cta {
    padding: var(--space-2) var(--space-5);
}

/* Language Selector */
.navbar__language {
    position: relative;
}

.navbar__language-btn {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.navbar__language-btn:hover {
    border-color: var(--color-gold);
    color: var(--text-primary);
}

.navbar__language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: var(--space-2);
    background: var(--color-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    min-width: 120px;
    z-index: var(--z-dropdown);
}

.navbar__language-btn[aria-expanded="true"] + .navbar__language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar__language-dropdown a {
    display: block;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.navbar__language-dropdown a:hover,
.navbar__language-dropdown a.active {
    background: var(--bg-cream);
    color: var(--color-emerald);
}

/* Mobile Toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    padding: 0;
}

.navbar__toggle-bar {
    width: 100%;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* Scrolled State */
.header.scrolled .navbar {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* ================================================================
   8. HERO SECTION
   ================================================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Remove old .hero__video and .hero__image rules, replace with: */
.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero__image--desktop { display: block; }
.hero__image--mobile  { display: none; }

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(28, 28, 28, 0.35) 0%,
        rgba(28, 28, 28, 0.1) 40%,
        rgba(28, 28, 28, 0.1) 65%,
        rgba(28, 28, 28, 0.45) 100%
    );
}

/* ---- Desktop hero content ---- */
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-top: calc(var(--header-height) + var(--announcement-height) - -1.5rem);
    padding-bottom: 1.65rem;
}

.hero__logo {
    width: 210px;
    height: auto;
    margin-bottom: 0;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    animation: fadeInDown 0.8s var(--transition-luxury) forwards;
}

/* Hide divider on mobile (cleaner look) */
.hero__divider {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s var(--transition-luxury) forwards;
    animation-delay: 0.6s;
}

.hero__divider .gold-line {
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-luxury) forwards;
    animation-delay: 1s;
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.hero__scroll-text {
    display: block;
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    margin-bottom: var(--space-2);
}

.hero__scroll-icon {
    animation: bounceDown 1.75s infinite;
}

/* ================================================================
   HERO — MOBILE OVERRIDES
   ================================================================ */
@media (max-width: 767px) {

    /* Swap posters */
    .hero__image--desktop { display: none; }
    .hero__image--mobile  { display: block; }

    .hero {
        min-height: 100svh; /* use small viewport height on mobile */
        max-height: none;
        align-items: stretch; /* let content flow full height */
    }

    /* Three-zone layout: logo top | (taxi poster middle) | buttons bottom */
    .hero__content {
        justify-content: space-between;
        padding-top: calc(var(--header-height) + var(--announcement-height) + 1.5rem);
        padding-bottom: 3rem;
        /* Push logo to top, buttons to bottom; taxi is the poster in between */
        height: 100%;
        width: 100%;
        max-width: 100%;
    }

    .hero__logo {
        width: 280px;
        margin-bottom: 0; /* no gap needed — poster provides the visual gap */
    }

    /* Hide the gold divider on mobile — cleaner */
    .hero__divider {
        display: none;
    }

    /* Buttons stack vertically and sit at the bottom */
    .hero__actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 1.5rem;
        gap: var(--space-3);
        margin-top: auto; /* pushes buttons to the bottom of the flex container */
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* ================================================================
   HERO — LARGE SCREEN (keep one-line title)
   ================================================================ */
@media (min-width: 1024px) {
    .hero__title {
        white-space: nowrap;
    }
}

/* ================================================================
   9. HERITAGE SECTION
   ================================================================ */

.heritage {
    background-color: var(--bg-primary);
    text-align: center;
}

.heritage__content {
    max-width: 800px;
    margin: 0 auto;
}

.heritage__title {
    margin-bottom: var(--space-2);
}

.heritage__text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-loose);
    margin-bottom: var(--space-10);
}

/* Timeline */
.heritage__timeline {
    margin-bottom: var(--space-8);
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.timeline__item {
    text-align: center;
}

.timeline__year {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
    color: var(--color-emerald);
    margin-bottom: var(--space-1);
}

.timeline__label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.timeline__line {
    width: 120px;
    height: 2px;
    background: var(--border-light);
    position: relative;
}

.timeline__line-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--color-gold), var(--color-emerald));
}

/* ================================================================
   10. SERVICES SECTION
   ================================================================ */

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
    align-items: start;
}

.services__footer {
    text-align: center;
}

/* Service Card */
.service-card {
    background: var(--color-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--transition-slow);
}

.service-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-5);
    background: var(--bg-cream);
    border-radius: var(--radius-full);
    color: var(--color-emerald);
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    background: var(--color-emerald);
    color: var(--color-white);
}

.service-card__title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.service-card__desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
}

.service-card__toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

.service-card__toggle:hover {
    color: var(--color-emerald);
}

.service-card__toggle .icon {
    transition: transform var(--transition-fast);
}

.service-card__toggle[aria-expanded="true"] .icon {
    transform: rotate(180deg);
}

/* Service Details Panel */
.service-card__details {
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-light);
    text-align: left;
}

.service-card__details-inner {
    animation: fadeIn var(--transition-base);
}

.service-detail {
    margin-bottom: var(--space-4);
}

.service-detail h4 {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--text-muted);
    margin-bottom: var(--space-2);
}

.service-detail ul {
    list-style: none;
}

.service-detail li {
    position: relative;
    padding-left: var(--space-5);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.service-detail li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

.service-detail p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.service-card__price {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--color-emerald);
}

.service-card__price span {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-regular);
    color: var(--text-muted);
}

/* ================================================================
   11. DESTINATIONS SECTION
   ================================================================ */

.destinations__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

.destinations__footer {
    text-align: center;
}

/* Destination Card */
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.destination-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.destination-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover .destination-card__image img {
    transform: scale(1.08);
}

.destination-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    transition: background var(--transition-base);
}

.destination-card:hover .destination-card__overlay {
    background: linear-gradient(
        180deg,
        rgba(15, 107, 87, 0.1) 0%,
        rgba(15, 107, 87, 0.3) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.destination-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    color: var(--color-white);
    z-index: 1;
}

.destination-card__title {
    font-size: var(--text-2xl);
    color: var(--color-white);
    margin-bottom: var(--space-1);
}

.destination-card__meta {
    font-size: var(--text-sm);
    color: var(--color-gold);
    margin-bottom: var(--space-2);
}

.destination-card__distance {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.destination-card__btn {
    position: absolute;
    bottom: var(--space-6);
    right: var(--space-6);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 2;
}

.destination-card:hover .destination-card__btn {
    opacity: 1;
    transform: translateY(0);
}

.destination-card__btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-charcoal);
}

/* ================================================================
   12. WHY US SECTION
   ================================================================ */

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.why-us__item {
    text-align: center;
}

.why-us__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-5);
    border: 1px solid var(--color-gold);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    transition: all var(--transition-base);
}

.why-us__item:hover .why-us__icon {
    background: var(--color-gold);
    color: var(--color-charcoal);
}

.why-us__title {
    font-size: var(--text-lg);
    color: var(--color-white);
    margin-bottom: var(--space-3);
}

.why-us__text {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--leading-relaxed);
}

/* ================================================================
   13. TESTIMONIALS SECTION
   ================================================================ */

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-10);
}

/* Testimonial Card */
.testimonial {
    background: var(--color-white);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    left: var(--space-6);
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--color-gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial__rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
}

.testimonial__rating .star {
    width: 16px;
    height: 16px;
    fill: var(--color-gold);
}

.testimonial__text {
    font-size: var(--text-base);
    font-style: italic;
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.testimonial__footer {
    display: flex;
    flex-direction: column;
}

.testimonial__author {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    font-style: normal;
    color: var(--text-primary);
}

.testimonial__location {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Google Reviews Badge */
.testimonials__google {
    display: flex;
    justify-content: center;
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-5);
    background: var(--color-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.google-reviews-badge:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.google-reviews-badge__content {
    display: flex;
    flex-direction: column;
}

.google-reviews-badge__rating {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.google-reviews-badge__text {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ================================================================
   14. QUICK BOOKING SECTION
   ================================================================ */

.quick-booking {
    background: linear-gradient(135deg, var(--color-emerald) 0%, var(--color-emerald-dark) 100%);
}

.quick-booking__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

.quick-booking__content {
    color: var(--color-white);
}

.quick-booking__content .section-label {
    color: var(--color-gold);
}

.quick-booking__title {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.quick-booking__text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.quick-booking__contact {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-booking__contact p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-3);
}

/* Booking Form */
.booking-form {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-2xl);
}

.booking-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.booking-form__estimate {
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    padding: var(--space-4);
    margin-bottom: var(--space-5);
    text-align: center;
}

.estimate-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}

.estimate-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    color: var(--color-emerald);
    margin-bottom: var(--space-1);
}

.estimate-note {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.booking-form__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.booking-form__note .icon {
    color: var(--color-emerald);
}

/* ================================================================
   15. CTA BANNER
   ================================================================ */

.cta-banner {
    position: relative;
    background: var(--color-emerald);
    padding: var(--space-20) 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-banner__watermark {
    position: absolute;
    right: -300px;
    top: 51%;
    transform: translateY(-50%);
    opacity: 0.1;
}

.cta-banner__watermark img {
    height: 650x;
    width: auto;
}

.cta-banner__content {
    position: relative;
    text-align: center;
    z-index: 1;
}

.cta-banner__title {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-banner__text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

/* ================================================================
   16. FOOTER
   ================================================================ */

.footer {
    background: var(--color-charcoal);
    color: var(--text-light);
    padding-top: var(--space-16);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-16);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
    max-width: 320px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.footer__logo img {
    height: 175px;
    width: auto;
}

.footer__tagline {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: var(--space-4);
}

.footer__desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

/* Emergency Helpline */
.footer__emergency {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(195, 167, 74, 0.3);
    border-radius: var(--radius-md);
    padding: var(--space-4);
}

.emergency-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-2);
}

.emergency-number {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--color-gold);
    transition: color var(--transition-fast);
}

.emergency-number:hover {
    color: var(--color-gold-light);
}

/* Footer Links */
.footer__links {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr 1.5fr;
    gap: var(--space-8);
}

.footer__heading {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--color-white);
    margin-bottom: var(--space-5);
}

.footer__list li {
    margin-bottom: var(--space-3);
}

.footer__list a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--color-gold);
}

/* Footer Address */
.footer__address {
    font-style: normal;
}

.footer__address p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-4);
}

.footer__address .icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-gold);
}

.footer__address a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer__address a:hover {
    color: var(--color-gold);
}

/* Footer Bottom Wrapper */
.footer__bottom {
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Optional: separator line */
    width: 100%;
}

/* .footer__container removed — footer uses .container (the global class) */

.footer__copyright {
    margin: 0; /* CRITICAL: Removes default browser spacing that ruins alignment */
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

.footer__legal {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
}

.footer__legal a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer__legal a:hover {
    color: var(--color-gold);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
}

/* Social Icon Styling */
.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer__social a:hover {
    background: var(--color-gold);
    color: var(--color-charcoal);
    transform: translateY(-2px);
}

/* ================================================================
   17. MODALS
   ================================================================ */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.modal.active .modal__content {
    transform: translateY(0);
}

.modal__header {
    position: relative;
    padding: var(--space-6);
    border-bottom: 1px solid var(--border-light);
}

.modal__close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-cream);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.modal__close:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.modal__body {
    padding: var(--space-6);
}

.modal__footer {
    padding: var(--space-6);
    border-top: 1px solid var(--border-light);
    background: var(--bg-cream);
}

/* ================================================================
   18. WHATSAPP FLOAT
   ================================================================ */

.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    z-index: var(--z-fixed);
}

.whatsapp-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: var(--radius-full);
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.whatsapp-float__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float__btn svg {
    width: 28px;
    height: 28px;
}

/* ================================================================
   19. UTILITY CLASSES
   ================================================================ */

/* Display */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Font Weight */
.font-light { font-weight: var(--font-light); }
.font-regular { font-weight: var(--font-regular); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

/* Colors */
.text-gold { color: var(--color-gold); }
.text-emerald { color: var(--color-emerald); }
.text-muted { color: var(--text-muted); }

/* Spacing */
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

/* Visibility for screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ================================================================
   MOBILE MENU FIXES (Add to end of style.css)
   ================================================================ */

/* Ensure mobile actions are styled correctly */
.mobile-actions {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--color-emerald);
    text-decoration: none;
}

.mobile-phone:hover {
    background: var(--color-emerald);
    color: var(--color-white);
}

.mobile-phone svg {
    flex-shrink: 0;
}

/* Visually hidden utility — for SEO-only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Body scroll lock when menu open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Ensure header stays above content */
.header {
    z-index: 1000;
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .navbar__menu {
        max-height: -webkit-fill-available;
    }
}

/* Smooth transitions for mobile menu */
.navbar__menu {
    will-change: transform, opacity;
}

/* Ensure proper stacking */
.navbar__toggle {
    position: relative;
    z-index: 1001;
}

/* Premium Hero Button Adjustments */
.hero__actions .btn--primary {
    background: #C3A74A; /* Solid Gold for maximum visibility */
    color: #1C1C1C;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn--hero-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px); /* Frosty effect makes text readable over the car */
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn--hero-outline:hover {
    background: white;
    color: #0F6B57;
}