﻿@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #165778;
  /* Teal Blue from Horizon logo */
  --primary-light: #fdfcfb;
  --accent-gold: #8b1511;
  /* Burgundy Red from Tours & Travels logo */
  --accent-dark-gold: #6a0f0d;
  --accent-forest: #165778;
  --accent-forest-light: #1e6d95;
  --neutral-gray: #718096;
  --neutral-light: #f7fafc;
  --neutral-dark: #2d3748;
}

/* Premium Loader Styles */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s;
}

.loader-content {
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.loader-logo {
  margin-bottom: 30px;
  animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo img {
  height: 60px;
}

.loader-bar-container {
  width: 100%;
  height: 2px;
  background: rgba(212, 165, 114, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-gold);
  transition: width 0.4s ease;
  box-shadow: 0 0 15px var(--accent-gold);
}

.loader-text {
  color: var(--primary-light);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 300;
}

@keyframes logoPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

body.loading {
  overflow: hidden !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--primary-dark);
  overflow-x: hidden;
  line-height: 1.6;
  background: var(--neutral-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
  justify-content: center;
  margin: 0;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 769px) {
  .logo-wrapper {
    transition: all 0.3s ease;
  }

  .navbar:not(.scrolled) .logo-wrapper {
    background: rgba(255, 255, 255, 0.22);
    /* Stable Frosted White */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 25px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  }

  .nav-menu {
    padding: 10px 30px;
    border-radius: 100px;
    border: 1px solid transparent;
  }

  /* Glassy effect for menus in hero section */
  .navbar:not(.scrolled) .nav-menu {
    background: rgba(255, 255, 255, 0.18);
    /* Stable Frosted White */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
  }

  .navbar:not(.scrolled) .nav-menu:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }

  .navbar.scrolled .nav-menu {
    padding: 5px 0;
  }

  .navbar:not(.scrolled) .lang-selector {
    background: rgba(255, 255, 255, 0.18);
    /* Stable Frosted White */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6px 15px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .navbar:not(.scrolled) .lang-selector:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
  }

  /* Make language buttons black on frosted background */
  .navbar:not(.scrolled) .lang-selector button:not(.active) {
    color: #000000;
    border-color: rgba(0, 0, 0, 0.2);
  }
}

.nav-menu li {
  white-space: nowrap;
}

.nav-menu a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.navbar.scrolled .nav-menu a {
  color: var(--primary-dark);
}

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

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

/* Nav Actions Section */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-portal-link {
  color: #000000;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-portal-link {
  color: var(--primary-dark);
}

.nav-portal-link:hover {
  color: var(--accent-gold);
}

.cta-btn {
  background: transparent;
  border: 2px solid #000000;
  color: #000000;
  padding: 12px 32px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 11px;
  text-transform: uppercase;
}

.navbar.scrolled .cta-btn {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.cta-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-light);
  transform: translateY(-3px);
}

/* ===== DROPDOWN MENU STYLES ===== */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  min-width: 220px;
  padding: 15px 0;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  list-style: none;
  margin-top: 15px;
}

.nav-item-dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: var(--primary-dark) !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  text-transform: none;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(22, 87, 120, 0.08);
  color: var(--accent-gold) !important;
  padding-left: 30px;
}

/* Submenu Styles */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>a::before {
  content: "▹";
  position: absolute;
  right: 20px;
  transition: transform 0.2s ease;
}

.dropdown-submenu:hover>a::before {
  transform: translateX(3px);
}

.dropdown-menu-sub {
  position: absolute;
  left: 100%;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  min-width: 200px;
  padding: 15px 0;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  z-index: 1002;
  list-style: none;
  margin-left: 5px;
}

.dropdown-submenu:hover>.dropdown-menu-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.dropdown-menu-sub a {
  padding: 10px 20px;
  font-size: 12px;
}

.dropdown-menu-sub a:hover {
  padding-left: 25px;
}

/* Desktop Menu Display */
@media (min-width: 769px) {
  .nav-menu {
    display: flex !important;
  }

  .mobile-menu-footer {
    display: none !important;
  }
}

/* Mobile Visibility Helpers */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

/* ===== HAMBURGER TO X ANIMATION ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1003;
  transition: all 0.3s ease;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary-light);
  border-radius: 3px;
  transition: all 0.4s ease;
  transform-origin: center;
}

.navbar.scrolled .hamburger span {
  background: var(--primary-dark);
}

/* On mobile, always make hamburger visible */
@media (max-width: 768px) {
  .hamburger span {
    background: var(--primary-dark);
  }

  .navbar:not(.scrolled) .hamburger span {
    background: var(--primary-light);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
  }
}

