/* ================================================================
   ¥€$ Group — Main Stylesheet
   Colors: Navy #0A1628 | Gold #C9A84C | White #FFFFFF
   Fonts:  Playfair Display (headings) | Inter (body)
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0A1628;
  --navy-mid:    #0F1F38;
  --navy-light:  #162840;
  --gold:        #C9A84C;
  --gold-light:  #E8D080;
  --gold-dim:    rgba(201,168,76,0.35);
  --white:       #FFFFFF;
  --text-muted:  rgba(255,255,255,0.55);
  --text-sub:    rgba(255,255,255,0.75);
  --blue-div:    #2E6BAD;
  --green-div:   #1A8A4A;
  --purple-div:  #7A3AC0;
  --radius:      10px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
a { color: var(--gold); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }
img { max-width: 100%; display: block; }

/* ── Gold Gradient Utility ─────────────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, #F0D080 0%, #C9A84C 45%, #A07828 75%, #D4AF5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }

/* ── Gold Rule ─────────────────────────────────────────────── */
.gold-rule {
  width: 64px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 16px 0 24px;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* ════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #F0D080, #C9A84C 50%, #A07828);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.nav-logo:hover { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  display: flex; align-items: center; gap: 5px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
  opacity: 1;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
}
.nav-dropdown a:hover { color: var(--gold); background: rgba(201,168,76,0.08); opacity: 1; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: var(--gold-light) !important; opacity: 1 !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  border-top: 1px solid var(--gold-dim);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile a:hover { color: var(--gold); opacity: 1; }
.nav-mobile .mob-section {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.4);
  padding: 12px 0 4px;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(46,107,173,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #0A1628 0%, #0D1E38 50%, #0A1628 100%);
}

/* Subtle grid overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-sub);
  font-weight: 300;
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0A1628 0%, #0D1E38 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.page-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 900; margin-bottom: 14px; }
.page-hero .sub {
  font-size: 17px;
  color: var(--text-sub);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
  opacity: 1;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold-dim);
}
.btn-outline-gold:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
  opacity: 1;
}

.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ════════════════════════════════════════════════════════════
   CARDS & PANELS
   ════════════════════════════════════════════════════════════ */
.card {
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}

.panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius);
  padding: 28px;
}

/* ── Division Cards ─────────────────────────────────────────── */
.division-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.division-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.division-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.dc-alpha   { background: rgba(46,107,173,0.10);  border-color: rgba(46,107,173,0.35);  }
.dc-alpha::before   { background: #2E6BAD; }
.dc-capital { background: rgba(201,168,76,0.09);  border-color: rgba(201,168,76,0.35);  }
.dc-capital::before { background: var(--gold); }
.dc-global  { background: rgba(26,138,74,0.10);   border-color: rgba(26,138,74,0.35);   }
.dc-global::before  { background: #1A8A4A; }
.dc-ventures{ background: rgba(122,58,192,0.10);  border-color: rgba(122,58,192,0.35);  }
.dc-ventures::before{ background: #7A3AC0; }

.dc-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: 4px;
}
.dc-alpha   .dc-label { color: #7AB4E8; }
.dc-capital .dc-label { color: #E8C96A; }
.dc-global  .dc-label { color: #5CC48A; }
.dc-ventures .dc-label{ color: #B080E8; }

.dc-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.dc-tagline { font-size: 13px; font-style: italic; color: var(--text-muted); margin-bottom: 20px; }

.dc-services { list-style: none; margin-bottom: 24px; flex: 1; }
.dc-services li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dc-services li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 5px; height: 5px;
  border-radius: 50%;
}
.dc-alpha   .dc-services li::before { background: #2E6BAD; }
.dc-capital .dc-services li::before { background: var(--gold); }
.dc-global  .dc-services li::before { background: #1A8A4A; }
.dc-ventures .dc-services li::before { background: #7A3AC0; }

.dc-email {
  font-size: 12px;
  color: rgba(201,168,76,0.5);
  margin-bottom: 18px;
}

/* ── Stat Items ─────────────────────────────────────────────── */
.stats-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #F0D080, #C9A84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.3px; }

/* ── Bullet List ───────────────────────────────────────────── */
.check-list { list-style: none; }
.check-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 15px;
  color: var(--text-sub);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Section Heading ───────────────────────────────────────── */
.section-heading { margin-bottom: 48px; }
.section-heading .eyebrow {
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.section-heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
}
.section-heading p {
  font-size: 16px;
  color: var(--text-sub);
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.75;
}

/* ── Grids ──────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ════════════════════════════════════════════════════════════
   CONTACT FORM
   ════════════════════════════════════════════════════════════ */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 12px; letter-spacing: 0.5px; color: rgba(201,168,76,0.7); font-weight: 500; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 7px;
  padding: 12px 16px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  background: rgba(255,255,255,0.07);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--navy-mid); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ════════════════════════════════════════════════════════════
   GEOGRAPHY SECTION
   ════════════════════════════════════════════════════════════ */
.geo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.geo-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.geo-symbol {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #F0D080, #C9A84C 50%, #A07828);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.geo-region { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.geo-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
#footer {
  background: #060e1a;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #F0D080, #C9A84C 50%, #A07828);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-email {
  font-size: 12.5px;
  color: rgba(201,168,76,0.6);
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom nav { display: flex; gap: 20px; }
.footer-bottom nav a { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-bottom nav a:hover { color: var(--gold); opacity: 1; }

/* ════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.divider { border: none; border-top: 1px solid rgba(201,168,76,0.15); margin: 40px 0; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4, .grid-div { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .nav-inner { padding: 0 18px; }
  .hq-box { min-width: unset; }
}
