/* ==========================================================================
   JYOTIRLING TOURS & TRAVELS — UNIFIED DESIGN SYSTEM & STYLESHEET
   Domain: https://jyotirlingtoursandtravels.com/
   ========================================================================== */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7B2C;
  --deep: #0D0D0D;
  --deep-card: #151515;
  --deep-alt: #101010;
  --maroon: #6B1A1A;
  --cream: #F5ECD7;
  --cream-muted: rgba(245, 236, 215, 0.7);
  --white: #FFFFFF;
  --border-gold: rgba(201, 168, 76, 0.25);
  --border-gold-strong: rgba(201, 168, 76, 0.5);

  /* Unified Typographic Tokens */
  --fs-xs: 0.75rem;    /* 12px - badges, micro tags, labels */
  --fs-sm: 0.875rem;   /* 14px - buttons, specs, secondary body */
  --fs-base: 1rem;     /* 16px - standard body, questions */
  --fs-md: 1.125rem;   /* 18px - subheadings, vehicle names */
  --fs-lg: 1.375rem;   /* 22px - logo title, highlights */
  --fs-xl: 1.75rem;    /* 28px - contact headers, card titles */
  --fs-2xl: clamp(1.875rem, 4vw, 2.75rem); /* 30-44px - section titles */
  --fs-hero: clamp(2.3rem, 5.5vw, 4.5rem); /* 36-72px - hero display heading */
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: var(--fs-base);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* --------------------------------------------------------------------------
   NAVBAR & HEADER
   -------------------------------------------------------------------------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex: 1;
  justify-content: flex-start;
}

.nav-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.nav-logo-main {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-lg);
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-xs);
  color: var(--cream);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 1.8vw, 26px);
  list-style: none;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.nav-spacer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-links > li {
  position: relative;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: var(--fs-sm);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.3s, border-color 0.3s;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

/* Elegant Dropdown on Hover */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
  display: inline-block;
  color: var(--gold);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  min-width: 290px;
  max-height: 80vh;
  overflow-y: auto;
  background: rgba(18, 18, 18, 0.98);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.75);
  z-index: 1001;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

.dropdown-header {
  padding: 8px 20px 4px;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin-top: 6px;
  background: rgba(201, 168, 76, 0.05);
  pointer-events: none;
}

.dropdown-header:first-child {
  border-top: none;
  margin-top: 0;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.dropdown-force-close .dropdown-menu {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(12px) !important;
  pointer-events: none !important;
  transition: none !important;
  display: none !important;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  font-size: var(--fs-xs);
  letter-spacing: 0.6px;
  text-transform: none;
  font-weight: 600;
  color: var(--cream-muted);
  transition: all 0.2s ease;
  white-space: normal;
  line-height: 1.35;
}

.dropdown-menu li a::after {
  display: none !important;
}

.dropdown-menu li a:hover {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
  padding-left: 24px;
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--gold), #a0621a);
  color: var(--deep) !important;
  font-family: 'Cinzel', serif;
  font-size: var(--fs-sm) !important;
  font-weight: 900 !important;
  letter-spacing: 1.5px !important;
  padding: 10px 24px !important;
  border-radius: 3px;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.nav-cta-btn::after {
  display: none !important;
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(201, 168, 76, 0.5);
  color: #000 !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   BREADCRUMBS
   -------------------------------------------------------------------------- */
.breadcrumbs-bar {
  background: #080808;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 95px 40px 14px;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: var(--fs-xs);
  color: var(--cream-muted);
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--gold);
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.breadcrumbs li + li::before {
  content: '›';
  margin-right: 8px;
  color: rgba(201, 168, 76, 0.5);
}

.breadcrumbs li[aria-current="page"] {
  color: var(--cream);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   HERO SECTIONS
   -------------------------------------------------------------------------- */
.hero {
  min-height: 90vh;
  background: radial-gradient(ellipse at 60% 45%, #3a1a00 0%, #0D0D0D 70%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 20px 70px;
  position: relative;
  overflow: hidden;
}

.page-hero {
  min-height: 55vh;
  background: radial-gradient(ellipse at 50% 30%, #2e1400 0%, #0D0D0D 75%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}

.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-logo-img {
  width: 280px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.35));
  animation: fadeUp 1s ease both;
}

.hero-badge {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold-strong);
  padding: 8px 22px;
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(201, 168, 76, 0.05);
  animation: fadeUp 1s ease forwards;
}

.hero h1,
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-hero);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.25);
  margin-bottom: 16px;
  max-width: 980px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero h1 em,
.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub,
.page-hero-sub {
  font-size: var(--fs-md);
  color: var(--cream-muted);
  max-width: 720px;
  margin: 10px auto 34px;
  line-height: 1.8;
  animation: fadeUp 1s 0.4s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.6s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--deep);
  font-family: 'Cinzel', serif;
  font-size: var(--fs-base);
  font-weight: 800;
  letter-spacing: 1px;
  padding: 15px 36px;
  border-radius: 2px;
  border: none;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFF0B8, var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.6);
  color: #000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: var(--fs-base);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: 1px solid var(--border-gold-strong);
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   TICKER STRIP
   -------------------------------------------------------------------------- */
