/*
Theme Name: SundarTravel
Theme URI: https://sundartravel.in
Author: SundarTravel
Author URI: https://sundartravel.in
Description: Professional Travel Agency Theme with Multi-Agent Support, 5 Color Themes, Dynamic ACF Fields, Subscription Plans
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: sundartravel
Tags: travel, agency, tour, hotel, booking, dynamic
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Theme Variables
   Theme class is added to <body> by PHP based on agent choice
   ============================================================ */

/* ── THEME 1: Nature Green (Default) ── */
body, body.theme-nature {
  --primary:        #1a6b4a;
  --primary-light:  #2d9b6f;
  --primary-dark:   #0d4530;
  --accent:         #f4a825;
  --accent-light:   #ffc85a;
  --accent-dark:    #d4880a;
  --bg:             #f8f5f0;
  --bg-card:        #ffffff;
  --bg-section-alt: #ffffff;
  --text-dark:      #1a1a1a;
  --text-mid:       #4a4a4a;
  --text-light:     #7a7a7a;
  --border:         #e8e0d5;
  --hero-overlay:   rgba(0,0,0,0.50);
  --shadow:         0 4px 24px rgba(26,107,74,0.12);
  --radius:         16px;
  --radius-sm:      10px;
  --font-heading:   'Playfair Display', serif;
  --font-body:      'DM Sans', sans-serif;
}

/* ── THEME 2: Dark Luxury ── */
body.theme-luxury {
  --primary:        #c9a84c;
  --primary-light:  #e2c06a;
  --primary-dark:   #8a6820;
  --accent:         #c9a84c;
  --accent-light:   #e2c06a;
  --accent-dark:    #8a6820;
  --bg:             #0f0f0f;
  --bg-card:        #1a1a1a;
  --bg-section-alt: #141414;
  --text-dark:      #f0ece4;
  --text-mid:       #c8c0b0;
  --text-light:     #888070;
  --border:         #2a2a2a;
  --hero-overlay:   rgba(0,0,0,0.70);
  --shadow:         0 4px 24px rgba(201,168,76,0.15);
  --radius:         4px;
  --radius-sm:      2px;
  --font-heading:   'Cormorant Garamond', serif;
  --font-body:      'Jost', sans-serif;
}

/* ── THEME 3: Ocean Blue ── */
body.theme-ocean {
  --primary:        #0077b6;
  --primary-light:  #0096c7;
  --primary-dark:   #023e8a;
  --accent:         #f77f00;
  --accent-light:   #ffaa00;
  --accent-dark:    #d4600a;
  --bg:             #f0f8ff;
  --bg-card:        #ffffff;
  --bg-section-alt: #e8f4fd;
  --text-dark:      #03045e;
  --text-mid:       #1a3a5c;
  --text-light:     #5a7a9a;
  --border:         #cce3f5;
  --hero-overlay:   rgba(2,62,138,0.60);
  --shadow:         0 4px 24px rgba(0,119,182,0.12);
  --radius:         20px;
  --radius-sm:      12px;
  --font-heading:   'Montserrat', sans-serif;
  --font-body:      'Open Sans', sans-serif;
}

/* ── THEME 4: Earthy Heritage ── */
body.theme-heritage {
  --primary:        #8b4513;
  --primary-light:  #a0522d;
  --primary-dark:   #5c2d0a;
  --accent:         #d4a017;
  --accent-light:   #e8b830;
  --accent-dark:    #a07010;
  --bg:             #fdf6e3;
  --bg-card:        #fffef7;
  --bg-section-alt: #f5ead0;
  --text-dark:      #2c1a0a;
  --text-mid:       #5c3a1a;
  --text-light:     #9a7050;
  --border:         #e8d5b0;
  --hero-overlay:   rgba(44,26,10,0.60);
  --shadow:         0 4px 24px rgba(139,69,19,0.12);
  --radius:         8px;
  --radius-sm:      4px;
  --font-heading:   'Libre Baskerville', serif;
  --font-body:      'Lato', sans-serif;
}

