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

:root {
  --blue-900: #042C53;
  --blue-800: #0C447C;
  --blue-700: #185FA5;
  --blue-600: #2272C3;
  --blue-500: #378ADD;
  --blue-200: #85B7EB;
  --blue-100: #B5D4F4;
  --blue-50:  #E6F1FB;
  --gray-900: #1A1A1A;
  --gray-700: #3D3D3D;
  --gray-500: #6B6B6B;
  --gray-300: #C4C4C4;
  --gray-100: #F5F5F5;
  --white: #FFFFFF;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(4,44,83,0.08);
  --shadow-md: 0 4px 16px rgba(4,44,83,0.12);
  --shadow-lg: 0 8px 32px rgba(4,44,83,0.16);
  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ── */
.display { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.1; color: var(--blue-900); }
.display-italic { font-family: var(--font-display); font-style: italic; }
h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.15; color: var(--blue-900); }
h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; color: var(--blue-900); }
h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; color: var(--blue-900); }
p { font-size: 1rem; color: var(--gray-700); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--gray-700); line-height: 1.7; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 0.75rem; display: block; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--blue-700); color: var(--white); border-color: var(--blue-700); }
.btn-primary:hover { background: var(--blue-800); border-color: var(--blue-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--blue-700); border-color: var(--blue-700); }
.btn-outline:hover { background: var(--blue-50); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--blue-800); border-color: var(--white); }
.btn-white:hover { background: var(--blue-50); transform: translateY(-1px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ── TOP BAR ── */
.topbar {
  background: var(--blue-900);
  color: var(--blue-100);
  font-size: 0.8rem;
  padding: 0.5rem 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.topbar a { color: var(--blue-100); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; gap: 1.5rem; align-items: center; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }
.topbar .sep { color: var(--blue-700); }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--blue-50);
  box-shadow: var(--shadow-sm);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-mark {
  width: 38px; height: 38px; background: var(--blue-700); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; fill: var(--white); }
.logo-text { font-family: var(--font-display); font-size: 1.2rem; color: var(--blue-900); line-height: 1.1; }
.logo-text span { display: block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; color: var(--blue-600); letter-spacing: 0.06em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.85rem; font-size: 0.9rem; font-weight: 500;
  color: var(--gray-700); border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--blue-700); background: var(--blue-50); }
.nav-link svg { width: 12px; height: 12px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 0.5rem); left: 0;
  background: var(--white); border: 1px solid var(--blue-100);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 200;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 0.6rem 0.9rem; font-size: 0.875rem; font-weight: 400;
  color: var(--gray-700); border-radius: var(--radius-sm); transition: all var(--transition);
}
.dropdown a:hover { color: var(--blue-700); background: var(--blue-50); padding-left: 1.1rem; }

.nav-cta { margin-left: 0.5rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 0.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all var(--transition); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-800) 60%, var(--blue-700) 100%);
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 4rem; align-items: center; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero .lead { color: var(--blue-100); margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); color: var(--blue-100);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 99px;
  font-size: 0.8rem; font-weight: 500; padding: 0.35rem 0.9rem;
}
.badge svg { width: 13px; height: 13px; fill: var(--blue-200); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── QUOTE FORM CARD ── */
.quote-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 2rem;
}
.quote-card h3 { color: var(--blue-900); margin-bottom: 1.25rem; font-size: 1.1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--gray-900);
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue-500); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.75rem; color: var(--gray-500); text-align: center; margin-top: 0.5rem; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--blue-50); border-top: 1px solid var(--blue-100); border-bottom: 1px solid var(--blue-100); padding: 1.25rem 0; }
.trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.875rem; font-weight: 500; color: var(--blue-800); }
.trust-item svg { width: 18px; height: 18px; fill: var(--blue-600); flex-shrink: 0; }

