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

:root {
  --navy: #101f52;
  --navy-dark: #0a1330;
  --navy-mid: #16296b;
  --gold: #bf9a56;
  --gold-light: #d9bd85;
  --cream: #faf6ef;
  --cream-dark: #f1e9db;
  --text: #262a3b;
  --text-light: #5b6072;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(16, 31, 82, 0.12);
  --serif: "Playfair Display", "Georgia", serif;
  --sans: "Work Sans", "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--navy); }

section { padding: 88px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  box-shadow: 0 8px 20px rgba(191, 154, 86, 0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(191, 154, 86, 0.45); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(10, 19, 48, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 50px; width: 50px; border-radius: 50%; background: var(--white); padding: 3px; }
.brand-text { color: var(--white); line-height: 1.15; }
.brand-text strong { font-family: var(--serif); font-size: 1.15rem; display: block; }
.brand-text span { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-light); }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(115deg, rgba(10,19,48,0.92) 0%, rgba(10,19,48,0.82) 35%, rgba(16,31,82,0.55) 62%, rgba(16,31,82,0.35) 100%),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center 30%;
  color: var(--white);
}

.hero-inner {
  max-width: 640px;
  padding-top: 120px;
  padding-bottom: 60px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }

.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-badges div { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.hero-badges svg { flex-shrink: 0; color: var(--gold-light); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy-dark);
  padding: 26px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.trust-strip .item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-strip .item img { height: 34px; width: 34px; border-radius: 50%; background: var(--white); }
.trust-strip svg { color: var(--gold-light); flex-shrink: 0; }

/* ---------- About ---------- */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius);
  padding: 50px 34px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
}
.about-visual img { margin: 0 auto 22px; height: 130px; width: 130px; border-radius: 50%; background: var(--white); padding: 10px; }
.about-visual strong { display: block; font-family: var(--serif); font-size: 1.2rem; margin-bottom: 8px; }
.about-visual span { font-size: 0.85rem; color: var(--gold-light); letter-spacing: 0.04em; }

.about-copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: 20px; }
.about-copy p { color: var(--text-light); margin-bottom: 18px; font-size: 1.03rem; }
.about-list { margin-top: 26px; display: grid; gap: 14px; }
.about-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.98rem; color: var(--text); }
.about-list svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

/* ---------- Services ---------- */
.services { background: var(--cream-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 3px solid var(--gold);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(16,31,82,0.16); }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.94rem; margin-bottom: 18px; }
.service-card a { color: var(--navy); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card a svg { transition: transform 0.2s ease; }
.service-card a:hover svg { transform: translateX(4px); }

/* ---------- Benefits ---------- */
.benefits { background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}
.benefit { padding: 10px; }
.benefit-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 8px; }
.benefit p { color: var(--text-light); font-size: 0.9rem; }

.disclaimer {
  margin-top: 46px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    linear-gradient(120deg, rgba(10,19,48,0.93), rgba(16,31,82,0.88)),
    url("../images/hero.jpg");
  background-size: cover;
  background-position: center 65%;
  color: var(--white);
  text-align: center;
}
.cta-banner .eyebrow { color: var(--gold-light); }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-banner .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { background: var(--cream-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.contact-info {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 42px 36px;
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-info h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 10px; }
.contact-info > p { color: rgba(255,255,255,0.78); margin-bottom: 30px; font-size: 0.96rem; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item .ic {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 50%;
  background: rgba(191,154,86,0.18);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.contact-item a, .contact-item span { color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.contact-item a:hover { color: var(--gold-light); }
.contact-socials { display: flex; gap: 12px; margin-top: 30px; }
.contact-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.contact-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; min-height: 320px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 34px 0;
  text-align: center;
  font-size: 0.85rem;
}
.site-footer strong { color: var(--white); }
.site-footer .foot-links { margin-top: 10px; display: flex; justify-content: center; gap: 20px; }
.site-footer a:hover { color: var(--gold-light); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  background: var(--navy);
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.2);
}
.mobile-call-bar a { color: var(--white); font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 820px) {
  .main-nav, .header-cta .btn, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 64px; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-dark);
    padding: 24px;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  section { padding: 64px 0; }
  .hero-inner { padding-top: 130px; }
  .hero-badges { gap: 16px 26px; }
}
