/* ═══════════════════════════════════════════════════════════════
   CTC GLOBAL — GLOBAL DESIGN SYSTEM
   Version: 2.0 | Integrated & Quality-Reviewed
   Fixes: dark mode text, nav consistency, responsive, accessibility
═══════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Brand colours */
  --navy:        #1B1E6E;
  --navy-deep:   #0e1147;
  --navy-mid:    #161a5e;
  --gold:        #C9A84C;
  --gold-light:  #e8c96a;
  --gold-pale:   #f5e9c8;
  --teal:        #0E7C7B;
  --teal-light:  #12a09f;

  /* Light-mode surfaces & text */
  --bg-page:     #ffffff;
  --bg-alt:      #f7f6f2;
  --bg-card:     #ffffff;
  --border:      #e0dfd8;
  --text-dark:   #12152a;
  --text-mid:    #4a4a6e;
  --text-light:  #8888aa;

  /* Typography */
  --fd: "Cormorant Garamond", Georgia, serif;
  --fb: "DM Sans", system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:  76px;
  --max-w:  1200px;
  --px:     5%;

  /* Shadows */
  --sh-sm:  0 4px 20px rgba(27,30,110,.07);
  --sh-md:  0 12px 40px rgba(27,30,110,.11);
  --sh-lg:  0 24px 64px rgba(27,30,110,.15);

  /* Misc */
  --radius: 2px;
  --err:    #c0392b;
  --ok:     #0E7C7B;
}

/* ── 2. DARK MODE TOKENS ─────────────────────────────────────── */
[data-theme="dark"] {
  --bg-page:   #0d0f2b;
  --bg-alt:    #111330;
  --bg-card:   #181b40;
  --border:    #2a2d55;
  --text-dark: #e8eaf6;   /* was navy-on-dark — now light */
  --text-mid:  #9fa8da;
  --text-light:#5c6bc0;
  --gold-pale: #2a2510;
}

/* ── 3. RESET ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  color: var(--text-dark);
  background: var(--bg-page);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background .3s, color .3s;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; font-family: var(--fb); border: none; }
ul { list-style: none; }

/* ── 4. TYPOGRAPHY RULES ─────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--fd); line-height: 1.1; }
p, span, li, a, label, button, input, select, textarea { font-family: var(--fb); }

/* ── 5. NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--px);
  background: rgba(14,17,71,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,.18);
  transition: height .35s, box-shadow .35s;
}
#nav.scrolled { height: 62px; background: rgba(11,13,58,.99); box-shadow: 0 4px 40px rgba(0,0,0,.4); }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 44px; width: 44px; object-fit: contain; border-radius: var(--radius); flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name { font-family: var(--fd); font-size: 17px; font-weight: 600; color: #fff; letter-spacing: .5px; }
.logo-tag { font-size: 9px; font-weight: 500; color: var(--gold); letter-spacing: 1.8px; text-transform: uppercase; }

/* Desktop links */
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.75);
  letter-spacing: .6px; text-transform: uppercase;
  transition: color .2s; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }

/* Nav CTA button */
.nav-cta {
  padding: 9px 18px !important; background: var(--gold) !important;
  color: var(--navy) !important; font-weight: 700 !important;
  font-size: 11px !important; letter-spacing: .5px !important;
  white-space: nowrap; border-radius: var(--radius);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy-deep) !important; }