/* Jab menu open ho (active class JS se add hogi) */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--primary-light) !important;
}

.navbar.scrolled .hamburger.active span:nth-child(1) {
  background: var(--primary-dark) !important;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--primary-light) !important;
}

.navbar.scrolled .hamburger.active span:nth-child(3) {
  background: var(--primary-dark) !important;
}

/* Mobile view mein dikhe */
/* Mobile view mein dikhe */
@media (max-width: 768px) {
  .navbar.menu-open .logo-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    /* Dynamic constrained height */
    background: var(--primary-dark);
    display: block !important;
    /* Switch to block to avoid flex scroll bugs */
    padding: 110px 0 150px;
    /* Adjust padding */
    margin: 0;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto !important;
    /* Standard auto scroll */
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    box-shadow: none;
    overscroll-behavior-y: contain;
    /* Prevent chaining scroll to body */
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu>li {
    width: 100% !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block !important;
    float: none;
    /* Ensure no float issues */
    clear: both;
  }

  .nav-menu>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    color: #ffffff !important;
    /* Pure White */
    font-size: 16px;
    font-weight: 700;
    background: transparent !important;
    text-transform: uppercase;
  }

  .nav-menu>li>a::after {
    display: none !important;
  }

  /* Dropdown Styles */
  .nav-item-dropdown>a {
    padding-right: 30px !important;
  }

  .nav-item-dropdown>a::after {
    content: "▼";
    display: block !important;
    position: static;
    font-size: 12px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    margin-left: 10px;
    color: var(--accent-gold);
  }

  .nav-item-dropdown.active>a::after {
    transform: rotate(180deg);
  }

  /* Reset Dropdown Container */
  .dropdown-menu {
    position: static !important;
    float: none !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    margin: 0;
    padding: 0;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .nav-item-dropdown.active .dropdown-menu {
    max-height: 9999px;
    padding-bottom: 10px;
  }

  .dropdown-menu>li {
    display: block !important;
    width: 100% !important;
    border: none !important;
  }

  /* Submenu (Australia / New Zealand) */
  .dropdown-submenu>a {
    padding: 18px 30px 18px 50px !important;
    font-size: 15px;
    font-weight: 600;
    color: #ffecd1 !important;
    /* Off-white / Cream for sub-categories */
    background: transparent !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-submenu>a:hover,
  .dropdown-submenu.active>a {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--accent-gold) !important;
  }

  .dropdown-submenu>a::before {
    display: none;
  }

  .dropdown-submenu>a::after {
    content: "▼";
    font-size: 10px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    display: block;
    color: var(--accent-gold);
    /* Always gold arrow */
  }

  .dropdown-submenu.active>a::after {
    transform: rotate(180deg);
  }

  /* Sub-Sub Menu (Cities) */
  .dropdown-menu-sub {
    position: static !important;
    float: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: rgba(0, 0, 0, 0.3) !important;
    /* Distinct dark bg */
    box-shadow: none !important;
    border: none !important;
    margin: 0;
    padding: 0;
    width: 100% !important;
    min-width: 0 !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .dropdown-submenu.active .dropdown-menu-sub {
    max-height: 5000px;
    padding: 5px 0 15px;
  }

  .dropdown-menu-sub a {
    padding: 16px 30px 16px 70px !important;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff !important;
    /* Bright White */
    display: block !important;
    background: transparent !important;
    opacity: 0.9;
  }

  .dropdown-menu-sub a:hover {
    color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    opacity: 1;
    padding-left: 75px !important;
    /* Slight animation */
  }

  /* Footer */
  .mobile-menu-footer {
    padding: 30px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 80px;
    /* Significant padding */
  }

  .mobile-lang-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .mobile-lang-selector button {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: #fff;
    /* White Text */
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .mobile-lang-selector button.active {
    background: var(--accent-gold);
    color: #fff;
  }

  .mobile-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .mobile-cta-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
  }

  .mobile-cta-btn.primary {
    background: var(--accent-gold);
    color: #1a1a1a;
    border: none;
  }

  .mobile-cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  /* Animation Keyframes */
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Apply to Top Level Links */
  .nav-menu.active>li {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
    /* Start hidden */
  }

  /* Stagger Delays */
  .nav-menu.active>li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-menu.active>li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-menu.active>li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-menu.active>li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav-menu.active>li:nth-child(5) {
    animation-delay: 0.5s;
  }

  /* Footer Animation */
  .nav-menu.active .mobile-menu-footer {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
  }

  /* Utility */
  .nav-actions .lang-selector,
  .nav-actions .nav-btns {
    display: none !important;
  }

  .nav-actions {
    display: flex !important;
    justify-content: flex-end;
  }

  .mobile-menu-backdrop {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    /* Lighter backdrop */
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
  }

  .mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Updated styling to support video element */
.hero-image,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* animation: zoomInHero 20s ease-out; */
}

@keyframes zoomInHero {
  from {
    transform: scale(1.05);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 40% 40%, rgba(212, 165, 116, 0.2), transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(47, 82, 51, 0.15), transparent 50%),
    linear-gradient(to bottom, rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.5));
} */

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 80px 20px 0;
  /* Add top padding to avoid navbar overlap */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero.loaded .hero-content {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn {
  background: var(--accent-gold);
  border: none;
  color: var(--primary-light);
  padding: 18px 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.5);
  background: var(--accent-dark-gold);
}

