
:root {
  /* Primary */
  --primary: #2F5535;
  --primary-dark: #1e3b22;
  
  /* Secondary */
  --gold: #e8b153;
  --gold-dark: #D4AF37;
  
  /* Neutrals */
  --white: #ffffff;
  --off-white: #f5f5f5;

  --dark-overlay: rgba(0, 0, 0, 0.6);
  /* Transitions */
  --transition: 0.3s ease;

  --navbar-height: 70px;
  --mobile-navbar-height: 60px;
  
--breakpoint-xs: 0;
--breakpoint-sm: 576px;
--breakpoint-md: 768px;
--breakpoint-lg: 992px;
--breakpoint-xl: 1200px;
--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }


html {
  font-family: sans-serif;
  line-height: 1.15;
   scroll-behavior: smooth;

   overscroll-behavior-y: contain;


} 

.scroll-container {
  transform: translateZ(0);
  /* Enable GPU rendering */
  will-change: transform;
}

/* Remove scroll jitter on some browsers */
* {
  -webkit-overflow-scrolling: touch;
}

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    background-color: var(--off-white);
    min-height: 100vh;
    margin: 0; /* Reset default margin */
    padding: 0; /* Reset default padding */
    will-change: scroll-position;
    /* Prevent layout shifts */
    overflow-x: hidden;
  }

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

    /* Topbar Styles */
/* Topbar Styles */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(135deg, #2d4739, #1f2e24);
  color: rgba(255, 255, 255, 0.9);
  z-index: 1001;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.topbar i {
  margin-right: 8px;
  font-size: 0.8em;
}

/* Adjust navbar position */
.topbar + .navbar {
  top: 40px;
}

/* Body padding adjustment */
body {
  padding-top: 110px; /* 40px topbar + 70px navbar */
}

/* Mobile Styles */
@media (max-width: 990px) {
  .topbar {
    height: 35px;
    font-size: 0.8rem;
    padding: 0 10px;
  }

  .topbar-container {
    padding: 0;
  }

  .topbar-content {
    justify-content: space-around;
    gap: 5px;
  }

  .topbar + .navbar {
    top: 35px;
  }

  body {
    padding-top: 105px; /* 35px + 70px */
  }

  .topbar + .navbar .nav-menu {
    top: 105px;
    height: calc(100vh - 105px);
  }
}

@media (max-width: 768px) {
  .topbar {
    height: 30px;
    font-size: 0.75rem;
  }

  .topbar i {
    margin-right: 5px;
  }

  .topbar + .navbar {
    top: 30px;
  }

  body {
    padding-top: 100px; /* 30px + 70px */
  }

  .topbar + .navbar .nav-menu {
    top: 100px;
    height: calc(100vh - 100px);
  }
}

@media (max-width: 480px) {
  .topbar {
    height: 25px;
    font-size: 0.7rem;
    padding: 0 5px;
  }

  .topbar-content span {
    display: flex;
    align-items: center;
  }

  .topbar-content span:nth-child(3) {
    display: none;
  }

  .topbar i {
    margin-right: 3px;
    font-size: 0.7em;
  }

  .topbar + .navbar {
    top: 25px;
  }

  body {
    padding-top: 95px; /* 25px + 70px */
  }

  .topbar + .navbar .nav-menu {
    top: 95px;
    height: calc(100vh - 95px);
  }
}

@media (max-width: 360px) {
  .topbar-content span {
    flex-direction: column;
    gap: 0;
    line-height: 1.1;
  }

  .topbar i {
    margin-right: 0;
    font-size: 0.6em;
  }

  .topbar span:nth-child(2) {
    display: none;
  }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  height: 70px;
  transition: all var(--transition);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}

/* Brand Styles */
.navbar-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.brand-icon img {
  width: 50px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1; /* Ensures no extra spacing between lines */
}

.brand-logo,
.brand-tagline {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
}


/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1010;
}

.hamburger {
  position: relative;
  width: 30px;
  height: 20px;
}

.hamburger span {
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--gold);
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) { top: 8px; }
.hamburger span:nth-child(4) { top: 16px; }

.menu-toggle.active .hamburger span:nth-child(1),
.menu-toggle.active .hamburger span:nth-child(4) {
  width: 0;
  left: 50%;
}

.menu-toggle.active .hamburger span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-toggle.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  height: 100%;
}

.nav-item {
  position: relative;
  margin: 0 2px;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0 15px;
  height: 100%;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background-color: rgba(255, 255, 255, 0.05);
}

.dropdown-icon {
  margin-left: 5px;
  transition: transform var(--transition);
}

/* Dropdown Menus for Desktop */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--gold);
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1001;
}

.nav-item:hover > .dropdown-menu,
.nav-item.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  position: relative;
}

.dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition);
  width: 100%;
}

/* Removed the padding-left change to prevent sliding */
.dropdown-link:hover {
  background-color: rgba(47, 85, 53, 0.15);
}

/* Nested Dropdowns for Desktop */
.nested-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: var(--gold);
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1002;
}

.dropdown-item:hover > .nested-dropdown,
.dropdown-item.open > .nested-dropdown {
  opacity: 1;
  visibility: visible;
}

