/* ── Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #faf7f2;
  color: #152a45;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 31, 51, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.nav.scrolled { background: rgba(15, 31, 51, 0.97); }
.nav-logo { width: 34px; height: 34px; flex-shrink: 0; }
.nav h1 { margin: 0; }

/* Mobile toggle */
.nav-toggle { border: none; background: none; cursor: pointer; padding: 4px; }
.nav-toggle .bar { transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  background: rgba(15, 31, 51, 0.97);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-link {
  display: block;
  padding: 12px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-link:hover { color: #e2a832; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('https://images.pexels.com/photos/8985672/pexels-photo-8985672.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 31, 51, 0.88) 0%,
    rgba(30, 58, 95, 0.72) 50%,
    rgba(15, 31, 51, 0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 120px 5% 80px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(226, 168, 50, 0.15);
  border: 1px solid rgba(226, 168, 50, 0.4);
  color: #e2a832;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}
.trust-item svg { flex-shrink: 0; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }
.btn-gold {
  background: #d4952c;
  color: #0f1f33;
}
.btn-gold:hover { background: #e2a832; }
.btn-navy {
  background: #1e3a5f;
  color: #fff;
}
.btn-navy:hover { background: #152a45; }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── Sections ─────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-header { margin-bottom: 56px; }
.label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d4952c;
  margin-bottom: 10px;
}
.section-desc {
  color: #1e3a5f99;
  font-size: 15px;
  max-width: 520px;
  margin: 12px auto 0;
  line-height: 1.7;
}

/* ── Services Grid ────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(30,58,95,0.06);
  border: 1px solid rgba(30,58,95,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,58,95,0.10); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(212,149,44,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; line-height: 1.65; }

/* ── Features List ────────────────────────────────── */
.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-check {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212,149,44,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature strong { display: block; margin-bottom: 2px; }
.feature p { margin: 0; line-height: 1.6; }

/* ── Floating Card ────────────────────────────────── */
.floating-card {
  position: absolute;
  bottom: -20px; left: -20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(30,58,95,0.14);
}
.floating-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212,149,44,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Testimonials ─────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(30,58,95,0.06);
  border: 1px solid rgba(30,58,95,0.06);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,58,95,0.10); }
.quote-mark { position: absolute; top: 20px; right: 24px; }
.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: #1e3a5f99;
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(30,58,95,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Contact ──────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-bottom: 8px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(212,149,44,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-row strong { display: block; margin-bottom: 2px; }

.map-wrap { border: 4px solid #fff; }

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 8px 40px rgba(30,58,95,0.09);
  border: 1px solid rgba(30,58,95,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #1e3a5f;
}
.form-input {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #152a45;
  background: #faf7f2;
  border: 1.5px solid rgba(30,58,95,0.12);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-input:focus {
  border-color: #d4952c;
  box-shadow: 0 0 0 3px rgba(212,149,44,0.15);
}
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231e3a5f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-textarea { resize: vertical; min-height: 100px; }

.form-success {
  text-align: center;
  padding: 32px 16px;
}
.success-icon {
  width: 64px; height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(212,149,44,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #152a45 0%, #1e3a5f 60%, #254a70 100%);
  padding: 80px 0;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: #0f1f33;
  padding: 0;
}
.footer-logo { width: 34px; height: 34px; }

/* ── Utilities ────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .floating-card { position: relative; bottom: auto; left: auto; margin-top: 16px; }
  .hero-content { padding: 100px 5% 60px; }
  .section { padding: 60px 0; }
}

/* ── Scroll Reveal ────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