.strip {
  background: linear-gradient(90deg, #0d0d0d 0%, #1c1710 50%, #0d0d0d 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 24px 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 50px;
  animation: scrollTrack 24s linear infinite;
  width: max-content;
}

.strip-item {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-sm);
  color: var(--gold-light);
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 14px;
}

.strip-item::before {
  content: '🕉';
  font-size: var(--fs-base);
}

@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   COMMON SECTION STYLES
   -------------------------------------------------------------------------- */
section {
  padding: 85px 30px;
  position: relative;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-xs);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-2xl);
  font-weight: 900;
  text-align: center;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.25;
}

.section-intro {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--cream-muted);
  font-size: var(--fs-base);
  line-height: 1.8;
}

.title-line {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto 0;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   GRID CARDS & SERVICE CARDS
   -------------------------------------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 993px) {
  #packages .cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #packages .cards-grid .service-card {
    flex: 0 0 calc((100% - 56px) / 3);
    max-width: calc((100% - 56px) / 3);
  }
}

.service-card {
  background: linear-gradient(160deg, #181818, #0f0f0f);
  border: 1px solid var(--border-gold);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}

.service-card.highlight-card {
  box-shadow: 0 0 35px rgba(201, 168, 76, 0.7), 0 0 0 2px var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-6px);
  transition: all 0.4s ease;
}

.service-img-wrap {
  overflow: hidden;
  position: relative;
  height: 210px;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 13, 13, 0.88);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: var(--fs-xs);
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.service-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-md);
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}

.service-desc {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

.tags-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tag {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  font-size: var(--fs-xs);
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
}

.card-action-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  background: linear-gradient(135deg, var(--gold), #a0621a);
  color: var(--deep);
  font-family: 'Cinzel', serif;
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.card-action-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #000;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
}

.card-action-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  border-top: 1px solid var(--border-gold);
}

.card-action-btn.secondary:hover {
  background: var(--gold);
  color: #000;
}

/* Interactive Seat Selector */
.service-label-sm {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 10px;
  font-weight: 700;
}

.seat-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.seat-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.seat-pill:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.seat-pill.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold-light);
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}

.card-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}

.card-btn-group .card-action-btn {
  flex: 1;
  margin-top: 0;
  text-align: center;
  padding: 12px 14px;
  font-size: var(--fs-xs);
  letter-spacing: 1px;
}

.card-link-secondary {
  color: var(--gold);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.card-link-secondary:hover {
  color: var(--gold-light);
  text-decoration: underline;
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   CONTENT BLOCKS & HIGHLIGHTS
   -------------------------------------------------------------------------- */
.feature-box {
  background: linear-gradient(160deg, #181818, #111);
  border: 1px solid var(--border-gold);
  padding: 32px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.feature-box h3 {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-xl);
  color: var(--gold);
  margin-bottom: 14px;
}

.feature-box p {
  color: var(--cream-muted);
  font-size: var(--fs-base);
  line-height: 1.8;
  margin-bottom: 16px;
}

.itinerary-step {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 24px;
  position: relative;
}

.itinerary-step::before {
  content: '✦';
  position: absolute;
  left: -8px;
  top: 0;
  color: var(--gold);
  font-size: var(--fs-sm);
  background: var(--deep);
}

.itinerary-title {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-md);
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 6px;
}

.itinerary-desc {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  line-height: 1.7;
}

/* Comparison / Specs Table */
.table-responsive {
  overflow-x: auto;
  margin: 30px 0;
  border: 1px solid var(--border-gold);
  border-radius: 3px;
}

.custom-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: var(--fs-sm);
}

.custom-table th {
  background: #19140c;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  padding: 14px 18px;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border-gold);
}

.custom-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  color: var(--cream);
}

.custom-table tr:hover {
  background: rgba(201, 168, 76, 0.04);
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US / TRUST SIGNALS
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border-gold);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  transform: translateY(-5px);
}

.why-icon {
  font-size: var(--fs-2xl);
  margin-bottom: 16px;
}

.why-title {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-md);
  color: var(--gold);
  margin-bottom: 10px;
}

