/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0B1A2E;
  --navy-2: #112240;
  --navy-3: #132D4A;
  --gold: #C9A84C;
  --gold-light: #E0C06A;
  --gold-dark: #A8883A;
  --white: #ffffff;
  --off-white: #F4F6F9;
  --text-muted: #8FA3BF;
  --text-light: #CBD5E1;
  --border: #1E3A5F;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-gold:active { transform: scale(0.98); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1.5px solid rgba(201,168,76,0.5);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.gold { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 22px;
  color: var(--gold);
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta { font-size: 14px; padding: 10px 22px; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,0.04);
  pointer-events: none;
}

.hero-inner { text-align: center; }

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 16px;
  background: var(--navy-2);
  max-width: 720px;
  margin: 0 auto;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-dark {
  background: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-header.light p { color: var(--text-muted); }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px;
  color: #64748B;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid #E2EAF4;
  border-radius: 14px;
  padding: 32px 28px;
  transition: border-color 0.25s, transform 0.2s;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card > p {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 18px;
  line-height: 1.6;
}
.service-list li {
  font-size: 13px;
  color: #64748B;
  padding: 5px 0;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--gold); }

.why-icon {
  font-size: 30px;
  margin-bottom: 14px;
}
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 36px 24px;
  background: var(--off-white);
  border-radius: 14px;
  border: 1px solid #E2EAF4;
}

.step-num {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.step p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}

.step-arrow {
  font-size: 28px;
  color: var(--gold);
  display: flex;
  align-items: center;
  padding: 0 16px;
  padding-top: 36px;
  flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
}

.stars {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.reviewer {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: var(--navy);
  border-radius: 20px;
  padding: 56px 48px;
  border: 1px solid var(--border);
}

.contact-left .section-tag { margin-bottom: 12px; display: block; }
.contact-left h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.contact-left > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-info {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-item {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== FORM ===== */
.contact-form {
  background: var(--navy-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--navy-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #4A6580; }
.contact-form select { color: var(--text-muted); appearance: none; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer {
  background: #060F1C;
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}

.footer-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 12px;
  color: #3A5170;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-2);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .nav-cta { display: none; }
  .hamburger { display: block; }

  .navbar { position: relative; }

  .hero { padding: 60px 0 50px; }
  .stat { padding: 12px 20px; }
  .step-arrow { display: none; }
  .process-steps { gap: 16px; }
  .step { max-width: 100%; }

  .contact-box {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .hero-stats { gap: 0; }
  .stat-divider { display: none; }
  .stat { padding: 12px 24px; flex: 1 0 40%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .stat-num { font-size: 22px; }
}
