/* =============================================
   AURA OF INDIA — MAIN STYLESHEET
   Luxury Travel Theme
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --navy: #0A1628;
  --navy-mid: #1a2d4a;
  --ivory: #F8F5EF;
  --ivory-dark: #EDE9DF;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a5a;
  --text-light: #7a7a8a;
  --white: #ffffff;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 12px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 40px rgba(10,22,40,0.14);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.2);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  line-height: 1.2;
  color: var(--navy);
}
.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-italic { font-style: italic; color: var(--gold); }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--ivory { background: var(--ivory); }
.section--navy { background: var(--navy); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-top: 12px; }
.section-header p { color: var(--text-mid); margin-top: 16px; font-size: 1.05rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: #b8943f;
  border-color: #b8943f;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.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);
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  padding: 0;
}
.site-header.transparent {
  background: transparent;
}
.site-header.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.logo-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
}
.logo-text em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--serif);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.site-nav a {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.site-nav a:hover { color: var(--white); }
.site-nav a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: #b8943f !important; }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .close-nav {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1564507592333-c60657eea523?w=1800&q=85');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.3) 0%,
    rgba(10,22,40,0.55) 60%,
    rgba(10,22,40,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll svg { width: 20px; height: 20px; }

/* ---- TOUR CARDS GRID ---- */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tour-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.tour-card:hover .tour-card-image img { transform: scale(1.05); }
.tour-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.tour-card-body {
  padding: 28px;
}
.tour-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.tour-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.tour-meta-item svg { width: 14px; height: 14px; color: var(--gold); }
.tour-card-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.tour-card-desc {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--ivory-dark);
}
.tour-price {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}
.tour-price small {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  display: block;
  line-height: 1;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 64px;
}
.why-item {
  text-align: center;
}
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--ivory-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.why-icon svg { width: 28px; height: 28px; }
.why-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.why-item p { font-size: 0.9rem; color: var(--text-mid); }

/* ---- TESTIMONIALS ---- */
.testimonials-strip {
  background: var(--navy);
  padding: 80px 0;
  overflow: hidden;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.stars { color: var(--gold); margin-bottom: 16px; font-size: 1rem; }
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author {
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.testimonial-origin {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  margin-top: 2px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin: 16px 0; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 40px; }

/* ---- SINGLE TOUR PAGE ---- */
.tour-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}
.tour-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.2) 0%, rgba(10,22,40,0.8) 100%);
}
.tour-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.tour-breadcrumb {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  margin-bottom: 16px;
}
.tour-breadcrumb a { color: var(--gold-light); }
.tour-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 20px;
}
.tour-hero-meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.tour-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.tour-hero-meta-item svg { color: var(--gold); width: 18px; height: 18px; }
.tour-hero-price {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

/* Tour detail content */
.tour-detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  padding: 80px 0;
  align-items: start;
}
.tour-detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 48px;
}
.tour-detail-content h2:first-child { margin-top: 0; }
.tour-detail-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.tour-highlights, .tour-inclusions {
  list-style: none;
  margin-top: 8px;
}
.tour-highlights li, .tour-inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ivory-dark);
  color: var(--text-mid);
  font-size: 0.95rem;
}
.tour-highlights li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.tour-inclusions li::before {
  content: '✓';
  color: #27ae60;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- ENQUIRY FORM SIDEBAR ---- */
.enquiry-sidebar {
  position: sticky;
  top: 100px;
}
.enquiry-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.enquiry-form-header {
  background: var(--navy);
  padding: 28px 32px;
}
.enquiry-form-header h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.enquiry-form-header p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.enquiry-form-body { padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--ivory-dark);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a4a5a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}
.form-submit { width: 100%; margin-top: 8px; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
}
.form-success {
  display: none;
  background: #f0faf4;
  border: 1px solid #27ae60;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  color: #1a6e3c;
}
.form-success.visible { display: block; }
.form-error-msg {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 4px;
  display: none;
}
.form-error-msg.visible { display: block; }

/* ---- TOURS ARCHIVE ---- */
.tours-archive-header {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
}
.tours-archive-header h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.5rem); margin: 12px 0 16px; }
.tours-archive-header p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto; }

.tour-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 40px;
  border: 2px solid var(--ivory-dark);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 12px;
}
.footer-col h4 {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ---- ABOUT SECTION ---- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .eyebrow { margin-bottom: 12px; }
.about-content h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 24px; }
.about-content p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.8; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--ivory-dark);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }

/* ---- ADMIN NOTICE ---- */
.admin-notice {
  background: #fff8e1;
  border-left: 4px solid var(--gold);
  padding: 12px 20px;
  font-size: 0.88rem;
  color: #7a6000;
}

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  background: var(--ivory);
  padding: 14px 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.breadcrumbs nav { font-size: 0.82rem; color: var(--text-light); }
.breadcrumbs a { color: var(--gold); }
.breadcrumbs span { margin: 0 8px; }

/* ---- WORDPRESS ADMIN BAR COMPENSATION ---- */
.admin-bar .site-header { top: 32px; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 64px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1.5px solid var(--ivory-dark);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination span.current { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .tour-detail-layout { grid-template-columns: 1fr; }
  .enquiry-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .about-image-accent { display: none; }
}
@media (max-width: 768px) {
  .header-inner { padding: 16px 24px; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 24px; padding-top: 100px; }
  .tours-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .tour-hero-content { padding: 40px 24px; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.hidden { display: none !important; }
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto;
}
.divider--left { margin-left: 0; }