/* ── THEME 5: Corporate Minimal ── */
body.theme-corporate {
  --primary:        #2563eb;
  --primary-light:  #3b82f6;
  --primary-dark:   #1d4ed8;
  --accent:         #f59e0b;
  --accent-light:   #fbbf24;
  --accent-dark:    #d97706;
  --bg:             #f9fafb;
  --bg-card:        #ffffff;
  --bg-section-alt: #f3f4f6;
  --text-dark:      #111827;
  --text-mid:       #374151;
  --text-light:     #6b7280;
  --border:         #e5e7eb;
  --hero-overlay:   rgba(17,24,39,0.60);
  --shadow:         0 4px 24px rgba(37,99,235,0.10);
  --radius:         8px;
  --radius-sm:      4px;
  --font-heading:   'Inter', sans-serif;
  --font-body:      'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-dark);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb, 26,107,74), 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(var(--primary-rgb, 26,107,74), 0.15);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 580px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
section { padding: 56px 16px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #1a1a1a;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,168,37,0.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
  font-family: var(--font-body);
}
.btn-outline:hover { background: rgba(255,255,255,0.22); }

.btn-green {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}
.btn-green:hover { background: var(--primary-light); transform: translateY(-1px); }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-row { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-body);
  background: var(--bg-card);
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(26,107,74,0.10);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237a7a7a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-textarea { resize: vertical; min-height: 90px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-body { padding: 16px; }

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--accent);
  color: #1a1a1a;
}
.tag {
  font-size: 11px;
  background: rgba(26,107,74,0.08);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(26,107,74,0.12);
}

/* ============================================================
   VISITING CARD TOGGLE BAR
   ============================================================ */
#vc-toggle-bar {
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  position: relative;
  z-index: 200;
}
.vc-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vc-bar-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.vc-bar-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: white;
}
.vc-bar-name span { color: var(--accent-light); }
.vc-toggle-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.vc-toggle-btn:hover { background: rgba(255,255,255,0.22); }

/* ============================================================
   VISITING CARD
   ============================================================ */
#visiting-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  max-height: 800px;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
#visiting-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.04);
  top: -80px; right: -60px;
  pointer-events: none;
}
#visiting-card::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 40px solid rgba(244,168,37,0.10);
  bottom: -50px; left: 30%;
  pointer-events: none;
}
#visiting-card.vc-hidden { max-height: 0; }

.vc-body { padding: 16px 16px 20px; position: relative; z-index: 2; }
.vc-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.vc-logo-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.vc-logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.vc-logo-text span { color: var(--accent-light); }
.vc-tagline { font-size: 10px; opacity: 0.65; letter-spacing: 1.5px; text-transform: uppercase; padding-left: 56px; }
.vc-est    { font-size: 10px; opacity: 0.45; padding-left: 56px; margin-top: 2px; }

.vc-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.12); margin: 14px 0; }

.vc-person-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.vc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.vc-person-name { font-size: 15px; font-weight: 700; }
.vc-person-role { font-size: 11px; opacity: 0.6; margin-top: 2px; }

