/* ==========================================================================
   DXNRideCo Premium Style Guide & Design System
   ========================================================================== */

/* CSS Variables for Premium Brand Identity */
:root {
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Elegant Obsidian & Gold Color Palette */
    --color-obsidian: #090A0C;
    --color-obsidian-soft: #121418;
    --color-obsidian-card: #1A1D24;
    --color-gold: #C3A375;
    --color-gold-hover: #A38558;
    --color-gold-light: #EBE0D0;
    --color-platinum: #F8F9FA;
    --color-platinum-dark: #ECEEF2;
    --color-white: #FFFFFF;
    
    /* Utility Grays */
    --color-text-dark: #1E2024;
    --color-text-light: #F8F9FA;
    --color-text-muted: #6C7280;
    --color-text-muted-dark: #A0A5B1;
    --color-border-dark: #22252C;
    --color-border-light: #E2E6EC;
    
    /* Layout & Styling */
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius: 0px; /* Sharp, geometric design for premium editorial feel */
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.08);
    --shadow-modal: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-platinum);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, textarea {
    font-family: inherit;
}

/* Typography Utility */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
}

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

/* ==========================================================================
   Header Navigation Styling (Matching Reference Images)
   ========================================================================== */
.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-obsidian);
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-gold);
}

.btn-book-now {
    background-color: var(--color-obsidian);
    color: var(--color-white);
    border: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 28px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    text-transform: uppercase;
}

.btn-book-now:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-obsidian);
    transition: var(--transition-smooth);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 100px 40px 40px 40px;
    transition: var(--transition-smooth);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.mobile-btn-book {
    margin-top: 24px;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   Hero Section Styling
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 820px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
    gap: 56px;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-image: url('../images/professional_commercial_photography_of_a_sleek_black_mercedes_benz_s_class.webp');
    background-size: cover;
    background-position: center bottom;
    padding: 124px max(24px, calc((100vw - var(--max-width)) / 2 + 24px)) 54px;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 78% 48%, rgba(9, 10, 12, 0.24) 0%, rgba(9, 10, 12, 0.42) 34%, rgba(9, 10, 12, 0.72) 70%),
        linear-gradient(90deg, rgba(9, 10, 12, 0.9) 0%, rgba(9, 10, 12, 0.65) 46%, rgba(9, 10, 12, 0.42) 100%),
        linear-gradient(0deg, rgba(9, 10, 12, 0.7) 0%, rgba(9, 10, 12, 0.16) 46%, rgba(9, 10, 12, 0.32) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 0;
}

.hero-kicker {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-title {
    font-family: var(--font-sans);
    font-size: clamp(3.2rem, 5.4vw, 5.15rem);
    color: var(--color-white);
    margin-bottom: 26px;
    letter-spacing: 0;
    font-weight: 800;
    line-height: 0.98;
    max-width: 760px;
}

.hero-subtitle {
    font-size: 1.16rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 620px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-start-booking {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-obsidian);
    border: 2px solid var(--color-gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0;
    padding: 16px 36px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    text-align: center;
}

.btn-start-booking:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
}

.btn-hero-secondary {
    display: inline-block;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 16px 30px;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-hero-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-obsidian);
    border-color: var(--color-white);
}

/* ==========================================================================
   Overlapping Booking Widget Card (Matching Reference Layout)
   ========================================================================== */
.booking-widget-container {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    align-self: center;
}

.booking-widget-card {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 17, 21, 0.76), rgba(15, 17, 21, 0.52));
    width: 100%;
    max-width: 420px;
    display: grid;
    grid-template-columns: 1fr;
    border: none;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    padding: 24px;
    gap: 13px;
    align-items: stretch;
    backdrop-filter: blur(10px) saturate(110%);
    -webkit-backdrop-filter: blur(10px) saturate(110%);
    border-radius: 8px;
    overflow: hidden;
}

