/* ==========================================================================
   CHOLAN HOLIDAYS - Main Stylesheet
   Theme: Royal Temple Heritage & Luxury Tourism (Gold & Dark Brown)
   ========================================================================== */

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

:root {
  /* Color Palette matching the exact reference */
  --primary-gold: #c6923c;
  --primary-gold-hover: #b07d29;
  --primary-gold-light: #e5b35c;
  --gold-gradient: linear-gradient(135deg, #dfaa48 0%, #b8812c 100%);
  --gold-glow: rgba(198, 146, 60, 0.35);

  --dark-bg: #140f0c;
  --dark-surface: #1e1713;
  --dark-surface-2: #271f1a;
  --dark-card: #201814;
  --dark-border: rgba(198, 146, 60, 0.25);
  --dark-border-subtle: rgba(255, 255, 255, 0.08);

  --light-bg: #fbf9f5;
  --light-surface: #ffffff;
  --light-border: #ede6dc;

  --text-white: #ffffff;
  --text-muted: #a89f91;
  --text-dark: #221d18;
  --text-dark-muted: #6b6357;

  /* Typography */
  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-subheading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 18px 45px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 8px 24px rgba(198, 146, 60, 0.28);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
}

/* Reset & Global */
*, *::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(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--dark-bg);
  border-bottom: 1px solid rgba(198, 146, 60, 0.15);
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfc6b8;
}

.top-bar-item i {
  color: var(--primary-gold);
  font-size: 0.9rem;
}