.vc-contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.vc-contact-group {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 10px 12px;
}
.vc-contact-group.full-width { grid-column: 1 / -1; }
.vc-group-title {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-light);
  opacity: 0.9;
  margin-bottom: 7px;
}
.vc-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 11px;
  opacity: 0.88;
  margin-bottom: 5px;
  line-height: 1.4;
}
.vc-item:last-child { margin-bottom: 0; }
.vc-item svg { width: 12px; height: 12px; opacity: 0.7; flex-shrink: 0; margin-top: 1px; }
.vc-item-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--accent);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #1a1a1a;
}
.trust-dot { width: 4px; height: 4px; background: rgba(0,0,0,0.25); border-radius: 50%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(var(--bg-rgb, 248,245,240), 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav-brand-icon {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
}
.nav-brand-text span { color: var(--accent-dark); }
.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--primary); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 58px; left: 0; right: 0;
  background: var(--bg-card);
  z-index: 999;
  padding: 16px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  color: var(--text-dark);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: calc(100vh - 58px);
  min-height: 440px;
  max-height: 720px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 70px;
  z-index: 5;
  text-align: center;
  color: white;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 7vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  font-size: 15px;
  opacity: 0.92;
  margin-bottom: 28px;
  font-weight: 300;
  max-width: 480px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.14);
  border: none;
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 20px;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-arrow:hover { background: rgba(255,255,255,0.28); }
.arrow-left { left: 14px; }
.arrow-right { right: 14px; }
.slider-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.dot.active { background: var(--accent); width: 22px; border-radius: 4px; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--primary);
  padding: 24px 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: white;
  flex: 1;
  min-width: 80px;
  max-width: 140px;
  padding: 8px 16px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  color: var(--accent-light);
}
.stat-label {
  font-size: 10px;
  opacity: 0.7;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--bg-section-alt); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.25s;
}
.service-card:hover {
  border-color: var(--primary-light);
  background: var(--bg-card);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.service-name { font-weight: 700; font-size: 13px; margin-bottom: 4px; }
.service-desc { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   PACKAGES
   ============================================================ */
#packages { background: var(--bg); }
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filter-tab {
  padding: 7px 18px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-mid);
  font-family: var(--font-body);
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pkg-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pkg-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pkg-card.hidden { display: none; }
.pkg-img { width: 100%; height: 130px; position: relative; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.pkg-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-img-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: var(--accent);
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.pkg-body { padding: 12px 14px 14px; }
.pkg-title { font-weight: 700; font-size: 13px; margin-bottom: 9px; line-height: 1.35; }
.pkg-details { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.pkg-detail-row {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: var(--text-mid);
  gap: 0;
}
.pkg-detail-label { color: var(--text-light); min-width: 72px; font-size: 10px; }
.pkg-detail-val { font-weight: 600; color: var(--text-dark); }
.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  border-top: 1px solid var(--border);
  padding-top: 9px;
  margin-top: 4px;
}
.pkg-price { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--primary); }
.pkg-price-unit { font-size: 10px; color: var(--text-light); }

/* ============================================================
   DESTINATIONS
   ============================================================ */
#destinations { background: var(--bg-section-alt); }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.dest-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  height: 115px;
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.62) 0%, transparent 55%);
}
.dest-name {
  position: absolute;
  bottom: 10px; left: 12px;
  color: white;
  font-weight: 700;
  font-size: 13px;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* ============================================================
   HOTELS
   ============================================================ */
#hotels { background: var(--bg); }
.hotels-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.hotel-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.hotel-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.hotel-img { width: 120px; flex-shrink: 0; overflow: hidden; }
.hotel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hotel-card:hover .hotel-img img { transform: scale(1.05); }
.hotel-body { padding: 14px 16px; flex: 1; }
.hotel-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.hotel-location { font-size: 11px; color: var(--text-light); margin-bottom: 7px; }
.hotel-stars { color: var(--accent); font-size: 13px; margin-bottom: 7px; }
.hotel-amenities { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 9px; }
.amenity-tag {
  font-size: 9px;
  background: rgba(26,107,74,0.07);
  color: var(--primary);
  padding: 3px 9px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid rgba(26,107,74,0.10);
}
.hotel-price { font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--primary); }
.hotel-price small { font-family: var(--font-body); font-size: 10px; color: var(--text-light); font-weight: 400; }

/* ============================================================
   GALLERY — with lightbox trigger
   ============================================================ */
#gallery { background: var(--bg-section-alt); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-item:hover::after { opacity: 1; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox-overlay.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 92vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
  transition: transform 0.3s;
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-counter {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  background: rgba(0,0,0,0.5);
  padding: 4px 14px;
  border-radius: 20px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg-section-alt); }
.testi-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.testi-scroll::-webkit-scrollbar { height: 4px; }
.testi-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.testi-card {
  min-width: 280px;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; }
.testi-text { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 13px; }
.testi-place { font-size: 11px; color: var(--text-light); }

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}
#why-us .section-label { background: rgba(255,255,255,0.15); color: var(--accent-light); border-color: rgba(255,255,255,0.2); }
#why-us .section-title { color: white; }
#why-us .section-sub { color: rgba(255,255,255,0.7); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.why-card {
  background: rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.why-icon { font-size: 28px; margin-bottom: 10px; }
