/* ========== Base Styles ========== */
:root {
  --primary: #1a56a7;
  --primary-dark: #0d3b7a;
  --secondary: #f59e0b;
  --secondary-dark: #d97706;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --success: #10b981;
  --danger: #ef4444;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  gap: 0.5rem;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background-color: var(--secondary);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background-color: transparent;
  border-color: currentColor;
  color: currentColor;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  min-height: 36px;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 2rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 50%;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--gray);
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.bg-light {
  background-color: var(--light-gray);
}

/* ========== Top Bar ========== */
.top-bar {
  background-color: var(--primary-dark);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-info i {
  margin-right: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid darkorange;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #f59e0b;
}

/* ========== Header & Navigation ========== */
.main-header {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0.5rem 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1900px;
  padding: 0 1rem;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 150px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-left: -30px;
  font-size: 1.25rem;
  color: var(--primary);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.toggle-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  margin-right: 70px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .toggle-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active .toggle-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .toggle-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.main-nav {
  transition: all 0.3s ease;
}

.nav-list {
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--dark);
  padding: 0.75rem 1rem;
  font-weight: 500;
  display: block;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary);
  /* background-color: rgba(245, 158, 11, 0.1); */
}

.dropdown {
  position: relative;
}

.dropdown-btn {
  background: none;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: white;
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--dark);
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--secondary);
  background-color: rgba(245, 158, 11, 0.1);
}

.submenu {
  position: relative;
}

.submenu-list {
  position: absolute;
  left: 100%;
  top: 0;
  background-color: white;
  min-width: 220px;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;

}

.submenu-list li a {
  font-size: 15px;
}

.submenu:hover .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.submenu-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0.75rem 1.5rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.submenu-btn:hover {
  color: var(--secondary);
  background-color: rgba(245, 158, 11, 0.1);
}

