@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0d1b2e;
  --navy-light: #162641;
  --navy-mid: #1e3a5f;
  --gold: #b8963e;
  --gold-light: #d4af5a;
  --gold-pale: rgba(184,150,62,0.12);
  --cream: #f8f5f0;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1a1a2e;
  --danger: #c0392b;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.75; }
img { max-width: 100%; display: block; }
a { transition: color 0.2s; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.3; }

/* ── TOP BAR ── */
.topbar {
  background: var(--gold);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.topbar a { color: var(--navy); text-decoration: none; font-weight: 700; }

/* ── HEADER ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  gap: 24px;
}
.logo { text-decoration: none; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.5px;
  display: block;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
nav a:hover { color: var(--gold); }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; }
.header-phone a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
}
.header-phone a:hover { color: var(--gold-light); }
.header-phone span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  text-align: right;
  letter-spacing: 0.3px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: 0.3s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a4a7a 100%);
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(184,150,62,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(184,150,62,0.05) 0%, transparent 40%);
  pointer-events: none;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 3.1rem;
  color: var(--white);
  margin-bottom: 22px;
  font-weight: 700;
}
.hero h1 em {
  color: var(--gold);
  font-style: normal;
}
.hero .lead {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin: 0 auto 44px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 44px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 6px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  border-radius: 3px;
  padding: 15px 34px;
  transition: all 0.3s;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: transparent; color: var(--navy); }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ── SECTIONS ── */
.section { padding: 84px 40px; }
.section-sm { padding: 56px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-kicker {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.section-heading { font-size: 2.3rem; color: var(--navy); margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin-bottom: 52px; }
.section-sub.wide { max-width: 760px; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  padding: 44px 40px;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.service-card:hover {
  box-shadow: 0 10px 44px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-color: var(--gold);
}
.card-icon { font-size: 2.8rem; margin-bottom: 20px; }
.service-card h3 { font-size: 1.45rem; color: var(--navy); margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 22px; line-height: 1.7; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.tag {
  background: var(--cream);
  color: var(--navy-light);
  font-size: 0.73rem;
  padding: 4px 11px;
  border-radius: 2px;
  font-weight: 500;
}
.card-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* ── WHY US ── */
.why { background: var(--navy); }
.why .section-heading { color: var(--white); }
.why .section-sub { color: rgba(255,255,255,0.58); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  text-align: center;
  transition: border-color 0.3s;
}
.feature:hover { border-color: rgba(184,150,62,0.5); }
.feat-icon { font-size: 2.2rem; display: block; margin-bottom: 16px; }
.feature h4 { color: var(--white); font-size: 1.08rem; margin-bottom: 10px; font-family: 'Playfair Display', serif; }
.feature p { color: rgba(255,255,255,0.56); font-size: 0.88rem; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--gold); padding: 64px 40px; text-align: center; }
.cta-banner h2 { font-size: 2.1rem; color: var(--navy); margin-bottom: 12px; }
.cta-banner p { color: rgba(13,27,46,0.78); margin-bottom: 32px; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h3 { font-size: 1.9rem; color: var(--navy); margin-bottom: 20px; }
.contact-info > p { color: var(--gray); margin-bottom: 32px; }
.c-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px;
  background: var(--cream);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.c-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--gray); margin-bottom: 3px; font-weight: 600; }
.c-value { font-size: 1rem; color: var(--navy); font-weight: 600; }
.c-value a { color: var(--navy); text-decoration: none; }
.c-value a:hover { color: var(--gold); }
.contact-form-box { background: var(--cream); padding: 44px; border-radius: 4px; }
.contact-form-box h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 28px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--navy); margin-bottom: 6px; font-weight: 600; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: var(--gray); margin-top: 10px; }

/* ── FOOTER ── */
footer { background: #060e1c; padding: 64px 40px 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { color: rgba(255,255,255,0.46); font-size: 0.88rem; margin: 14px 0 20px; }
.footer-phone a { font-size: 1.1rem; font-weight: 700; color: var(--gold); text-decoration: none; font-family: 'Playfair Display', serif; }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.78rem; }

/* ── FLOATING BUTTON ── */
.float-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--gold);
  color: var(--navy);
  padding: 15px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 6px 28px rgba(184,150,62,0.45);
  transition: all 0.3s;
}
.float-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(184,150,62,0.55);
  color: var(--navy);
}