/* ── SERVICES GRID ── */
.service-card {
  background: var(--white); border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px; background: var(--blue-50); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.service-icon svg { width: 26px; height: 26px; fill: var(--blue-700); }
.service-card h3 { margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; flex: 1; margin-bottom: 1.25rem; }
.service-card a { color: var(--blue-700); font-size: 0.875rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--transition); }
.service-card a:hover { gap: 0.6rem; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-num {
  width: 36px; height: 36px; background: var(--blue-700); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
.why-item h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
.why-item p { font-size: 0.875rem; }

/* ── REVIEWS ── */
.review-card {
  background: var(--white); border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.stars svg { width: 16px; height: 16px; fill: #F5A623; }
.review-card blockquote { font-size: 0.925rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.reviewer { font-size: 0.8rem; font-weight: 600; color: var(--blue-900); }
.reviewer span { font-weight: 400; color: var(--gray-500); }
.review-platform { font-size: 0.75rem; color: var(--blue-600); margin-top: 0.25rem; }

/* ── AREAS GRID ── */
.area-card {
  background: var(--blue-50); border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--transition);
}
.area-card:hover { background: var(--blue-100); border-color: var(--blue-500); transform: translateX(4px); }
.area-card h3 { font-size: 0.95rem; margin: 0; color: var(--blue-900); }
.area-card svg { width: 16px; height: 16px; fill: var(--blue-600); flex-shrink: 0; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--blue-900); padding: 4rem 0; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--blue-100); margin-bottom: 2rem; }
.cta-banner .container { text-align: center; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── FOOTER ── */
.site-footer { background: var(--blue-900); color: var(--blue-100); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text span { color: var(--blue-200); }
.footer-brand p { font-size: 0.875rem; color: var(--blue-200); margin-top: 1rem; line-height: 1.7; }
.footer-contact { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a { font-size: 0.875rem; color: var(--blue-100); display: flex; align-items: center; gap: 0.5rem; transition: color var(--transition); }
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { width: 14px; height: 14px; fill: var(--blue-400, #5fa8e0); flex-shrink: 0; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-200); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--blue-100); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: var(--blue-200);
}
.footer-bottom a { color: var(--blue-200); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }
.footer-badges { display: flex; gap: 1rem; align-items: center; }
.footer-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.08); border-radius: 99px; padding: 0.25rem 0.75rem; font-size: 0.75rem; color: var(--blue-100); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--blue-900); padding: 3.5rem 0 3rem; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--blue-200); margin-bottom: 1rem; }
.page-hero .breadcrumb a { color: var(--blue-200); transition: color var(--transition); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb svg { width: 10px; height: 10px; fill: var(--blue-500); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .lead { color: var(--blue-100); max-width: 640px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }

/* ── CONTENT SECTIONS ── */
.content-section { padding: 4rem 0; }
.content-section + .content-section { padding-top: 0; }
.bg-light { background: var(--gray-100); }
.bg-blue-light { background: var(--blue-50); }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 0.6rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--gray-700); }
.checklist li::before { content: ''; display: block; width: 18px; height: 18px; background: var(--blue-700); border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 40px; height: 40px; background: var(--blue-700); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.step-body h3 { margin-bottom: 0.25rem; }
.step-body p { font-size: 0.9rem; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1.5px solid var(--blue-100); border-radius: var(--radius-md); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--blue-100); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.25rem; font-family: var(--font-body); font-size: 0.925rem;
  font-weight: 600; color: var(--blue-900); transition: background var(--transition);
}
.faq-q:hover { background: var(--blue-50); }
.faq-q svg { width: 16px; height: 16px; fill: var(--blue-600); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 1.25rem 1rem; font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── ABOUT ── */
.stat-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; color: var(--blue-700); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 0.25rem; }
.owner-card { background: var(--blue-50); border: 1.5px solid var(--blue-100); border-radius: var(--radius-lg); padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.owner-avatar { width: 72px; height: 72px; background: var(--blue-700); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.6rem; color: var(--white); flex-shrink: 0; }
.owner-name { font-size: 1.1rem; font-weight: 600; color: var(--blue-900); }
.owner-title { font-size: 0.8rem; color: var(--blue-600); margin-top: 0.1rem; }
.owner-bio { font-size: 0.9rem; color: var(--gray-700); margin-top: 0.75rem; line-height: 1.65; }

/* ── MOBILE ── */
.mobile-cta-bar { display: none; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .quote-card { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .topbar { display: none; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mobile-cta-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--blue-900); border-top: 1px solid var(--blue-700);
    padding: 0.75rem 1rem; gap: 0.5rem;
  }
  .mobile-cta-bar a { flex: 1; text-align: center; font-size: 0.875rem; font-weight: 600; padding: 0.7rem 0.5rem; border-radius: var(--radius-sm); }
  .mobile-call { background: var(--white); color: var(--blue-900); }
  .mobile-quote { background: var(--blue-600); color: var(--white); }
  body { padding-bottom: 70px; }
  .section { padding: 3rem 0; }
  .cta-banner { padding: 3rem 0; }
  .trust-bar .container { gap: 1.25rem; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stat-row { gap: 1.25rem; }
  .owner-card { flex-direction: column; }
  .hero-badges { gap: 0.5rem; }
}

/* ── MOBILE NAV OPEN ── */
.mobile-nav-open { display: flex !important; flex-direction: column; position: fixed; inset: 0; top: 68px; background: var(--white); z-index: 150; padding: 1.5rem; overflow-y: auto; gap: 0.25rem; }
.mobile-nav-open .nav-link { font-size: 1rem; padding: 0.75rem 1rem; }
.mobile-nav-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--blue-50); margin: 0.25rem 0 0.25rem 1rem; }
.mobile-nav-open .nav-link svg { display: none; }

/* ── SUCCESS MESSAGE ── */
.form-success { display: none; text-align: center; padding: 1.5rem; background: var(--blue-50); border-radius: var(--radius-md); border: 1.5px solid var(--blue-200); }
.form-success svg { width: 40px; height: 40px; fill: var(--blue-700); margin: 0 auto 0.75rem; }
.form-success h3 { color: var(--blue-900); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.9rem; }
