* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #fff;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 12px 20px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-contacts {
  display: inline-block;
  margin-right: 25px;
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mini-contacts:hover {
  color: #40c4aa;
}

.mini-contacts i {
  margin-right: 8px;
  color: #40c4aa;
}

.header-bar {
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.branding a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.branding img {
  max-height: 70px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 0;
  margin: 0;
  padding: 0;
  align-items: center;
}

.menu-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.menu-item > a {
  display: block;
  padding: 15px 18px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.menu-item > a:hover {
  color: #40c4aa;
}

.menu-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #40c4aa;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.menu-item > a:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menu Styling */
.menu-item.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 0 0 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  padding: 15px 0;
  margin: 0;
  z-index: 1000;
}

.menu-item.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
  color: #40c4aa;
  border-left-color: #40c4aa;
  padding-left: 30px;
}

/* Multi-column Dropdown for Trekking */
.dropdown-menu.dropdown-columns {
  display: flex;
  min-width: 650px;
  padding: 20px 0;
  gap: 0;
}

.dropdown-column {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid #eee;
}

.dropdown-column:last-child {
  border-right: none;
}

.dropdown-column-title {
  font-weight: 700;
  color: #40c4aa;
  font-size: 13px;
  text-transform: uppercase;
  padding: 10px 0;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.dropdown-column li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-column li a {
  padding: 10px 0;
  border-left: none;
  display: block;
}

.dropdown-column li a:hover {
  padding-left: 10px;
  background: transparent;
}

/* Pay Now Button */
.menu-item.vutton {
  margin-left: 10px;
}

.menu-item.vutton a {
  background: linear-gradient(135deg, #40c4aa 0%, #36b399 100%) !important;
  border: none;
  padding: 10px 25px !important;
  text-align: center;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  color: #fff !important;
  font-weight: 600;
  font-size: 13px !important;
}

.menu-item.vutton a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(64, 196, 170, 0.4);
}

.menu-item.vutton a::after {
  display: none;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Overlay for mobile menu */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

.page-hero {
  margin-top: 100px;
  min-height: 65vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(199, 61, 33, 0.88) 0%, rgba(64, 196, 170, 0.85) 100%), 
              url('https://images.unsplash.com/photo-1650668302197-7f556c34cb91?w=1920');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 100px 20px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.8;
  margin-bottom: 30px;
}

#machame-info {
  padding: 80px 20px;
  background: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #c73d21 0%, #40c4aa 100%);
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-top: 30px;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-container h3 {
  font-size: 2rem;
  color: #c73d21;
  margin: 40px 0 20px 0;
  font-weight: 800;
  position: relative;
  padding-left: 20px;
}

.about-container h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 80%;
  background: linear-gradient(180deg, #c73d21 0%, #40c4aa 100%);
  border-radius: 3px;
}

.about-container h3:first-of-type {
  margin-top: 0;
}

.about-container h4 {
  font-size: 1.5rem;
  color: #333;
  margin: 30px 0 15px 0;
  font-weight: 700;
  padding: 15px 20px;
  background: linear-gradient(135deg, rgba(199, 61, 33, 0.05) 0%, rgba(64, 196, 170, 0.05) 100%);
  border-left: 4px solid #40c4aa;
  border-radius: 8px;
}

.about-container p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-container p strong {
  color: #c73d21;
  font-weight: 700;
}

.about-container hr {
  margin: 50px 0;
  border: none;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

.about-container ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-container ul li {
  padding: 12px 20px 12px 50px;
  margin-bottom: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  border-left: 3px solid #40c4aa;
}

.about-container ul li:hover {
  background: #fff;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(64, 196, 170, 0.15);
}

.about-container ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #40c4aa;
  font-size: 1.1rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  z-index: 998;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  color: white;
  font-size: 32px;
}

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
  padding: 60px 40px 20px;
  border-top: 3px solid #40c4aa;
}

footer h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #40c4aa;
}

footer p {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 10px;
}

footer a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #40c4aa;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #40c4aa;
  transform: translateY(-5px);
}

.social-links a i {
  font-size: 1.3rem;
  color: #40c4aa;
}