/* ── PAGE HERO (landings) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%, #1a4a7a 100%);
  padding: 72px 40px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 30%, rgba(184,150,62,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.breadcrumb a, .breadcrumb span { font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: 2.7rem; color: var(--white); margin-bottom: 18px; max-width: 780px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero .lead { font-size: 1.08rem; color: rgba(255,255,255,0.78); max-width: 640px; margin-bottom: 36px; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* ── URGENCY BOX ── */
.urgency-box {
  background: #fff8e7;
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 36px 0;
}
.urgency-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.urgency-box strong { display: block; font-size: 1rem; color: var(--navy); margin-bottom: 5px; }
.urgency-box p { font-size: 0.92rem; color: #5a4200; margin: 0; }

/* ── PROCESS STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  text-align: center;
  padding: 28px 20px;
  background: var(--cream);
  border-radius: 4px;
}
.step-num {
  width: 54px; height: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 auto 16px;
}
.step h4 { font-size: 0.98rem; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 0.84rem; color: var(--gray); }

/* ── TWO COL TEXT ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col.flip { }
.content-block h2 { font-size: 2rem; color: var(--navy); margin-bottom: 18px; }
.content-block p { color: var(--gray); margin-bottom: 16px; font-size: 0.97rem; }
.content-block ul { list-style: none; }
.content-block ul li {
  padding: 9px 0 9px 26px;
  position: relative;
  color: var(--gray);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-light);
}
.content-block ul li::before {
  content: '›';
  position: absolute;
  left: 6px;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.5;
}
.sidebar-box {
  background: var(--navy);
  border-radius: 4px;
  padding: 40px 36px;
  position: sticky;
  top: 90px;
}
.sidebar-box h4 { font-size: 1.25rem; color: var(--white); margin-bottom: 20px; }
.sidebar-box p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 28px; }
.sidebar-phone { display: block; font-size: 1.3rem; font-weight: 700; color: var(--gold); text-decoration: none; font-family: 'Playfair Display', serif; margin-bottom: 20px; text-align: center; }
.sidebar-list { list-style: none; margin-bottom: 28px; }
.sidebar-list li { color: rgba(255,255,255,0.65); font-size: 0.88rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 10px; }
.sidebar-list li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── FAQ ── */
.faq-wrap { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-q:hover { color: var(--gold); }
.faq-toggle { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; font-style: normal; transition: transform 0.25s; line-height: 1; }
.faq-a { color: var(--gray); font-size: 0.95rem; padding-bottom: 20px; display: none; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ── INFO BOXES ── */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card {
  background: var(--cream);
  border-radius: 4px;
  padding: 32px 28px;
  border-top: 3px solid var(--gold);
}
.info-card h4 { font-size: 1.08rem; color: var(--navy); margin-bottom: 10px; }
.info-card p { font-size: 0.88rem; color: var(--gray); }

/* ── DARK SECTION ── */
.dark-section { background: var(--navy); }
.dark-section .section-heading { color: var(--white); }
.dark-section .section-sub { color: rgba(255,255,255,0.58); }
.dark-section .info-card { background: rgba(255,255,255,0.05); border-top-color: var(--gold); }
.dark-section .info-card h4 { color: var(--white); }
.dark-section .info-card p { color: rgba(255,255,255,0.58); }

/* ── INLINE CTA ROW ── */
.inline-cta {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-radius: 4px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.inline-cta h3 { font-size: 1.6rem; color: var(--white); }
.inline-cta p { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-top: 8px; }
.inline-cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .header-inner { padding: 16px 24px; }
  nav { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-light);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  nav.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 64px 20px 52px; }
  .hero h1 { font-size: 2.1rem; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .stat-num { font-size: 1.8rem; }
  .section { padding: 60px 20px; }
  .section-sm { padding: 44px 20px; }
  .section-heading { font-size: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 52px 20px 60px; }
  .page-hero h1 { font-size: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .inline-cta { padding: 36px 28px; flex-direction: column; }
  .inline-cta-btns { width: 100%; }
  .contact-form-box { padding: 28px 22px; }
  .hero-btns { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .page-hero h1 { font-size: 1.65rem; }
  .float-phone { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.85rem; }
  .header-phone a { font-size: 0.95rem; }
}
