/* Shared global header/navbar used by new information pages */
.promo-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 55px;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  z-index: 10000;
  font-family: "Poppins", sans-serif;
  transition:
    background 0.35s ease,
    border-color 0.35s ease;
}

.promo-inner {
  max-width: 1400px;
  height: 100%;
  margin: auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #000000;
  transition: color 0.35s ease;
}

.promo-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #d4af37;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.promo-text strong {
  color: #000000;
  transition: color 0.35s ease;
}

.promo-right a {
  text-decoration: none;
  color: #000000;
  border: 1px solid #000000;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.promo-right a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.promo-bar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.promo-bar.scrolled .promo-left {
  color: #111;
}

.promo-bar.scrolled .promo-badge {
  background: #000;
  color: #fff;
  border-color: #000;
}

.promo-bar.scrolled .promo-text strong {
  color: #000;
}

.promo-bar.scrolled .promo-right a {
  color: #000;
  border-color: #000;
}

.promo-bar.scrolled .promo-right a:hover {
  background: rgba(0, 0, 0, 0.05);
}

header.site-header {
  position: fixed;
  top: 55px;
  left: 0;
  width: 100%;
  padding: 18px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #251b15;
  transition: 0.3s;
  z-index: 999;
  height: 70px;
}

.site-header .logo {
  position: relative;
  display: inline-block;
}

.site-header .logo img {
  height: 100px;
  width: auto;
  display: block;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled nav a,
.site-header.scrolled .dropbtn {
  color: #000 !important;
}

.site-header.scrolled .menu-toggle span {
  background: #000 !important;
}

.site-header.scrolled .logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("imgs/logowadirumAlomar.png") no-repeat center/contain;
  filter: brightness(0);
  clip-path: inset(0 50% 0 0);
  pointer-events: none;
}

.site-header nav {
  display: flex;
  align-items: center;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 28px;
  font-size: 14px;
  position: relative;
}

.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #c6a45a;
  transition: 0.3s;
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  width: 100%;
}

.site-header nav a.active,
.site-header .dropbtn.active {
  color: #c6a45a;
}

.site-header .dropdown {
  position: relative;
  margin-left: 28px;
}

.site-header .dropbtn {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: inherit;
}

.site-header .arrow {
  margin-left: 6px;
  font-size: 12px;
  transition: 0.3s;
}

.site-header .dropdown-content {
  position: absolute;
  top: 35px;
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  padding: 10px 0;
  max-height: 260px;
  overflow-y: auto;
}

.site-header .dropdown-content a {
  color: #000;
  padding: 10px 18px;
  display: block;
  font-size: 14px;
  margin-left: 0;
}

.site-header .dropdown-content a:hover,
.site-header .dropdown-content a.active {
  background: #f5f5f5;
  color: #c6a45a;
  font-weight: 600;
}

.site-header .dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 20px;
}

.site-header .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.site-header .menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
  transition: 0.3s;
}

@media (min-width: 992px) {
  .site-header .dropdown:hover .dropdown-content {
    display: block;
  }

  .site-header .dropdown:hover .arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 991px) {
  .promo-inner {
    padding: 0 16px;
  }

  header.site-header {
    padding: 0 20px;
    height: 65px;
  }

  header.site-header.scrolled {
    box-shadow: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .site-header .logo img {
    height: 80px;
  }

  .site-header .menu-toggle {
    display: flex;
    gap: 5px;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 24px;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .site-header nav.active {
    display: flex;
  }

  .site-header nav a,
  .site-header .dropdown {
    margin: 10px 0;
    width: 100%;
  }

  .site-header nav a,
  .site-header.scrolled nav a {
    color: #fff !important;
    font-size: 15px;
    padding: 4px 0;
    margin-left: 0 !important;
  }

  .site-header .dropbtn,
  .site-header.scrolled .dropbtn {
    color: #fff !important;
    font-size: 15px;
    width: 100%;
    justify-content: space-between;
    padding: 4px 0;
  }

  .site-header .dropdown-content {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    display: none;
    width: 100%;
    max-height: none;
    overflow: visible;
    padding: 6px 0;
    margin-top: 6px;
  }

  .site-header .dropdown-content a {
    color: #ddd !important;
    padding: 9px 14px;
    font-size: 14px;
    margin: 0;
  }

  .site-header .dropdown-content a:hover {
    color: #c6a45a !important;
    background: rgba(198, 164, 90, 0.1);
  }

  .site-header .dropdown.active .dropdown-content {
    display: block;
  }

  .site-header .dropdown.active .arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 600px) {
  .promo-bar {
    height: 48px;
  }

  .promo-text {
    display: none;
  }

  .promo-right a {
    font-size: 12px;
    padding: 5px 12px;
  }

  header.site-header {
    top: 48px;
    height: 60px;
  }

  .site-header .logo img {
    height: 70px;
  }
}