/* Nav right controls */
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* Theme toggle */
.theme-toggle {
  width: 46px; height: 24px; background: rgba(255,255,255,.15);
  border-radius: 12px; position: relative; cursor: pointer;
  border: 1px solid rgba(255,255,255,.2); flex-shrink: 0; transition: background .3s;
}
.theme-toggle::after {
  content: "☀️"; position: absolute; top: 50%; transform: translateY(-50%);
  left: 4px; font-size: 12px; transition: left .3s; line-height: 1;
}
[data-theme="dark"] .theme-toggle { background: rgba(201,168,76,.2); border-color: rgba(201,168,76,.3); }
[data-theme="dark"] .theme-toggle::after { content: "🌙"; left: 24px; }
.theme-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px 4px; background: none; border: none; flex-shrink: 0;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(11,13,58,.99);
  padding: 20px var(--px) 28px;
  flex-direction: column; gap: 0; z-index: 999;
  border-top: 1px solid rgba(201,168,76,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.85);
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s; letter-spacing: .3px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.mobile-cta {
  margin-top: 14px; background: var(--gold) !important; color: var(--navy) !important;
  font-weight: 700 !important; text-align: center;
  padding: 14px !important; border-bottom: none !important; border-radius: var(--radius);
}

/* ── 6. SHARED PAGE HERO ─────────────────────────────────────── */
.page-hero {
  background: var(--navy-deep);
  padding: 112px var(--px) 76px;
  position: relative; overflow: hidden;
  margin-top: var(--nav-h);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(14,124,123,.12) 0%, transparent 60%),
              radial-gradient(ellipse 40% 50% at 20% 80%, rgba(201,168,76,.07) 0%, transparent 55%),
              linear-gradient(135deg, #060a2a 0%, #1B1E6E 60%, #0e1147 100%);
}
.page-hero-ring {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 480px; height: 480px;
  border: 1px solid rgba(201,168,76,.08); border-radius: 50%; pointer-events: none;
}
.page-hero-ring::before {
  content: ""; position: absolute; inset: 48px;
  border: 1px solid rgba(14,124,123,.1); border-radius: 50%;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { font-size: 12px; color: var(--gold); transition: opacity .2s; }
.breadcrumb a:hover { opacity: .75; }
.breadcrumb-sep { font-size: 12px; color: rgba(255,255,255,.2); }
.breadcrumb-cur { font-size: 12px; color: rgba(255,255,255,.4); }

.page-hero h1 {
  font-family: var(--fd); font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 600; color: #fff; line-height: 1.07;
  max-width: 720px; margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero-sub {
  font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,.65);
  max-width: 640px; font-weight: 300;
}

/* ── 7. BUTTON SYSTEM ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; letter-spacing: .4px;
  transition: all .3s; white-space: nowrap; cursor: pointer; border: none;
  border-radius: var(--radius); font-family: var(--fb);
  text-decoration: none;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Gold fill */
.btn-gold {
  padding: 13px 30px; background: var(--gold); color: var(--navy);
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ""; position: absolute; inset: 0; background: var(--navy-deep);
  transform: translateX(-101%); transition: transform .35s ease; z-index: 0;
}
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:hover { color: var(--gold); }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }

/* White outline (on dark bg) */
.btn-outline {
  padding: 12px 28px; border: 1px solid rgba(255,255,255,.28);
  color: #fff; background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Dark outline (on light bg) */
.btn-outline-dark {
  padding: 12px 28px; border: 1px solid var(--border);
  color: var(--text-dark); background: transparent;
}
.btn-outline-dark:hover { border-color: var(--navy); background: var(--bg-alt); }
[data-theme="dark"] .btn-outline-dark { color: var(--text-dark); border-color: var(--border); }
[data-theme="dark"] .btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* Navy fill */
.btn-navy { padding: 13px 30px; background: var(--navy); color: var(--gold); }
.btn-navy:hover { background: var(--navy-deep); }

/* Teal fill */
.btn-teal { padding: 13px 30px; background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-light); }

/* ── 8. SECTION STRUCTURE ────────────────────────────────────── */
.section { padding: 88px var(--px); }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy-deep); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.section-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.eyebrow-line { width: 32px; height: 2px; background: var(--gold); flex-shrink: 0; }
.eyebrow-text {
  font-size: 10.5px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal);
}
.eyebrow-light { color: var(--gold); }