.top-bar-item a:hover {
  color: var(--primary-gold-light);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  background-color: var(--dark-bg);
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(198, 146, 60, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo .logo-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid var(--primary-gold);
  box-shadow: 0 0 12px var(--gold-glow);
  background-color: #f7ede1;
}

.brand-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #140f0c;
  font-size: 1.4rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

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

.brand-logo .logo-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #f1dfb8;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-logo .logo-subtitle {
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--primary-gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* Navigation Links */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: #f0e6d6;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-gold-light);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Header Action Button */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-enquire {
  background: var(--gold-gradient);
  color: #140f0c;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(198, 146, 60, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-enquire:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 146, 60, 0.45);
  background: linear-gradient(135deg, #eec165 0%, #c6923c 100%);
  color: #000;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO BANNER SLIDER (Multi-Banner Carousel like southindiavacations.com)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.hero-slider-container {
  position: relative;
  min-height: 85vh;
  width: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 6s ease-out, visibility 1s;
  z-index: 1;
  padding: 70px 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 5;
}

.hero-slide.active .hero-subtitle-badge {
  animation: fadeInDown 0.8s ease forwards;
}

.hero-slide.active .hero-title {
  animation: fadeInUp 0.9s ease 0.2s forwards;
}

.hero-slide.active .hero-desc {
  animation: fadeInUp 0.9s ease 0.4s forwards;
}

.hero-slide.active .hero-buttons {
  animation: fadeInUp 0.9s ease 0.6s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle-badge {
  display: inline-block;
  color: var(--primary-gold-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 15px;
  border-left: 3px solid var(--primary-gold);
  padding-left: 12px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 14px;
  border-radius: var(--radius-sm);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title span {
  color: var(--primary-gold-light);
  background: linear-gradient(135deg, #fff0cf 0%, #dfaa48 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: #f0e9df;
  margin-bottom: 35px;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #140f0c;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(198, 146, 60, 0.35);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(198, 146, 60, 0.5);
  color: #000;
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(20, 15, 12, 0.4);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* Slider Controls: Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20, 15, 12, 0.65);
  border: 1.5px solid rgba(198, 146, 60, 0.5);
  color: var(--primary-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: var(--gold-gradient);
  color: #140f0c;
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(198, 146, 60, 0.6);
}

.slider-arrow.prev {
  left: 25px;
}

.slider-arrow.next {
  right: 25px;
}

/* Slider Controls: Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(198, 146, 60, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  width: 32px;
  border-radius: 12px;
  background: var(--gold-gradient);
  border-color: transparent;
  box-shadow: 0 0 10px rgba(198, 146, 60, 0.6);
}

/* ==========================================================================
   FEATURES STRIP
   ========================================================================== */
.features-strip {
  background-color: var(--light-surface);
  border-bottom: 1px solid var(--light-border);
  padding: 30px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fdf6ec;
  border: 1.5px solid rgba(198, 146, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feature-icon-wrap {
  background: var(--gold-gradient);
  color: #140f0c;
  transform: scale(1.05);
}

.feature-texts h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.feature-texts p {
  font-size: 0.82rem;
  color: var(--text-dark-muted);
}

/* ==========================================================================
   SECTION COMMON HEADINGS & ELEMENTS
   ========================================================================== */
.section-padding {
  padding: 70px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-header.dark h2 {
  color: #ffffff;
}

.section-header .divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.section-header .divider-ornament span {
  width: 45px;
  height: 1.5px;
  background: var(--primary-gold);
}

.section-header .divider-ornament i {
  color: var(--primary-gold);
  font-size: 0.85rem;
}

.section-header p {
  color: var(--text-dark-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 10px auto 0;
}

/* ==========================================================================
   POPULAR DESTINATIONS GRID
   ========================================================================== */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 146, 60, 0.4);
}

.destination-image-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.destination-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-image-box img {
  transform: scale(1.08);
}

.destination-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(20, 15, 12, 0.8);
  backdrop-filter: blur(4px);
  color: var(--primary-gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(198, 146, 60, 0.3);
}

.destination-info {
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.destination-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.destination-info p {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-bottom: 15px;
}

.btn-card-gold {
  background: #fdf7ed;
  color: #925f19;
  border: 1px solid rgba(198, 146, 60, 0.4);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  margin-top: auto;
}

.destination-card:hover .btn-card-gold {
  background: var(--gold-gradient);
  color: #140f0c;
  border-color: transparent;
}

/* ==========================================================================
   OUR TOUR PACKAGES (CARDS & FILTER)
   ========================================================================== */
.packages-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.filter-btn:hover,
.filter-btn.active {
  background: var(--dark-bg);
  color: var(--primary-gold-light);
  border-color: var(--primary-gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(198, 146, 60, 0.45);
}

.package-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.package-category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(20, 15, 12, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(198, 146, 60, 0.3);
}

.package-details {
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.package-duration {
  font-size: 0.82rem;
  color: var(--text-dark-muted);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.package-duration i {
  color: var(--primary-gold);
}

.package-price-wrap {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--light-border);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #a46d1e;
  display: block;
}

.package-price span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dark-muted);
  font-family: var(--font-body);
}

.btn-book-tour {
  display: block;
  margin-top: 10px;
  background: var(--gold-gradient);
  color: #140f0c;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-book-tour:hover {
  background: linear-gradient(135deg, #f0c36b 0%, #cf963a 100%);
  transform: translateY(-2px);
}

/* ==========================================================================
   PAGE BANNER / BREADCRUMB (ABOUT, TOURS, CONTACT, DESTINATIONS)
   ========================================================================== */
.page-banner {
  background: linear-gradient(to right, rgba(20, 15, 12, 0.95), rgba(30, 23, 19, 0.88)),
              url('https://images.unsplash.com/photo-1600100397608-f010f4439066?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid rgba(198, 146, 60, 0.25);
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb-nav a {
  color: var(--primary-gold-light);
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   ABOUT US SECTION & PAGE
   ========================================================================== */
.about-welcome-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 45px;
  align-items: center;
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
}

.about-img-box img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.about-content-box .sub-gold {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 6px;
}

.about-content-box h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.about-content-box h3.trusted-tag {
  font-family: var(--font-subheading);
  font-size: 1.3rem;
  color: #925f19;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-content-box p {
  color: var(--text-dark-muted);
  font-size: 0.98rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.about-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.about-checklist-item i {
  color: var(--primary-gold);
  font-size: 1.1rem;
}

/* Stats Counter Bar */
.stats-counter-strip {
  background: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  padding: 50px 0;
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.stat-card {
  padding: 10px;
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 10px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ==========================================================================
   DESTINATION DETAILS PAGE
   ========================================================================== */
.destination-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.dest-main-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}

.dest-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-meta-header h2 {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.star-rating {
  color: #f5a623;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

.star-rating span {
  color: var(--text-dark-muted);
  font-size: 0.85rem;
  margin-left: 6px;
}

.dest-detail-desc {
  color: var(--text-dark-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.top-attractions-block h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.attraction-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.attraction-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.attraction-list li i {
  color: var(--primary-gold);
}

.destination-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.dest-gallery-thumb {
  height: 110px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.dest-gallery-thumb:hover {
  border-color: var(--primary-gold);
  transform: translateY(-3px);
}

.dest-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-enquire-center {
  text-align: center;
  padding-top: 15px;
}

/* ==========================================================================
   CONTACT US PAGE
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  padding: 35px 30px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-info-card p.sub {
  color: var(--text-dark-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-detail-item .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fdf6ec;
  border: 1px solid rgba(198, 146, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-item .detail-texts h4 {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-detail-item .detail-texts a,
.contact-detail-item .detail-texts span {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-detail-item .detail-texts a:hover {
  color: #925f19;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-bg);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.social-circle:hover {
  background: var(--gold-gradient);
  color: #140f0c;
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background: var(--light-surface);
  border-radius: var(--radius-md);
  padding: 35px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #dcd3c5;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-dark);
  transition: var(--transition);
  font-size: 0.95rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(198, 146, 60, 0.15);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  background: var(--gold-gradient);
  color: #140f0c;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: linear-gradient(135deg, #f0c36b 0%, #cf963a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 146, 60, 0.35);
}

/* ==========================================================================
   FOOTER CONTACT STRIP & MAIN FOOTER
   ========================================================================== */
.footer-contact-strip {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(198, 146, 60, 0.2);
  border-bottom: 1px solid rgba(198, 146, 60, 0.15);
  padding: 24px 0;
  color: #ffffff;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-contact-item .f-icon {
  font-size: 1.4rem;
  color: var(--primary-gold);
}

.footer-contact-item .f-texts h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-contact-item .f-texts a,
.footer-contact-item .f-texts span {
  font-size: 0.92rem;
  color: #f0e6d6;
  font-weight: 600;
}

.footer-contact-item .f-texts a:hover {
  color: var(--primary-gold-light);
}

/* Main Dark Footer */
.main-footer {
  background-color: var(--dark-bg);
  color: #a89f91;
  padding: 60px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 35px;
  margin-bottom: 45px;
}

.footer-brand .brand-logo {
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #b3a99a;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #b3a99a;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--primary-gold-light);
  transform: translateX(4px);
}

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

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #ffffff;
  padding: 10px 20px 10px 16px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.92rem;
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}

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

.floating-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-3px) scale(1.03);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

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

/* ==========================================================================
   MODAL DIALOG (QUICK ENQUIRY)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 8, 6, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.modal-dialog {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(198, 146, 60, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text-dark-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  color: #000;
}

.modal-header-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }
  .features-grid,
  .destinations-grid,
  .packages-grid,
  .grid-3-col,
  .stats-grid,
  .footer-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-welcome-wrap,
  .destination-detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
  }
  .top-bar-content {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
  }
  .site-header {
    padding: 6px 0;
  }
  .header-container {
    padding: 0 16px;
  }
  .brand-logo {
    gap: 10px;
  }
  .logo-img {
    width: 38px;
    height: 38px;
  }
  .logo-title {
    font-size: 1.15rem;
  }
  .logo-subtitle {
    font-size: 0.6rem;
  }

  /* Mobile Navigation Drawer */
  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 68px);
    background: #140e0a;
    border-bottom: 2px solid var(--primary-gold);
    padding: 20px 24px 30px;
    display: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    z-index: 1000;
  }
  .main-nav.active {
    display: block;
    animation: slideDownNav 0.25s ease forwards;
  }
  @keyframes slideDownNav {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .main-nav ul li a {
    display: block;
    padding: 12px 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    color: #e5ddd0;
    border-left: 3px solid transparent;
  }
  .main-nav ul li a:hover,
  .main-nav ul li a.active {
    background: rgba(198, 146, 60, 0.15);
    color: var(--primary-gold-light);
    border-left-color: var(--primary-gold);
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    background: rgba(198, 146, 60, 0.15);
    border: 1px solid var(--dark-border);
    color: var(--primary-gold);
    font-size: 1.25rem;
    cursor: pointer;
  }
  .btn-enquire {
    display: none;
  }

  /* Hero Slider on Mobile */
  .hero-slider-container {
    min-height: 82vh;
    min-height: 82svh;
  }
  .hero-slide {
    min-height: 82vh;
    min-height: 82svh;
    padding: 60px 18px 80px;
    text-align: center;
    display: flex;
    align-items: center;
  }
  .hero-content {
    margin: 0 auto;
    max-width: 100%;
  }
  .hero-subtitle-badge {
    font-size: 0.75rem;
    padding: 5px 14px;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: clamp(1.75rem, 6.5vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .hero-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.6);
  }
  .slider-arrow.prev { left: 8px; }
  .slider-arrow.next { right: 8px; }
  .slider-dots { bottom: 20px; gap: 8px; }
  .slider-dots .dot { width: 9px; height: 9px; }
  .slider-dots .dot.active { width: 22px; }

  /* Sections, Grids & Cards */
  .section-pad {
    padding: 50px 0;
  }
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.1rem);
  }
  .section-subtitle {
    font-size: 0.78rem;
    letter-spacing: 2px;
  }
  .features-grid,
  .destinations-grid,
  .packages-grid,
  .grid-3-col,
  .stats-grid,
  .destination-gallery-row,
  .footer-contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .destination-image-box,
  .package-thumb {
    height: 220px !important;
  }

  /* Modals on Mobile */
  .modal-dialog {
    max-width: 95%;
    padding: 24px 18px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-dialog input,
  .modal-dialog select,
  .modal-dialog textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px !important; /* Prevents auto zoom on mobile browsers */
  }

  /* Floating WhatsApp */
  .floating-whatsapp {
    bottom: 20px;
    right: 18px;
    padding: 9px 16px;
    font-size: 0.85rem;
  }
  .floating-whatsapp i {
    font-size: 1.25rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .top-bar-item {
    font-size: 0.72rem;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .package-price-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .package-price-wrap .btn-book-tour {
    width: 100%;
    text-align: center;
  }
}
