* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', Arial, Helvetica, sans-serif; color: #1a1a1a; line-height: 1.6; }
html, body { overflow-x: hidden; max-width: 100%; }
a { text-decoration: none; }
img { max-width: 100%; }

/* Navigation */
.nav { background: #082B5A; padding: 0 5%; display: flex; align-items: center; justify-content: space-between; height: 72px; position: sticky; top: 0; z-index: 100; flex-wrap: nowrap; gap: 12px; }
.nav-logo { background: #fff; padding: 6px 14px; border-radius: 8px; display: flex; align-items: center; }
.nav-logo img { height: 34px; display: block; }
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: bold; }
.nav-links a:hover, .nav-links a.active { color: #F47C20; }
.nav-cta { background: #F47C20; color: #fff !important; padding: 9px 18px; border-radius: 6px; }
.nav-cta:hover { background: #d96a16; color: #fff !important; }

/* Page header (for inner pages) */
.page-header { position: relative; min-height: 320px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 60px 5%; }
.page-header img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-header-overlay { position: absolute; inset: 0; background: rgba(8,43,90,0.78); }
.page-header-content { position: relative; z-index: 1; max-width: 640px; }
.page-header h1 { color: #fff; font-size: 34px; margin-bottom: 14px; line-height: 1.3; }
.page-header p { color: rgba(255,255,255,0.85); font-size: 16px; max-width: 600px; margin: 0 auto; }
.page-header .eyebrow { color: #F47C20; font-size: 14px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; }

/* Hero (homepage) */
.hero { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(8,43,90,0.78); }
.hero-content { position: relative; z-index: 1; padding: 40px 20px; max-width: 720px; }
.hero h1 { color: #fff; font-size: 38px; line-height: 1.3; margin-bottom: 18px; }
.hero h1 span { color: #F47C20; }
.hero p { color: rgba(255,255,255,0.9); font-size: 17px; margin: 0 auto 28px; max-width: 560px; }

.btn { display: inline-block; background: #F47C20; color: #fff; border: none; padding: 14px 32px; border-radius: 6px; font-size: 15px; font-weight: bold; cursor: pointer; }
.btn:hover { background: #d96a16; }
.btn-outline { display: inline-block; background: transparent; color: #082B5A; border: 2px solid #082B5A; padding: 12px 30px; border-radius: 6px; font-size: 15px; font-weight: bold; cursor: pointer; }
.btn-outline:hover { background: #082B5A; color: #fff; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.counties { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.county-pill { background: rgba(255,255,255,0.15); color: #fff; font-size: 13px; padding: 6px 16px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.3); }

/* Sections */
.section { padding: 70px 5%; background: #ffffff; }
.section-alt { padding: 70px 5%; background: #f6f7f9; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section-title { font-size: 28px; font-weight: bold; text-align: center; color: #082B5A; margin-bottom: 8px; }
.section-sub { color: #555; font-size: 16px; text-align: center; margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.divider { height: 4px; background: #F47C20; width: 50px; margin: 10px auto 30px; border-radius: 2px; }

/* Services / feature grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.service-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 10px; padding: 28px 22px; text-align: center; transition: box-shadow 0.2s; }
.service-card:hover { box-shadow: 0 6px 18px rgba(8,43,90,0.1); }
.service-icon { width: 52px; height: 52px; background: #fdeee0; color: #F47C20; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 16px; }
.process-icon { width: 44px; height: 44px; background: #fdeee0; color: #F47C20; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.service-card h3 { font-size: 18px; color: #082B5A; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: #666; }

/* Numbered list (process steps) */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.process-card { background: #fff; border: 1px solid #e5e5e5; border-radius: 10px; padding: 28px 24px; position: relative; }
.process-card-num { position: absolute; top: 18px; right: 20px; font-size: 34px; font-weight: 700; color: #f6e9da; line-height: 1; }
.process-card-icon { width: 48px; height: 48px; background: #082B5A; color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.process-card h3 { font-size: 17px; color: #082B5A; margin-bottom: 10px; }
.process-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* Photo feature rows */
.photo-feature { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.photo-feature img { width: 100%; height: 320px; object-fit: cover; border-radius: 10px; display: block; }
.photo-feature h3 { font-size: 24px; color: #082B5A; margin-bottom: 14px; }
.photo-feature p { font-size: 15px; color: #555; }
.photo-feature.reverse { direction: rtl; }
.photo-feature.reverse > * { direction: ltr; }

/* Stats */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; text-align: center; }
.why-num { font-size: 34px; font-weight: bold; color: #F47C20; }
.why-label { font-size: 15px; color: #082B5A; font-weight: bold; margin-top: 6px; }
.why-desc { font-size: 13px; color: #666; margin-top: 6px; }

/* Values grid (About page) */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.value-card { padding: 22px; border-left: 3px solid #F47C20; background: #fff; }
.value-card h3 { font-size: 17px; color: #082B5A; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: #666; }

/* Contact form */
.contact-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { padding-top: 10px; }
.contact-info h3 { font-size: 22px; color: #082B5A; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: #555; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon { width: 40px; height: 40px; background: #fdeee0; color: #F47C20; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-text { font-size: 14px; color: #444; padding-top: 8px; }
.contact-wrap { background: #fff; padding: 40px; border-radius: 10px; border: 1px solid #e5e5e5; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: bold; color: #444; margin-bottom: 5px; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid #ccc; border-radius: 6px; padding: 11px 13px; font-size: 14px; font-family: inherit; color: #1a1a1a;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: #F47C20; }
.field textarea { resize: vertical; min-height: 100px; }
.submit-btn { width: 100%; background: #082B5A; color: #fff; border: none; padding: 14px; border-radius: 6px; font-size: 16px; font-weight: bold; cursor: pointer; margin-top: 6px; }
.submit-btn:hover { background: #0a3670; }

/* CTA band */
.cta-band { background: #082B5A; padding: 60px 5%; text-align: center; }
.cta-band h2 { color: #fff; font-size: 26px; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 15px; max-width: 540px; margin: 0 auto 26px; }

/* Coverage accordion */
.coverage-wrap { max-width: 800px; margin: 0 auto; }
.coverage-item { background: #fff; border: 1px solid #e5e5e5; border-radius: 10px; margin-bottom: 14px; overflow: hidden; }
.coverage-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; }
.coverage-toggle-left { display: flex; align-items: center; gap: 14px; }
.coverage-icon { width: 42px; height: 42px; background: #082B5A; color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.coverage-toggle h3 { font-size: 17px; color: #082B5A; }
.coverage-count { font-size: 12px; color: #888; font-weight: normal; }
.coverage-chevron { color: #F47C20; font-size: 18px; transition: transform 0.25s; flex-shrink: 0; }
.coverage-item.open .coverage-chevron { transform: rotate(180deg); }
.coverage-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.coverage-item.open .coverage-panel { max-height: 500px; }
.coverage-panel-inner { padding: 0 24px 22px; display: flex; flex-wrap: wrap; gap: 9px; }
.coverage-village { background: #f6f7f9; color: #444; font-size: 13px; padding: 6px 14px; border-radius: 99px; border: 1px solid #e5e5e5; }

/* Footer */
.footer { background: #082B5A; padding: 0; overflow: hidden; }
.footer-top { padding: 56px 5% 40px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-brand img { height: 38px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: bold; margin-bottom: 18px; letter-spacing: 0.3px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-col a:hover { color: #F47C20; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { color: #F47C20; font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.5; }
.footer-bottom { padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 12px; }
.footer-counties { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-county-pill { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.55); font-size: 11px; padding: 4px 11px; border-radius: 99px; }

@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 700px) {
  .hamburger { display: flex; }
  .nav-links { display: none; flex-direction: column; gap: 0; position: absolute; top: 72px; left: 0; right: 0; background: #082B5A; padding: 10px 0; z-index: 200; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.mobile-open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 15px; color: rgba(255,255,255,0.9); }
  .nav { position: relative; }
  .hero h1, .page-header h1 { font-size: 26px; }
  .photo-feature, .photo-feature.reverse { grid-template-columns: 1fr; direction: ltr; }
  .photo-feature img { height: 220px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-contact-btns { border-left: none; padding-left: 0; margin-left: 0; gap: 6px; }
  .nav-contact-btn { padding: 7px 10px; font-size: 11px; }
}

.nav-contact-btns { display: flex; align-items: center; gap: 6px; margin-left: 8px; padding-left: 14px; border-left: 1px solid rgba(255,255,255,0.2); flex-shrink: 0; }
.nav-contact-btn { display: flex; align-items: center; gap: 5px; padding: 7px 12px; border-radius: 99px; font-size: 12px; font-weight: bold; transition: transform 0.15s, opacity 0.15s; white-space: nowrap; }
.nav-contact-btn:hover { transform: scale(1.05); opacity: 0.92; }
.nav-call { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.nav-call:hover { background: rgba(255,255,255,0.25); }
.nav-email { background: #F47C20; color: #fff; }
.nav-whatsapp { background: #25D366; color: #fff; }