.booking-widget-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(195, 163, 117, 0.16), transparent 38%);
}

.booking-widget-card > * {
    position: relative;
    z-index: 1;
}

.booking-widget-heading {
    text-align: left;
    margin-bottom: 2px;
}

.booking-widget-eyebrow {
    display: inline-block;
    color: var(--color-gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.booking-widget-heading h2 {
    font-family: var(--font-sans);
    color: var(--color-white);
    font-size: 1.7rem;
    line-height: 1.1;
    letter-spacing: 0;
}

.booking-widget-heading p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    margin-top: 8px;
}

.widget-row.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.widget-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.widget-field.is-focused {
    z-index: 99;
}

.field-label {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--color-white);
    text-transform: none;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.input-wrapper:focus-within {
    z-index: 99;
}

.input-icon {
    position: absolute;
    left: 16px;
    width: 18px;
    height: 18px;
    color: rgba(9, 10, 12, 0.62);
    pointer-events: none;
}

.widget-input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    border: 1px solid rgba(235, 224, 208, 0.45);
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--color-text-dark);
    background-color: rgba(255, 255, 255, 0.92);
    outline: none;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.widget-input::placeholder {
    color: #A0A5B1;
}

.widget-input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 2px rgba(195, 163, 117, 0.35);
}

.widget-input.invalid {
    border-color: #B42318;
    box-shadow: 0 0 0 1px #B42318;
}

/* Make calendar date input icon padding alignment look perfect */
.widget-input[type="date"] {
    padding-left: 48px;
}

.btn-check-rates {
    background-color: var(--color-gold);
    color: var(--color-obsidian);
    border: 2px solid var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    padding: 15px 24px;
    width: 100%;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
}

.btn-check-rates:hover {
    background-color: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-obsidian);
}

/* ==========================================================================
   Trust & Verification Banner
   ========================================================================== */
.trust-banner {
    padding: 60px 0;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
}

.trust-metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 48px;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-obsidian);
}

.metric-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border-light);
}

.trust-logos {
    border-top: 1px solid var(--color-border-light);
    padding-top: 40px;
    text-align: center;
}

.logo-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 24px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #C0C5CE;
    user-select: none;
}

/* ==========================================================================
   Shared Section Header Utilities
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-obsidian);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Fleet Section
   ========================================================================== */

/* ==========================================================================
   Fleet Section — 3 Full-Width Vertical Panels
   ========================================================================== */

.fleet-section {
    background-color: var(--color-obsidian);
    padding: 0;
    overflow: hidden;
}

.fleet-section-header {
    text-align: center;
    padding: 90px 24px 60px;
    max-width: 700px;
    margin: 0 auto;
}

.fleet-section-header .section-tagline {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.fleet-section-header .section-title {
    font-size: 2.5rem;
    color: var(--color-platinum);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.fleet-section-header .section-description {
    font-size: 1rem;
    color: rgba(248, 249, 250, 0.55);
}

/* Panels container */
.fleet-panels {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Each panel = full viewport width, split image + content */
.fleet-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
    border-top: 1px solid rgba(255,255,255,0.07);
    transition: background 0.4s ease;
}

/* Alternate panels: even panels flip image to right side */
.fleet-panel:nth-child(even) {
    direction: rtl;
}
.fleet-panel:nth-child(even) .fleet-panel-content {
    direction: ltr;
}
.fleet-panel:nth-child(even) .fleet-panel-image {
    direction: ltr;
}

/* Image side */
.fleet-panel-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.fleet-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.fleet-panel:hover .fleet-panel-img {
    transform: scale(1.05);
}

.fleet-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%);
    pointer-events: none;
}

.fleet-panel-badge {
    position: absolute;
    top: 28px;
    left: 28px;
    background: var(--color-gold);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 8px 18px;
    text-transform: uppercase;
}

/* Content side */
.fleet-panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    background-color: #0e1016;
    border-left: 1px solid rgba(255,255,255,0.06);
    gap: 24px;
}