.why-text {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-section {
  background: #0d0d0d;
  border-top: 1px solid var(--border-gold);
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-gold);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 14px;
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.faq-question {
  padding: 20px 24px;
  font-family: 'Cinzel', serif;
  font-size: var(--fs-base);
  color: var(--gold-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  user-select: none;
}

.faq-question::after {
  content: '▼';
  font-size: var(--fs-xs);
  transition: transform 0.3s;
  color: var(--gold);
  margin-left: 12px;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding-bottom: 22px;
}

/* --------------------------------------------------------------------------
   CONTACT BOX & BOOKING BAR
   -------------------------------------------------------------------------- */
.contact-section {
  background: #070707;
  text-align: center;
  border-top: 1px solid var(--border-gold);
}

.contact-box {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid var(--border-gold-strong);
  padding: 55px 36px;
  background: linear-gradient(160deg, #181818, #101010);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.contact-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.owner-name {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-xl);
  color: var(--gold);
  margin-bottom: 6px;
}

.owner-role {
  font-size: var(--fs-xs);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 28px;
}

.phone-numbers-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--maroon));
  color: var(--white);
  text-decoration: none;
  font-size: var(--fs-base);
  font-family: 'Cinzel', serif;
  padding: 13px 28px;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: all 0.3s;
  font-weight: 700;
  width: 100%;
  max-width: 320px;
}

.contact-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.4);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1FA855;
  color: var(--white);
  text-decoration: none;
  padding: 14px 34px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 2px;
  width: 100%;
  max-width: 320px;
}

.whatsapp-btn:hover {
  background: #28c964;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(31, 168, 85, 0.4);
}

.contact-address {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  margin-top: 24px;
  line-height: 1.8;
}

.contact-address strong {
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   FLOATING ACTION BUTTONS (CALL & WHATSAPP)
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 24px;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.1);
}

.fab-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.fab-call {
  background: var(--gold);
  color: var(--deep);
}

/* --------------------------------------------------------------------------
   COMPREHENSIVE 4-COLUMN FOOTER
   -------------------------------------------------------------------------- */
footer {
  background: #050505;
  border-top: 1px solid var(--border-gold);
  padding: 60px 30px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 45px;
}

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: var(--fs-md);
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold);
}

