/* ============================================================
    Dwarkadhish Cab  — main.css
   Design System: Warm luxury travel — deep navy + amber gold
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ── Google Fonts ── */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* ── CSS Variables ── */
:root {
  --navy:        #0c1a3a;
  --navy-light:  #152550;
  --gold:        #c8922a;
  --gold-light:  #e4ad4a;
  --gold-pale:   #f5e6c8;
  --cream:       #fdf8f0;
  --white:       #ffffff;
  --gray-100:    #f4f6fa;
  --gray-300:    #d1d5db;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --text-dark:   #111827;

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Poppins', sans-serif;

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-silk:  cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-sm:  0 2px 8px rgba(12,26,58,.08);
  --shadow-md:  0 8px 32px rgba(12,26,58,.14);
  --shadow-lg:  0 20px 60px rgba(12,26,58,.20);
  --shadow-gold: 0 4px 24px rgba(200,146,42,.30);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  36px;
}

/* ── 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: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); font-style: italic; }

.section-desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 1.5rem;
  height: 48px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.3s var(--ease-expo);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,146,42,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  height: 40px;
  padding: 14px 1.1rem;
  font-size: 0.8rem;
}

.btn-lg {
  height: 56px;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: 8px;
}

.btn svg, .btn i { flex-shrink: 0; }

/* ── Section Wrapper ── */
.section-wrapper {
  padding: 80px 0;
}
.section-wrapper.bg-cream { background: var(--cream); }
.section-wrapper.bg-navy { background: var(--navy); }
.section-wrapper.bg-gray { background: var(--gray-100); }

.container-custom {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;  
  padding: 0 24px;
}

/* ── ============================= ── */
/* ── HEADER / NAVBAR               ── */
/* ── ============================= ── */

#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-silk);
}

.header-top-bar {
  background: var(--navy);
  padding: 7px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-top-bar a { color: var(--gold-light); transition: color 0.2s; }
.header-top-bar a:hover { color: var(--white); }

.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0;
  transition: all 0.4s var(--ease-silk);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo{
  overflow: hidden;
  height: 100%;
}

.navbar-logo img {
  height: 76px;
  width: auto;
  object-fit: contain;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 72px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.25s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s var(--ease-expo);
  border-top: 3px solid var(--gold);
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: var(--gray-700);
  transition: all 0.2s;
}
.nav-dropdown a:hover {
  background: var(--gold-pale);
  color: var(--navy);
  padding-left: 24px;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease-expo);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--navy);
  z-index: 999;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-expo);
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.mobile-menu .nav-link {
  height: auto;
  padding: 14px 0;
  color: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
}
.mobile-menu .nav-link:hover { color: var(--gold); }
.mobile-submenu { padding-left: 16px; display: none; }
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.6);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color 0.2s;
}
.mobile-submenu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: var(--gold); }

/* Scrolled state */
#main-header.scrolled .header-top-bar { display: none; }
#main-header.scrolled .navbar { box-shadow: var(--shadow-md); }

/* ── ============================= ── */
/* ── HERO SECTION                  ── */
/* ── ============================= ── */

#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%; height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero-slide-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s var(--ease-silk);
}
.swiper-slide-active .hero-slide-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,26,58,0.82) 0%,
    rgba(12,26,58,0.55) 50%,
    rgba(12,26,58,0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.hero-text {
  max-width: 700px;
  color: var(--white);
}

.hero-badge {
  margin-top: 64px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,146,42,.2);
  border: 1px solid rgba(200,146,42,.4);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(8px);
}

.hero-badge span { 
  width: 6px; height: 6px; 
  border-radius: 50%; 
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 520px;
}

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

/* Swiper custom controls */
.hero-swiper .swiper-pagination {
  bottom: 32px;
}
.hero-swiper .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.5);
  opacity: 1;
  transition: all 0.3s;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  transition: all 0.3s;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 16px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── ============================= ── */
/* ── SERVICES SECTION              ── */
/* ── ============================= ── */

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

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
}
.service-card:hover img { transform: scale(1.06); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,26,58,.90) 0%, rgba(12,26,58,.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: all 0.35s var(--ease-silk);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 12px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.35s var(--ease-back) 0.05s;
}
.service-card:hover .service-icon { transform: translateY(0); opacity: 1; }

.service-card-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.service-card-overlay p {
  font-size: 0.83rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-expo);
}
/* .service-card:hover .service-card-overlay p { max-height: 60px; } */

