/* ============================================
   TRIP ZONE - Premium Travel Agency
   Main Stylesheet
   ============================================ */

/* === CSS Variables === */
:root {
  --primary: #0057a8;
  --primary-dark: #003d7a;
  --primary-light: #1a7fd4;
  --gold: #c9a84c;
  --gold-light: #e8c96e;
  --gold-dark: #a07830;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light-gray: #f0f4f8;
  --gray: #6c757d;
  --dark: #1a1a2e;
  --text: #333344;
  --text-light: #666680;
  --border: #e0e8f0;
  --shadow: 0 4px 24px rgba(0,87,168,0.10);
  --shadow-hover: 0 8px 40px rgba(0,87,168,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* === Typography === */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--dark); line-height: 1.2; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--gold); font-family: var(--font-main); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; display: block; }
.section-desc { color: var(--text-light); font-size: 1rem; max-width: 600px; }

/* === Buttons === */
.btn-primary-tz {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,87,168,0.3);
}
.btn-primary-tz:hover { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,87,168,0.4); color: var(--white); }

.btn-gold-tz {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.btn-gold-tz:hover { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.5); color: var(--dark); }

.btn-outline-tz {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-tz:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.5); color: var(--white); }

/* === Topbar === */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  font-size: 0.85rem;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold-light); }
.topbar-icon { color: var(--gold); margin-right: 5px; }

/* === Navbar === */
.navbar-tz {
  background: var(--white);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar-tz.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.navbar-brand-tz {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
}
.brand-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-main);
}
.brand-text-main { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary); line-height: 1; }
.brand-text-sub { font-size: 0.65rem; color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.nav-link-tz {
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 20px 14px !important;
  position: relative;
  transition: var(--transition);
}
.nav-link-tz::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link-tz:hover, .nav-link-tz.active { color: var(--primary) !important; }
.nav-link-tz:hover::after, .nav-link-tz.active::after { transform: scaleX(1); }

.dropdown-menu-tz {
  border: none;
  box-shadow: var(--shadow-hover);
  border-radius: var(--radius);
  padding: 10px 0;
  margin-top: 0;
  min-width: 220px;
  animation: fadeInUp 0.2s ease;
}
.dropdown-item-tz {
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
  display: block;
}
.dropdown-item-tz:hover { background: var(--light-gray); color: var(--primary); border-left-color: var(--primary); }

.nav-call-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-call-btn:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white !important; transform: translateY(-1px); }
.nav-call-btn::after { display: none !important; }

/* === Hero === */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0,30,70,0.82) 0%, rgba(0,87,168,0.65) 100%),
              url('../images/hero-jaipur.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}
.hero-badge {
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-stats { display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: var(--gold-light); font-family: var(--font-main); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* Hero Search Box */
.hero-search-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hero-search-box h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 20px; font-family: var(--font-main); font-weight: 700; }
.search-field label { font-size: 0.78rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: block; }
.search-field .form-control, .search-field .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--off-white);
}
.search-field .form-control:focus, .search-field .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,87,168,0.1); outline: none; background: var(--white); }

/* === Features Strip === */
.features-strip {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 24px 0;
}
.feature-item { display: flex; align-items: center; gap: 12px; color: white; }
.feature-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.feature-text-main { font-weight: 600; font-size: 0.9rem; line-height: 1.2; }
.feature-text-sub { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.feature-divider { width: 1px; background: rgba(255,255,255,0.2); height: 40px; align-self: center; }

/* === Section Spacing === */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 50px 0; }
.section-header { margin-bottom: 50px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.divider-gold { height: 3px; width: 60px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin-bottom: 16px; }
.section-header.center .divider-gold { margin-left: auto; margin-right: auto; }

/* === Package Cards === */
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--border);
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.package-card-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: var(--transition);
}
.package-card:hover .package-card-img { transform: scale(1.05); }
.package-card-img-wrap { overflow: hidden; position: relative; }
.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.package-badge.popular { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; }
.package-card-body { padding: 22px; }
.package-meta { display: flex; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.package-meta-item { font-size: 0.8rem; color: var(--gray); display: flex; align-items: center; gap: 4px; }
.package-meta-item i { color: var(--primary); }
.package-card-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; font-family: var(--font-heading); }
.package-card-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.package-includes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.package-include-tag { background: var(--light-gray); color: var(--text-light); padding: 3px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 500; }
.package-price-row { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); gap: 10px; flex-wrap: wrap; }
.package-price-label { font-size: 0.75rem; color: var(--gray); }
.package-price { font-size: 1.4rem; font-weight: 800; color: var(--primary); font-family: var(--font-main); }
.package-price span { font-size: 0.8rem; color: var(--gray); font-weight: 400; }
.package-rating { display: flex; align-items: center; gap: 4px; font-size: 0.82rem; color: var(--gray); }
.package-rating i { color: var(--gold); }