/* ========== Hero Slider ========== */
.hero-slider {
  position: relative;
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  position: absolute;
  bottom: 15%;
  left: 10%;
  max-width: 600px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0.5rem;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.slide-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.prev {
  left: 2rem;
}

.next {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* ========== Cards & Grids ========== */
.destination-grid,
.trek-grid {
  display: grid;
  gap: 2rem;
}

.destination-grid {
  grid-template-columns: repeat(4, 1fr);
}

.trek-grid {
  grid-template-columns: repeat(4, 1fr);
}

.destination-card,
.trek-card,
.expedition-card {
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.destination-card:hover,
.trek-card:hover,
.expedition-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.card-image {
  height: 220px;
  overflow: hidden;
}

.card-image img,
.expedition-card img,
.trek-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .card-image img,
.trek-card:hover img,
.expedition-card:hover img {
  transform: scale(1.05);
}

.card-content,
.card-body {
  padding: 1.5rem;
}

.card-content h3,
.expedition-card h3,
.trek-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.card-content p,
.expedition-card p,
.trek-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.trek-card .duration {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

/* ========== Carousel ========== */
.expeditions {
  position: relative;
  padding: 3rem 0;
}

.carousel {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 2rem;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: white;
  border: none;
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav:hover {
  background-color: var(--primary);
  color: white;
}

.carousel-nav.prev {
  left: -1.5rem;
}

.carousel-nav.next {
  right: -1.5rem;
}

.expedition-card {
  flex: 0 0 calc((100% - 2 * 2rem) / 3);
  max-width: calc((100% - 2 * 2rem) / 3);
}

.expedition-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  /* 3 cards with gap */
  background-color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  min-height: 400px;
}

.expedition-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.expedition-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.expedition-card:hover img {
  transform: scale(1.05);
}

.expedition-card .card-body {
  padding: 1.5rem;
}

.expedition-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.expedition-card p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.expedition-card .btn {
  width: 100%;
  margin-top: auto;
}

/* ========== CTA Section ========== */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 6rem 0;
  color: white;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ========== Footer ========== */
.main-footer {
  background-color: var(--primary-dark);
  color: white;
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background-color: var(--secondary);
}

.footer-col p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.footer-logo {
  width: 10rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  opacity: 0.8;
  transition: all 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--secondary);
  padding-left: 0.5rem;
}

.footer-col address p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-col address i {
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

/* ========== Responsive Styles ========== */
@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }

  .logo img {
    height: 130px;
  }

  .logo-text {
    display: none;
  }

  .hero-slider {
    max-height: 600px;
  }

  .slide-content {
    left: 5%;
    right: 5%;
    max-width: 90%;
    bottom: 10%;
  }

  .slide-content h1 {
    font-size: 2.5rem;
  }

  .destination-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .expedition-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .trek-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .contact-info {
    justify-content: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .book-now-btn {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 550px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    margin-top: 0;
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 170px;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    width: 100%;
    padding: 0;
    margin-top: 0.5rem;
    background-color: rgba(0, 0, 0, 0.03);
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .submenu-list {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    width: 100%;
    margin-left: 1rem;
    background-color: rgba(0, 0, 0, 0.05);
  }

  .submenu.active .submenu-list {
    display: block;
  }

  .main-header .container {
    padding: 0.5rem 1rem;
    height: auto;
  }

  .logo img {
    height: 100px;
    width: auto;
    /* margin-left: -20px; */

  }

  .hero-slider {
    height: 70vh;
    max-height: 500px;
  }

  .slide-content {
    bottom: 30%;
    padding: 1rem;
  }

  .slide-content h1 {
    font-size: 1.4rem;
  }

  .slide-content p {
    font-size: 0, 7rem;
  }

  .slider-nav {
    display: none;
    /* width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem; */
  }

  .slider-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .destination-grid,
  .trek-grid {
    grid-template-columns: 1fr;
  }

  .expedition-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .carousel-nav {
    width: 2.5rem;
    height: 2.5rem;
  }

  .carousel-nav.prev {
    left: -0.5rem;
  }

  .carousel-nav.next {
    right: -0.5rem;
  }

  .trek-card img,
  .expedition-card img {
    height: 200px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 60vh;
  }

  .slide-content h1 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .main-nav {
    width: 90%;
    padding: 4rem 1rem 2rem;
  }
}

@media (max-width: 767px) and (orientation: landscape) {
  .hero-slider {
    height: 100vh;
    max-height: none;
  }

  .slide-content {
    bottom: 5%;
  }
}

/* Animation classes */
.no-scroll {
  overflow: hidden;
}

.fade-animation {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

/* ========== Welcome Popup ========== */
.welcome-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.welcome-popup.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background-color: white;
  padding: 2.5rem;
  border-radius: 0.5rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.welcome-popup.active .popup-content {
  transform: translateY(0);
}

.popup-content h2 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.popup-content p {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.close-popup {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
  transition: color 0.3s ease;
}

.close-popup:hover {
  color: var(--secondary);
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.popup-buttons .btn {
  margin: 0;
}

/* ========== Gallery Section ========== */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 200px;
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Lightbox adjustments */
.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.9);
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--secondary);
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
}

.lg-toolbar .lg-icon {
  color: white;
}

/* ========== Testimonials ========== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1rem;
}

.rating {
  color: var(--secondary);
  font-size: 0.9rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ========== Feedback Section ========== */
.feedback-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feedback-content {
  padding-right: 2rem;
}

.feedback-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.feedback-form {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--light-gray);
  border-radius: 0.25rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

.star-rating {
  display: flex;
  gap: 0.5rem;
  direction: rtl;
}

.star-rating input {
  display: none;
}

.star-rating label {
  color: var(--light-gray);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.star-rating input:checked~label,
.star-rating input:hover~label,
.star-rating label:hover,
.star-rating label:hover~label {
  color: var(--secondary);
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 1024px) {
  .feedback-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feedback-content {
    padding-right: 0;
    text-align: center;
  }

  .feedback-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .popup-content {
    padding: 1.5rem;
  }

  .popup-content h2 {
    font-size: 1.5rem;
  }

  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .popup-buttons {
    flex-direction: column;
  }

  .popup-buttons .btn {
    width: 100%;
  }

  .gallery-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* travel info */
/* Add this to your existing styles.css file */

/* Travel Info Dropdown Specific Styles */
.dropdown-menu li a.nav-link {
  display: block;
  padding: 0.8rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.dropdown-menu li a.nav-link:hover {
  background-color: #f8f9fa;
  color: #1a73e8;
  border-left: 3px solid #1a73e8;
  padding-left: 1.8rem;
}

/* If you want icons before each link */
.dropdown-menu li a.nav-link::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 10px;
  width: 20px;
  display: inline-block;
  text-align: center;
}

.dropdown-menu li a.nav-link[href*="mountaineering-rules"]::before {
  content: "\f5fd";
  /* mountain icon */
}

.dropdown-menu li a.nav-link[href*="mountains-list"]::before {
  content: "\f6a3";
  /* mountain-sun icon */
}

.dropdown-menu li a.nav-link[href*="peak-royalty"]::before {
  content: "\f02b";
  /* tag icon */
}

.dropdown-menu li a.nav-link[href*="terms-conditions"]::before {
  content: "\f560";
  /* file-contract icon */
}

.dropdown-menu li a.nav-link[href*="company-info"]::before {
  content: "\f1ad";
  /* building icon */
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .dropdown-menu li a.nav-link {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .dropdown-menu li a.nav-link:hover {
    padding-left: 1.5rem;
  }
}