.fleet-panel:nth-child(even) .fleet-panel-content {
    border-left: none;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.fleet-panel-meta {
    display: flex;
    gap: 28px;
    align-items: center;
}

.fleet-panel-pax,
.fleet-panel-bags {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(248, 249, 250, 0.5);
    letter-spacing: 0.5px;
}

.panel-spec-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.fleet-panel-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(248, 249, 250, 0.6);
    max-width: 420px;
}

/* Model tags */
.fleet-model-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fleet-model-tag {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border: 1px solid rgba(195, 163, 117, 0.35);
    color: var(--color-gold);
    text-transform: uppercase;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

.fleet-model-tag:hover {
    background: rgba(195, 163, 117, 0.12);
}

.special-tag {
    border-color: rgba(248, 249, 250, 0.2);
    color: rgba(248, 249, 250, 0.45);
    font-style: italic;
}

/* Book button inside panel */
.btn-fleet-book {
    align-self: flex-start;
    margin-top: 4px;
    background: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 30px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-fleet-book:hover {
    background: var(--color-gold);
    color: var(--color-obsidian);
}

/* Responsive: stack vertically on mobile */
@media (max-width: 900px) {
    .fleet-panel {
        grid-template-columns: 1fr;
        min-height: unset;
        direction: ltr !important;
    }

    .fleet-panel-image {
        min-height: 280px;
    }

    .fleet-panel-content {
        padding: 40px 28px;
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid rgba(255,255,255,0.07);
    }
}



/* ==========================================================================
   The DXN Standard Section
   ========================================================================== */
.standards-section {
    padding: 100px 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.standard-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.standard-icon-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-light);
    color: var(--color-gold);
    margin-bottom: 24px;
}

.standard-icon {
    width: 24px;
    height: 24px;
}

.standard-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-obsidian);
    margin-bottom: 12px;
    font-family: var(--font-sans); /* Keep features modern sans-serif */
}

.standard-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-platinum);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    padding: 40px;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-obsidian);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-style: normal;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.author-title {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: var(--color-obsidian);
    color: var(--color-text-light);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--color-border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--color-white);
    display: block;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--color-text-muted-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid var(--color-border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted-dark);
    transition: var(--transition-smooth);
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.footer-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 0.85rem;
    color: var(--color-text-muted-dark);
    transition: var(--transition-smooth);
}

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

.contact-list {
    gap: 18px;
}

.contact-list li {
    font-size: 0.85rem;
    color: var(--color-text-muted-dark);
    line-height: 1.6;
}

.contact-list a {
    color: var(--color-text-light);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--color-border-dark);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

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



/* ==========================================================================
   Delhi Airport Transfers & Rentals Enhancements
   ========================================================================== */
.booking-widget-wrapper {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
}



.select-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236C7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px !important;
    cursor: pointer;
}

/* ==========================================================================
   Services Section — 5 Full-Width Vertical Panels (Premium Light Theme)
   ========================================================================== */
.services-vertical-section {
    background-color: var(--color-white);
    padding: 100px 0 0 0;
    overflow: hidden;
    border-top: 1px solid var(--color-border-light);
}

.services-section-header {
    text-align: center;
    padding: 0 24px 60px;
    max-width: 760px;
    margin: 0 auto;
}

.services-section-header .section-tagline {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 6px;
}

