@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ══════════════════════════════════════════════════════════════════════════ */
:root {
    --gold:          #BC9038;
    --gold-light:    #d4a84b;
    --gold-dark:     #9a7328;
    --gold-bg:       rgba(188,144,56,0.08);
    --gold-bg-solid: #faf5e8;
    --white:         #ffffff;
    --off-white:     #fafaf8;
    --black:         #0d0d0d;
    --text-dark:     #1a1a1a;
    --text-mid:      #555555;
    --text-light:    #999999;
    --border:        #e8e4dc;
    --border-light:  #f0ece4;
    --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
    --shadow-md:     0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg:     0 20px 60px rgba(0,0,0,0.14);
    --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius:        12px;
    --radius-sm:     8px;
    --radius-lg:     20px;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--text-dark); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

/* ── Layout utilities ────────────────────────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 88px 0; }
.section--sm { padding: 56px 0; }
.bg-off      { background: var(--off-white); }
.text-gold   { color: var(--gold); }
.text-center { text-align: center; }

.section-cta { text-align: center; margin-top: 40px; }

/* ── Section header ──────────────────────────────────────────────────────── */
.section__header { text-align: center; margin-bottom: 56px; }
.section__label  {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.section__label::before,
.section__label::after { content: ''; display: block; height: 1px; width: 28px; background: var(--gold); }
.section__title { color: var(--text-dark); margin-bottom: 14px; }
.section__desc  { font-size: 1rem; color: var(--text-mid); max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 28px; border-radius: 6px; font-size: 0.875rem;
    font-weight: 600; letter-spacing: 0.3px; transition: var(--transition);
    white-space: nowrap; cursor: pointer; border: 1.5px solid transparent;
}
.btn--primary { background: var(--gold); color: var(--white); box-shadow: 0 4px 16px rgba(188,144,56,0.35); }
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(188,144,56,0.45); }

.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--white); transform: translateY(-2px); }

.btn--white { background: var(--white); color: var(--text-dark); border-color: var(--white); }
.btn--white:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* Ghost button used in CTA section (dark gold background) */
.btn--white-ghost {
    background: rgba(255,255,255,0.15); color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--white-ghost:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

.btn--full { width: 100%; justify-content: center; }
.btn--sm   { padding: 10px 22px; font-size: 0.82rem; }

/* ── Package "Read More" button ──────────────────────────────────────────── */
.btn--pkg-readmore {
    display: block; width: 100%; text-align: center;
    padding: 13px 20px; border-radius: 7px;
    background: var(--gold); color: var(--white);
    font-size: 0.875rem; font-weight: 700; letter-spacing: 0.4px;
    border: 1.5px solid var(--gold);
    box-shadow: 0 4px 14px rgba(188,144,56,0.28);
    margin-top: auto; transition: var(--transition);
    cursor: pointer;
}
.btn--pkg-readmore:hover {
    background: var(--gold-dark); border-color: var(--gold-dark);
    transform: translateY(-2px); box-shadow: 0 6px 20px rgba(188,144,56,0.40);
    color: var(--white);
}

/* ══════════════════════════════════════════════════════════════════════════
   HEADER / NAV
   ══════════════════════════════════════════════════════════════════════════ */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 16px; }

/* Logo */
.nav__logo     { display: flex; flex-direction: column; flex-shrink: 0; }
.nav__logo-name { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); letter-spacing: -0.02em; line-height: 1.2; }
.nav__logo-tag  { font-size: 0.62rem; font-weight: 600; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; }
.nav__logo-img  { height: 58px; width: auto; max-width: 240px; object-fit: contain; display: block; }

/* Menu */
.nav__menu { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav__item  { position: relative; }
.nav__link  {
    display: flex; align-items: center; gap: 4px;
    padding: 7px 11px; border-radius: 6px;
    font-size: 0.84rem; font-weight: 500; color: var(--text-dark);
    transition: var(--transition); white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__chevron { transition: transform 0.25s ease; }
.nav__item--dropdown:hover .nav__chevron { transform: rotate(180deg); }

/* Desktop dropdown */
.dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow-lg);
    min-width: 210px; padding: 8px;
    opacity: 0; visibility: hidden; transition: all 0.2s ease;
    pointer-events: none; z-index: 100;
}
.nav__item--dropdown:hover .dropdown {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0); pointer-events: all;
}
.dropdown a {
    display: block; padding: 9px 14px; border-radius: 6px;
    font-size: 0.85rem; font-weight: 500; color: var(--text-dark); transition: var(--transition);
}
.dropdown a:hover { background: var(--gold-bg); color: var(--gold); }