.section-title {
  font-family: var(--fd); font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 600; line-height: 1.1; color: var(--text-dark); margin-bottom: 14px;
}
.section-title-white { color: #fff; }
.section-title em { font-style: normal; color: var(--gold); }

.section-subtitle {
  font-size: 15px; line-height: 1.82; color: var(--text-mid);
  font-weight: 300; max-width: 720px;
}
.section-subtitle-white { color: rgba(255,255,255,.7); }

/* ── 9. CARD SYSTEM ──────────────────────────────────────────── */
.card {
  background: var(--bg-card); padding: 36px 28px;
  border: 1px solid var(--border); transition: all .3s;
  position: relative; overflow: hidden;
}
.card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: transparent; }

/* ── 10. FORM SYSTEM ─────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 7px;
}
.form-label .req { color: var(--gold); }
.form-label .opt { font-size: 10px; font-weight: 400; letter-spacing: 0; text-transform: none; margin-left: 4px; opacity: .6; }
.form-control {
  width: 100%; padding: 12px 14px;
  background: var(--bg-alt); border: 1.5px solid var(--border);
  color: var(--text-dark); font-size: 13.5px; outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none; border-radius: 0;
  font-family: var(--fb);
}
.form-control:focus { border-color: var(--teal); background: var(--bg-card); }
.form-control::placeholder { color: var(--text-mid); opacity: .55; font-weight: 300; }
.form-control.error { border-color: var(--err) !important; }
[data-theme="dark"] .form-control {
  background: rgba(255,255,255,.05); border-color: var(--border);
  color: var(--text-dark);
}
[data-theme="dark"] .form-control:focus {
  background: rgba(255,255,255,.08); border-color: var(--teal);
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234a4a6e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}
[data-theme="dark"] select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239fa8da' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}
textarea.form-control { resize: vertical; min-height: 110px; line-height: 1.6; }

/* Submit button */
.btn-submit {
  width: 100%; padding: 15px; background: var(--navy); color: var(--gold);
  font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  border: none; cursor: pointer; transition: all .3s; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-submit:hover { background: var(--navy-deep); }
.btn-submit:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Form status */
.form-success {
  display: none; padding: 18px 20px; background: rgba(14,124,123,.08);
  border: 1px solid var(--teal); color: var(--teal); font-size: 13.5px;
  border-radius: var(--radius); margin-top: 12px;
}
.form-error-msg { font-size: 11px; color: var(--err); margin-top: 4px; display: none; }

/* Star rating */
.star-group { display: flex; gap: 4px; }
.star-group input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.star-group label {
  font-size: 28px; cursor: pointer; color: var(--border);
  transition: color .15s; line-height: 1;
}
.star-group label:hover,
.star-group input[type="radio"]:checked ~ label,
.star-group label:hover ~ label { color: var(--gold); }
.star-group { flex-direction: row-reverse; }
.star-group label:hover, .star-group label:hover ~ label { color: var(--gold); }
.star-group input:checked ~ label { color: var(--gold); }

/* ── 11. FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  padding: 64px var(--px) 0;
}
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer-brand-logo img { height: 36px; width: 36px; object-fit: contain; border-radius: var(--radius); flex-shrink: 0; }
.footer-brand-logo span { font-family: var(--fd); font-size: 15px; font-weight: 600; color: #fff; }
.footer-tagline {
  font-family: var(--fd); font-size: 12px; font-style: italic;
  color: var(--gold); opacity: .85; margin-bottom: 10px;
}
.footer-desc {
  font-size: 12px; color: rgba(255,255,255,.35);
  line-height: 1.72; font-weight: 300; margin-bottom: 16px;
}
.footer-social { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-social a {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .2s; border-radius: var(--radius);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.footer-social svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.footer-col h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.footer-link-row {
  display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px;
}
.footer-link-row svg {
  width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; margin-top: 3px;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.footer-link-row a, .footer-link-row span {
  font-size: 12px; color: rgba(255,255,255,.42);
  font-weight: 300; line-height: 1.6; transition: color .2s;
}
.footer-link-row a:hover { color: var(--gold); }
.footer-link-row a:focus-visible { outline: 1px solid var(--gold); outline-offset: 2px; }

.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0 28px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.2); font-weight: 300; }
.footer-bottom a { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 11px; color: rgba(255,255,255,.2); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── 12. FLOATING BUTTONS ────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 52px; height: 52px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4); z-index: 9999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.whatsapp-float:focus-visible { outline: 3px solid #25D366; outline-offset: 4px; }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

.back-to-top {
  position: fixed; bottom: 90px; right: 28px;
  width: 42px; height: 42px; background: var(--navy);
  border: 1px solid rgba(201,168,76,.35);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); cursor: pointer; z-index: 9998;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  border-radius: var(--radius); box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--navy); }
.back-to-top:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.back-to-top svg { width: 18px; height: 18px; }

/* ── 13. SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ── 14. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { gap: 16px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 640px) {
  :root { --px: 4%; --nav-h: 66px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 48px; height: 48px; }
  .back-to-top { bottom: 80px; right: 16px; width: 38px; height: 38px; }
  .page-hero { padding: 96px var(--px) 56px; }
  .section { padding: 64px var(--px); }
}

/* ── 15. ACCESSIBILITY ───────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.skip-link {
  position: absolute; top: -100%; left: 0; padding: 12px 20px;
  background: var(--gold); color: var(--navy); font-weight: 700;
  z-index: 10000; transition: top .2s; border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── 16. PRINT ───────────────────────────────────────────────── */
@media print {
  #nav, .whatsapp-float, .back-to-top, .mobile-menu, .hamburger, .theme-toggle { display: none !important; }
  body { color: #000 !important; background: #fff !important; }
  a { color: inherit !important; }
}

/* ═══════════════════════════════════════════════════════
   DROPDOWN NAVIGATION SYSTEM
   Final structure (6 top-level items):
   Home | About | Services | Resources | Our Experts | Contact
═══════════════════════════════════════════════════════ */

/* Top-level list item positioning for dropdown */
.nav-links li { position: relative; list-style: none; }

/* Dropdown trigger — shows chevron */
.nav-links .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links .has-dropdown > a::after { display: none; } /* remove underline pseudo */
.nav-links .has-dropdown > a .nav-chevron {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
  flex-shrink: 0;
  display: inline-block;
}
.nav-links .has-dropdown:hover > a .nav-chevron,
.nav-links .has-dropdown:focus-within > a .nav-chevron {
  transform: rotate(-135deg) translateY(-2px);
}

/* The dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(11,13,58,.98);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 4px;
  padding: 8px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 1001;
  backdrop-filter: blur(16px);
}

/* Dropdown pointer triangle */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: rgba(11,13,58,.98);
  border-left: 1px solid rgba(201,168,76,.18);
  border-top: 1px solid rgba(201,168,76,.18);
  transform: translateX(-50%) rotate(45deg);
}

/* Show on hover/focus */
.nav-links .has-dropdown:hover .nav-dropdown,
.nav-links .has-dropdown:focus-within .nav-dropdown { display: block; }

/* Dropdown links */
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s, background .2s;
  border-bottom: 1px solid rgba(255,255,255,.04);
  text-decoration: none;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); background: rgba(201,168,76,.06); }
.nav-dropdown a.active { color: var(--gold); }
.nav-dropdown a::after { display: none !important; } /* no underline pseudo in dropdown */

/* Section divider label inside dropdown */
.nav-dropdown-label {
  display: block;
  padding: 8px 20px 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,.5);
  pointer-events: none;
}
.nav-dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: 4px 0;
}

/* ── MOBILE MENU — dropdown groups ───────────────────── */
.mobile-menu .mob-group-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .7;
  padding: 14px 0 4px;
  border-bottom: none;
  pointer-events: none;
}
.mobile-menu .mob-sub {
  padding: 10px 0 10px 16px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mobile-menu .mob-top {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  padding: 13px 0;
}

/* ── Responsive — keep dropdowns off on mobile ─────── */
@media (max-width: 900px) {
  .nav-dropdown { display: none !important; }
}