/* Mobile Styles */
@media (max-width: 990px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 70px);
    flex-direction: column;
    background: var(--primary);
    transition: all 0.3s ease;
    overflow-y: auto;
    padding-bottom: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    height: auto;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-link {
    padding: 15px 20px;
    justify-content: space-between;
    width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: bold;
  }

  /* Rotate dropdown icon when open */
  .open > .nav-link .dropdown-icon,
  .open > .dropdown-link .dropdown-icon {
    transform: rotate(180deg);
  }

  /* Mobile dropdown menu styling */
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    max-height: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0;
  }

  .nav-item.open > .dropdown-menu {
    max-height: 1000px;
  }

  .dropdown-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  /* First level dropdown links for mobile */
  .dropdown-link {
    padding: 12px 25px 12px 35px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    font-size: 0.95em;
  }

  .dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--gold);
  }
  
  .dropdown-link::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    transform: translateY(-50%);
  }

  /* Mobile nested dropdown styling */
  .nested-dropdown {
    position: static;
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    box-shadow: none;
    max-height: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-radius: 0;
  }

  .dropdown-item.open > .nested-dropdown {
    max-height: 1000px;
  }

  /* Second level dropdown links (nested) */
  .nested-dropdown .dropdown-link {
    padding: 10px 25px 10px 50px;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.85);
  }
  
  .nested-dropdown .dropdown-link::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 50%;
    width: 5px;
    height: 1px;
    background: rgba(255, 215, 0, 0.5);
    transform: translateY(-50%);
  }
  
  .nested-dropdown .dropdown-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gold);
  }
  
  /* Active link styling */
  .nav-link.active,
  .dropdown-link.active {
    color: var(--gold);
    background-color: rgba(255, 255, 255, 0.05);
  }
  
  .nested-dropdown .dropdown-link.active {
    background-color: rgba(255, 255, 255, 0.08);
  }
}
/* ********************************************************* */

    /* Hero Section */
  .hero-wrap {
    position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100svh - var(--mobile-navbar-height));
  margin: 0; /* Ensure no margin */
  padding: 0; /* Ensure no padding */
  }

  .hero-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0 0 0 / 0.4), rgba(0 0 0 / 0.6)),
                url('/images/Sonmarg_rishav7336.jpg') center/cover fixed;
    z-index: -1;
    animation: zoom-in 20s ease-in-out infinite;
    will-change: transform;
  }

  .hero-content {
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    width: 100%; /* Ensure full width within max-width constraint */
    margin: 0 auto;
    padding: 20px 15px;
  }

  .hero-heading {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.2;
      text-shadow: 2px 2px 4px rgba(0 0 0 / 0.3);
      margin-bottom: 1rem;
      color: var(--white);
  }

  .hero-subtitle {
      font-size: clamp(1rem, 2vw, 1.5rem);
      font-weight: 300;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 2rem;
  }

  /* Button Styles */
  .cta-btn {
      display: inline-flex;
      padding: 1rem 2.5rem;
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      background: var(--gold);
      color: var(--primary-dark);
      border-radius: 50px;
      text-decoration: none;
      transition: var(--transition);
      border: 2px solid transparent;
      box-shadow: 0 4px 15px rgba(0 0 0 / 0.2);
  }

  .cta-btn:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0 0 0 / 0.3);
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
      .hero-wrap {
          min-height: 50vh;
      }
      
      .hero-content {
          padding: 7rem 2rem;
      }
  }

  @keyframes zoom-in {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
  }




/* ***************************


/* Full-Screen Popup Form Styles */
.popup-form-fullscreen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content-fullscreen {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 33px -27px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  width: 90%;
  animation: fadeIn 0.5s ease-in-out;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary);
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: var(--gold-dark);
}

.form-container {
  text-align: center;
}

.form-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

/* Enhance label alignment and icon color */
.form-group label {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-group label i {
  color: var(--gold);
  margin-right: 8px;
}

/* Input fields styling */
.form-control {
  padding: 12px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid var(--off-white);
  background: var(--off-white);
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(232, 177, 83, 0.4);
  outline: none;
}

/* Button styling */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  width: 100%;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--primary-dark);
}

/* Message styling */
.processing-message,
.confirmation-message {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: var(--primary);
  margin-top: 15px;
}

.processing-message i {
  color: var(--gold);
}

.confirmation-message i {
  color: var(--primary-dark);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



****************************** */

/* Destination Itinerary Section */
    /* =======================
       Itinerary Section
    ========================== */

/* ********************************Footer
*/

.site-footer {
  padding: 4rem 1rem;
  font-family: 'Roboto Slab', serif;
  border-top: 3px solid var(--gold);
}

.footer-container {
  padding: 4rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Branding Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
 
}

.logo-img {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.logo-link:hover .logo-img {
  transform: scale(1.1);
}

.brand-name {
  color: var(--gold) !important;
  font-size: 1.2rem;
  margin: 0;
  transition: color 0.3s ease;
}

.brand-tagline {
  color: var(--off-white);
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0.5rem 0 0;
}

.footer-about {
  color: rgba(var(--off-white-rgb), 0.85);
  line-height: 1.6;
  max-width: 300px;
}

/* Navigation Links */
.footer-nav .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold) !important;
}

/* Contact Section */
.footer-heading {
  color: var(--gold) !important;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: var(--gold);
  margin-top: 0.25rem;
}

.contact-item a {
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--gold) !important;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold) !important;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
}

/* Legal Info */
.legal-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
}

.copyright {
  color: var(--off-white);
  font-size: 0.875rem;
  line-height: 1.6;
}

.developer-credit a {
  color: var(--gold) !important;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.developer-credit a:hover {
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .brand-logo {
    flex-direction: column;
    text-align: center;
  }

  .footer-about {
    max-width: none;
  }

  .contact-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