/* Right nav elements */
.nav__right  { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__phone  { display: flex; align-items: center; gap: 7px; font-size: 0.84rem; font-weight: 600; color: var(--text-dark); }
.nav__phone svg { color: var(--gold); flex-shrink: 0; }
.nav__phone:hover { color: var(--gold); }
.nav__cta    { padding: 9px 20px; font-size: 0.82rem; }

/* Hamburger toggle */
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; background: none; }
.nav__toggle span { display: block; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.nav__toggle span:nth-child(1) { width: 22px; }
.nav__toggle span:nth-child(2) { width: 16px; }
.nav__toggle span:nth-child(3) { width: 22px; }
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); width: 22px; }
.nav__toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); width: 22px; }

/* ══════════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden; background: #0d0d0d;
}
.hero__bg {
    position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1920');
    background-size: cover; background-position: center;
    opacity: 0.5;
}
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.15) 100%);
}
.hero__content   { position: relative; z-index: 2; padding: 110px 0 72px; max-width: 680px; }
.hero__label     { display: inline-flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.hero__label::before { content: ''; display: block; height: 1px; width: 36px; background: var(--gold); }
.hero__title     { color: var(--white); margin-bottom: 20px; }
.hero__title span { color: var(--gold); }
.hero__desc      { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 480px; margin-bottom: 36px; font-weight: 400; line-height: 1.75; }
.hero__actions   { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats     { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 60px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero__stat-num  { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.hero__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════════════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card  {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 32px; transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(188,144,56,0.25); }
.service-card__icon {
    width: 56px; height: 56px; background: var(--gold-bg); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center; color: var(--gold);
    margin-bottom: 20px; transition: var(--transition);
}
.service-card:hover .service-card__icon { background: var(--gold); color: var(--white); }
.service-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card__desc  { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════════════════
   PACKAGE CARDS
   ══════════════════════════════════════════════════════════════════════════ */
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.package-card  {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
    display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card__img  { aspect-ratio: 16/11; overflow: hidden; }
.package-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .package-card__img img { transform: scale(1.04); }
.package-card__body {
    padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 0;
}
.package-card__title {
    font-size: 0.92rem; font-weight: 800; color: var(--text-dark);
    text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 10px;
}
.package-card__desc {
    font-size: 0.83rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
    overflow: hidden; flex: 1;
}

/* ══════════════════════════════════════════════════════════════════════════
   VEHICLE / CAB CARDS
   ══════════════════════════════════════════════════════════════════════════ */
.vehicles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vehicle-card  {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
    display: flex; flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(188,144,56,0.2); }
.vehicle-card__img  { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: #f5f5f3; }
.vehicle-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vehicle-card:hover .vehicle-card__img img { transform: scale(1.04); }
.vehicle-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 0; }
.vehicle-card__name {
    font-size: 0.95rem; font-weight: 800; color: var(--gold);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px;
}
.vehicle-card__category {
    font-size: 0.78rem; color: var(--text-mid);
    display: flex; align-items: center; gap: 5px; margin-bottom: 8px;
}
.vehicle-card__passengers {
    font-size: 0.78rem; color: var(--text-dark);
    display: flex; align-items: center; gap: 5px; font-weight: 600; margin-bottom: 16px;
}
.vehicle-card__passengers svg,
.vehicle-card__category svg { color: var(--gold); flex-shrink: 0; }
.vehicle-card__body .btn { margin-top: auto; }

/* ══════════════════════════════════════════════════════════════════════════
   ATTRACTION CARDS  (used on both Jaisalmer page AND destinations in index)
   ══════════════════════════════════════════════════════════════════════════ */
.attractions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.attraction-card  {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.attraction-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(188,144,56,0.2); }
.attraction-card__img { aspect-ratio: 4/3; overflow: hidden; }
.attraction-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.attraction-card:hover .attraction-card__img img { transform: scale(1.05); }
.attraction-card__body { padding: 22px; }
.attraction-card__title {
    font-size: 1rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.3px; color: var(--text-dark); margin-bottom: 10px;
}
.attraction-card__desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════════════════ */
.about-grid       { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about__img-wrap  { position: relative; }
.about__img-main  { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.about__img-main img { width: 100%; height: 100%; object-fit: cover; }
.about__img-accent {
    position: absolute; bottom: -28px; right: -28px; width: 160px;
    border-radius: var(--radius); overflow: hidden;
    border: 5px solid var(--white); box-shadow: var(--shadow-lg); aspect-ratio: 1;
}
.about__img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
    position: absolute; top: 32px; left: -20px; background: var(--gold);
    color: var(--white); padding: 18px 22px; border-radius: var(--radius);
    box-shadow: var(--shadow-md); text-align: center;
}
.about__badge-num  { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.about__badge-text { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; opacity: 0.9; }
.about__points     { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about__point      { display: flex; align-items: flex-start; gap: 12px; }
.about__point-icon { width: 34px; height: 34px; background: var(--gold-bg); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about__point-text { font-size: 0.875rem; color: var(--text-mid); }
.about__point-text strong { color: var(--text-dark); display: block; margin-bottom: 2px; font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════════════════════════════════ */
.why-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card  {
    background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
    text-align: center; transition: var(--transition); border: 1px solid var(--border);
}
.why-card:hover { border-color: rgba(188,144,56,0.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-card__icon { width: 60px; height: 60px; background: var(--gold-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); margin: 0 auto 16px; transition: var(--transition); }
.why-card:hover .why-card__icon { background: var(--gold); color: var(--white); }
.why-card__title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.why-card__desc  { font-size: 0.83rem; color: var(--text-mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════════════════ */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn     { padding: 7px 18px; border-radius: 6px; font-size: 0.82rem; font-weight: 500; color: var(--text-mid); background: var(--off-white); border: 1px solid var(--border); cursor: pointer; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.gallery-grid   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-item   { border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item__overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.48);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); color: var(--white);
}
.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus .gallery-item__overlay { opacity: 1; }
.gallery-item:focus { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════════ */
.testimonials-section { background: #0f0f0e; }
.testimonials-section .section__label { color: var(--gold); }
.testimonials-section .section__title { color: var(--white); }
.testimonials-section .section__desc  { color: rgba(255,255,255,0.5); }

.testimonials-wrap {
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.testimonials-wrap::-webkit-scrollbar { display: none; }

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Desktop: 3 visible */
.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(188,144,56,0.3); }
.testimonial-card__stars  { display: flex; gap: 3px; color: var(--gold); margin-bottom: 18px; }
.testimonial-card__text   { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
    width: 44px; height: 44px; background: var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem; color: var(--white); flex-shrink: 0;
}
.testimonial-card__name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.testimonial-card__loc  { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* Navigation arrows */
.testimonials-nav {
    display: flex; justify-content: center; gap: 10px; margin-top: 36px;
}
.testimonials-nav button {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.testimonials-nav button:hover { background: var(--gold); border-color: var(--gold); }

/* Dot indicators (hidden on desktop, shown on mobile via JS) */
.testimonials-dots {
    display: none; /* JS controls visibility */
    justify-content: center;
    gap: 7px; margin-top: 20px;
}
.testimonials-dots .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.2); transition: var(--transition);
    cursor: pointer;
}
.testimonials-dots .dot.active { background: var(--gold); width: 20px; border-radius: 4px; }

/* ══════════════════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════════════════ */
.faq-section { background: var(--off-white); }
.faq-list    { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item    {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.faq-item.open { border-color: rgba(188,144,56,0.35); box-shadow: var(--shadow-sm); }
.faq-question  {
    width: 100%; text-align: left; padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.95rem; font-weight: 600; color: var(--text-dark);
    background: none; cursor: pointer; transition: var(--transition); gap: 12px;
}
.faq-question:hover       { color: var(--gold); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-icon {
    width: 26px; height: 26px; background: var(--gold-bg); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--gold);
    flex-shrink: 0; transition: transform 0.3s ease;
}
.faq-item.open .faq-icon  { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer  { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; }
.faq-item.open .faq-answer { padding: 0 24px 18px; max-height: 300px; }
.faq-answer p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }

/* ══════════════════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item__icon   { width: 44px; height: 44px; background: var(--gold-bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-item__label  { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 3px; }
.contact-item__value  { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); }
.contact-form-card    { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); }
.form-group     { margin-bottom: 18px; }
.form-label     { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 7px; }
.form-input-wrap { position: relative; }
.form-input-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: #ccc; pointer-events: none; }
.form-input-icon--top { top: 14px; transform: none; }
.form-input     { width: 100%; padding: 12px 13px 12px 40px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text-dark); background: var(--white); transition: var(--transition); }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(188,144,56,0.1); }
.form-input::placeholder { color: #c0c0c0; }
textarea.form-input { resize: vertical; min-height: 110px; padding-top: 12px; }
.form-row       { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════════════════ */
.cta-section   { background: var(--gold); padding: 72px 0; }
.cta-content   { text-align: center; }
.cta-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-content p  { color: rgba(255,255,255,0.82); margin-bottom: 32px; font-size: 1rem; }
.cta-actions   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════ */
.footer      { background: #0d0d0d; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer__logo-img    { height: 64px; width: auto; max-width: 260px; object-fit: contain; display: block; margin-bottom: 14px; }
.footer__brand-name  { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 3px; }
.footer__brand-tag   { font-size: 0.6rem; font-weight: 600; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 14px; }
.footer__desc        { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.75; margin-bottom: 20px; }
.footer__social      { display: flex; gap: 8px; }
.footer__social a    { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer__social a:hover { background: var(--gold); color: var(--white); }
.footer__col-title   { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--gold); margin-bottom: 18px; }
.footer__links       { display: flex; flex-direction: column; gap: 9px; }
.footer__links a     { font-size: 0.85rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer__links a:hover { color: var(--gold); padding-left: 4px; }
.footer__contact-items { display: flex; flex-direction: column; gap: 12px; }
.footer__contact-item  { display: flex; gap: 10px; align-items: flex-start; }
.footer__contact-item svg   { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer__contact-item span  { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer__contact-item a     { color: rgba(255,255,255,0.4); }
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; }
.footer__copy   { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer__copy a { color: var(--gold); }
.footer__copy a:hover { color: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 54px; height: 54px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ══════════════════════════════════════════════════════════════════════════
   PAGE BANNER (inner pages)
   ══════════════════════════════════════════════════════════════════════════ */
.page-banner { background: var(--text-dark); padding: 140px 0 72px; position: relative; overflow: hidden; }
.page-banner::before {
    content: ''; position: absolute; inset: 0;
    background-image: url('https://images.unsplash.com/photo-1524492412937-b28074a5d7da?w=1600');
    background-size: cover; background-position: center; opacity: 0.2;
}
.page-banner__content { position: relative; z-index: 2; }
.page-banner__title   { color: var(--white); margin-bottom: 12px; }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 0.82rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; }
.breadcrumb a { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════════════════
   PACKAGE DETAIL
   ══════════════════════════════════════════════════════════════════════════ */
.pkg-detail-grid           { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.pkg-detail__img           { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; margin-bottom: 32px; }
.pkg-detail__img img       { width: 100%; height: 100%; object-fit: cover; }
.pkg-detail__category      { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.pkg-detail__title         { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 16px; }
.pkg-detail__meta          { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.pkg-detail__meta-item     { display: flex; align-items: center; gap: 7px; font-size: 0.875rem; color: var(--text-mid); font-weight: 500; }
.pkg-detail__meta-item svg { color: var(--gold); }
.pkg-detail__desc          { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.pkg-detail__highlights-title,
.pkg-detail__itinerary-title { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--text-dark); }
.pkg-detail__highlights      { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.pkg-detail__highlight       { font-size: 0.8rem; background: var(--gold-bg); color: var(--gold); padding: 5px 12px; border-radius: 4px; font-weight: 600; }
.pkg-detail__itinerary       { margin-bottom: 32px; }
.pkg-detail__itinerary-steps { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pkg-detail__itinerary-steps li { display: flex; gap: 10px; font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }
.pkg-detail__itinerary-steps li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 8px; }

/* Booking card */
.booking-card             { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md); position: sticky; top: 90px; }
.booking-card__price      { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.booking-card__price-label { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.booking-card__price-val  { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; margin: 4px 0; }
.booking-card__price-per  { font-size: 0.78rem; color: var(--text-light); }
.booking-card__title      { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }

/* ══════════════════════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════════════════════ */
.lightbox {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
}
.lightbox.active  { display: flex; }
.lightbox__img    { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__close  {
    position: absolute; top: 20px; right: 20px; color: var(--white);
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.1); cursor: pointer;
    transition: var(--transition); border: none;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__close:focus { outline: 2px solid var(--gold); }

/* ══════════════════════════════════════════════════════════════════════════
   ALERTS & FORM MESSAGES
   ══════════════════════════════════════════════════════════════════════════ */
.alert          { padding: 12px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 0.875rem; }
.alert--success { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.25); }
.alert--error   { background: rgba(239,68,68,0.1); color: #dc2626; border: 1px solid rgba(239,68,68,0.25); }
.form-message         { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 16px; }
.form-message--success { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.25); }
.form-message--error   { background: rgba(239,68,68,0.1); color: #dc2626; border: 1px solid rgba(239,68,68,0.25); }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤1024px
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .packages-grid    { grid-template-columns: repeat(2, 1fr); }
    .vehicles-grid    { grid-template-columns: repeat(2, 1fr); }
    .services-grid    { grid-template-columns: repeat(2, 1fr); }
    .why-grid         { grid-template-columns: repeat(2, 1fr); }
    .attractions-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid      { grid-template-columns: 1fr 1fr; gap: 32px; }
    .about-grid       { gap: 40px; }
    .contact-grid     { gap: 40px; }

    /* Tablet testimonials: 2 visible */
    .testimonial-card { flex: 0 0 calc(50% - 12px); }
    .testimonials-track { gap: 24px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤768px
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .section          { padding: 60px 0; }
    .section__header  { margin-bottom: 36px; }

    /* ── Nav ─────────────────────────────────────────────────────────── */
    .nav { height: 68px; }
    .nav__logo-img { height: 44px; max-width: 180px; }

    .nav__menu {
        display: none; /* hidden by default; toggled by JS */
        position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
        flex-direction: column; justify-content: flex-start; align-items: stretch;
        background: var(--white); padding: 12px 16px 24px;
        gap: 2px; overflow-y: auto; z-index: 999;
        border-top: 1px solid var(--border);
        box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    }
    .nav__menu.open { display: flex; }

    .nav__link { padding: 12px 14px; font-size: 0.95rem; border-radius: var(--radius-sm); }
    .nav__phone { display: none; }
    .nav__toggle { display: flex; }

    /* Mobile dropdown */
    .dropdown {
        position: static; transform: none;
        opacity: 1; visibility: visible;
        box-shadow: none; border: none;
        background: var(--off-white);
        border-radius: var(--radius-sm);
        padding: 6px 8px; margin: 4px 0;
        pointer-events: all;
        display: none; /* hidden until parent gets .open */
    }
    .nav__item--dropdown.open > .dropdown { display: block; }

    /* Prevent desktop hover on mobile */
    .nav__item--dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: none; }

    /* ── Hero ────────────────────────────────────────────────────────── */
    .hero__content { padding: 100px 0 60px; }
    .hero__stats   { gap: 24px; }
    .hero__stat-num { font-size: 1.5rem; }

    /* ── Grids ───────────────────────────────────────────────────────── */
    .packages-grid    { grid-template-columns: 1fr; }
    .vehicles-grid    { grid-template-columns: 1fr; }
    .services-grid    { grid-template-columns: 1fr; }
    .why-grid         { grid-template-columns: 1fr 1fr; }
    .attractions-grid { grid-template-columns: 1fr; }
    .about-grid       { grid-template-columns: 1fr; }
    .contact-grid     { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
    .form-row         { grid-template-columns: 1fr; }

    /* ── Gallery ─────────────────────────────────────────────────────── */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    /* ── Testimonials — MOBILE: 1 card at a time ─────────────────────── */
    .testimonials-track   { gap: 16px; }
    .testimonial-card     {
        flex: 0 0 100%; /* full width = 1 card visible */
        padding: 24px;
    }
    /* Dots shown on mobile (JS also controls display) */
    .testimonials-dots { display: flex; }

    /* ── Footer ──────────────────────────────────────────────────────── */
    .footer__logo-img { height: 50px; }
    .footer__bottom   { flex-direction: column; gap: 8px; text-align: center; }

    /* ── Contact form ────────────────────────────────────────────────── */
    .contact-form-card { padding: 24px; }

    /* ── Package detail ──────────────────────────────────────────────── */
    .pkg-detail-grid { grid-template-columns: 1fr; }
    .booking-card    { position: static; }

    /* ── FAQ ─────────────────────────────────────────────────────────── */
    .faq-question { font-size: 0.875rem; padding: 14px 18px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤480px
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .container    { padding: 0 16px; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__stats  { gap: 16px; }
    .why-grid     { grid-template-columns: 1fr; }
    .cta-actions  { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; max-width: 300px; }
    .nav__logo-img    { height: 38px; max-width: 160px; }
    .footer__logo-img { height: 44px; }

    .testimonial-card { padding: 20px; }
    .testimonial-card__text { font-size: 0.85rem; }
    .testimonial-card__stars svg { width: 13px; height: 13px; }
}
/* Vehicle Card Price Display */
.vehicle-card__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 12px 0 16px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.vehicle-card__price-amount {
    font-size: 1.4rem;
    font-weight: 800;
    color: #BC9038;
    line-height: 1;
    letter-spacing: -0.02em;
}

.vehicle-card__price-label {
    font-size: 0.8rem;
    color: #777;
    font-weight: 500;
    margin-left: 2px;
}

/* Ensure consistent spacing */
.vehicle-card__body {
    padding: 16px;
}

.vehicle-card__category,
.vehicle-card__passengers {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 6px;
}

.vehicle-card__category svg,
.vehicle-card__passengers svg {
    color: #BC9038;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero__actions .btn { width: auto; justify-content: center; }
}