/* Reset & Variables */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1a3a6b;
  --blue2:   #245bab;
  --orange:  #e05a00;
  --orange2: #f07020;
  --light:   #f4f7fb;
  --gray:    #6b7280;
  --dark:    #111827;
  --white:   #ffffff;
  --border:  #d1d9e6;
  --radius:  8px;
  --shadow:  0 2px 12px rgba(0,0,0,.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', system-ui, sans-serif; color: var(--dark); font-size: 16px; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--blue2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }
p { margin-bottom: 1rem; }

/* Utility */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.btn { display: inline-block; padding: .75rem 1.75rem; border-radius: var(--radius); font-weight: 700; font-size: .95rem; cursor: pointer; border: none; transition: background .2s, transform .1s; text-decoration: none; }
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange2); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue2); }
.section { padding: 4rem 0; }
.section-alt { background: var(--light); }
.section-dark { background: var(--blue); color: var(--white); }
.section-dark h2, .section-dark p { color: var(--white); }
.text-center { text-align: center; }
.section-label { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: .5rem; }
.section-title { margin-bottom: 1rem; }
.section-sub { color: var(--gray); max-width: 620px; margin: 0 auto 2.5rem; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1.25rem; max-width: 1100px; margin: 0 auto; gap: 1rem; }
.nav-logo { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 0; color: var(--blue); line-height: 0; text-decoration: none; flex-shrink: 0; }
.nav-logo span { color: var(--orange); }
.nav-logo:hover { text-decoration: none; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: var(--dark); font-weight: 600; font-size: .92rem; white-space: nowrap; }
.nav-links a:hover { color: var(--blue2); text-decoration: none; }
.nav-cta { white-space: nowrap; }
.nav-phone { display: inline-block; font-weight: 800; color: var(--white); font-size: .95rem; letter-spacing: .01em; background: var(--orange); padding: .45rem 1.1rem; border-radius: 99px; transition: background .2s; }
.nav-phone:hover { background: var(--orange2); color: var(--white); text-decoration: none; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: .25rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); margin: 5px 0; transition: .3s; }
.menu-backdrop { display: none; position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.45); }
.menu-backdrop.open { display: block; }
.mobile-menu { position: fixed; top: 0; right: 0; height: 100%; width: 75%; max-width: 280px; z-index: 301; background: var(--white); transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; padding: 1rem 0; box-shadow: -4px 0 24px rgba(0,0,0,.15); }
.mobile-menu.open { transform: translateX(0); }
.menu-close { align-self: flex-end; margin: .25rem .75rem .5rem; background: none; border: none; font-size: 1.75rem; line-height: 1; cursor: pointer; color: var(--dark); padding: .25rem .5rem; }
.mobile-menu a { display: block; padding: 1rem 1.5rem; font-weight: 600; font-size: 1.05rem; color: var(--dark); border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--blue2); text-decoration: none; }
.menu-call { margin-top: auto; background: var(--orange); color: var(--white) !important; text-align: center; border-radius: var(--radius); margin: auto 1.25rem 1rem; padding: .85rem 1.25rem !important; border-bottom: none !important; }