/* === Destination Cards === */
.dest-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  display: block;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dest-card img { width: 100%; height: 280px; object-fit: cover; transition: var(--transition); display: block; }
.dest-card:hover img { transform: scale(1.08); }
.dest-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  padding: 30px 20px 20px;
  color: white;
}
.dest-card-name { font-size: 1.2rem; font-weight: 700; font-family: var(--font-heading); }
.dest-card-count { font-size: 0.8rem; color: rgba(255,255,255,0.75); margin-top: 3px; }
.dest-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1rem;
  transition: var(--transition);
  transform: scale(0);
}
.dest-card:hover .dest-card-arrow { transform: scale(1); }

/* === Why Choose Us === */
.why-card {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.why-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); color: var(--dark); transform: rotate(5deg) scale(1.1); }
.why-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.why-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.7; }

/* === Testimonials === */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-quote {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.review-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
.review-place { font-size: 0.78rem; color: var(--gray); }

/* === Inquiry Form === */
.inquiry-form-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.inquiry-form-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.inquiry-form-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.inquiry-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.form-label-tz { font-size: 0.82rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; display: block; }
.form-control-tz, .form-select-tz {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  width: 100%;
  background: var(--off-white);
  font-family: var(--font-main);
}
.form-control-tz:focus, .form-select-tz:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,87,168,0.1); outline: none; background: var(--white); }

/* === Gallery === */
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: var(--transition); display: block; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,87,168,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 1.8rem; }

/* === FAQ === */
.faq-item { margin-bottom: 14px; }
.faq-question {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  user-select: none;
  gap: 12px;
}
.faq-question:hover, .faq-question.active { border-color: var(--primary); color: var(--primary); background: rgba(0,87,168,0.04); }
.faq-icon { width: 28px; height: 28px; background: var(--light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); font-size: 1rem; color: var(--gray); }
.faq-question.active .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer { background: var(--light-gray); border-radius: 0 0 var(--radius) var(--radius); padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.35s ease; font-size: 0.9rem; color: var(--text-light); line-height: 1.8; }
.faq-answer.open { padding: 18px 24px; max-height: 500px; }

/* === Page Hero === */
.page-hero {
  padding: 140px 0 80px;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,20,60,0.85) 0%, rgba(0,87,168,0.7) 100%),
              url('../images/scenic-bg.jpg') center/cover no-repeat;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: white; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 550px; margin: 0 auto 16px; }
.breadcrumb-tz { display: flex; justify-content: center; gap: 8px; align-items: center; font-size: 0.88rem; flex-wrap: wrap; }
.breadcrumb-tz a { color: var(--gold-light); }
.breadcrumb-tz span { color: rgba(255,255,255,0.5); }

/* Dest page heroes */
.dest-hero-jaipur { background: linear-gradient(135deg, rgba(0,20,60,0.8) 0%, rgba(0,87,168,0.65) 100%), url('../images/hero-jaipur.jpg') center/cover no-repeat; }
.dest-hero-agra { background: linear-gradient(135deg, rgba(0,20,60,0.8) 0%, rgba(0,87,168,0.65) 100%), url('../images/taj-mahal.jpg') center/cover no-repeat; }
.dest-hero-delhi { background: linear-gradient(135deg, rgba(0,20,60,0.8) 0%, rgba(0,87,168,0.65) 100%), url('../images/delhi-india-gate.jpg') center/cover no-repeat; }
.dest-hero-rajasthan { background: linear-gradient(135deg, rgba(0,20,60,0.8) 0%, rgba(0,87,168,0.65) 100%), url('../images/rajasthan-fort.jpg') center/cover no-repeat; }

/* === Stats Banner === */
.stats-banner { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 40px 0; }
.stat-item { text-align: center; color: white; }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--gold-light); font-family: var(--font-main); line-height: 1; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* === Contact Cards === */
.contact-info-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); border: 1px solid var(--border); height: 100%; transition: var(--transition); }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.contact-info-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; margin-bottom: 16px; }
.contact-info-card h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.contact-info-card a:hover { color: var(--primary); }

