.header h4{
  color: #ff1616;
}
/* HEADER STYLES */
.logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-image {
  height: 55px;        /* adjust if needed */
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .logo-image {
    height: 45px;
  }
}


.header-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}
.header-wrapper {
  font-family: "Inter", "Segoe UI", sans-serif;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #060e1a;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #0f2a4d; /* dark blue */
}

.gold {
  color: #ff1616; /* gold accent */
}

.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #ff1616;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
   background: linear-gradient(360deg, #ff1616, #676767);
  border: 2px solid #000000;
  border-radius: 6px;
  padding: 8px 20px;
}

.phone-icon {
  margin-right: 6px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn-prime {
  background: linear-gradient(135deg, #d1aa46, #a0791f);
  color: #fff;
  box-shadow: 0 10px 30px rgba(176, 138, 47, 0.4);
}

.cta-btn-prime:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(176, 138, 47, 0.55);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 10000;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ff1616;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  /*right: -100%; */
  width: 300px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.1);
 /* transition: right 0.3s ease;*/
  z-index: 9999;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  will-change: transform;
}

.mobile-menu.active {
  /*right: 0;*/
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.mobile-menu ul {
  list-style: none;
  padding: 20px;
}

.mobile-menu ul li {
  margin: 15px 0;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #0f2a4d;
  font-weight: 500;
}

.mobile-btn {
  display: block;
  margin: 20px;
  text-align: center;
  padding: 12px 0px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-btn-prime {
  background: linear-gradient(135deg, #d1aa46, #a0791f);
  color: #fff;
  box-shadow: 0 10px 30px rgba(176, 138, 47, 0.4);
}

.mobile-btn-prime:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(176, 138, 47, 0.55);
}

.close-menu {
  font-size: 22px;
  cursor: pointer;
  position: relative;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 15px 15px;
  }
  .logo a {
    font-size: 20px;
  }
  .header-right {
    gap: 10px;
  }
  .cta-btn {
    padding: 8px 14px;
    font-size: 14px;
  }
  
}

@media (max-width: 600px) {
  .header {
    padding: 10px 10px;
  }
  .logo a {
    font-size: 18px;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu {
    width: 80vw;
  }
  .site-header.menu-open .hamburger {
  display: none;
}
}

/* ===== DROPDOWNS ===== */
.nav-menu > li {
  position: relative;
}

.has-dropdown > a::after {
  content: " ▾";
  float: right;
  font-size: 20px;
}

.dropdown {
  position: absolute;
  top: 100%;        /* directly below parent */
  left: 0;          /* align properly */
  background: #060e1a;
  min-width: 220px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 0;
  
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 9999;
}

.dropdown li {
  position: relative;
}

.dropdown li a {
  padding: 12px 18px;
  display: block;
  color: #0f2a4d;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: rgba(176,138,47,0.1);
  color: #E68345;
}

/* Show dropdown */
.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== SUB DROPDOWN ===== */
.has-subdropdown > a::after {
  content: "▾";
  float: bottom;
  font-size: 20px;
}

.sub-dropdown {
  position: absolute;
  top: 0;              /* align with parent item */
  left: 100%;          /* push to right side */
  background: #060e1a;
  min-width: 220px;
  border-radius: 8px;
  padding: 8px 0;

  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);   /* smooth slide from right */
  transition: all 0.25s ease;
  z-index: 9999;
}
.has-subdropdown{
   position: relative;
}

.has-subdropdown:hover > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
/* ===== MOBILE DROPDOWNS ===== */
/* MOBILE DROPDOWN RESET */
.mobile-dropdown {
  display: none;
  padding-left: 10px;
  margin-top: 8px;
  border-left: 2px solid rgba(176,138,47,0.3);
}

.mobile-sub-dropdown {
  display: none;
  padding-left: 12px;
  margin-top: 6px;
  border-left: 2px solid rgba(176,138,47,0.2);
}
.mobile-menu ul li {
  margin: 10px 0; /* was 15px */
}

.mobile-menu ul li a,
.mobile-dropdown-toggle,
.mobile-sub-toggle {
  padding: 0;
}


.mobile-dropdown-toggle,
.mobile-sub-toggle {
  display: block;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 0;
  color: #0f2a4d;
}

.mobile-dropdown-toggle::after,
.mobile-sub-toggle::after {
  content: " ▾";
  float: right;
}

.mobile-dropdown.active,
.mobile-sub-dropdown.active {
  display: block;
}

@media (max-width: 1024px) {
  .mobile-menu ul {
  padding: 0px 20px;
}
  .main-nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
   .mobile-dropdown,
  .mobile-sub-dropdown {
    display: none;
    padding-left: 18px;
    margin-top: 8px;
  }

  .mobile-dropdown.active,
  .mobile-sub-dropdown.active {
    display: block;
  }

  .mobile-dropdown-toggle,
  .mobile-sub-toggle {
    display: block;
    width: 100%;
    padding: 0;
    font-size: 16px;
    cursor: pointer;
  }

  .mobile-sub-dropdown li a {
    padding: 10px 0;
    display: block;
  }
}