/* Service areas dropdown (desktop) */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.13); padding: 1.25rem 1.5rem; padding-top: 2rem; min-width: 500px; z-index: 200; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; }
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: grid; }
.dropdown-col h4 { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin: 0 0 .6rem; padding-bottom: .4rem; border-bottom: 2px solid var(--blue); }
.dropdown-col a { display: block; padding: .3rem 0; font-size: .88rem; font-weight: 600; color: var(--dark); white-space: nowrap; }
.dropdown-col a:hover { color: var(--blue2); text-decoration: none; }
.area-group { margin-bottom: .85rem; }
.area-group:last-child { margin-bottom: 0; }
.dropdown-col a.area-city-link { font-weight: 700; font-size: .9rem; color: var(--dark); padding: .3rem 0; }
.dropdown-col a.area-sub-link { font-weight: 500; font-size: .82rem; color: var(--gray); padding: .18rem 0 .18rem 1rem; border-left: 2px solid #e2e8f0; margin-left: .2rem; }
.dropdown-col a.area-sub-link:hover { color: var(--blue2); }

/* Service areas accordion (mobile) */
.areas-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; text-align: left; padding: 1rem 1.5rem; font-weight: 600; font-size: 1.05rem; color: var(--dark); border: none; border-bottom: 1px solid var(--border); background: none; cursor: pointer; font-family: inherit; }
.areas-toggle::after { content: '▾'; font-size: .85rem; transition: transform .2s; }
.areas-toggle.open::after { transform: rotate(180deg); }
.areas-toggle:hover { color: var(--blue2); }
.mobile-areas { display: none; background: #f8fafc; }
.mobile-areas.open { display: block; }
.mobile-areas h4 { padding: .75rem 1.5rem .3rem; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); border-bottom: none; margin: 0; }
.mobile-areas a { padding: .65rem 2rem; font-size: .95rem; }
.mobile-areas .area-group { border-bottom: 1px solid var(--border); padding-bottom: .25rem; }
.mobile-areas .area-group:last-child { border-bottom: none; }
.mobile-areas a.area-city-link { padding: .75rem 1.5rem; font-size: 1rem; font-weight: 700; border-bottom: none; color: var(--dark); }
.mobile-areas a.area-sub-link { padding: .5rem 1.5rem .5rem 2.75rem; font-size: .9rem; font-weight: 500; color: var(--gray); border-bottom: none; }