.footer-about p {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-contact-info p {
  font-size: var(--fs-sm);
  color: var(--cream-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact-info strong {
  color: var(--cream);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(245, 236, 215, 0.5);
  letter-spacing: 0.5px;
}

.footer-bottom strong {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   COMPREHENSIVE MOBILE RESPONSIVE SYSTEM
   -------------------------------------------------------------------------- */

/* Prevent any horizontal page shaking or overflow */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

.section-title, .hero h1, .page-hero h1, h2, h3 {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Tablet & Mobile Navigation Breakpoint (<= 960px) */
@media (max-width: 960px) {
  nav {
    padding: 10px 18px;
  }
  .nav-logo {
    flex: initial;
    gap: 12px;
  }
  .nav-logo img {
    height: 48px;
  }
  .nav-logo-main {
    font-size: 1.12rem;
    letter-spacing: 1.5px;
  }
  .nav-logo-sub {
    font-size: 0.62rem;
    letter-spacing: 2px;
  }
  .nav-spacer {
    flex: initial;
  }
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--border-gold);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 45px;
    display: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }
  .nav-links > li > a {
    font-size: 1.02rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 10px;
    color: var(--cream);
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
  }
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 4px;
    box-shadow: none;
    padding: 6px 0;
    margin: 4px 6px 14px;
    display: none;
    max-height: none;
  }
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown-header {
    padding: 10px 16px 4px;
    font-size: 0.68rem;
    letter-spacing: 1.2px;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
  }
  .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .dropdown-menu li:last-child {
    border-bottom: none;
  }
  .dropdown-menu li a {
    text-align: left;
    padding: 11px 16px;
    font-size: 0.88rem;
    color: var(--cream-muted);
    line-height: 1.4;
  }
  .dropdown-menu li a:hover,
  .dropdown-menu li a:active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
  }
  section {
    padding: 65px 20px;
  }
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  /* Hero & Header */
  .hero {
    min-height: auto;
    padding: 105px 18px 55px;
  }
  .page-hero {
    min-height: auto;
    padding: 95px 18px 45px;
  }
  .hero-logo-img {
    width: clamp(160px, 45vw, 220px);
    margin-bottom: 14px;
  }
  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 2px;
    padding: 6px 16px;
    margin-bottom: 16px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.85rem, 6.2vw, 2.45rem);
    line-height: 1.22;
    margin-bottom: 14px;
  }
  .hero-sub,
  .page-hero-sub {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 8px auto 26px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    padding: 14px 22px;
    font-size: 0.9rem;
    text-align: center;
    justify-content: center;
  }

  /* Section Intro & Title */
  .section-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
  }
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.1rem);
    margin-bottom: 14px;
    line-height: 1.3;
  }
  .section-intro {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 34px;
    padding: 0 4px;
  }

  /* Cards Grid: 1 Column on Mobile */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-card {
    border-radius: 4px;
  }
  .service-img-wrap {
    height: 200px;
  }
  .service-info {
    padding: 20px 18px;
  }
  .service-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  .service-label-sm {
    font-size: 0.72rem;
    margin: 4px 0 10px;
  }

  /* Interactive Seat Selector Pills */
  .seat-selector {
    gap: 6px;
    margin-bottom: 14px;
  }
  .seat-pill {
    flex: 1 1 calc(33.333% - 6px);
    min-width: 75px;
    padding: 8px 6px;
    font-size: 0.78rem;
    text-align: center;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }
  .service-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 14px;
  }
  .tags-group {
    gap: 6px;
    margin-bottom: 16px;
  }
  .tag {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
  .card-action-btn {
    padding: 14px 18px;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Content Blocks & Itineraries */
  .feature-box {
    padding: 24px 18px;
    margin-bottom: 22px;
  }
  .feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }
  .feature-box p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .itinerary-step {
    padding-left: 16px;
    margin-bottom: 20px;
  }
  .itinerary-title {
    font-size: 1.05rem;
  }
  .itinerary-desc {
    font-size: 0.86rem;
  }

  /* Tables with Smooth Touch Scrolling */
  .table-responsive {
    margin: 20px 0;
    -webkit-overflow-scrolling: touch;
  }
  .custom-table th,
  .custom-table td {
    padding: 10px 14px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* Why Choose Us Cards */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-card {
    padding: 28px 18px;
  }
  .why-icon {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  .why-title {
    font-size: 1.1rem;
  }
  .why-text {
    font-size: 0.88rem;
    line-height: 1.65;
  }

  /* FAQ Accordion */
  .faq-question {
    padding: 16px 18px;
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .faq-answer {
    padding: 0 18px;
    font-size: 0.86rem;
    line-height: 1.65;
  }
  .faq-item.active .faq-answer {
    padding-bottom: 18px;
  }

  /* Contact Section */
  .contact-box {
    padding: 38px 18px;
    margin: 0 auto;
    border-radius: 4px;
  }
  .owner-name {
    font-size: 1.45rem;
  }
  .owner-role {
    font-size: 0.68rem;
    letter-spacing: 2px;
    margin-bottom: 22px;
  }
  .contact-phone,
  .whatsapp-btn {
    max-width: 100%;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9rem;
    min-height: 48px;
  }
  .contact-address {
    font-size: 0.84rem;
    margin-top: 20px;
  }

  /* Floating Contact Buttons */
  .floating-actions {
    bottom: 18px;
    right: 14px;
    gap: 10px;
  }
  .fab-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
  }

  /* Ticker Strip */
  .strip {
    padding: 16px 0;
  }
  .strip-track {
    gap: 32px;
    animation-duration: 20s;
  }
  .strip-item {
    font-size: 0.78rem;
    gap: 8px;
  }

  /* Breadcrumbs */
  .breadcrumbs-bar {
    padding: 78px 18px 12px;
  }
  .breadcrumbs {
    font-size: 0.72rem;
    gap: 6px;
  }

  /* Footer */
  footer {
    padding: 48px 18px 22px;
  }
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
}

/* Small Smartphone Devices (<= 480px) */
@media (max-width: 480px) {
  nav {
    padding: 10px 14px;
  }
  .nav-logo {
    gap: 9px;
  }
  .nav-logo img {
    height: 40px;
  }
  .nav-logo-main {
    font-size: 0.96rem;
    letter-spacing: 1px;
  }
  .nav-logo-sub {
    font-size: 0.52rem;
    letter-spacing: 1.4px;
  }
  .hero {
    padding: 95px 14px 45px;
  }
  .page-hero {
    padding: 85px 14px 38px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .hero-sub,
  .page-hero-sub {
    font-size: 0.88rem;
  }

  /* 2-Column Seat Selection on Compact Phones */
  .seat-pill {
    flex: 1 1 calc(50% - 6px);
    font-size: 0.76rem;
    padding: 8px 4px;
  }
  .service-info {
    padding: 18px 14px;
  }
  section {
    padding: 50px 14px;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    font-size: 0.7rem;
    line-height: 1.6;
  }
}

/* Ultra-Compact Screens (<= 360px) */
@media (max-width: 360px) {
  .nav-logo img {
    height: 34px;
  }
  .nav-logo-main {
    font-size: 0.85rem;
    letter-spacing: 0.8px;
  }
  .nav-logo-sub {
    font-size: 0.48rem;
    letter-spacing: 1px;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .seat-pill {
    flex: 1 1 100%;
  }
}

