:root {
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-dark: #A87C10;
  --sand: #F2E0B0;
  --sand-light: #FBF4E2;
  --desert: #C9833A;
  --brown-dark: #3B1A05;
  --brown-mid: #5C3010;
  --brown-light: #8B5A2B;
  --sky: #1A3A5C;
  --sky-light: #2A5A8C;
  --white: #FFFDF5;
  --text-dark: #1E0F00;
  --text-mid: #4A2C0A;
  --whatsapp: #25D366;
  --email-red: #EA4335;
  --shadow: 0 8px 32px rgba(59,26,5,0.18);
  --shadow-gold: 0 4px 24px rgba(212,160,23,0.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--sand-light); color: var(--text-dark); overflow-x: hidden; }

/* ===== TOP BAR ===== */
.top-bar {
  background: linear-gradient(90deg, var(--brown-dark) 0%, var(--sky) 100%);
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1000;
  position: relative;
}
.top-bar-left { color: var(--gold-light); font-size: 13px; font-weight: 600; letter-spacing: 0.5px; }
.top-bar-left i { margin-right: 6px; }
.top-bar-right { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.tb-contact {
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-size: 13px; font-weight: 600;
  text-decoration: none; padding: 4px 12px; border-radius: 20px;
  transition: all 0.3s;
}
.tb-wa { background: var(--whatsapp); }
.tb-email { background: var(--email-red); }
.tb-contact:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.tb-contact i { font-size: 14px; }

/* ===== NAVBAR ===== */
.navbar {
  background: #FBF6F1;
  backdrop-filter: blur(10px);
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  min-height: 70px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--gold), var(--desert)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--brown-dark); box-shadow: 0 0 15px rgba(212,160,23,0.5); }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 20px; font-weight: 700; line-height: 1.1; }
.logo-sub { color: var(--sand); font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.nav-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-menu li a {
  color: #000; font-weight: 600; font-size: 14px; text-decoration: none; text-transform: uppercase;
  padding: 8px 14px; border-radius: 6px; transition: all 0.3s; display: block;
  letter-spacing: 0.3px;
}
.nav-menu li a:hover { background: var(--gold); color: var(--brown-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 25px; height: 3px; background: var(--gold-dark); border-radius: 2px; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== SLIDER ===== */
.slider-container {
  position: relative;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--brown-dark);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.8s ease;
  transform: scale(1.08);
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(59,26,5,0.2) 0%, rgba(26,58,92,0.55) 50%, rgba(59,26,5,0.85) 100%);
}
/* Placeholder gradient slides (replace background-image URLs with real images) */
.slide-1 { background-image: linear-gradient(135deg, #C9833A 0%, #8B5A2B 30%, #D4A017 60%, #1A3A5C 100%), url(''); background-blend-mode: multiply; background:url(../image/jaisalmer-fort-tourism.webp) }
.slide-2 { background-image: linear-gradient(135deg, #1A3A5C 0%, #2A5A8C 30%, #D4A017 60%, #C9833A 100%), url(''); background-blend-mode: multiply; background:url(../image/jaisalmer-desertsafari.webp)}
.slide-3 { background-image: linear-gradient(135deg, #5C3010 0%, #C9833A 40%, #D4A017 70%, #3B1A05 100%), url(''); background-blend-mode: multiply; background:url(../image/jaisalmerfort.webp)}
.slide-4 { background-image: linear-gradient(135deg, #2A5A8C 0%, #1A3A5C 30%, #C9833A 60%, #D4A017 100%), url(''); background-blend-mode: multiply; background:url(../image/diwali-new-year.webp)}

/* Sand dune silhouette SVG overlay */
.dune-svg { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 2; pointer-events: none; }

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  padding: 20px; 
}
.slide-label {
  font-family: 'Dancing Script', cursive;
  color: var(--gold-light);
  font-size: clamp(18px, 3vw, 26px);
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.3s;
}
.slide.active .slide-label { opacity: 1; transform: translateY(0); }
.slide-title {
  font-family: 'Cinzel', serif;
  color: #fff;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s 0.5s;
}
.slide.active .slide-title { opacity: 1; transform: translateY(0); }
.slide-desc {
  color: var(--sand);
  font-size: clamp(14px, 2vw, 18px);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s 0.7s;
}
.slide.active .slide-desc { opacity: 1; transform: translateY(0); }
.slide-btns {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(20px); transition: all 0.8s 0.9s;
}
.slide.active .slide-btns { opacity: 1; transform: translateY(0); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--brown-dark); font-weight: 700; padding: 14px 32px;
  border-radius: 50px; text-decoration: none; font-size: 15px;
  box-shadow: 0 6px 20px rgba(212,160,23,0.5); transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,160,23,0.6); filter: brightness(1.1); }
.btn-outline {
  background: transparent; color: #fff; font-weight: 700; padding: 13px 30px;
  border-radius: 50px; text-decoration: none; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.6); transition: all 0.3s;
  display: none; align-items: center; gap: 8px;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

/* Slider controls */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(212,160,23,0.85); border: none; color: var(--brown-dark);
  width: 48px; height: 48px; border-radius: 50%; font-size: 18px;
  cursor: pointer; z-index: 4; transition: all 0.3s;
}
.slider-btn:hover { background: var(--gold); transform: translateY(-50%) scale(1.1); }
.slider-btn.prev { left: 18px; }
.slider-btn.next { right: 18px; }
.slider-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--gold); width: 28px; border-radius: 5px; }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 118px; }
.section-alt { background: linear-gradient(180deg, var(--sand) 0%, var(--sand-light) 100%); }
.section-dark { background: linear-gradient(135deg, var(--brown-dark) 0%, var(--sky) 100%); }
.section-title-wrap { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-family: 'Dancing Script', cursive;
  color: var(--gold); font-size: 22px; display: block; margin-bottom: 6px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 4vw, 35px);
  color: var(--brown-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-dark .section-title { color: var(--gold-light); }
.section-title-underline {
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--desert));
  border-radius: 2px; margin: 0 auto 16px;
}
.section-desc { color: var(--text-mid); font-size: 16px; max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-title-wrap p { color: var(--text-mid); font-size: 16px; text-align: justify; margin: 0 auto; line-height: 1.7; }

.section-dark .section-desc { color: var(--sand); }

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

/* ===== ABOUT US ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img-wrap {
  position: relative; border-radius: 20px; 
  box-shadow: var(--shadow); 
}
.about-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--desert) 0%, var(--gold) 40%, var(--sky) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; color: rgba(255,255,255,0.3);
}
.about-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--desert));
  color: var(--brown-dark); padding: 14px 22px; border-radius: 14px;
  text-align: center; box-shadow: var(--shadow);
}
.about-badge .num { font-family: 'Cinzel', serif; font-size: 32px; font-weight: 900; }
.about-badge .lbl { font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.about-content h2 { font-family: 'Cinzel', serif; font-size: clamp(24px, 3vw, 36px); color: var(--brown-dark); margin-bottom: 16px; }
.about-content p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.stat-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px; padding: 18px 12px; text-align: center;
}
.stat-num { font-family: 'Cinzel', serif; font-size: 28px; font-weight: 900; color: var(--brown-dark); }
.stat-lbl { font-size: 12px; font-weight: 700; color: var(--brown-mid); }

/* ===== TOUR PACKAGES ===== */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 28px; }
.tour-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.tour-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(59,26,5,0.2); }
.tour-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.tour-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(59,26,5,0.7) 100%);
}
.t1 { background: linear-gradient(135deg, #C9833A, #D4A017); }
.t2 { background: linear-gradient(135deg, #1A3A5C, #2A5A8C); }
.t3 { background: linear-gradient(135deg, #5C3010, #C9833A); }
.t4 { background: linear-gradient(135deg, #D4A017, #8B5A2B); }
.t5 { background: linear-gradient(135deg, #2A5A8C, #C9833A); }
.t6 { background: linear-gradient(135deg, #3B1A05, #D4A017); }
.t7 { background: linear-gradient(135deg, #C9833A, #1A3A5C); }
.t8 { background: linear-gradient(135deg, #8B5A2B, #D4A017); }
.diwali { background: linear-gradient(135deg, #FF6B35, #FFD700, #FF4500); }
.newyear { background: linear-gradient(135deg, #1A3A5C, #2A5A8C, #D4A017); }
.tour-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--brown-dark);
  padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700;
}
.tour-badge.special { background: #FF4500; color: #fff; }
.tour-body { padding: 20px; }
.tour-name { font-family: 'Cinzel', serif; font-size: 17px; color: var(--brown-dark); margin-bottom: 6px; font-weight: 700; }
.tour-name a{ text-decoration:none;}
.tour-dest { color: var(--brown-light); font-size: 13px; margin-bottom: 10px; }
.tour-dest i { color: var(--gold); margin-right: 4px; }
.tour-duration { display: inline-flex; align-items: center; gap: 5px; background: var(--sand); color: var(--brown-mid); padding: 5px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 14px; }
.tour-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-wa-sm {
  flex: 1; background: var(--whatsapp); color: #fff; border: none;
  padding: 10px 12px; border-radius: 10px; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; display: flex; align-items: center;
  justify-content: center; gap: 5px; transition: all 0.3s;
}
.btn-wa-sm:hover { background: #20BA5A; transform: translateY(-2px); }
.btn-email-sm {
  flex: 1; background: var(--email-red); color: #fff; border: none;
  padding: 10px 12px; border-radius: 10px; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; display: flex; align-items: center;
  justify-content: center; gap: 5px; transition: all 0.3s;
}
.btn-email-sm:hover { background: #C62828; transform: translateY(-2px); }

/* Special tour cards */
.special-tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 32px; margin-top: 48px; }
.special-card {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  transition: all 0.4s;
  position: relative;
}
.special-card:hover { transform: translateY(-12px) scale(1.02); }
.special-card-img {
  display: flex; align-items: center; justify-content: center;
 font-size: 1px;
  height: auto; position: relative;
}
.special-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.special-card-img .s-icon { position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5)); }
.special-card-body { padding: 24px; background: #fff; }
.special-label {
  font-family: 'Cinzel', serif; font-size: 22px; color: var(--brown-dark);
  font-weight: 700; margin-bottom: 8px;
}
.special-desc { color: var(--text-mid); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.special-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.s-tag { background: var(--sand); color: var(--brown-mid); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }

/* ===== CAR RENTAL ===== */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 28px; }
.car-card {
  background: #fff; border-radius: 18px; padding: 28px 20px;
  box-shadow: var(--shadow); text-align: center; transition: all 0.4s;
  position: relative; overflow: hidden;
}
.car-icon img {
  font-size: 52px;
  margin-bottom: 14px;
  width: 100%;
}
.car-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--desert));
}
.car-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(59,26,5,0.18); }
.car-icon { font-size: 52px; margin-bottom: 14px; }
.car-name { font-family: 'Cinzel', serif; font-size: 18px; color: var(--brown-dark); margin-bottom: 6px; font-weight: 700; }
.car-type { color: var(--gold-dark); font-size: 13px; font-weight: 600; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.car-features { list-style: none; text-align: left; margin-bottom: 20px; }
.car-features li { font-size: 13px; color: var(--text-mid); padding: 4px 0; display: flex; gap: 8px; align-items: center; }
.car-features li i { color: var(--gold); width: 14px; }
.car-price { font-family: 'Cinzel', serif; font-size: 22px; color: var(--desert); font-weight: 700; margin-bottom: 16px; }
.car-price span { font-size: 13px; color: var(--brown-light); font-family: 'Nunito', sans-serif; font-weight: 400; }
.car-btns { display: flex; gap: 8px; }
.btn-wa-car {
  flex: 1; background: var(--whatsapp); color: #fff; padding: 10px;
  border-radius: 10px; text-decoration: none; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 5px; transition: all 0.3s;
}
.btn-wa-car:hover { background: #20BA5A; }
.btn-more {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--brown-dark);
  padding: 10px 14px; border-radius: 10px; text-decoration: none; font-size: 13px;
  font-weight: 700; display: flex; align-items: center; gap: 5px; transition: all 0.3s;
  white-space: nowrap;
}
.btn-more:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ===== ATTRACTIONS ===== */
.attractions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 28px; }
.attraction-card {
  border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.4s;
  position: relative; cursor: pointer;
  aspect-ratio: 3/4;
}
.attraction-card:hover .attr-img { transform: scale(1.08); }
.attraction-card:hover .attr-overlay { opacity: 1; }
.attraction-card:hover .attr-body { transform: translateY(0); }
.attr-img {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.a1 { background: linear-gradient(135deg, #D4A017 0%, #C9833A 100%); }
.a2 { background: linear-gradient(135deg, #1A3A5C 0%, #2A5A8C 100%); }
.a3 { background: linear-gradient(135deg, #5C3010 0%, #D4A017 100%); }
.a4 { background: linear-gradient(135deg, #C9833A 0%, #3B1A05 100%); }
.a5 { background: linear-gradient(135deg, #2A5A8C 0%, #D4A017 100%); }
.a6 { background: linear-gradient(135deg, #D4A017 0%, #1A3A5C 100%); }
.a7 { background: linear-gradient(135deg, #C9833A 0%, #5C3010 100%); }
.a8 { background: linear-gradient(135deg, #3B1A05 0%, #C9833A 100%); }
.attr-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(59,26,5,0.92) 100%);
  transition: opacity 0.4s;
}
.attr-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; color: #fff;
  transform: translateY(10px); transition: transform 0.4s;
}
.attr-name { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.attr-desc { font-size: 13px; color: var(--sand); line-height: 1.5; }

/* ===== INQUIRY FORM ===== */
.inquiry-wrap {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--sky) 100%);
  border-radius: 28px;
  padding: 56px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  max-width: 900px;
  margin: 0 auto;
}
  :root {
    --gold: #C8973A;
    --gold-light: #F5E4C3;
    --gold-dark: #8B6420;
    --deep: #1A1208;
    --surface: #FBF7EE;
    --card: #FFFFFF;
    --border: rgba(200,151,58,0.25);
    --border-focus: rgba(200,151,58,0.75);
    --text: #2C1F08;
    --muted: #7A6845;
    --error: #C0392B;
    --success: #1E8449;
    --radius: 10px;
  }



  .wrapper {
    width: 100%;
    max-width: 1064px;
  }

  .header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2.5rem 2rem 2rem;
    background: var(--deep);
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
  }

  .header::before {
    content: '';
    position: absolute;
    top: -40px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(200,151,58,0.15) 0%, transparent 70%);
    border-radius: 50%;
  }

  .compass {
    width: 52px; height: 52px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem;
    font-size: 26px;
    position: relative; z-index: 1;
    box-shadow: 0 0 0 8px rgba(200,151,58,0.15);
  }

  .header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    position: relative; z-index: 1;
    line-height: 1.2;
  }

  .header p {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin-top: 0.4rem;
    position: relative; z-index: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .divider {
    width: 48px; height: 2px;
    background: var(--gold);
    margin: 0.75rem auto 0;
    position: relative; z-index: 1;
  }

  .card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 16px 16px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 12px 48px rgba(26,18,8,0.08);
  }

  .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

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

  .grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 1rem;
    position: relative;
  }

  .field.no-mb { margin-bottom: 0; }

  label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
  }

  label .req {
    color: var(--gold);
    margin-left: 2px;
  }

  input, select, textarea {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.65rem 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    -webkit-appearance: none;
  }

  input:focus, select:focus, textarea:focus {
    border-color: var(--gold);
    background: #FFFDF7;
    box-shadow: 0 0 0 3px rgba(200,151,58,0.12);
  }

  input.error, select.error, textarea.error {
    border-color: var(--error);
    background: #FFF5F5;
  }

  select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8973A' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.2rem;
  }

  textarea { resize: vertical; min-height: 90px; }

  .err-msg {
    font-size: 0.72rem;
    color: var(--error);
    display: none;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
  }

  .err-msg.show { display: flex; }

  .captcha-box {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
  }

  .captcha-display {
    background: var(--deep);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    text-align: center;
    letter-spacing: 0.35em;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    user-select: none;
    min-width: 120px;
    position: relative;
    overflow: hidden;
  }

  .captcha-display::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 4px,
      rgba(200,151,58,0.05) 4px,
      rgba(200,151,58,0.05) 5px
    );
  }

  .captcha-sep {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    font-weight: 500;
  }

  .refresh-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--gold-light);
    color: var(--gold-dark);
    border: 1px solid rgba(200,151,58,0.3);
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
  }

  .refresh-btn:hover { background: rgba(200,151,58,0.25); }

  .refresh-btn svg { width: 14px; height: 14px; }

  .section-gap { margin-bottom: 1.5rem; }

  .submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--deep);
    color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.1s;
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
  }

  .submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.2s;
  }

  .submit-btn:hover::before { opacity: 1; }
  .submit-btn:active { transform: scale(0.99); }

  .submit-btn span, .submit-btn svg { position: relative; z-index: 1; }

  .submit-btn svg { width: 20px; height: 20px; }

  .whatsapp-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .whatsapp-note svg { width: 15px; height: 15px; color: #25D366; }

  .success-toast {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--deep);
    color: #fff;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 999;
    animation: slideUp 0.3s ease;
    border-left: 4px solid #25D366;
  }

  .success-toast.show { display: flex; }

  @keyframes slideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  @media (max-width: 600px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .header h1 { font-size: 1.5rem; }
    .card { padding: 1.5rem 1.25rem; }
    .captcha-box { grid-template-columns: 1fr; }
    .captcha-sep { display: none; }
  }

/* ===== FOOTER ===== */
.footer { background: var(--brown-dark); color: var(--sand); padding: 60px 20px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; max-width: 1220px; margin: 0 auto; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(242,224,176,0.75); margin: 16px 0; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.s-btn {
  width: 38px; height: 38px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: #fff; font-size: 15px;
  text-decoration: none; transition: all 0.3s;
}
.s-fb { background: #1877F2; } .s-ig { background: linear-gradient(45deg,#F09433,#E6683C,#DC2743,#CC2366,#BC1888); }
.s-yt { background: #FF0000; } .s-wa { background: var(--whatsapp); }
.s-btn:hover { transform: translateY(-4px) scale(1.1); }
.footer-title { font-family: 'Cinzel', serif; color: var(--gold-light); font-size: 16px; margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(242,224,176,0.75); text-decoration: none; font-size: 14px; transition: all 0.2s; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(242,224,176,0.85); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(212,160,23,0.2);
  margin-top: 40px; padding: 20px;
  text-align: center; font-size: 13px; color: rgba(242,224,176,0.5);
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ===== FLOATING BUTTONS ===== */
.float-btns { position: fixed; bottom: 24px; right: 20px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.float-btn {
  width: 54px; height: 54px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: #fff; font-size: 22px;
  text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.3); transition: all 0.3s;
}
.float-btn:hover { transform: scale(1.15) translateY(-4px); }
.float-wa { background: var(--whatsapp); }
.float-email { background: var(--email-red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .inquiry-wrap { padding: 36px 24px; }
}
@media (max-width: 768px) {
  .nav-menu {
    display: none; flex-direction: column; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(59,26,5,0.98); padding: 16px; z-index: 100;
  }
   .nav-menu li a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s;
  display: block;
  letter-spacing: 0.3px;
}
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .slider-container { height: 75vh; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 56px 16px; }
  .special-tours-grid { grid-template-columns: 1fr; }
  .inquiry-wrap { padding: 28px 16px; }
}
@media (max-width: 480px) {
  .top-bar { flex-direction: column; text-align: center; gap: 6px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right p{text-align:justify;}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

 .language-box{
      background:#5F2B0A;
      padding:14px;
      border-radius:10px;
      box-shadow:0 4px 15px rgba(0,0,0,0.1);
      width:100%;
      max-width:250px;
    }

    .language-box label{
      display:block;
      margin-bottom:10px;
      font-size:16px;
      font-weight:bold;
      color:#fff;
    }

    .language-box select{
      width:100%;
      padding:12px;
      border:1px solid #ccc;
      border-radius:8px;
      font-size:16px;
      background:#fff;
      cursor:pointer;
      outline:none;
    }

    .language-box select:focus{
      border-color:#0077ff;
    }

    @media (max-width:480px){
      .language-box{
        margin:15px;
        padding:15px;
      }
	  .nav-menu li a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.3s;
  display: block;
  letter-spacing: 0.3px;
}

      .language-box label{
        font-size:16px;
      }

      .language-box select{
        font-size:15px;
      }
    }
	
	

        /* Main Container */
        .hero-container {
            max-width: 1200px;
            width: 100%;
            display: grid; margin-top:20px;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            background: var(--glass-bg);
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        /* Decorative Background Shapes */
        .hero-container::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: rgba(0, 180, 219, 0.1);
            border-radius: 50%;
            z-index: 0;
        }

        /* Left Side: About Content */
        .content-side {
            z-index: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .badge {
            background: var(--primary-gradient);
            color: #000;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            width: fit-content;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

     
        p {
            color: #636e72;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .cta-button {
            padding: 15px 35px;
            background: #F5853A;
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: fit-content;
            box-shadow: 0 10px 20px rgba(0, 180, 219, 0.3);
        }
		.cta-button a {text-decoration:none; color:#fff;}

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 180, 219, 0.4);
        }

        /* Right Side: TripAdvisor Visuals */
        .image-side {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-stack {
            position: relative;
            width: 100%;
            height: 400px;
        }

        /* Main Image Effect */
        .main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        /* TripAdvisor Floating Card */
        .trip-advisor-card {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: float 4s ease-in-out infinite;
            border: 2px solid #00af87; /* TA Green */
        }

        .ta-logo {
            width: 120px;
            margin-bottom: 10px;
        }

        .stars {
            color: #00af87;
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .review-count {
            font-size: 0.8rem;
            color: #636e72;
            font-weight: 600;
        }

        /* Colorful Accents */
        .color-blob {
            position: absolute;
            width: 150px;
            height: 150px;
            filter: blur(40px);
            z-index: -1;
            opacity: 0.6;
        }

        .blob-1 { top: 0; left: 0; background: #ff4b2b; }
        .blob-2 { bottom: 0; right: 0; background: #a8ff78; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(2deg); }
            50% { transform: translateY(-15px) rotate(-1deg); }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-container {
                grid-template-columns: 1fr;
                padding: 30px;
                text-align: center;
            }

            .content-side {
                align-items: center;
            }

            .image-side {
                margin-top: 40px;
            }
            
            .image-stack {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .trip-advisor-card {
                right: 50%;
                transform: translateX(50%) rotate(0deg) !important;
                bottom: -40px;
                width: 80%;
            }
        }	