.services-section-header .section-title {
    font-size: 2.5rem;
    color: var(--color-obsidian);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.services-section-header .section-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Service Panels container (Framed/Gallery Layout) */
.service-panels {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Distinct visual spacing between cards */
    max-width: 1240px; /* Constrained box layout, not full-bleed */
    margin: 0 auto;
    padding: 0 24px 100px 24px;
}

/* Individual Panel (Framed Card) */
.service-panel {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 480px;
    border: 1px solid var(--color-border-light); /* Card outer frame */
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.service-panel:hover {
    border-color: var(--color-gold); /* Subtle gold glow on hover */
    box-shadow: var(--shadow-premium);
}

/* Alternate panel direction */
.service-panel:nth-child(even) {
    direction: rtl;
}
.service-panel:nth-child(even) .service-panel-content {
    direction: ltr;
}
.service-panel:nth-child(even) .service-panel-image {
    direction: ltr;
}

/* Image container */
.service-panel-image {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    background-color: var(--color-obsidian-soft);
}

.service-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.service-panel:hover .service-panel-img {
    transform: scale(1.04);
}

.service-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.2) 100%);
    pointer-events: none;
}

.service-panel-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--color-gold);
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 8px 16px;
    text-transform: uppercase;
    border: none;
}

/* Content container */
.service-panel-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 60px;
    background-color: var(--color-platinum);
    border-left: 1px solid var(--color-border-light);
    gap: 18px;
}

.service-panel:nth-child(even) .service-panel-content {
    border-left: none;
    border-right: 1px solid var(--color-border-light);
}

.service-panel-kicker {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
}

.service-panel-title {
    font-size: 2.1rem;
    color: var(--color-obsidian);
    line-height: 1.15;
    font-family: var(--font-serif);
}

.service-panel-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.service-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.service-feat-tag {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    color: var(--color-text-dark);
    text-transform: uppercase;
}

/* Button Group style */
.panel-action-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

/* Buttons style */
.btn-panel-book,
.btn-panel-call,
.btn-panel-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    text-decoration: none;
}

.btn-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* Book Now CTA (Premium Obsidian background) */
.btn-panel-book {
    background-color: var(--color-obsidian);
    color: var(--color-white);
    border: 2px solid var(--color-obsidian);
}

.btn-panel-book:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* Call Now CTA (Platinum/White border on dark background) */
.btn-panel-call {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 1px solid var(--color-border-light);
}

.btn-panel-call:hover {
    border-color: var(--color-obsidian);
    color: var(--color-obsidian);
}

/* WhatsApp CTA */
.btn-panel-whatsapp {
    background-color: transparent;
    color: #128C7E;
    border: 1px solid rgba(18, 140, 126, 0.3);
}

.btn-panel-whatsapp:hover {
    background-color: rgba(18, 140, 126, 0.05);
    border-color: #075E54;
    color: #075E54;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-panel-content {
        padding: 40px;
    }
    .service-panel-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .service-panel {
        grid-template-columns: 1fr;
        min-height: auto;
        direction: ltr !important;
    }
    
    .service-panel-image {
        min-height: 260px;
    }
    
    .service-panel-content {
        padding: 40px 24px;
        border-left: none !important;
        border-right: none !important;
    }
    
    .panel-action-group {
        width: 100%;
    }
    
    .btn-panel-book,
    .btn-panel-call,
    .btn-panel-whatsapp {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .services-vertical-section {
        padding: 60px 0 0 0;
    }
    .services-section-header .section-title {
        font-size: 2rem;
    }
    .service-panel-image {
        min-height: 220px;
    }
    .service-panel-content {
        padding: 30px 16px;
    }
}

/* Custom Image Slider for Tour Packages */
.tour-slider-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    background-color: var(--color-obsidian-soft);
}

.tour-slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.tour-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-slide.active {
    opacity: 1;
    z-index: 2;
}