.social-links a:hover i {
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 0 20px 0;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    align-items: flex-start;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .menu-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .menu-item > a {
    padding: 15px 25px;
    width: 100%;
  }
  
  .menu-item > a::after {
    display: none;
  }
  
  /* Dropdown styles for mobile */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f9f9f9;
  }
  
  .menu-item.has-dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .dropdown-menu.dropdown-columns {
    flex-direction: column;
    min-width: 100%;
  }
  
  .dropdown-column {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 25px;
  }
  
  .dropdown-column:last-child {
    border-bottom: none;
  }
  
  .menu-item.vutton {
    margin: 20px 25px;
    width: calc(100% - 50px);
  }
  
  .menu-item.vutton a {
    text-align: center;
    width: 100%;
  }

  .about-container {
    padding: 30px 20px;
  }

  .page-hero {
    margin-top: 90px;
    min-height: 50vh;
    padding: 60px 20px 40px;
  }

  #machame-info {
    padding: 50px 15px;
  }

  .about-container h3 {
    font-size: 1.6rem;
  }

  .about-container h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
  }

  .mini-contacts {
    margin-right: 15px;
    font-size: 12px;
  }

  .header-bar {
    padding: 15px 20px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Raleway', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background: #fff;
      color: #000;
      overflow-x: hidden;
    }

    .masthead {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .top-bar {
      background: #f5f5f5;
      padding: 12px 20px;
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mini-contacts {
      display: inline-block;
      margin-right: 25px;
      color: #666;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .mini-contacts:hover {
      color: #c73d21;
    }

    .mini-contacts i {
      margin-right: 8px;
      color: #c73d21;
    }

    .header-bar {
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
    }

    .branding a {
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    .branding img {
      max-height: 70px;
      width: auto;
    }

    .main-nav {
      display: flex;
      list-style: none;
      gap: 0;
      margin: 0;
      padding: 0;
      align-items: center;
    }

    .menu-item {
      position: relative;
      margin: 0;
      padding: 0;
    }

    .menu-item > a {
      display: block;
      padding: 15px 18px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
      position: relative;
    }

    .menu-item > a:hover {
      color: #c73d21;
    }

    .menu-item > a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: #c73d21;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .menu-item > a:hover::after {
      transform: scaleX(1);
    }

    .menu-item.has-dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 250px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      border-radius: 0 0 8px 8px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      list-style: none;
      padding: 15px 0;
      margin: 0;
      z-index: 1000;
    }

    .menu-item.has-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu li {
      margin: 0;
      padding: 0;
    }

    .dropdown-menu li a {
      display: block;
      padding: 12px 25px;
      color: #333;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
    }

    .dropdown-menu li a:hover {
      background: #f5f5f5;
      color: #c73d21;
      border-left-color: #c73d21;
      padding-left: 30px;
    }

    .dropdown-menu.dropdown-columns {
      display: flex;
      min-width: 650px;
      padding: 20px 0;
      gap: 0;
    }

    .dropdown-column {
      flex: 1;
      padding: 0 20px;
      border-right: 1px solid #eee;
    }

    .dropdown-column:last-child {
      border-right: none;
    }

    .dropdown-column-title {
      font-weight: 700;
      color: #c73d21;
      font-size: 13px;
      text-transform: uppercase;
      padding: 10px 0;
      margin-bottom: 10px;
      letter-spacing: 0.5px;
    }

    .dropdown-column li {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .dropdown-column li a {
      padding: 10px 0;
      border-left: none;
      display: block;
    }

    .dropdown-column li a:hover {
      padding-left: 10px;
      background: transparent;
    }

    .vutton {
      background-color: #c73d21 !important;
      border: none;
      padding: 10px 25px !important;
      text-align: center;
      cursor: pointer;
      border-radius: 4px;
      margin-left: 10px;
    }

    .vutton a {
      color: #fff !important;
      text-decoration: none !important;
      font-weight: 600;
      font-size: 13px !important;
    }

    /* Mobile Menu Styles */
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: #333;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }

    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
      opacity: 1;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 85%;
      max-width: 350px;
      height: 100%;
      background: #fff;
      z-index: 1000;
      overflow-y: auto;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      border-bottom: 1px solid #eee;
      background: #f9f9f9;
    }

    .mobile-menu-header h3 {
      font-size: 1.2rem;
      color: #333;
      margin: 0;
    }

    .mobile-menu-close {
      background: none;
      border: none;
      font-size: 1.8rem;
      color: #333;
      cursor: pointer;
      padding: 5px;
    }

    .mobile-nav {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .mobile-nav > li {
      border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav > li > a {
      display: block;
      padding: 15px 20px;
      color: #333;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: background 0.3s ease;
    }

    .mobile-nav > li > a:hover {
      background: #f5f5f5;
      color: #c73d21;
    }

    .mobile-dropdown-toggle {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 15px 20px;
      background: none;
      border: none;
      color: #333;
      font-weight: 500;
      font-size: 15px;
      text-align: left;
      cursor: pointer;
    }

    .mobile-dropdown-toggle i {
      transition: transform 0.3s ease;
      font-size: 0.9rem;
    }

    .mobile-dropdown-toggle.active i {
      transform: rotate(180deg);
    }

    .mobile-dropdown-content {
      max-height: 0;
      overflow: hidden;
      background: #f9f9f9;
      transition: max-height 0.3s ease;
    }

    .mobile-dropdown-content.active {
      max-height: 1000px;
    }

    .mobile-dropdown-content a {
      display: block;
      padding: 12px 20px 12px 40px;
      color: #666;
      text-decoration: none;
      font-size: 14px;
      border-left: 3px solid transparent;
      transition: all 0.3s ease;
    }

    .mobile-dropdown-content a:hover {
      background: #fff;
      color: #c73d21;
      border-left-color: #c73d21;
      padding-left: 45px;
    }

    .mobile-pay-now {
      margin: 20px;
    }

    .mobile-pay-now a {
      display: block;
      text-align: center;
      padding: 15px;
      background: #c73d21;
      color: #fff !important;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .mobile-pay-now a:hover {
      background: #a83220;
    }

    /* Hero Section */
    .hero {
      margin-top: 140px;
      min-height: calc(100vh - 140px);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920');
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      overflow: hidden;
      color: #fff;
      padding: 40px 20px;
    }

    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(199, 61, 33, 0.7) 0%, rgba(99, 30, 15, 0.7) 100%);
      z-index: 1;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: gridMove 20s linear infinite;
      opacity: 0.3;
    }

    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 900px;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      color: #fff;
      animation: fadeInUp 1s ease;
    }

    .hero .subtitle {
      font-size: clamp(1rem, 2.5vw, 1.8rem);
      margin-bottom: 2rem;
      color: #ffd9d0;
      font-weight: 300;
      animation: fadeInUp 1s ease 0.2s backwards;
    }

    .hero p {
      font-size: clamp(0.95rem, 1.8vw, 1.2rem);
      margin-bottom: 3rem;
      color: rgba(255,255,255,0.9);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      animation: fadeInUp 1s ease 0.4s backwards;
      line-height: 1.6;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .cta-button {
      display: inline-block;
      padding: 16px 45px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      color: #fff;
      background: #c73d21;
      border-radius: 4px;
      transition: all 0.3s ease;
      animation: fadeInUp 1s ease 0.6s backwards;
      position: relative;
      overflow: hidden;
      border: 2px solid #c73d21;
      margin: 0 8px;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.2);
      transition: left 0.5s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(199, 61, 33, 0.4);
    }

    .cta-button.secondary {
      background: transparent;
      color: #fff;
      border-color: #fff;
    }

    .cta-button.secondary:hover {
      background: rgba(255,255,255,0.1);
    }

    section {
      padding: 80px 40px;
      margin: 0;
    }

    section:nth-child(even) {
      background: #f9f9f9;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 900;
      margin-bottom: 20px;
      color: #333;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: #c73d21;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .section-description {
      font-size: 1rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.8;
    }

    .cards-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
    }

    .card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      transition: all 0.3s ease;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      position: relative;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      background: linear-gradient(135deg, #c73d21 0%, #a83220 100%);
    }

    .card-content {
      padding: 30px;
    }

    .card h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #333;
      font-weight: 700;
    }

    .card p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .card-link {
      display: inline-block;
      padding: 12px 30px;
      background: #c73d21;
      color: #fff;
      text-decoration: none;
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s ease;
      font-size: 13px;
    }

    .card-link:hover {
      background: #a83220;
      transform: translateX(5px);
    }

    .features-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }

    .feature-card {
      padding: 40px 30px;
      background: #fff;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      transition: all 0.3s ease;
      text-align: center;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .feature-card:hover {
      background: #fafafa;
      border-color: #c73d21;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: #f2f2f2;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
    }

    .feature-card h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: #333;
      font-weight: 700;
    }

    .feature-card p {
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .testimonials-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .testimonial-card {
      background: #fff;
      padding: 40px;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #c73d21;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #fff;
      margin-right: 15px;
      font-weight: bold;
    }

    .testimonial-info h4 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 5px;
      font-weight: 700;
    }

    .stars {
      color: #ffc107;
      font-size: 13px;
    }

    .testimonial-text {
      color: #666;
      line-height: 1.6;
      font-style: italic;
      font-size: 0.95rem;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      left: 20px;
      width: 60px;
      height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
      cursor: pointer;
      z-index: 998;
      transition: transform 0.3s ease;
      text-decoration: none;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
    }

    .whatsapp-float i {
      color: white;
      font-size: 30px;
    }

    .safari-packages-section {
      background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%), 
                  url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      padding: 80px 20px;
      position: relative;
    }

    .tripadvisor-section {
      background: #f9f9f9;
      padding: 80px 20px;
      position: relative;
    }

    .tripadvisor-rating {
      text-align: center;
      margin-bottom: 20px;
    }

    .review-card {
      min-width: calc(33.333% - 20px);
      background: #fff;
      border-radius: 12px;
      padding: 35px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-left: 4px solid #00AA6C;
    }

    .review-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 30px rgba(0,170,108,0.15);
    }

    .review-header {
      margin-bottom: 20px;
    }

    .reviewer-info {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .reviewer-avatar {
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00AA6C 0%, #00d47e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: #fff;
      font-weight: bold;
      flex-shrink: 0;
    }

    .reviewer-info h4 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 5px;
      font-weight: 700;
    }

    .review-date {
      font-size: 0.85rem;
      color: #999;
      margin-top: 3px;
    }

    .review-title {
      font-size: 1.3rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .review-text {
      color: #666;
      line-height: 1.7;
      font-size: 0.95rem;
      margin-bottom: 20px;
    }

    .tripadvisor-logo-small {
      display: flex;
      justify-content: flex-end;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #f0f0f0;
    }

    .carousel-container {
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
    }

    .carousel-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .carousel-header h2 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      color: #fff;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
      margin-bottom: 10px;
    }

    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      padding: 0 60px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
      gap: 30px;
    }

    .package-card {
      min-width: calc(33.333% - 20px);
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
    }

    .package-card:hover {
      transform: translateY(-10px);
    }

    .package-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

   ;


    .package-content h3 {
      font-size: 1.6rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .package-content p {
      color: #666;
      line-height: 1.6;
      margin-bottom: 25px;
      font-size: 0.95rem;
    }

    .package-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #c73d21;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      transition: gap 0.3s ease;
    }

    .package-link:hover {
      gap: 15px;
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.9);
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #c73d21;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .carousel-nav:hover {
      background: #c73d21;
      color: #fff;
      transform: translateY(-50%) scale(1.1);
    }

    .carousel-nav.prev {
      left: 0;
    }

    .carousel-nav.next {
      right: 0;
    }

    .carousel-indicators {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 40px;
    }

    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255,255,255,0.4);
      border: 2px solid rgba(255,255,255,0.6);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      background: #c73d21;
      border-color: #c73d21;
      transform: scale(1.3);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .package-card {
        min-width: calc(50% - 15px);
      }
    }

    @media (max-width: 992px) {
      .main-nav {
        display: none;
      }
      
      .mobile-menu-toggle {
        display: block;
      }
      
      .mobile-menu-overlay {
        display: block;
      }
    }

    @media (max-width: 768px) {
      .top-bar {
        flex-direction: column;
        gap: 10px;
      }

      .mini-contacts {
        margin-right: 15px;
        font-size: 12px;
      }

      .header-bar {
        padding: 15px 20px;
      }

      .hero {
        margin-top: 120px;
        min-height: calc(100vh - 120px);
      }

      .cards-grid,
      .features-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      section {
        padding: 50px 20px;
      }

      .carousel-wrapper {
        padding: 0 50px;
      }

      .package-card {
        min-width: 100%;
      }

      .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }

      .package-image {
        height: 250px;
      }
    }
     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Raleway', 'Poppins', sans-serif;
      line-height: 1.6;
      color: #333;
    }

    .hero {
      background: linear-gradient(135deg, rgba(199, 61, 33, 0.85) 0%, rgba(99, 30, 15, 0.85) 100%),
                  url('https://images.unsplash.com/photo-1621414050345-53db43f7e7ab?w=1920');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: white;
      padding: 120px 20px 80px;
      text-align: center;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 900;
      margin-bottom: 20px;
      text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    }

    .hero .subtitle {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
    }

    .section {
      margin-bottom: 60px;
    }

    .section h2 {
      font-size: 2.5rem;
      font-weight: 800;
      color: #c73d21;
      margin-bottom: 20px;
      border-bottom: 3px solid #c73d21;
      padding-bottom: 10px;
    }

    .overview-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }

    .info-box {
      background: #f9f9f9;
      padding: 30px;
      border-radius: 8px;
      border-left: 4px solid #c73d21;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .info-box h3 {
      color: #c73d21;
      font-size: 1.3rem;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-box p {
      font-size: 1.1rem;
      color: #555;
    }

    .day-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      border-left: 5px solid #c73d21;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .day-card:hover {
      transform: translateX(10px);
      box-shadow: 0 6px 30px rgba(199, 61, 33, 0.2);
    }

    .day-card h3 {
      font-size: 1.8rem;
      color: #c73d21;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .day-number {
      background: #c73d21;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.3rem;
    }

    .day-details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 15px;
      margin: 20px 0;
      padding: 20px;
      background: #f5f5f5;
      border-radius: 8px;
    }

    .detail-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 600;
    }

    .detail-item i {
      color: #c73d21;
      font-size: 1.2rem;
    }

    .highlights {
      background: #fff9f5;
      padding: 25px;
      border-radius: 8px;
      margin-top: 20px;
      border: 2px dashed #c73d21;
    }

    .highlights h4 {
      color: #c73d21;
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    .highlights ul {
      list-style: none;
      padding-left: 0;
    }

    .highlights li {
      padding: 8px 0;
      padding-left: 30px;
      position: relative;
    }

    .highlights li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #c73d21;
      font-weight: bold;
      font-size: 1.3rem;
    }

    .inclusion-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 30px;
    }

    .inclusion-section h3 {
      color: #2e7d32;
      font-size: 1.5rem;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .exclusion-section h3 {
      color: #d32f2f;
      font-size: 1.5rem;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .inclusion-section ul,
    .exclusion-section ul {
      list-style: none;
      padding-left: 0;
    }

    .inclusion-section li,
    .exclusion-section li {
      padding: 10px 0;
      padding-left: 35px;
      position: relative;
      border-bottom: 1px solid #f0f0f0;
    }

    .inclusion-section li:before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #2e7d32;
      font-weight: bold;
      font-size: 1.5rem;
    }

    .exclusion-section li:before {
      content: "✗";
      position: absolute;
      left: 0;
      color: #d32f2f;
      font-weight: bold;
      font-size: 1.5rem;
    }

    .cta-section {
      background: linear-gradient(135deg, #c73d21 0%, #a83220 100%);
      color: white;
      padding: 60px 40px;
      border-radius: 12px;
      text-align: center;
      margin-top: 60px;
    }

    .cta-section h2 {
      color: white;
      border: none;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .cta-section p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 15px 40px;
      font-size: 1.1rem;
      font-weight: 700;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s ease;
      border: 2px solid white;
    }

    .btn-primary {
      background: white;
      color: #c73d21;
    }

    .btn-primary:hover {
      background: transparent;
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .btn-secondary {
      background: transparent;
      color: white;
    }

    .btn-secondary:hover {
      background: white;
      color: #c73d21;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
      .overview-grid,
      .inclusion-grid {
        grid-template-columns: 1fr;
      }

      .day-details {
        grid-template-columns: 1fr;
      }

      .cta-buttons {
        flex-direction: column;
        align-items: stretch;
      }
    }
    @media (max-width: 992px) {
  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 0 20px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .main-nav.active {
    display: flex;
    right: 0;
  }
  
  .menu-item {
    width: 100%;
  }
  
  .menu-item > a {
    padding: 15px 30px;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .menu-item.has-dropdown.active .dropdown-menu {
    max-height: 1000px;
  }
}