* {
  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;
  }
}