/* Hero CTA Bar */
.hero-cta-bar {
  background: var(--primary-dark);
  padding: 25px 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-bar-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.hero-btn-alt {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 35px;
  background: var(--accent-gold);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn-alt:hover {
  background: var(--accent-dark-gold);
  transform: translateY(-2px);
  border-radius: 4px;
}

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

.hero-btn-alt.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cta-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .hero-cta-bar {
    padding: 20px;
  }

  .cta-bar-flex {
    flex-direction: column;
    gap: 15px;
  }

  .cta-divider {
    display: none;
  }

  .hero-btn-alt {
    width: 100%;
    text-align: center;
  }
}

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

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--neutral-gray);
  letter-spacing: 0.5px;
  max-width: 600px;
  margin: 0 auto;
}

.destinations-preview {
  padding: 120px 0;
  background: var(--neutral-light);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.destination-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1;
}

.destination-large {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 400px;
}

@media (max-width: 768px) {
  .destination-large {
    grid-column: span 1;
  }
}

.destination-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.33, 0.66, 0.66, 1);
}

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

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.4), rgba(47, 82, 51, 0.6));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-overlay h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.destination-overlay p {
  font-size: 13px;
  color: var(--primary-light);
  opacity: 0.9;
}

.gallery {
  padding: 120px 0;
  background: #fff;
}

.gallery-masonry,
.gallery-masonry-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

@media (max-width: 1024px) {

  .gallery-masonry,
  .gallery-masonry-full {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {

  .gallery-masonry,
  .gallery-masonry-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.33, 0.66, 0.66, 1);
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 87, 120, 0.4), rgba(139, 21, 17, 0.4));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 25px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
  letter-spacing: 1px;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 10px 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-light);
}

.services {
  padding: 120px 0;
  background: var(--neutral-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(22, 87, 120, 0.12);
}

.service-detail-card {
  background: #fff;
  padding: 50px 35px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.service-detail-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(22, 87, 120, 0.15);
}

.service-number {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.service-detail-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.service-card h3,
.service-detail-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.service-card p,
.service-detail-card p {
  color: var(--neutral-gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}

.service-list {
  list-style: none;
  text-align: left;
  margin: 20px 0;
  font-size: 14px;
  color: var(--neutral-gray);
}

.service-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a574' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  flex-shrink: 0;
}

.about {
  padding: 120px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.about-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-dark);
}

.about-text {
  color: var(--neutral-gray);
  line-height: 1.9;
  margin-bottom: 40px;
  font-size: 15px;
}

.about-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--primary-dark);
}

.check-mark {
  color: var(--accent-forest);
  font-weight: 700;
}

.about-btn {
  background: var(--accent-gold);
  border: none;
  color: var(--primary-light);
  padding: 16px 45px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.25);
}

.about-btn:hover {
  transform: translateY(-3px);
  background: var(--accent-dark-gold);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.35);
}

.about-image {
  position: relative;
  perspective: 1000px;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
}