/* Hero */
.hero { background: #1a3a6b; color: var(--white); padding: 8rem 0 7rem; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; text-align: center; }
.hero-badge { display: inline-block; background: transparent; border: 1px solid rgba(255,255,255,.25); border-radius: 99px; padding: .4rem 1.1rem; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #a8c8ff; margin-bottom: 1.25rem; }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 6vw, 3.5rem); margin-bottom: 1.75rem; }
.hero h1 em { color: #f4a72a; font-style: normal; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,.85); max-width: 600px; margin: 0 auto 2.75rem; line-height: 1.75; }
.hero-sub a { color: #f4a72a; text-decoration: underline; }
.hero-sub a:hover { color: #fbbf24; }
.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.hero-hook { display: none; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; justify-content: center; }
.hero-trust-item { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: rgba(255,255,255,.8); font-weight: 600; }
.hero-trust-item::before { content: '✓'; color: #4ade80; font-weight: 900; }
a.hero-trust-item { text-decoration: none; }
a.hero-trust-item:hover { color: var(--white); text-decoration: underline; }

/* Trust bar */
.trust-bar { background: var(--orange); }
.trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; }
.trust-item { display: flex; align-items: center; padding: 1rem 1.5rem; color: var(--white); font-weight: 700; font-size: .9rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.card { background: var(--white); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; text-align: center; }
a.card { display: block; color: inherit; text-decoration: none; }
a.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.13); text-decoration: none; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--gray); font-size: .95rem; margin-bottom: 0; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.why-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; }
.why-item h4 { margin-bottom: .25rem; font-size: 1rem; }
.why-item p { color: var(--gray); font-size: .9rem; margin-bottom: 0; }

/* Area */
.area-list { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin: 1.5rem 0; }
.area-tag { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 99px; padding: .4rem 1rem; font-size: .9rem; font-weight: 600; color: var(--white); }

/* CTA section */
.cta-section { background: linear-gradient(135deg, #0f2547, #1d4e8f); color: var(--white); text-align: center; padding: 4rem 0; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.85); max-width: 540px; margin: 0 auto 2rem; }
.cta-phone { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 800; color: #f4a72a; display: block; margin-bottom: 1.5rem; letter-spacing: .02em; text-decoration: none; }
.cta-phone:hover { color: #fbbf24; text-decoration: none; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-info h3 { margin-bottom: 1rem; }
.contact-detail { margin-bottom: 1.25rem; }
.contact-detail p { margin: 0; color: var(--gray); font-size: .95rem; }
.contact-detail strong { display: block; color: var(--dark); font-size: 1rem; }

/* Form */
.form-card { background: var(--white); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-card h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 1px solid var(--border); border-radius: var(--radius); padding: .7rem 1rem; font-size: .95rem; font-family: inherit; color: var(--dark); background: var(--white); transition: border-color .2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--blue2); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: .9rem; font-size: 1rem; margin-top: .5rem; }

/* Service detail page */
.service-block { padding: 1.75rem; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); margin-bottom: 1.25rem; }
.service-block h3 { margin-bottom: .5rem; }
.service-block p { color: var(--gray); margin-bottom: .5rem; }
.service-block ul { color: var(--gray); padding-left: 1.25rem; font-size: .95rem; }
.service-block ul li { margin-bottom: .25rem; }

/* Page hero (interior pages) */
.page-hero { background: linear-gradient(135deg, #0f2547, #1a3a6b); color: var(--white); padding: 3.5rem 0; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }

/* Footer */
.footer { background: #0f1f3d; color: rgba(255,255,255,.7); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: .75rem; }
.footer-brand span { color: var(--orange2); }
.footer p { font-size: .9rem; line-height: 1.65; }
.footer h4 { color: var(--white); font-size: .9rem; margin-bottom: .75rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .4rem; }
.footer ul a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; font-size: .82rem; }
.footer-phone { color: var(--orange2); font-weight: 700; font-size: 1rem; }

/* Mobile sticky call pill */
.mobile-call-bar {
  position: fixed;
  top: 68px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  z-index: 99;
  background: var(--orange2);
  padding: .65rem 1.75rem;
  border-radius: 99px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  white-space: nowrap;
}
.mobile-call-bar.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mobile-call-bar a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
}

/* Story layout with photo */
.story-layout { display: grid; grid-template-columns: 1fr 316px; gap: 2.5rem; align-items: start; max-width: 1000px; margin: 0 auto; }
.story-photo img { width: 100%; max-height: 400px; object-fit: cover; object-position: center top; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-caption { font-size: .8rem; color: var(--gray); text-align: center; margin-top: .6rem; font-style: italic; }

/* Team photo */
.team-photo-wrap { margin-bottom: 1rem; }
.team-photo-circle { width: 225px; height: 225px; border-radius: 50%; background-size: cover; background-position: center 80%; background-repeat: no-repeat; margin: 0 auto; box-shadow: var(--shadow); border: 3px solid var(--border); }

/* Responsive */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .nav-logo { font-size: 0.9rem; }
  .nav-inner { padding: .6rem 1rem; }
  .story-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .trust-item { padding: .75rem 1rem; font-size: .82rem; }
  .hero { padding: 3.5rem 0 4rem; }
  .hero .container { width: 100%; }
  .hero-badge { font-size: .72rem; padding: .3rem .85rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-hook { display: block; font-size: .9rem; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 1.25rem; letter-spacing: .01em; }
  .hero h1 { font-size: 2rem; margin-bottom: 1.5rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn-outline { display: none; }
  .hero-trust { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.75rem; justify-content: center; }
  .hero-trust-item { font-size: .78rem; background: rgba(255,255,255,.1); border-radius: 99px; padding: .25rem .75rem; }
  .hero-trust-item:nth-child(n+4) { display: none; }
  .section { padding: 2.75rem 0; }
  .btn { padding: .9rem 1.5rem; font-size: 1rem; min-height: 48px; }
  .hero-btns .btn-primary { width: 100%; text-align: center; background: var(--orange2); }
}
@media (max-width: 480px) {
  .trust-bar { display: none; }
}