.why-title { font-weight: 700; font-size: 14px; margin-bottom: 5px; color: white; }
.why-desc { font-size: 12px; opacity: 0.72; line-height: 1.55; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--bg-section-alt); }
.contact-form-wrap {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.contact-alt { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.2s;
}
.contact-btn-wa { background: #25D366; color: white; }
.contact-btn-wa:hover { background: #1ebe5b; }
.contact-btn-phone { background: var(--primary); color: white; }
.contact-btn-phone:hover { background: var(--primary-light); }
.contact-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ============================================================
   MODALS (Package & Hotel Popups)
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-sheet {
  background: var(--bg-card);
  width: 100%;
  max-width: 540px;
  border-radius: 24px 24px 0 0;
  padding: 0 0 110px;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(30px);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.open .modal-sheet { transform: translateY(0); }
.modal-header {
  position: sticky;
  top: 0;
  background: var(--bg-card);
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
}
.modal-header-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  flex: 1;
  padding-right: 12px;
  line-height: 1.3;
}
.modal-close-btn {
  width: 32px; height: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  flex-shrink: 0;
  transition: all 0.2s;
}
.modal-close-btn:hover { background: var(--border); }
.modal-body { padding: 20px; }
.modal-img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 14px; }
.modal-badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.modal-info-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.modal-pill {
  background: rgba(26,107,74,0.07);
  border: 1px solid rgba(26,107,74,0.12);
  border-radius: 20px;
  padding: 6px 12px;
}
.modal-pill-label { font-size: 9px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.modal-pill-val { font-size: 12px; font-weight: 700; color: var(--primary); }
.modal-price-block {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.modal-price-block small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}
.modal-section { margin-bottom: 18px; }
.modal-section-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-dark);
  border-left: 3px solid var(--primary);
  padding-left: 9px;
  margin-bottom: 10px;
}
.modal-section p { font-size: 13px; color: var(--text-mid); line-height: 1.7; }
.modal-list { list-style: none; }
.modal-list li {
  font-size: 12px;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-bottom: 1px dashed var(--border);
}
.modal-list li:last-child { border-bottom: none; }
.modal-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.modal-list.excl li::before { content: '✗'; color: #e05555; }
.itin-days { display: flex; flex-direction: column; gap: 10px; }
.itin-day {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border-left: 3px solid var(--primary);
}
.itin-day-title { font-weight: 700; font-size: 12px; color: var(--primary); margin-bottom: 4px; }
.itin-day-desc { font-size: 12px; color: var(--text-mid); line-height: 1.55; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.modal-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}
.modal-action-wa { background: #25D366; color: white; }
.modal-action-wa:hover { background: #1ebe5b; }
.modal-action-enquiry { background: var(--bg); border: 2px solid var(--primary); color: var(--primary); }
.modal-action-enquiry:hover { background: var(--primary); color: white; }
.modal-action-call { background: var(--bg); border: 2px solid var(--primary); color: var(--primary); text-decoration: none; }
.modal-action-call:hover { background: var(--primary); color: white; }

/* Quick Contact Modal (centered) */
#quick-contact-overlay { align-items: center; padding: 16px; }
#quick-contact-overlay .modal-sheet { border-radius: 20px; max-width: 440px; padding-bottom: 20px; }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1001;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
}
.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: var(--font-body);
  border: none;
}
.sticky-call { background: var(--primary); color: white; }
.sticky-call:hover { background: var(--primary-light); }
.sticky-contact { background: var(--bg); color: var(--primary); border: 2px solid var(--primary); }
.sticky-contact:hover { background: var(--primary); color: white; }
.sticky-wa { background: #25D366; color: white; }
.sticky-wa:hover { background: #1ebe5b; }
.sticky-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0d1a14;
  color: rgba(255,255,255,0.75);
  padding: 40px 16px 110px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-brand-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.footer-logo-text { font-family: var(--font-heading); font-size: 22px; font-weight: 900; color: white; }
.footer-logo-text span { color: var(--accent-light); }
.footer-tagline { font-size: 11px; opacity: 0.45; margin-bottom: 22px; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-links-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-bottom: 24px; }
.footer-col h4 { color: white; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: none; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-light); }
.footer-contact-info { font-size: 12px; line-height: 2; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; margin-bottom: 24px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.social-link:hover { background: var(--accent); color: #1a1a1a; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  font-size: 11px;
  opacity: 0.35;
  text-align: center;
  line-height: 1.8;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 600px) {
  .services-grid      { grid-template-columns: repeat(3, 1fr); }
  .packages-grid      { grid-template-columns: repeat(3, 1fr); }
  .dest-grid          { grid-template-columns: repeat(3, 1fr); }
  .hotels-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid           { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid       { grid-template-columns: repeat(4, 1fr); }
  .vc-contacts-grid   { grid-template-columns: repeat(3, 1fr); }
  .site-nav           { padding: 0 28px; }
  .nav-links          { display: flex; }
  .hamburger          { display: none; }
  section             { padding: 64px 28px; }
}
@media (max-width: 599px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
}

/* ============================================================
   DARK THEME OVERRIDES (for luxury theme body bg)
   ============================================================ */
body.theme-luxury .site-nav {
  background: rgba(15,15,15,0.96);
}
body.theme-luxury .stats-strip {
  background: #1a1508;
}
body.theme-luxury .filter-tab {
  background: #1a1a1a;
  border-color: #333;
  color: #c8c0b0;
}
body.theme-luxury #why-us {
  background: linear-gradient(135deg, #1a1408 0%, #0a0a0a 100%);
}
body.theme-luxury .site-footer { background: #050505; }

/* ============================================================
   NO-CONTENT HIDDEN SECTIONS
   (set by PHP when ACF fields are empty)
   ============================================================ */
.section-hidden { display: none !important; }
