* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

.hero {
  background-image: url("../images/backgrond-image.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-submenu li a{
  text-decoration: none !important;
  color: #222425 !important;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 1000;
}

.nav-menu {
  color: #000;
}

.nav-menu li {
  color: #000;
}

.navbar.active {
  background-color: #282e31;
}

.navbar.active .nav-menu,
.navbar.active .nav-menu li,
.navbar.active .nav-trigger {
  color: #fff;
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  gap: 10px;
  color: #fff;
  font-weight: 600;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  color: #fff;
  font-size: 14px;
}

.nav-trigger {
  cursor: pointer;
  display: flex;
  gap: 5px;
  color: #000;
  justify-content: center;
  align-items: center;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 900;
}

.page-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mega-wrapper {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 1001;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.mega-wrapper.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mega-dropdown {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
  display: flex;
  gap: 48px;
}

.mega-left img {
  width: 317px;
  height: 264px;
  border-radius: 4px;
}

.mega-center {
  max-width: 380px;
}

.mega-center h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.mega-center p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.mega-center button {
  background: #f5b335;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
}

.mega-right {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid #eeeeee;
  margin-left: 8rem;
  padding-left: 3rem;
}

.mega-right a {
  text-decoration: none;
  color: #002b45;
  font-weight: 500;
}

.mega-right a:hover {
  color: #f5b335;
}

.hero .content {
  color: #212529 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0;
}

.hero .content h2 {
  line-height: 28.8px;
  font-weight: 400;
  font-size: 24px;
}
.hero .content h1 {
  font-weight: 700;
  line-height: 48px;
  font-size: 40px;
}

.main-form {
  width: 360px;
}

.card {
  background: #fff;
  padding: 20px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 14px;
}

.tabs {
  width: 200px;
  display: flex;
  background: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}

.tabs button {
  flex: 1;
  padding: 12px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: none;
}

.tabs .active {
  background: #fdba2e;
}

label {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  margin: 12px 0 10px;
  display: block;
}

.form-label {
  color: #212529;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #e6e3e0;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

.input-wrap {
  position: relative;
}

.input-box {
  border: 1px solid #e6e3e0;
  border-radius: 8px;
  padding-right: 14px;
  display: flex;
  align-items: center;
}

.input-box input {
  border: none;
  outline: none;
  width: 100%;
}

.arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.arrow img {
  transition: transform 0.3s ease;
}

.arrow.rotate img {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #e6e3e0;
  border-radius: 12px;
  max-height: 260px;
  overflow: auto;
  display: none;
  z-index: 1000;
  font-size: 14px;
}

.dropdown.active {
  display: block;
}

.group-title {
  padding: 12px;
  font-weight: 600;
}

.divider {
  height: 1px;
  background: #eee;
  margin: 6px 0;
}

.option {
  padding: 12px;
  cursor: pointer;
}

.empty {
  padding: 16px;
  text-align: center;
  color: #999;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.chip {
  background: #0b2347;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip span {
  cursor: pointer;
}

.age-box {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  align-items: flex-start;
}

.ages-container {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.age-item {
  width: 40px;
  height: 40px;
  border: 1px solid #e6e3e0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  background: #fff;
}

.add-btn {
  background: #fdba2e;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

.submit {
  margin-top: 16px;
  width: 100%;
  background: #fdba2e;
  border: none;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu-btn,
.mobile-menu {
  display: none;
}

.hero {
  min-height: 100vh;      
  min-height: 100svh;    
}

@media (max-width: 992px) {

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #000;
  }

  .navbar.active .mobile-menu-btn {
    color: #fff;
  }

  ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

  .mobile-menu {
    display: block; 
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .mobile-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
  }

  .mobile-menu-header img {
    height: 24px;
  }

  .close-btn {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile-menu-list {
    list-style: none;
    padding: 0 20px;
  }

  .mobile-item,
  .mobile-dropdown {
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    cursor: pointer;
    color: #111;
  }

  .mobile-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-arrow {
    width: 14px;
    height: 14px;
  }

  .mobile-submenu {
    display: none;
    padding-left: 18px;
    margin-top: 10px;
  }

  .mobile-submenu li {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
    color: #222425;
  }

  .mobile-dropdown.active .mobile-text {
    color: #C93131;
  }

  .mobile-dropdown.active .mobile-submenu {
    display: block;
  }
}