.tour-slide-destination {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background-color: rgba(9, 10, 12, 0.75);
    color: var(--color-white);
    padding: 8px 16px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
    border-left: 3px solid var(--color-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Slider arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background-color: rgba(9, 10, 12, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    outline: none;
}

.slider-arrow:hover {
    background-color: var(--color-gold);
    color: var(--color-obsidian);
    border-color: var(--color-gold);
}

.slider-arrow svg {
    width: 16px;
    height: 16px;
}

.slider-arrow.prev {
    left: 16px;
}

.slider-arrow.next {
    right: 16px;
}

/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 8px;
    z-index: 10;
    background-color: rgba(9, 10, 12, 0.4);
    padding: 6px 10px;
    border-radius: 20px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .tour-slider-container {
        min-height: 260px;
        height: 260px;
    }
    .tour-slide-destination {
        bottom: 16px;
        left: 16px;
        font-size: 0.65rem;
    }
    .slider-dots {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 576px) {
    .tour-slider-container {
        min-height: 220px;
        height: 220px;
    }
}







/* ==========================================================================
   Responsive Media Queries (Mobile First approach)
   ========================================================================== */

/* Tablet styles (max-width: 992px) */
@media (max-width: 992px) {
    .main-nav {
        gap: 20px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: auto;
        padding: 130px 24px 72px;
    }

    .hero-overlay {
        background: rgba(9, 10, 12, 0.72);
    }

    .hero-content {
        max-width: 720px;
    }
    
    .hero-title {
        font-size: 3.8rem;
    }

    .booking-widget-container {
        justify-content: flex-start;
    }
    
    .booking-widget-card {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 16px;
    }
    
    .widget-action {
        grid-column: span 1;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .fleet-card.highlighted-card {
        grid-column: span 2;
    }
    
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .split-pane-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Mobile styles (max-width: 768px) */
@media (max-width: 768px) {
    .main-nav, .btn-book-now {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Hamburger to X Animation */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-section {
        padding: 100px 18px 48px;
        gap: 28px;
        background-position: center;
    }
    
    .hero-title {
        font-size: clamp(2.1rem, 7.5vw, 3rem);
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .btn-start-booking,
    .btn-hero-secondary {
        text-align: center;
        width: 100%;
    }
    
    .booking-widget-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    .booking-widget-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 22px;
    }

    .booking-widget-heading h2 {
        font-size: 1.65rem;
    }

    .widget-row.split {
        grid-template-columns: 1fr;
    }
    
    .widget-action {
        grid-column: span 1;
    }
    
    .trust-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric-divider {
        display: none;
    }
    
    .logo-grid {
        gap: 32px;
    }

    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-card.highlighted-card {
        grid-column: span 1;
    }
    
    .standards-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-quote {
        font-size: 1.15rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    

}

/* Extra small mobile styles (max-width: 576px) */
@media (max-width: 576px) {

    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .legal-links {
        justify-content: center;
    }

    /* Fleet Panels mobile optimization */
    .fleet-panel-image {
        min-height: 220px;
    }
    
    .fleet-panel-content {
        padding: 30px 16px;
        gap: 16px;
    }
    
    .btn-fleet-book {
        width: 100%;
        text-align: center;
    }
}



/* ==========================================================================
   Tour Packages Subpage Styles (tours.html)
   ========================================================================== */

/* Active Nav Links styling */
.nav-link.active,
.mobile-nav-link.active {
    color: var(--color-gold) !important;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
}

/* Tour Hero Section (Enlarged A&K Style) */
.tour-hero-section {
    position: relative;
    height: 75vh;
    min-height: 550px;
    background-image: url('../images/tour_himachal_mountains.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.tour-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9, 10, 12, 0.35) 0%, rgba(9, 10, 12, 0.7) 100%);
    z-index: 1;
}

.tour-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin-top: 60px; /* Shift content down for header */
}

.tour-hero-kicker {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.tour-hero-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-white);
    font-weight: 400;
}

.tour-hero-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Group Headers */
.tour-group-header-section {
    width: 100%;
    padding: 110px 24px 30px 24px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.tour-group-header-container {
    max-width: 850px;
    width: 100%;
}

.tour-group-header-container .section-tagline {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.tour-group-header-container .section-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--color-obsidian);
    font-weight: 400;
    margin: 0 0 16px 0;
}

.tour-group-header-container .section-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    font-weight: 300;
    margin: 0;
}

/* Tour Block Rows (Alternating Layout) */
.tour-package-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Smooth Earth-Toned Background Colors */
.bg-linen {
    background-color: #FAF9F6; /* Warm off-white */
}

.bg-sand {
    background-color: #F5F2EC; /* Soft warm sand */
}

.bg-clay {
    background-color: #EFECE6; /* Light gray-clay */
}

.bg-slate {
    background-color: #EAE8E4; /* Pale warm slate */
}

.tour-block-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 24px;
}

.tour-package-block.reverse .tour-block-container {
    flex-direction: row-reverse;
}

/* Block Image */
.tour-block-image {
    flex: 1.1;
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.tour-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tour-package-block:hover .tour-block-image img {
    transform: scale(1.03);
}

.tour-block-duration {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--color-obsidian);
    color: var(--color-white);
    padding: 6px 14px;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Block Info Details */
.tour-block-info {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-block-kicker {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.tour-block-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.25;
    color: var(--color-obsidian);
    font-weight: 400;
    margin: 0 0 16px 0;
}

.tour-block-price {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-obsidian);
    margin: 0 0 24px 0;
}

.tour-block-price span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.tour-block-divider {
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
    margin-bottom: 24px;
}

.tour-block-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-block-highlights li {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    padding-left: 24px;
    position: relative;
}

.tour-block-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-gold);
}

/* Tour Block Action CTAs */
.tour-block-actions {
    display: flex;
    gap: 12px;
}

.btn-tour-whatsapp,
.btn-tour-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 24px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-tour-whatsapp {
    background-color: var(--color-obsidian);
    color: var(--color-white);
    border: 2px solid var(--color-obsidian);
    flex-grow: 1.5;
}

.btn-tour-whatsapp:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-obsidian);
}