.service-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-top: 12px;
  transform: translateX(-8px);
  opacity: 0;
  transition: all 0.3s var(--ease-back) 0.1s;
}
.service-card:hover .service-arrow {
  transform: translateX(0);
  opacity: 1;
  background: var(--gold);
  border-color: var(--gold);
}

/* ── ============================= ── */
/* ── VEHICLE CARDS (shared)        ── */
/* ── ============================= ── */

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-expo);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.vehicle-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.vehicle-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-silk);
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.05); }

.vehicle-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vehicle-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.vehicle-card-sub {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.vehicle-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.vehicle-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.vehicle-card-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.vehicle-card-actions .btn { flex: 1; justify-content: center; }

/* ── ============================= ── */
/* ── CAROUSEL SECTION              ── */
/* ── ============================= ── */

.section-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 20px;
  flex-wrap: wrap;
}

.swiper-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.swiper-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease-expo);
  cursor: pointer;
}
.swiper-btn:hover {
  background: var(--gold);
  color: var(--white);
}
.swiper-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.swiper-btn svg { width: 18px; height: 18px; }

/* ── ============================= ── */
/* ── CTA BANNER                    ── */
/* ── ============================= ── */

#cta-banner {
  background-color: var(--navy);
  background-image:
    linear-gradient(135deg, rgba(12,26,58,.86) 0%, rgba(21,37,80,.86) 100%),
    url("../images/banner/tour-and-travel-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

@media (max-width: 768px) {
  #cta-banner { background-attachment: scroll; }
}
#cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,146,42,.18) 0%, transparent 70%);
  pointer-events: none;
}
#cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%; left: 5%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,146,42,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-banner-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner-content h2 span { color: var(--gold-light); font-style: italic; }
.cta-banner-content p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ============================= ── */
/* ── ABOUT SECTION                 ── */
/* ── ============================= ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-accent {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-stat-box {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-stat-box .stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.about-stat-box .stat-label { font-size: 0.75rem; opacity: 0.85; margin-top: 4px; font-weight: 500; }

.about-content .section-desc { max-width: 100%; }

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.about-pillar {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  border-left: 3px solid var(--gold);
}
.about-pillar-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.about-pillar h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-pillar p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.45; }

/* ── ============================= ── */
/* ── ROUTE CARDS                   ── */
/* ── ============================= ── */

.route-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.route-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
}
.route-card:hover img { transform: scale(1.07); }

.route-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,26,58,.92) 0%, rgba(12,26,58,.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.route-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.route-card-overlay h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}
.route-card-actions {
  display: flex;
  gap: 8px;
}

/* ── ============================= ── */
/* ── TOUR PACKAGE CARDS            ── */
/* ── ============================= ── */

.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-expo);
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.package-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.package-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-silk); }
.package-card:hover .package-card-img img { transform: scale(1.05); }
.package-card-img .duration-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}
.package-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.package-card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.package-card-desc { font-size: 0.82rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.package-card-actions { display: flex; gap: 10px; }
.package-card-actions .btn { flex: 1; justify-content: center; }

/* ── ============================= ── */
/* ── WHY CHOOSE US                 ── */
/* ── ============================= ── */

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

.why-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-expo);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--gold);
}
.why-icon {
  width: 70px; height: 70px;
  margin: 0 auto 18px;
  background: var(--gold-pale);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.why-card:hover .why-icon {
  background: var(--gold);
  color: var(--white);
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 0.83rem; color: var(--gray-500); line-height: 1.65; }

/* ── ============================= ── */
/* ── TESTIMONIALS                  ── */
/* ── ============================= ── */

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.35s var(--ease-expo);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star { color: var(--gold); font-size: 0.9rem; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}
.testimonial-author-info h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.testimonial-author-info span { font-size: 0.78rem; color: var(--gold); font-weight: 500; }

/* ── ============================= ── */
/* ── CONTACT SECTION               ── */
/* ── ============================= ── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info .section-desc { margin-bottom: 36px; }

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-detail-text p, .contact-detail-text a {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: color 0.2s;
}
.contact-detail-text a:hover { color: var(--gold); }

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrapper h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.25s var(--ease-silk);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,.12);
}
textarea.form-control {
  height: auto;
  padding: 12px 14px;
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── ============================= ── */
/* ── FOOTER                        ── */
/* ── ============================= ── */

#main-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.86rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col ul li a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.footer-col ul li a:hover::before { opacity: 1; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 0.9rem;
  transition: all 0.25s;
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

.footer-newsletter input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-size: 0.85rem;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter input:focus { border-color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--gold); }