.about-image:hover .about-img {
  transform: rotateY(3deg) rotateX(2deg);
  box-shadow: 0 30px 70px rgba(212, 165, 116, 0.2);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.reviews {
  padding: 120px 0;
  background: var(--neutral-light);
}

.reviews-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.reviews-full {
  padding: 120px 0;
  background: #fff;
}

.reviews-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.review-full-card {
  background: #fff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-left: 5px solid var(--accent-gold);
}

.review-full-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 20px;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-category {
  background: var(--accent-gold);
  color: var(--primary-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.review-full-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.review-full-card p {
  color: var(--neutral-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 14px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 15px;
}

.person-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-dark-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-weight: 700;
  font-size: 13px;
}

.person-details {
  display: flex;
  flex-direction: column;
}

.person-name {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14px;
}

.person-location {
  font-size: 12px;
  color: var(--neutral-gray);
}

.reviews-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.stat p {
  color: var(--neutral-gray);
  font-size: 14px;
}

.stars {
  color: var(--accent-gold);
  font-size: 14px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--neutral-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 14px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-dark-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-weight: 700;
  font-size: 13px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 14px;
}

.author-title {
  font-size: 12px;
  color: var(--neutral-gray);
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--neutral-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(245, 235, 224, 0.8);
  margin-bottom: 40px;
}

.cta-primary-btn {
  background: var(--accent-gold);
  border: none;
  color: var(--primary-light);
  padding: 18px 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.4);
}

.cta-primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.6);
  background: var(--accent-dark-gold);
}

.footer {
  background: linear-gradient(to bottom, #0f4058, #165778);
  color: var(--primary-light);
  padding: 100px 0 40px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--accent-gold), transparent, var(--accent-gold));
}

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

.footer-col h3,
.footer-col h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
  font-size: 20px;
  color: #fff;
  position: relative;
}

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

.footer-logo-img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 0 30px;
  }
}

/* Destination Page Styles */
.destinations-detailed {
  padding: 120px 0;
  background: #fff;
}

.destination-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.destination-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px;
  background: var(--neutral-light);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.destination-item-reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.destination-item-reverse>* {
  direction: ltr;
}

.destination-item-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
}

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

.destination-item:hover .destination-item-image img {
  transform: scale(1.05);
}

.destination-item-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.destination-rating {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 14px;
}

.destination-item-content p {
  color: var(--neutral-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
}

.destination-features {
  list-style: none;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.destination-features li {
  color: var(--primary-dark);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.destination-features li::before {
  content: "âœ“";
  color: var(--accent-forest);
  font-weight: 700;
}

.destination-btn {
  background: var(--accent-gold);
  border: none;
  color: var(--primary-light);
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.25);
}

.destination-btn:hover {
  background: var(--accent-dark-gold);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.35);
}

@media (max-width: 768px) {

  .destination-item,
  .destination-item-reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-btn {
    display: none !important;
  }

  .destination-item-reverse {
    direction: ltr;
  }

  .destination-item-image {
    height: 300px;
  }

  .destination-item-content h3 {
    font-size: 24px;
  }

  .destination-features {
    grid-template-columns: 1fr;
  }
}

/* Destination Detail Page Styles */
.destination-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.detail-section {
  background: var(--neutral-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.detail-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.1);
}

.detail-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  border-bottom: 3px solid var(--accent-gold);
  padding-bottom: 12px;
}

.detail-section p {
  color: var(--neutral-gray);
  line-height: 1.8;
  font-size: 14px;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-list li {
  color: var(--primary-dark);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.highlight-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4a574' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 768px) {
  .destination-detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-section {
    padding: 30px 20px;
  }

  .detail-section h3 {
    font-size: 18px;
  }
}

/* Contact Page Styles */
.contact-content {
  padding: 120px 0;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-section {
  display: flex;
  flex-direction: column;
}

.contact-form-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-submit-btn {
  background: var(--accent-gold);
  border: none;
  color: var(--primary-light);
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.25);
  margin-top: 10px;
}

.form-submit-btn:hover {
  background: var(--accent-dark-gold);
  transform: translateY(-3px);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.contact-info-card {
  background: var(--neutral-light);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-gold);
}

.contact-info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.contact-info-card p {
  color: var(--neutral-gray);
  line-height: 1.8;
  font-size: 14px;
}

.contact-social {
  background: var(--neutral-light);
  padding: 30px;
  border-radius: 12px;
}

.contact-social h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  background: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--accent-gold);
}

.social-link:hover {
  background: var(--accent-gold);
  color: white;
}

/* FAQ Section */
.faq-section {
  padding: 120px 0;
  background: var(--neutral-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 165, 116, 0.1);
}

.faq-item h4 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.faq-item p {
  color: var(--neutral-gray);
  line-height: 1.7;
  font-size: 14px;
}

/* Why Choose Section */
.why-choose {
  padding: 120px 0;
  background: white;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  background: var(--neutral-light);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-gold);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.1);
}

