@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b4b;
  --navy-dark:  #091238;
  --teal:       #3bbfcc;
  --teal-mid:   #2a9aaa;
  --teal-light: #e6f7f9;
  --gold:       #c8923a;
  --charcoal:   #1e2526;
  --mid-grey:   #4a5153;
  --light-grey: #f5f7f6;
  --white:      #ffffff;
  --max-w:      1280px;
  --radius:     6px;
  font-size: 16px;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}

h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar a { color: rgba(255,255,255,0.82); transition: color 0.2s; }
.topbar a:hover { color: var(--teal); }
.topbar-group { display: flex; align-items: center; gap: 6px; }
.topbar-group svg { opacity: 0.65; flex-shrink: 0; }

/* ── HEADER / NAV ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo img { height: 52px; width: auto; border-radius: 3px; }
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
nav a:hover { color: var(--teal); background: rgba(59,191,204,0.1); }
nav a.active { color: var(--teal); }
.nav-cta {
  margin-left: 10px;
  background: var(--teal) !important;
  color: var(--navy) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.07em !important;
}
.nav-cta:hover { background: var(--teal-mid) !important; color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: rgba(255,255,255,0.8); transition: all 0.3s; border-radius: 2px; }
.mobile-nav { display: none; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.1); }
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav a {
  padding: 13px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--teal); }

/* ── HERO (HOME) ── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600&auto=format&fit=crop&q=80');
  background-size: cover;
  background-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(9,18,56,0.92) 0%, rgba(9,18,56,0.65) 55%, rgba(9,18,56,0.28) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 90px 40px;
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--white);
  max-width: 680px;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 38px;
  font-weight: 300;
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--teal-mid); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--teal-mid);
  color: var(--teal-mid);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--teal-mid); color: var(--white); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 60px 0 52px;
  border-bottom: 4px solid var(--teal);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--teal-mid);
  color: var(--white);
  padding: 28px 0;
}
.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item .number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-item .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ── SECTIONS ── */
section { padding: 72px 0; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.08rem;
  color: var(--mid-grey);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid var(--teal-mid);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { color: var(--teal-mid); }
.service-card h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  font-family: 'Source Sans 3', sans-serif;
}
.service-card p { font-size: 0.95rem; color: var(--mid-grey); }
.service-card ul { list-style: none; margin-top: 16px; }
.service-card ul li {
  font-size: 0.9rem;
  color: var(--mid-grey);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.service-card ul li:last-child { border: none; }
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
}

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── BENEFITS LIST ── */
.benefits-list { list-style: none; margin-top: 24px; }
.benefits-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.97rem;
  color: var(--mid-grey);
}
.benefits-list li:last-child { border: none; }
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--teal-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check svg { color: white; }

/* ── STAT CALLOUT ── */
.stat-callout {
  background: var(--teal-light);
  border-left: 4px solid var(--teal-mid);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}
.stat-callout p { font-size: 0.97rem; color: #1a5f68; font-weight: 500; }
.stat-callout strong { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); }

/* ── FAQ ── */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem; font-weight: 600; color: var(--charcoal);
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q span { flex: 1; }
.faq-icon { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; color: var(--teal-mid); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 0.97rem; color: var(--mid-grey);
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card {
  background: white; border-radius: var(--radius);
  padding: 28px; border-top: 3px solid var(--gold);
}
.why-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px; color: var(--navy);
}
.why-card p { font-size: 0.93rem; color: var(--mid-grey); }

/* ── CTA BAND ── */
.cta-band { background: var(--navy); padding: 68px 0; text-align: center; }
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.65); font-size: 1.05rem; font-weight: 300; max-width: 480px; margin: 0 auto 32px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; font-size: 0.97rem; color: var(--mid-grey); align-items: flex-start; }
.contact-detail svg { color: var(--teal-mid); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { color: var(--charcoal); display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 3px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(0,0,0,0.13); border-radius: var(--radius);
  font-family: 'Source Sans 3', sans-serif; font-size: 0.95rem; color: var(--charcoal);
  transition: border-color 0.2s; background: var(--white);
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--teal-mid); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  background: var(--navy); color: var(--white); border: none;
  padding: 13px 32px;
  font-family: 'Source Sans 3', sans-serif; font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius);
  cursor: pointer; transition: background 0.2s; width: 100%;
}
.form-submit:hover { background: var(--teal-mid); }

/* ── FOOTER ── */
footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo img { height: 44px; width: auto; border-radius: 3px; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 300; max-width: 260px; }
.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.6); align-items: center; }
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--teal); color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.28); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 12px 24px; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  nav { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 60px 24px; }
  .hero-overlay { background: rgba(9,18,56,0.82); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .container { flex-direction: column; gap: 6px; align-items: flex-start; }
}