.btn-tour-call {
    background-color: transparent;
    color: var(--color-text-dark);
    border: 1px solid var(--color-border-light);
    flex-grow: 1;
}

.btn-tour-call:hover {
    border-color: var(--color-obsidian);
    color: var(--color-obsidian);
}

/* Responsive Styles for Luxury Editorial Layout */
@media (max-width: 992px) {
    .tour-hero-title {
        font-size: 2.8rem;
    }
    
    .tour-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .tour-block-container {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .tour-package-block.reverse .tour-block-container {
        flex-direction: column;
    }
    
    .tour-block-image {
        width: 100%;
        height: 360px;
    }
    
    .tour-block-info {
        width: 100%;
    }
    
    .tour-block-title {
        font-size: 1.8rem;
    }
    
    .tour-group-header-section {
        padding: 70px 20px 10px 20px;
    }
    
    .tour-group-header-container .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .tour-hero-title {
        font-size: 2.2rem;
    }
    
    .tour-block-image {
        height: 260px;
    }
    
    .tour-block-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-tour-whatsapp,
    .btn-tour-call {
        width: 100%;
    }
}

/* ==========================================================================
   Block Image Slider (For tours.html)
   ========================================================================== */
.tour-block-image.block-slider {
    position: relative;
    overflow: hidden;
}

.block-slider .slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.block-slider .slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.block-slider .slide-item.active {
    opacity: 1;
    z-index: 2;
}

.block-slider .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.block-slider .slide-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 25, 23, 0.65);
    color: var(--color-white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.block-slider .slide-ctrl:hover {
    background: var(--color-gold);
    color: var(--color-obsidian);
    transform: translateY(-50%) scale(1.05);
}

.block-slider .slide-ctrl.prev {
    left: 16px;
}

.block-slider .slide-ctrl.next {
    right: 16px;
}

.block-slider .slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
    background: rgba(26, 25, 23, 0.4);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.block-slider .slide-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(250, 249, 246, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.block-slider .slide-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

.tour-block-duration {
    z-index: 3 !important;
}

/* ==========================================================================
   Tactile active (pressed) states for all interactive elements
   ========================================================================== */
.btn-book-now:active,
.btn-start-booking:active,
.btn-hero-secondary:active,
.btn-check-rates:active,
.btn-fleet-book:active,
.btn-panel-book:active,
.btn-panel-call:active,
.btn-panel-whatsapp:active,
.btn-wizard-next:active:not(:disabled),
.btn-wizard-back:active,
.btn-finish-booking:active,
.btn-tour-whatsapp:active,
.btn-tour-call:active,
.slide-ctrl:active,
.chip-btn:active,
.widget-tab:active,
.mobile-nav-toggle:active,
.btn-close-modal:active,
.slide-dot:active {
    transform: scale(0.96) translateY(0);
    transition: transform 0.08s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   Tours Filter Bar Styles - Warm/Beige Luxury Design
   ========================================================================== */
.tours-filter-section {
    background-color: #FCF9F5; /* Very soft warm cream background */
    border-bottom: 1px solid #ECE3D3; /* Subtle border matching option 3 */
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.filter-container {
    background-color: #FAF5EF; /* Warm light beige/ivory card background */
    border: 1px solid #EADEC9; /* Light warm border */
    border-radius: 12px; /* Smooth rounded corners */
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 24px rgba(138, 110, 75, 0.06);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 220px;
}

.filter-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    color: #866946; /* Elegant bronze/brown label color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    text-transform: none; /* Title case */
    letter-spacing: 0.3px;
}

.price-val-text {
    color: #332D24; /* Dark brown/charcoal value */
    font-weight: 600;
}

.filter-select {
    width: 100%;
    font-size: 0.9rem;
    font-weight: 600;
    color: #332D24; /* Dark brown/charcoal text */
    background-color: #FFFFFF; /* Pure white input background */
    border: 1px solid #E6DCC3; /* Light beige input border */
    border-radius: 8px; /* Soft rounded corners */
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    appearance: none;
}

.filter-select.select-category {
    padding: 12px 16px 12px 42px; /* Indent text on the left for the grid icon */
    background-image: 
        /* Left Grid Icon (Warm Brown) */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23866946' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'%3E%3C/rect%3E%3Crect x='14' y='3' width='7' height='7'%3E%3C/rect%3E%3Crect x='14' y='14' width='7' height='7'%3E%3C/rect%3E%3Crect x='3' y='14' width='7' height='7'%3E%3C/rect%3E%3C/svg%3E"),
        /* Right Chevron Icon */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23866946' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: left 16px center, right 16px center;
    background-size: 16px, 14px;
}

.filter-select.select-sort {
    padding: 12px 36px 12px 16px; /* Standard padding with chevron right */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23866946' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.filter-select option {
    background-color: #FFFFFF;
    color: #332D24;
    font-weight: 500;
}

.filter-select:focus {
    border-color: #866946;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(134, 105, 70, 0.08);
}

/* Range Slider Styling */
.filter-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px; /* Thin slider line */
    border-radius: 2px;
    background: #EADFC9; /* Light warm inactive track */
    outline: none;
    margin: 12px 0 6px;
    cursor: pointer;
}

.filter-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FFFFFF; /* White inside thumb */
    border: 2.5px solid #967A55; /* Bronze/brown border */
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 2px 5px rgba(134, 105, 70, 0.15);
}

.filter-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.slider-bounds {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    color: #332D24; /* Muted dark brown bounds */
}

/* No Tours Message */
.no-tours-message {
    padding: 80px 24px;
    text-align: center;
    background-color: var(--color-white);
    border: 1px solid var(--color-border-light);
    margin: 40px auto;
    max-width: var(--max-width);
    border-radius: 8px;
}

.no-tours-message h3 {
    font-size: 1.8rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.no-tours-message p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .tours-filter-section {
        padding: 20px 0;
    }
    .filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }
    .filter-group {
        min-width: 100%;
    }
}

