/* ==========================================================================
   1. CORE VARIABLES & FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Soft Luxury Palette */
  --slate-navy: #1e293b;    /* Soft deep slate blue instead of stark dark navy */
  --champagne-gold: #d4af37;/* Soft, elegant gold accent */
  --muted-gold: #f3e5ab;    /* Light pastel gold for subtle hovers/gradients */
  --soft-bg: #f8fafc;       /* Clean, soft off-white background */
  --card-white: #ffffff;    /* Pure white for elevation contrast */
  --text-main: #334155;     /* Soft charcoal text for readability */
  --text-muted: #64748b;    /* Pastel slate-gray for descriptions */
  
  /* Utilities */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 14px;
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-main);
  background-color: var(--soft-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  transition: var(--transition);
}

/* ==========================================================================
   3. NAVIGATION HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(30, 41, 59, 0.92); /* Blended soft slate */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.logo {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
}

.logo strong {
  color: var(--champagne-gold);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: #f1f5f9;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.2rem 0;
}

.nav a:hover {
  color: var(--champagne-gold);
}

/* Subtle line indicator on hover */
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--champagne-gold);
  transition: var(--transition);
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  color: #ffffff;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ==========================================================================
   4. HERO VIDEO HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9); /* Softer video contrast */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30, 41, 59, 0.3), rgba(30, 41, 59, 0.6));
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  padding: 0 1.5rem;
  max-width: 800px;
}

.hero-inner h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero-inner h1 span {
  color: var(--champagne-gold);
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.hero-inner p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: #f8fafc;
  opacity: 0.9;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

/* Buttons */
.btn {
  padding: 0.85rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--champagne-gold), #e0c056);
  color: var(--slate-navy);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn.subtle {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  background: transparent;
}

.btn.subtle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Slider Controls */
.video-controls {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.vid-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
}

.vid-btn.active {
  background: var(--champagne-gold);
  width: 28px;
  border-radius: 6px;
}

/* ==========================================================================
   5. STRUCTURED CONTENT SECTIONS
   ========================================================================== */
.section {
  padding: 6rem 8%;
}

.section.light {
  background-color: var(--card-white);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-navy);
  margin-bottom: 3.5rem;
  position: relative;
  letter-spacing: -0.5px;
}

/* Mini decorative gold line beneath titles */
.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--champagne-gold);
  border-radius: 2px;
}

/* ==========================================================================
   6. FEATURED TOUR CARDS
   ========================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.card {
  background: var(--card-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-body {
  padding: 1.8rem;
}

.card-body h3 {
  font-size: 1.25rem;
  color: var(--slate-navy);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.card-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.price {
  margin-top: 1.2rem;
  color: var(--slate-navy);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.price span {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 0.6rem;
  font-weight: 400;
}

/* ==========================================================================
   7. VALUE-ADDED SERVICES
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.service {
  background: var(--soft-bg);
  padding: 2.5rem 1.8rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.5);
}

.service:hover {
  background: var(--card-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service i {
  font-size: 2.2rem;
  color: var(--champagne-gold);
  margin-bottom: 1.2rem;
}

.service h4 {
  font-size: 1.15rem;
  color: var(--slate-navy);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.service p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   8. MEDIA GALLERY
   ========================================================================== */
.gallery-category {
  margin-bottom: 4rem;
}

.gallery-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 1.25rem;
  color: var(--slate-navy);
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.category-title i {
  color: var(--champagne-gold);
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   9. SWIPER TESTIMONIALS (REAL GOOGLE REVIEWS)
   ========================================================================== */
.review-slider {
  padding-bottom: 3rem !important;
}

.review-card {
  background: var(--soft-bg);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
}

.review-stars {
  color: var(--champagne-gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-card h4 {
  font-size: 1.1rem;
  color: var(--slate-navy);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
}

/* Customize Swiper dots matching theme color profiles */
.swiper-pagination-bullet-active {
  background: var(--champagne-gold) !important;
  width: 18px !important;
  border-radius: 4px !important;
}

/* ==========================================================================
   10. CONTACT GATEWAY & LOCATION EMBED
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.contact-card {
  background: var(--card-white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-card h3, .contact-info h3 {
  font-size: 1.4rem;
  color: var(--slate-navy);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Input Fields Customization */
.form input, .form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  margin-top: 0.8rem;
  background-color: var(--soft-bg);
  color: var(--text-main);
  font-size: 0.92rem;
  outline: none;
}

.form input:focus, .form textarea:focus {
  border-color: var(--champagne-gold);
  background-color: var(--card-white);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.form-status {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-list {
  list-style: none;
}

.info-list li {
  margin: 1rem 0;
  font-size: 0.95rem;
  color: var(--text-main);
  display: flex;
  gap: 0.5rem;
}

.info-list strong {
  color: var(--slate-navy);
  min-width: 90px;
}

.info-list a:hover {
  color: var(--champagne-gold);
}

.map-wrap {
  width: 100%;
  height: 280px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   11. LUXURY TAILORED FOOTER
   ========================================================================== */
.footer-luxe {
  background: var(--slate-navy);
  color: #e2e8f0;
  padding: 5rem 8% 2.5rem;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--champagne-gold);
}

/* Soft, ambient decorative radial lighting */
.footer-luxe::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.footer-brand h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
}

.footer-brand h2 span {
  color: var(--champagne-gold);
}

.footer-brand p {
  color: #94a3b8;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 400px;
}

.footer-links h4, .footer-contact h4 {
  color: var(--champagne-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0.6rem 0;
}

.footer-links a:hover {
  color: var(--champagne-gold);
  padding-left: 4px;
}

.footer-contact p {
  margin: 0.8rem 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact i {
  color: var(--champagne-gold);
  width: 16px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4rem;
  padding-top: 1.5rem;
  font-size: 0.88rem;
  color: #94a3b8;
}

.footer-bottom strong {
  color: #ffffff;
}

/* ==========================================================================
   12. RESPONSIVE DESIGN (TABLETS & SMARTPHONES)
   ========================================================================== */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none; /* Hidden state by default on mobile devices */
  }
  
  .menu-toggle {
    display: block;
  }

  /* Interactive open menu state triggered by script.js toggle action */
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    padding: 2.5rem;
    gap: 1.8rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    text-align: center;
    border-bottom: 3px solid var(--champagne-gold);
  }

  .hero-inner h1 {
    font-size: 2.2rem;
  }
  
  .section {
    padding: 4rem 5%;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-cta {
    flex-direction: column;
    gap: 0.8rem;
  }
}