/* ==========================================================================
   IZOL TOURS & TRAVELS - MIZORAM
   Modern Premium CSS Stylesheet
   ========================================================================== */

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

:root {
  /* Color Palette */
  --primary-deep: #082E23;
  --primary-green: #0F4C3A;
  --primary-light: #1A6C54;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #C29F2E;
  --accent-coral: #E05A47;
  --accent-teal: #17B890;
  
  --bg-main: #F6F9F7;
  --bg-surface: #FFFFFF;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --bg-dark: #0A1C16;

  --text-main: #1C2B26;
  --text-muted: #556B64;
  --text-light: #F0F4F2;
  --text-gold: #E5C158;

  --border-light: rgba(15, 76, 58, 0.12);
  --border-glass: rgba(255, 255, 255, 0.25);

  --shadow-sm: 0 4px 12px rgba(8, 46, 35, 0.06);
  --shadow-md: 0 10px 25px rgba(8, 46, 35, 0.1);
  --shadow-lg: 0 20px 40px rgba(8, 46, 35, 0.16);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.3);
  --shadow-wa: 0 8px 25px rgba(37, 211, 102, 0.4);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Typography Utility */
.heading-primary {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  color: var(--primary-deep);
}

.heading-secondary {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary-deep);
}

.sub-heading {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-light) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

/* Section Layout */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 38, 29, 0.92);
  backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bg-surface);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #B89220 100%);
  color: var(--primary-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #E5C158 0%, var(--accent-gold) 100%);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: var(--shadow-wa);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  padding: 7.5rem 0 4rem;
  display: flex;
  align-items: center;
  background: url('../images/hero.jpg') right top / cover no-repeat;
  color: #FFFFFF;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 38, 29, 0.68) 0%, rgba(7, 38, 29, 0.48) 50%, rgba(7, 38, 29, 0.92) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  color: var(--accent-gold);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-description {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.25rem;
  max-width: 640px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Quick Search / Filter Bar */
.hero-search-bar {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--text-main);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)) auto;
  gap: 1rem;
  align-items: flex-end;
}

.hero-search-bar .btn {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 42px;
}

.search-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.search-item label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.search-item select,
.search-item input {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  outline: none;
  font-weight: 500;
  color: var(--text-main);
  transition: var(--transition);
}

.search-item select:focus,
.search-item input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(15, 76, 58, 0.1);
}

/* Stats Counter */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.3rem;
}

/* ==========================================================================
   Features Bar / Why Choose Us
   ========================================================================== */
.why-us {
  background: var(--bg-surface);
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(15, 76, 58, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-green);
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 0.3rem;
}

.feature-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Tour Packages Section
   ========================================================================== */
.packages-section {
  background: var(--bg-main);
}

.package-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-green);
  color: #FFFFFF;
  border-color: var(--primary-green);
  box-shadow: var(--shadow-sm);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
  justify-content: center;
  gap: 2rem;
}

.package-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.package-img-wrap {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.package-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 85%;
  transition: transform 0.6s ease;
}

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

.package-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 38, 29, 0.85);
  backdrop-filter: blur(8px);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.package-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.package-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.package-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-deep);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.package-highlights {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.package-highlights li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-highlights i {
  color: var(--accent-teal);
  font-size: 0.8rem;
}

.package-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.package-price-wrap {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-green);
}

.package-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   Destinations Gallery Section
   ========================================================================== */
.destinations-section {
  background: var(--bg-surface);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.dest-card-lg {
  grid-column: span 8;
}

.dest-card-sm {
  grid-column: span 4;
}

.dest-card-md {
  grid-column: span 6;
}

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

.dest-card:hover img {
  transform: scale(1.06);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(7, 38, 29, 0.9) 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
}

.dest-tag {
  background: var(--accent-gold);
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  align-self: flex-start;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.dest-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}

.dest-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .dest-card-lg,
  .dest-card-sm,
  .dest-card-md {
    grid-column: span 12;
    min-height: 260px;
  }
}

/* ==========================================================================
   Interactive Itinerary Builder / WhatsApp Pricing Calculator
   ========================================================================== */
.calculator-section {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-green) 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.calculator-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.calc-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-form-group {
  margin-bottom: 1.5rem;
}

.calc-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-gold);
}

.calc-select,
.calc-input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  outline: none;
  transition: var(--transition);
}

.calc-select option {
  background: var(--primary-deep);
  color: #FFFFFF;
}

.calc-select:focus,
.calc-input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.18);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--accent-gold);
  width: 16px;
  height: 16px;
}

.calc-result-box {
  background: rgba(7, 38, 29, 0.7);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  text-align: center;
}

.calc-estimate-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.calc-price-display {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.calc-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.75rem;
}

/* ==========================================================================
   Culture & Experiences Section
   ========================================================================== */
.culture-section {
  background: var(--bg-main);
}

.culture-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.culture-img-gallery {
  position: relative;
}

.culture-main-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.culture-badge-floating {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 260px;
}

.culture-badge-floating i {
  font-size: 2.2rem;
  color: var(--accent-gold);
}

.culture-badge-floating h5 {
  font-size: 0.95rem;
  color: var(--primary-deep);
}

.culture-badge-floating p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.culture-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.culture-item {
  display: flex;
  gap: 1rem;
}

.culture-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.culture-item-text h4 {
  font-size: 1.05rem;
  color: var(--primary-deep);
  margin-bottom: 0.2rem;
}

.culture-item-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Inner Line Permit (ILP) Guide Box
   ========================================================================== */