/* ==========================================================================
   Map Picker Modal Styling
   ========================================================================== */
.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 10, 12, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-modal.is-active {
    display: flex;
    opacity: 1;
}

.map-modal-content {
    background-color: var(--color-obsidian-card);
    border: 1px solid var(--color-border-dark);
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.map-modal.is-active .map-modal-content {
    transform: translateY(0);
}

.map-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.map-modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-white);
    margin: 0;
}

.close-modal-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted-dark);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.close-modal-btn:hover {
    color: var(--color-white);
}

.map-modal-body {
    position: relative;
    border: 1px solid var(--color-border-dark);
    margin-bottom: 20px;
    background-color: var(--color-obsidian);
}

/* Static center pin inside the map */
.map-center-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    pointer-events: none;
    z-index: 99999;
}

.floating-pin {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
    transform-origin: bottom center;
    transition: transform 0.2s ease;
}

/* Bounce pin animation when map is dragging */
.map-modal-body.map-dragging .floating-pin {
    transform: scale(1.1) translateY(-10px);
}

.map-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resolved-address-container {
    background-color: var(--color-obsidian-soft);
    padding: 15px;
    border: 1px solid var(--color-border-dark);
}

.resolved-address-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 5px;
}

#resolved-address-text {
    font-size: 0.9rem;
    color: var(--color-white);
    margin: 0;
    line-height: 1.4;
}

