@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap);
:root {
  --navy: #003d73;
  --blue: #0071a8;
  --gold: #f09a06eb;
  --silver: #9ca6b0;
  --dark-navy: #001f3f;
  --light-bg: #f0f4f8;
  --white: #ffffff;
  --text-dark: #1a2a3a;
  --text-muted: #6b7f93;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Poppins, sans-serif;
  color: var(--text-dark);
}
/* ===== NAVBAR — GLASSMORPHISM ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.35));
}

/* --- Top Info Bar --- */
.nav-info-bar {
  background: linear-gradient(90deg,
    rgba(200,169,110,0.2) 0%,
    rgba(110,143,200,0.12) 50%,
    rgba(200,169,110,0.2) 100%
  );
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(200,169,110,0.35);
  padding: 0.38rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c8a96e;
  gap: 0.5rem;
}
.nav-info-left {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-info-left span {
  font-size: 0.9rem;
  margin-right: 0.25rem;
}
.nav-info-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-info-right a {
  color: #b8944e;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}
.nav-info-right a:hover {
  color: #e2c285;
}
.nav-info-badge {
  background: linear-gradient(90deg, rgba(200,169,110,0.2), rgba(110,143,200,0.15));
  color: #c8a96e;
  border: 1px solid rgba(200,169,110,0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.7rem;
  border-radius: 3px;
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(200,169,110,0.15), 0 0 8px rgba(110,143,200,0.1);
}

/* --- Main Nav Row --- */
.nav-main {
  background: linear-gradient(135deg, rgb(0 31 93 / 91%) 0%, rgba(19, 33, 60, 0.89) 50%, rgb(18, 50, 101) 100%);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(200,169,110,0.12);
  box-shadow:
    0 2px 0 rgba(200,169,110,0.14),
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  min-height: 72px;
  gap: 1rem;
  position: relative;
}
/* Bold glowing gold+blue rule at the bottom */
.nav-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(110,143,200,0.8) 10%,
    #c8a96e 35%,
    #e2c285 50%,
    #c8a96e 65%,
    rgba(110,143,200,0.8) 90%,
    transparent 100%
  );
  box-shadow: 0 0 10px rgba(200,169,110,0.5), 0 0 20px rgba(110,143,200,0.3);
  pointer-events: none;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none !important;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 54px;
  height: 54px;
  object-fit: cover !important;
  border-radius: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(200,169,110,0.3);
}
.nav-brand-sub {
  font-size: 0.58rem;
  color: #c8a96e;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.05rem;
  text-shadow: 0 0 12px rgba(200,169,110,0.5);
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links li a {
  display: block;
  color: rgba(230,238,250,0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 1.35rem 1.3rem;
  position: relative;
  transition: color 0.22s;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, #6e8fc8, #c8a96e);
  border-radius: 2px 2px 0 0;
  transition: transform 0.25s ease;
  box-shadow: 0 0 10px rgba(110,143,200,0.7), 0 0 18px rgba(200,169,110,0.5);
}
.nav-links li a:hover {
  color: #8ab0e8;
}
.nav-links li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-links li a.active {
  color: #c8a96e;
  text-shadow: 0 0 16px rgba(200,169,110,0.5);
}
.nav-links li a.active::after {
  transform: translateX(-50%) scaleX(1);
  background: linear-gradient(90deg, #c8a96e, #e2c285);
  box-shadow: 0 0 12px rgba(200,169,110,0.8);
}
.nav-cta {
  flex-shrink: 0;
}
/* Gold + Blue dual-tone glass pill CTA button */
.nav-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg,
    rgba(200,169,110,0.18) 0%,
    rgba(110,143,200,0.12) 100%
  );
  color: #e2c285;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  border: 1.5px solid;
  border-image: linear-gradient(135deg, rgba(200,169,110,0.7), rgba(110,143,200,0.5)) 1;
  border-radius: 6px;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(200,169,110,0.18), 0 0 12px rgba(110,143,200,0.12),
              inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(200,169,110,0.08), rgba(110,143,200,0.06));
  pointer-events: none;
}
.nav-cta-btn:hover {
  background: linear-gradient(135deg,
    rgba(200,169,110,0.32) 0%,
    rgba(110,143,200,0.22) 100%
  );
  color: #fff;
  box-shadow: 0 0 24px rgba(200,169,110,0.4), 0 0 24px rgba(110,143,200,0.25),
              0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.nav-cta-btn.active-cta {
  background: linear-gradient(135deg,
    rgba(200,169,110,0.3) 0%,
    rgba(110,143,200,0.18) 100%
  );
  color: #f0d898;
  box-shadow: 0 0 20px rgba(200,169,110,0.35), 0 0 14px rgba(110,143,200,0.2);
}

.mobile-only-link {
  display: none !important;
}

/* --- Hamburger (mobile) --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 9px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(200,169,110,0.3);
  border-radius: 6px;
  z-index: 101;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}
.hamburger:hover {
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.6);
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: rgba(200,169,110,0.85);
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}
.hamburger.active span:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
/* legacy — keep for older pages */
.nav-top { display: none; }
.nav-bottom { display: none; }
.btn {
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark-navy);
}
.btn-primary:hover {
  background: #e09610;
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: 0 0;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark-navy);
}
.btn-blue {
  background: var(--blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--navy);
}
section {
  padding: 5rem 2rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
section h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  margin: 0.4rem auto 1.5rem;
  border-radius: 2px;
}
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.page-hero {
  background: linear-gradient(
    135deg,
    var(--dark-navy) 0,
    var(--navy) 60%,
    var(--blue) 100%
  );
  color: #fff;
  padding: 10rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.6);
}
.page-hero p {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 500;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 0, 0, 0.7);
}
@media (max-width: 480px) {
  section {
    padding: 3rem 1rem;
  }
  .nav-info-bar {
    display: none;
  }
  .nav-main {
    padding: 0 1rem;
    min-height: 60px;
  }
  .nav-logo-img {
    width: 42px !important;
    height: 42px !important;
  }
  .nav-brand-name {
    font-size: 0.85rem;
  }
  .nav-brand-sub {
    display: block;
    font-size: 0.45rem;
    letter-spacing: 0.12em;
    margin-top: 0.1rem;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    right: 0;
    width: 260px;
    height: calc(100vh - 60px);
    background: var(--dark-navy);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.4);
    z-index: 200;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.9rem;
  }
  .nav-links li a::after { display: none; }
  .nav-cta { display: none; }
  .mobile-only-link { display: block !important; }
  section h2 {
    font-size: 1.5rem;
  }
  .section-sub {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .page-hero {
    padding: 4rem 1.5rem;
  }
  .page-hero h1 {
    font-size: 1.8rem;
  }
  .page-hero p {
    font-size: 0.9rem;
  }
  .btn {
    padding: 0.65rem 1.3rem;
    font-size: 0.85rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  section {
    padding: 4rem 1.5rem;
  }
  .nav-info-bar {
    display: none;
  }
  .nav-main {
    padding: 0 1.5rem;
    min-height: 65px;
  }
  .nav-logo-img {
    width: 46px;
    height: 46px;
  }
  .hamburger {
    display: flex !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    right: 0;
    width: 300px;
    height: calc(100vh - 65px);
    background: var(--dark-navy);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 1rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.4);
    z-index: 200;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li a {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
  }
  .nav-links li a::after { display: none; }
  .nav-cta { display: none; }
  .mobile-only-link { display: block !important; }
  section h2 {
    font-size: 1.75rem;
  }
  .section-sub {
    font-size: 0.95rem;
  }
  .page-hero {
    padding: 5rem 2rem;
  }
  .page-hero h1 {
    font-size: 2rem;
  }
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  section {
    padding: 4.5rem 2rem;
  }
  .nav-info-bar {
    padding: 0.35rem 1.5rem;
    font-size: 0.78rem;
  }
  .nav-main {
    padding: 0 1.5rem;
    min-height: 65px;
  }
  .nav-logo-img {
    width: 48px;
    height: 48px;
  }
  .nav-links li a {
    padding: 1.1rem 0.9rem;
    font-size: 0.8rem;
  }
  .nav-cta-btn {
    font-size: 0.72rem;
    padding: 0.6rem 0.9rem;
  }
  section h2 {
    font-size: 1.85rem;
  }
  .section-sub {
    font-size: 0.98rem;
  }
  .page-hero {
    padding: 6rem 2.5rem;
  }
  .page-hero h1 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  section {
    padding: 5rem 2rem;
  }
  .nav-info-bar {
    padding: 0.38rem 2.5rem;
  }
  .nav-main {
    padding: 0 2.5rem;
  }
  section h2 {
    font-size: 2rem;
  }
  .page-hero {
    padding: 10rem 2rem;
  }
  .page-hero h1 {
    font-size: 2.4rem;
  }
}
@media (min-width: 1441px) {
  .section-inner {
    max-width: 1300px;
  }
  section {
    padding: 6rem 2rem;
  }
  .nav-info-bar {
    padding: 0.4rem 4rem;
  }
  .nav-main {
    padding: 0 4rem;
  }
  section h2 {
    font-size: 2.2rem;
  }
  .page-hero h1 {
    font-size: 2.6rem;
  }
}