.ilp-banner {
  background: #FFF8EA;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ilp-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.ilp-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-gold);
  color: var(--primary-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.ilp-info h4 {
  font-size: 1.2rem;
  color: var(--primary-deep);
  margin-bottom: 0.25rem;
}

.ilp-info p {
  font-size: 0.9rem;
  color: #6C5A20;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  background: var(--bg-surface);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.user-info h5 {
  font-size: 0.98rem;
  color: var(--primary-deep);
}

.user-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  background: var(--bg-main);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.35rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-green);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 0 1.75rem 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--primary-deep);
  color: #FFFFFF;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 1.2rem 0 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 0.85rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-deep);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   Sticky Floating WhatsApp CTA
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-wa);
  transition: var(--transition);
  font-weight: 700;
  font-size: 0.95rem;
  animation: pulse-wa 2.5s infinite;
}

.floating-whatsapp i {
  font-size: 1.5rem;
}

.floating-whatsapp:hover {
  transform: scale(1.05) translateY(-3px);
  background: #20BA5A;
  color: #FFFFFF;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   Modal Dialogs
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 38, 29, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  padding: 2.5rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-main);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent-coral);
  color: #FFFFFF;
}

/* Modal Content Styles */
.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-deep);
  margin-bottom: 0.5rem;
}

.modal-meta {
  display: flex;
  gap: 1rem;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.itinerary-step {
  margin-bottom: 1.2rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--primary-green);
}

.itinerary-step h5 {
  font-size: 1rem;
  color: var(--primary-deep);
}

.itinerary-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsive Optimization
   ========================================================================== */

/* Navbar Actions Base */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-wa);
  white-space: nowrap;
  transition: var(--transition);
}

.nav-wa-link:hover {
  background: #20BA5A;
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Tablet & Mobile Adjustments (max-width: 992px) */
@media (max-width: 992px) {
  .container {
    width: 92%;
    padding: 0 0.5rem;
  }

  .nav-brand {
    gap: 0.5rem;
  }

  .nav-logo-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-tagline {
    font-size: 0.62rem;
    letter-spacing: 1px;
  }

  .dest-card-lg, .dest-card-sm, .dest-card-md {
    grid-column: span 12;
  }

  .calc-card {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .culture-flex {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  /* Navbar Mobile Layout */
  .navbar {
    padding: 0.75rem 0;
  }

  .nav-brand {
    gap: 0.5rem;
  }

  .brand-tagline {
    display: none; /* Hide tagline on mobile to keep header clean & overflow-free */
  }

  .nav-wa-text {
    display: none; /* Hide phone number text on small screens */
  }

  .nav-wa-link {
    padding: 0.55rem;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    justify-content: center;
  }

  .nav-wa-link i {
    font-size: 1.25rem;
  }

  .nav-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(7, 38, 29, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    display: none;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.05rem;
    width: 100%;
    padding: 0.4rem 0;
  }

  /* Hero Mobile Layout */
  .hero {
    min-height: auto;
    padding: 6.5rem 0 3.5rem;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 2.25rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 0.85rem 1.2rem;
  }

  /* Hero Search Bar */
  .hero-search-bar {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.85rem;
  }

  .search-item select,
  .search-item input {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .hero-search-bar .btn {
    width: 100%;
    padding: 0.85rem;
    margin-top: 0.25rem;
    white-space: normal;
    height: auto;
  }

  /* Hero Stats Grid on Mobile */
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .stat-item h3 {
    font-size: 1.75rem;
  }

  .stat-item p {
    font-size: 0.78rem;
  }

  /* Why Us Bar */
  .why-us {
    margin-top: -2rem;
    padding: 1.5rem 1.2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    gap: 0.85rem;
  }

  /* Package Tabs */
  .package-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.6rem;
    margin-bottom: 1.75rem;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 0.55rem 1.1rem;
    font-size: 0.82rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .package-card {
    border-radius: var(--radius-md);
  }

  .package-img-wrap {
    height: 200px;
  }

  .package-body {
    padding: 1.2rem;
  }

  .package-title {
    font-size: 1.25rem;
  }

  .package-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .package-price-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .package-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }

  .package-actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.65rem 0.5rem;
  }

  /* Destinations Grid */
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dest-card {
    min-height: 240px;
  }

  .dest-title {
    font-size: 1.35rem;
  }

  .dest-desc {
    font-size: 0.82rem;
  }

  /* Calculator Section */
  .calc-card {
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .calc-result-box {
    padding: 1.5rem 1rem;
  }

  .calc-price-display {
    font-size: 2.3rem;
  }

  /* Culture Section */
  .culture-badge-floating {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -1.5rem;
    margin-left: 1rem;
    max-width: calc(100% - 2rem);
  }

  /* ILP Banner */
  .ilp-banner {
    padding: 1.5rem 1.2rem;
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
  }

  .ilp-content {
    flex-direction: column;
    gap: 1rem;
  }

  .ilp-banner .btn {
    width: 100%;
  }

  /* Testimonials Grid */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  /* FAQ Accordion */
  .faq-question {
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-answer {
    font-size: 0.88rem;
    padding: 0 1.25rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
  }

  /* Footer */
  .footer {
    padding: 3.5rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Sticky Floating WhatsApp CTA */
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp i {
    font-size: 1.7rem;
    margin: 0;
  }

  /* Modal Dialogs on Mobile */
  .modal-overlay {
    padding: 0.85rem;
  }

  .modal-container {
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-md);
    max-height: 88vh;
  }

  .modal-header h3 {
    font-size: 1.4rem;
  }
}

