/* ===== GLOBAL ===== */
body {
  padding-top: 80px;
  /* font-family: "Segoe UI", system-ui, sans-serif; */
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background:#f6f6f6;
  height: 80px;
  /* box-shadow: 0 2px 15px rgba(0,0,0,0.08); */
  transition: all 0.3s ease;
  z-index: 10000;
  border-bottom:1px solid #dedede;
}



/* SHRINK STATE */
/* .navbar.shrink {
  height: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
} */

/* ===== LOGO ===== */
.logo-trip {
  color: #25a94a;
  font-size: 28px;
  font-weight: 800;
  transition: 0.3s;
}
.logo-tours {
  color: #333;
  font-size: 28px;
  font-weight: 800;
  transition: 0.3s;
}

/* .navbar.shrink .logo-trip,
.navbar.shrink .logo-tours {
  font-size: 22px;
} */

/* ===== MENU ===== */
.main-menu .nav-link {
  font-size:13px;
  font-weight:600;
  color: #111 !important;
  padding: 30px 18px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.main-menu .nav-link i {
  font-size: 11px;
}

/* Active + Hover */
.main-menu .nav-link.active,
.main-menu .nav-link:hover {
  color: #ff5722 !important;
}

/* Shrink menu */
/* .navbar.shrink .main-menu .nav-link {
  padding: 18px 18px;
  font-size: 14px;
} */

/* ===== HOVER DROPDOWN ===== */
.hover-dropdown .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  margin-top: 0;
  min-width: 200px;
}

/* Desktop hover */
@media (min-width: 992px) {
  .hover-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-menu .dropdown-item:hover {
  background: rgba(255,87,34,0.08);
  color: #ff5722;
}

/* ===== SEARCH ===== */
.header-search {
  position: relative;
}

/* .header-search input {
  width: 280px;
  height: 40px;
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 0 45px 0 20px;
  font-size: 14px;
  background: #f7f7f7;
  transition: 0.3s;
} */

.header-search input {
    width: 192px;
    height: 40px;
    border-radius: 2px;
    border: 1px solid #ddd;
    padding: 0 45px 0 20px;
    font-size: 14px;
    background: #f7f7f7;
    transition: 0.3s;
}

.header-search i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

/* .navbar.shrink .header-search input {
  height: 34px;
  font-size: 13px;
} */

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    /* background: #25d366; */
    color:#2947b8;
    /* padding: 10px 22px; */
    border-radius: 9px 5px 5px 9px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    border: 1px solid #2947b8;
    border-right: 1px solid #2947b8;
    border-left: 1px solid #23b23b00;
    border-top: 1px solid #2947b8;
    border-bottom: 1px solid #2947b8;
}

.munbertopp {
    padding: 0px 12px;
    font-size: 20px;
    font-weight: 700;
}

/* .whatsapp-btn:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
} */



/* .navbar.shrink .whatsapp-btn {
  padding: 8px 18px;
  font-size: 14px;
} */

/* ===== MOBILE MENU ===== */

@media (max-width: 1400.98px){
 .munbertopp {
    font-size:15px;
}
.navbar-brand img {
    max-width: 155px;
}
}

@media (max-width: 1199.98px){
 /* .munbertopp {
    font-size: 16px;
} */
}



@media (max-width: 991px) {
  .main-menu, .header-search { display: none; }

  /* Mobile menu container */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu.show {
    right: 0;
  }

  /* Mobile menu header with close button */
  .mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .mobile-logo {
    font-size: 22px;
    font-weight: 800;
  }

  .mobile-logo .logo-trip {
    color: #25a94a;
  }

  .mobile-logo .logo-tours {
    color: #333;
  }

  /* Close button */
  .close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
  }

  .close-menu:hover {
    background: #f5f5f5;
    color: #ff5722;
    transform: rotate(90deg);
  }

  /* Menu content */
  .menu-content {
    padding: 20px 25px;
    flex: 1;
  }

  /* Mobile menu items */
  .mobile-menu-item {
    border-bottom: 1px solid #eee;
  }

  .mobile-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
  }

  .mobile-menu-link.plain {
    justify-content: flex-start;
  }

  .mobile-menu-link i {
    color: #888;
    font-size: 12px;
    transition: transform 0.3s;
  }

  .mobile-menu-link.active i {
    transform: rotate(180deg);
  }

  .mobile-menu-link:hover {
    color: #ff5722;
  }

  /* Submenu */
  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 15px;
  }

  .mobile-submenu.show {
    max-height: 500px;
  }

  .mobile-submenu a {
    display: block;
    padding: 14px 0;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14.5px;
    transition: all 0.3s;
  }

  .mobile-submenu a:last-child {
    border-bottom: none;
  }

  .mobile-submenu a:hover {
    color: #ff5722;
    padding-left: 10px;
  }

  /* Mobile search */
  .mobile-search {
    margin: 20px 0;
    position: relative;
  }

  .mobile-search input {
    width: 100%;
    height: 45px;
    border-radius: 30px;
    border: 1px solid #ddd;
    padding: 0 50px 0 20px;
    font-size: 15px;
    background: #f8f8f8;
  }

  .mobile-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
  }

  /* Mobile WhatsApp button */
  .mobile-whatsapp {
    margin-top: 30px;
    padding: 25px 0;
    border-top: 1px solid #eee;
  }

  .mobile-whatsapp .whatsapp-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 16px;
  }

  /* Backdrop */
  .menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    transition: all 0.3s ease;
  }

  .menu-backdrop.show {
    opacity: 1;
    visibility: visible;
  }

  /* Hamburger button */
  .hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }


}

/* ===== DESKTOP ONLY ===== */
@media (min-width: 992px) {
  .mobile-menu, .menu-backdrop, #mobileToggle {
    display: none !important;
  }
}



