/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a2e;
  background: #ffffff;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ──────────────────────────────────── */
@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400 700; font-display: swap; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; }

/* ── Color Tokens ────────────────────────────────── */
:root {
  --navy:     #0a1f3f;
  --navy-mid: #132d54;
  --gold:     #d4a84b;
  --gold-lt:  #f0d078;
  --cream:    #fdf8ee;
  --white:    #ffffff;
  --gray-50:  #f7f8fa;
  --gray-100: #eef0f4;
  --gray-600: #5a6275;
  --radius:   12px;
  --radius-lg:20px;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); box-shadow: 0 8px 24px rgba(212,168,75,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 31, 63, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,75,0.15);
  transition: background 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}
.logo-text { letter-spacing: -0.02em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  padding: 10px 20px;
  font-size: 0.85rem;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  margin-left: auto;
}
.hamburger, .hamburger::before, .hamburger::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}
.hamburger { position: relative; }
.hamburger::before { content: ''; position: absolute; top: -7px; }
.hamburger::after { content: ''; position: absolute; bottom: -7px; }
.mobile-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu ─────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.mobile-menu-inner a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.mobile-menu-inner a:hover { background: rgba(255,255,255,0.08); }
.mobile-menu-inner .btn-gold { margin-top: 12px; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; }
.shape-circle-1 {
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,75,0.12) 0%, transparent 70%);
  top: -10%; right: -8%;
}
.shape-circle-2 {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(212,168,75,0.07);
  bottom: 5%; left: 5%;
}
.shape-rect-1 {
  width: 180px; height: 180px;
  background: rgba(212,168,75,0.06);
  border: 2px solid rgba(212,168,75,0.12);
  top: 18%; left: 8%;
  transform: rotate(25deg);
  border-radius: var(--radius);
}
.shape-triangle {
  width: 0; height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(212,168,75,0.06);
  bottom: 20%; right: 12%;
  transform: rotate(-15deg);
}
.shape-dots {
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(212,168,75,0.25) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  top: 30%; right: 28%;
}
.hero-inner { position: relative; text-align: center; max-width: 820px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,75,0.12);
  border: 1px solid rgba(212,168,75,0.25);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.gold-text { color: var(--gold); }
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── Section Shared ──────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Services ────────────────────────────────────── */
.services {
  position: relative;
  padding: 100px 0 120px;
  background: var(--cream);
  overflow: hidden;
}
.services .container { position: relative; z-index: 1; }
.services .section-label, .services .section-title, .services .section-desc { margin-bottom: 16px; }
.services .section-desc { margin-bottom: 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,31,63,0.1);
  border-color: rgba(212,168,75,0.3);
}
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.geo-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 400px; height: 400px;
  pointer-events: none;
  overflow: hidden;
}
.geo-shape { position: absolute; }
.geo-tri-1 {
  width: 0; height: 0;
  border-left: 120px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 200px solid rgba(212,168,75,0.07);
  bottom: -40px; right: 60px;
  transform: rotate(-20deg);
}
.geo-circle-1 {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 3px solid rgba(212,168,75,0.1);
  bottom: 40px; right: -30px;
}
.geo-rect-1 {
  width: 100px; height: 100px;
  background: rgba(10,31,63,0.04);
  border-radius: var(--radius);
  bottom: 80px; right: 120px;
  transform: rotate(15deg);
}

/* ── About ───────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(10,31,63,0.15);
}
.about-img-main img { width: 100%; height: 600px; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px; right: -30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 16px 48px rgba(10,31,63,0.12);
}
.about-img-float img { width: 280px; height: 320px; object-fit: cover; }
.about-badge {
  position: absolute;
  top: -20px; left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  text-align: center;
}
.about-badge-num {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.about-badge-label { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.about-content .section-title { margin-bottom: 24px; }
.about-body {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}
.check-icon { color: var(--gold); flex-shrink: 0; }

/* ── Why Us ──────────────────────────────────────── */
.why-us {
  position: relative;
  padding: 100px 0 120px;
  background: var(--navy);
  overflow: hidden;
}
.why-us .section-title { color: var(--white); }
.why-us .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background 0.25s, border-color 0.25s;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,168,75,0.3);
}
.why-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(212,168,75,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.why-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.wbg-shape { position: absolute; }
.wbg-circle {
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,75,0.06);
  top: -200px; left: -200px;
}
.wbg-stripe {
  width: 300px; height: 300px;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 20px,
    rgba(212,168,75,0.03) 20px,
    rgba(212,168,75,0.03) 22px
  );
  bottom: -60px; right: -60px;
  transform: rotate(30deg);
}

/* ── CTA Banner ──────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--gold);
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; }
.csa {
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  top: -80px; left: 5%;
}
.csb {
  width: 160px; height: 160px;
  background: rgba(10,31,63,0.08);
  border-radius: var(--radius);
  bottom: -40px; right: 10%;
  transform: rotate(20deg);
}
.csc {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(10,31,63,0.06);
  top: 30%; right: 25%;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(10,31,63,0.7);
  max-width: 480px;
  margin: 0 auto 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact ─────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-600);
  margin-bottom: 4px;
}
.contact-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-value:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 16px 48px rgba(10,31,63,0.08);
  border: 1px solid var(--gray-100);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--gray-50);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab0bd; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(212,168,75,0.1);
  border: 1px solid rgba(212,168,75,0.3);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.95rem;
}
.form-success svg { color: var(--gold); flex-shrink: 0; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.logo-light { color: var(--white); margin-bottom: 16px; display: inline-flex; }
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact span { font-size: 0.92rem; color: rgba(255,255,255,0.5); }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-float { right: 10px; bottom: -30px; }
  .about-img-main img { height: 420px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero { padding: 100px 0 60px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