.confirm-btn {
    background-color: var(--color-gold);
    color: var(--color-obsidian);
    border: none;
    padding: 14px 24px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.confirm-btn:hover:not(:disabled) {
    background-color: var(--color-gold-hover);
}

.confirm-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Link Trigger in Forms */
.field-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.pin-on-map-link {
    background: none;
    border: none;
    color: var(--color-gold);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.pin-on-map-link:hover {
    color: var(--color-gold-light);
    text-decoration: underline;
}

/* Custom Fullscreen Button inside map picker */
.map-fullscreen-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-obsidian-card);
    border: 1px solid var(--color-border-dark);
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: background-color 0.2s, color 0.2s;
}

.map-fullscreen-btn:hover {
    background-color: var(--color-obsidian-soft);
    color: var(--color-gold-light);
}

.map-fullscreen-btn svg {
    width: 20px;
    height: 20px;
}

/* CSS simulated fullscreen state */
.map-modal-content.is-fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    display: flex;
    flex-direction: column;
}

.map-modal-content.is-fullscreen .map-modal-header {
    background-color: var(--color-obsidian-card);
    padding: 15px 25px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--color-border-dark);
}

.map-modal-content.is-fullscreen .map-modal-body {
    flex-grow: 1;
    margin-bottom: 0;
    border: none;
    display: flex;
    flex-direction: column;
}

.map-modal-content.is-fullscreen #map-picker-canvas {
    height: 100% !important;
    flex-grow: 1;
}

.map-modal-content.is-fullscreen .map-modal-footer {
    background-color: var(--color-obsidian-card);
    padding: 15px 25px;
    border-top: 1px solid var(--color-border-dark);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.map-modal-content.is-fullscreen .resolved-address-container {
    flex-grow: 1;
    margin: 0;
}

.map-modal-content.is-fullscreen .confirm-btn {
    align-self: center;
    white-space: nowrap;
}

@media (max-width: 576px) {
    .map-modal-content {
        width: 95%;
        padding: 20px;
    }
    .map-modal-header h3 {
        font-size: 1.25rem;
    }
    /* Stack footer on mobile fullscreen */
    .map-modal-content.is-fullscreen .map-modal-footer {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
    }
    .map-modal-content.is-fullscreen .confirm-btn {
        width: 100%;
    }
}

/* Hide Google Map copyright, terms of use, and report error links */
.gm-style-cc {
    display: none !important;
}

/* Hide Google's native fullscreen button control */
.gm-fullscreen-control,
button[title*="fullscreen"],
button[aria-label*="fullscreen"] {
    display: none !important;
}