/* === Attraction Cards === */
.attraction-card { display: flex; gap: 16px; background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); margin-bottom: 16px; transition: var(--transition); }
.attraction-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.attraction-icon { width: 50px; height: 50px; background: var(--light-gray); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; color: var(--primary); }
.attraction-info h5 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.attraction-info p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* === Season Cards === */
.season-card { background: var(--white); border-radius: var(--radius); padding: 20px; border: 1px solid var(--border); text-align: center; transition: var(--transition); height: 100%; }
.season-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.season-icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.season-card h5 { font-weight: 700; color: var(--dark); font-size: 0.95rem; margin-bottom: 6px; }
.season-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* === Itinerary === */
.itinerary-day { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 14px; overflow: hidden; }
.itinerary-day-header { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); color: white; padding: 14px 22px; display: flex; align-items: center; gap: 12px; cursor: pointer; font-weight: 700; font-size: 0.95rem; }
.itinerary-day-num { background: rgba(255,255,255,0.25); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.itinerary-day-body { padding: 20px 22px; font-size: 0.87rem; color: var(--text-light); line-height: 1.8; }
.itinerary-day-body ul { padding-left: 16px; margin-top: 10px; list-style: disc; }
.itinerary-day-body ul li { margin-bottom: 6px; }

/* Include/Exclude */
.inc-exc-list { padding: 0; }
.inc-exc-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.87rem; color: var(--text-light); border-bottom: 1px solid var(--border); }
.inc-exc-list li:last-child { border-bottom: none; }
.inc-exc-list .inc-icon { color: #28a745; font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.inc-exc-list .exc-icon { color: #dc3545; font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }

/* === Floating Buttons === */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
  color: white;
}
.float-btn:hover { transform: scale(1.12); color: white; }
.float-whatsapp { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.float-call { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.float-btn-label {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: white;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  font-family: var(--font-main);
}
.float-btn-label::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--dark); }
.float-btn:hover .float-btn-label { opacity: 1; }
.float-pulse { animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* === Popup === */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 99999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); padding: 20px; }
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; max-width: 560px; width: 100%; position: relative; transform: scale(0.9); transition: var(--transition); }
.popup-overlay.active .popup-card { transform: scale(1); }
.popup-header { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); padding: 28px 30px 20px; color: white; }
.popup-header h3 { font-size: 1.4rem; color: white; margin-bottom: 6px; }
.popup-header p { color: rgba(255,255,255,0.82); font-size: 0.88rem; margin: 0; }
.popup-close { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; font-size: 1.1rem; transition: var(--transition); border: none; }
.popup-close:hover { background: rgba(255,255,255,0.35); }
.popup-body { padding: 28px 30px; }

/* === Sticky Call Bar (mobile) === */
.sticky-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9990;
  display: none;
  padding: 12px 16px;
  gap: 10px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}
@media (max-width: 768px) { .sticky-call-bar { display: flex; } }
.sticky-call-bar a { flex: 1; padding: 13px; border-radius: 12px; font-weight: 700; font-size: 0.88rem; display: flex; align-items: center; justify-content: center; gap: 6px; color: white; }
.sticky-call-bar .call-now { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.sticky-call-bar .wa-now { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }

/* === Footer === */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
}
.footer-brand { margin-bottom: 20px; }
.footer-brand .brand-text-main { color: var(--white); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }
.footer-heading { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; font-family: var(--font-main); position: relative; padding-bottom: 12px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--gold); border-radius: 2px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p, .footer-contact-item a { font-size: 0.87rem; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { margin-top: 50px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold-light); }

/* === Back to Top === */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9000;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,87,168,0.35);
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-4px); }

/* === Utilities === */
.text-gold { color: var(--gold) !important; }
.text-primary-tz { color: var(--primary) !important; }
.bg-light-tz { background: var(--off-white) !important; }

/* === Animations === */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.animate-fadeInUp { animation: fadeInUp 0.7s ease both; }
.animate-delay-1 { animation-delay: 0.15s; }
.animate-delay-2 { animation-delay: 0.3s; }
.animate-delay-3 { animation-delay: 0.45s; }
.animate-delay-4 { animation-delay: 0.6s; }

/* === Responsive === */
@media (max-width: 991px) {
  .feature-divider { display: none; }
  .hero-section { padding: 80px 0 50px; }
  .nav-link-tz { padding: 12px 16px !important; }
  .nav-link-tz::after { display: none; }
}
@media (max-width: 767px) {
  .section-padding { padding: 55px 0; }
  .hero-stats { gap: 20px; }
  .floating-btns { bottom: 90px; }
  .inquiry-form-card { padding: 24px 20px; }
  .popup-header { padding: 20px; }
  .popup-body { padding: 20px; }
  .back-to-top { bottom: 80px; }
}
@media (max-width: 576px) {
  .hero-title { font-size: 1.9rem; }
  .package-card-img { height: 190px; }
  .dest-card img { height: 220px; }
  .floating-btns { right: 14px; }
}