.why-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.why-card p {
  color: var(--neutral-gray);
  line-height: 1.7;
  font-size: 14px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
    height: 60px;
  }

  .nav-btns {
    display: none;
  }

  .logo-wrapper {
    position: relative;
    z-index: 1001;
  }

  .nav-actions {
    position: relative;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    /* â† 80px se 0 kar diya */
    width: 100%;
    height: 100vh;
    /* â† full screen height */
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    justify-content: center;
    /* â† center mein menu */
    align-items: center;
    transition: left 0.4s ease;
    padding: 100px 0;
    /* upar-niche space */
    overflow-y: auto;
    /* agar bahut items ho to scroll ho sake */
    z-index: 999;
  }

  .nav-menu a {
    font-size: 24px;
    /* mobile mein bada dikhe */
    padding: 15px 0;
    color: var(--primary-light) !important;
  }

  /* Scrolled hone pe bhi mobile menu ka text white rahe (dark bg pe) */
  .navbar.scrolled .nav-menu a {
    color: var(--primary-light) !important;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-btn,
  .about-btn,
  .cta-primary-btn,
  .destination-btn,
  .form-submit-btn {
    padding: 14px 35px;
    font-size: 11px;
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid,
  .services-detail-grid,
  .reviews-grid,
  .reviews-full-grid,
  .why-choose-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .review-header {
    flex-direction: column;
    gap: 10px;
  }

  .reviews-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
  position: relative;
  /* height: 100%; */
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
  list-style: none;
  text-align: left;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

/* Ensure dropdown links look correct on Desktop */
@media (min-width: 769px) {
  .nav-menu .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--primary-dark) !important;
    text-transform: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 500;
  }
}

/* Remove the underline effect from main nav for dropdown items to avoid mess */
.nav-menu .dropdown-menu a::after {
  display: none;
}

.nav-menu .dropdown-menu a:hover {
  background: #f9f9f9;
  color: var(--accent-gold) !important;
  padding-left: 25px;
  /* Slide effect */
}

/* Submenu */
.dropdown-submenu .dropdown-menu-sub {
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  padding: 10px 0;
  list-style: none;
}

.dropdown-submenu:hover .dropdown-menu-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Arrow for submenu */
.dropdown-submenu>a::after {
  content: '›';
  position: absolute;
  right: 15px;
  font-size: 18px;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}


/* Packages Section */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.package-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212, 165, 116, 0.15);
}

.package-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.package-content {
  padding: 25px;
}

.package-duration {
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.package-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.package-content p {
  color: var(--neutral-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.pkg-detail-btn {
  color: var(--primary-dark);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.pkg-detail-btn:hover {
  color: var(--accent-gold);
}

/* Success Modal Styles */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-overlay.active {
  display: flex;
  opacity: 1;
}

.success-modal {
  background: white;
  max-width: 450px;
  width: 90%;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: #ecfdf5;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease back-out;
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-modal h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 15px;
}

.success-modal p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.success-close-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #0f172a;
  color: white;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 13px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.success-close-btn:hover {
  background: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 165, 116, 0.2);
}

/* Booking Widget Styles */
.booking-widget {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
}

.sell-out-badge {
  display: inline-block;
  background: #fff5f5;
  color: #e53e3e;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

.widget-price-label {
  color: #718096;
  font-size: 14px;
  margin-bottom: 5px;
}

.widget-price-value {
  font-size: 32px;
  font-weight: 800;
  color: #165778;
  margin-bottom: 25px;
}

.widget-price-value span {
  font-size: 16px;
  font-weight: 400;
  color: #718096;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-field {
  position: relative;
}

.booking-field select,
.booking-field input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  appearance: none;
  background: #fff;
  transition: all 0.3s;
  cursor: pointer;
}

.booking-field select:focus,
.booking-field input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(139, 21, 17, 0.1);
}

.booking-field::after {
  content: '▼';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #718096;
  pointer-events: none;
}

.btn-check-availability {
  width: 100%;
  padding: 18px;
  background: var(--accent-gold);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  margin: 10px 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-check-availability:hover {
  background: var(--accent-dark-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 21, 17, 0.25);
}

.btn-check-availability.loading {
  opacity: 0.8;
  cursor: wait;
}

.widget-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4a5568;
  font-size: 14px;
  margin-bottom: 12px;
}

.widget-features li svg {
  color: #38a169;
  flex-shrink: 0;
}

.booking-success-msg {
  margin-top: 15px;
  padding: 15px;
  background: #f0fff4;
  border-radius: 8px;
  color: #2f855a;
  font-size: 14px;
  display: none;
  text-align: center;
}