/* ── ============================= ── */
/* ── MODAL / ENQUIRY POPUP         ── */
/* ── ============================= ── */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,20,45,.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease-silk);
}
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 44px 40px;
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: all 0.35s var(--ease-back);
  box-shadow: 0 40px 80px rgba(10,20,45,.35);
}
.modal-backdrop.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--gold); color: var(--white); }

.modal-header {
  margin-bottom: 24px;
}
.modal-header h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.modal-header p { font-size: 0.88rem; color: var(--gray-500); }

/* ── ============================= ── */
/* ── BACK TO TOP                   ── */
/* ── ============================= ── */

#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease-expo);
  cursor: pointer;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 999;
  width: 46px; height: 46px;
  background: #25D366;
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: all 0.3s var(--ease-expo);
  cursor: pointer;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 24px rgba(37,211,102,.5); }

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--navy);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: toast-in 0.4s var(--ease-back) forwards;
  pointer-events: all;
  border-left: 4px solid var(--gold);
}
.toast.success { border-color: #22c55e; }
.toast.error { border-color: #ef4444; }
@keyframes toast-in {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes toast-out {
  to { opacity: 0; transform: translateY(-10px) scale(0.95); }
}

/* ── AOS overrides ── */
[data-aos] { backface-visibility: hidden; }

/* ── ============================= ── */
/* ── RESPONSIVE                    ── */
/* ── ============================= ── */

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrapper { max-width: 560px; }
  .about-img-accent { right: 0; bottom: -20px; }
  .about-stat-box { top: -16px; left: 0; }
}

@media (max-width: 900px) {
  .navbar-nav, .navbar-cta .btn:not(.btn-enquire) { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .mobile-menu-overlay { display: block; }
}

@media (max-width: 768px) {
  .section-wrapper { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 22px; }
  .modal-box { padding: 32px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .scroll-indicator { display: none; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn-lg { height: 48px; padding: 0 1.4rem; font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .swiper-btn { width: 36px; height: 36px; }
  .vehicle-card-actions { flex-direction: column; }
  .route-card-actions { flex-direction: column; gap: 6px; }
  .package-card-actions { flex-direction: column; }
}

/* ── Utility ── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.w-full { width: 100%; }


/* ────────────────────────────────────────────────
   TOUR CATEGORY SECTION
──────────────────────────────────────────────── */
.tour-category-section{
    padding: 110px 0;
    background: var(--cream);
    overflow: hidden;
}

.tour-category-grid{
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 70px;
    align-items: center;
}

/* LEFT CONTENT */
.tour-category-content{
    position: relative;
}

.tour-mini-line{
    width: 4px;
    height: 130px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    position: absolute;
    left: -24px;
    top: 8px;
    border-radius: 30px;
}

.tour-category-title{
    font-size: clamp(2.7rem, 4vw, 4.4rem);
    line-height: 1.02;
    font-weight: 700;
    color: var(--navy);
    margin: 18px 0 26px;
    font-family: var(--font-display);
    letter-spacing: -.03em;
}

.tour-category-desc{
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.95;
    margin-bottom: 38px;
    max-width: 95%;
}

.tour-category-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all .35s var(--ease-expo);
}

.tour-category-btn span{
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all .35s var(--ease-expo);
}

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

.tour-category-btn:hover span{
    background: var(--gold);
    color: var(--white);
    transform: translateX(4px);
}

/* RIGHT GRID */
.tour-category-cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.tour-category-card{
    position: relative;
    height: 190px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    isolation: isolate;
    transform: translateY(0);
    transition: all .5s var(--ease-expo);
}

.tour-category-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease-expo);
}

.tour-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(12,26,58,.92) 5%,
            rgba(12,26,58,.35) 48%,
            rgba(12,26,58,.10) 100%
        );
    z-index: 1;
}

.tour-card-content{
    position: absolute;
    left: 20px;
    bottom: 18px;
    z-index: 3;
    color: var(--white);
}

.tour-card-content h3{
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 5px;
    color: var(--white);
}

.tour-card-content p{
    margin: 0;
    font-size: .96rem;
    color: rgba(255,255,255,.88);
}

.tour-category-card:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-category-card:hover img{
    transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 1200px){

    .tour-category-grid{
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .tour-category-content{
        max-width: 700px;
    }
}

@media (max-width: 991px){

    .tour-category-cards{
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-category-title{
        font-size: 3rem;
    }
}

@media (max-width: 576px){

    .tour-category-section{
        padding: 80px 0;
    }

    .tour-category-cards{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tour-category-card{
        height: 240px;
    }

    .tour-category-title{
        font-size: 2.35rem;
    }

    .tour-category-desc{
        max-width: 100%;
        font-size: .98rem;
    }

    .tour-mini-line{
        left: -12px;
        height: 90px;
    }
}


/* ────────────────────────────────────────────────
   SPECIAL OFFER SECTION
──────────────────────────────────────────────── */
.special-offer-section{
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    isolation: isolate;
}

.offer-bg{
    position: absolute;
    inset: 0;
    z-index: -3;
}

.offer-bg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(12,26,58,.88) 0%,
            rgba(12,26,58,.68) 35%,
            rgba(12,26,58,.72) 100%
        );
    z-index: -2;
}

.offer-grid{
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 70px;
    align-items: center;
}

/* LEFT */
.offer-content{
    max-width: 650px;
}

.offer-tag{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1;
}

.offer-tag span{
    font-size: 1rem;
    color: var(--white);
    font-style: italic;
    font-weight: 600;
}

.offer-tag{
    color: #22d36b;
}

.offer-title{
    font-size: clamp(2.7rem, 4vw, 4.7rem);
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -.03em;
}

.offer-desc{
    color: rgba(255,255,255,.88);
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 540px;
}

/* RIGHT CARDS */
.offer-cards{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-card{
    background: rgba(255,255,255,.94);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    transition: all .45s var(--ease-expo);
    backdrop-filter: blur(12px);
}

.offer-card:hover{
    transform: translateY(-5px);
}

.offer-thumb{
    width: 125px;
    min-width: 125px;
    height: 78px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.offer-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-badge{
    position: absolute;
    top: 8px;
    left: 8px;
    background: #22c55e;
    color: var(--white);
    font-size: .65rem;
    padding: 4px 7px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: .03em;
}

.offer-info{
    flex: 1;
}

.offer-info h3{
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
    font-weight: 700;
}

.offer-days{
    font-size: .88rem;
    color: var(--gray-500);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(12,26,58,.12);
}

.offer-price{
    color: #16a34a;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.offer-price span{
    color: #9ca3af;
    text-decoration: line-through;
    font-size: .95rem;
    margin-left: 8px;
    font-weight: 500;
}

.offer-valid{
    font-size: .8rem;
    color: var(--gray-500);
}

/* VIEW ALL */
.offer-view-all{
    margin-top: 24px;
    text-align: right;
}

.offer-view-all a{
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
}

.offer-view-all a:hover{
    color: var(--white);
}

.offer-view-all i{
    margin-left: 5px;
    font-size: .85rem;
}

/* RESPONSIVE */
@media (max-width: 1200px){

    .offer-grid{
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .offer-cards{
        max-width: 700px;
    }
}

@media (max-width: 768px){

    .special-offer-section{
        padding: 30px 0;
    }

    .offer-title{
        font-size: 2.6rem;
    }

    .offer-card{
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-thumb{
        width: 100%;
        height: 180px;
    }

    .offer-tag{
        font-size: 1.8rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px){

    .offer-title{
        font-size: 2.1rem;
    }

    .offer-desc{
        font-size: .96rem;
    }

    .offer-card{
        padding: 14px;
    }
}


/* ── Interior Hero (shared page banner) ── */
.page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: 0;
}
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,26,58,.88) 0%, rgba(12,26,58,.55) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding-top: 72px; /* header height */
}
.page-hero-content .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}
.page-hero-content .breadcrumb a { color: var(--gold-light); transition: color .2s; }
.page-hero-content .breadcrumb a:hover { color: var(--white); }
.page-hero-content .breadcrumb span { opacity: .4; }
.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--white);
}
.page-hero-title em { color: var(--gold-light); font-style: italic; }
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  max-width: 540px;
  line-height: 1.7;
}

@media (max-width: 768px){
    .page-hero-sub{
        display: none;
    }
}


/* ── FAQ accordion ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item.open { border-color: var(--gold); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: transparent;
  text-align: left;
  font-family: var(--font-body);
  transition: all .25s;
}
.faq-question:hover { background: var(--gold-pale); }
.faq-item.open .faq-question { background: var(--gold-pale); color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .7rem;
  color: var(--gray-700);
  transition: all .3s var(--ease-back);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-expo), padding .3s;
  padding: 0 20px;
  font-size: .875rem;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 16px; }
