:root {
  --navy: #0B2447;
  --navy-dark: #061634;
  --navy-light: #19376D;
  --orange: #F76C0C;
  --orange-dark: #D85A00;
  --orange-light: #FF8A3D;
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA;
  --bg-muted: #EEF2F7;
  --text: #15233C;
  --text-soft: #4A5A75;
  --text-muted: #7A8AA3;
  --border: #E2E8F0;
  --success: #16A34A;
  --shadow-sm: 0 1px 3px rgba(11, 36, 71, 0.06), 0 1px 2px rgba(11, 36, 71, 0.04);
  --shadow-md: 0 4px 16px rgba(11, 36, 71, 0.08);
  --shadow-lg: 0 12px 32px rgba(11, 36, 71, 0.12);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1200px;
  --header-h: 76px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, svg { max-width: 100%; display: block; }

a { color: var(--orange); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); margin-bottom: 0.75rem; }
h3 { font-size: clamp(1.125rem, 1.6vw, 1.375rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; color: var(--text-soft); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; color: var(--text-soft); }
li { margin-bottom: 0.4rem; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: clamp(48px, 7vw, 88px) 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: rgba(255,255,255,0.85); }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-head { text-align: center; max-width: 780px; margin: 0 auto 48px; }
.section-head p { font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.975rem;
  font-family: var(--font);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--orange-dark); color: #fff; box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--bg-soft); color: var(--navy); }

.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img, .brand svg { height: 42px; width: auto; }
.brand-text { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.05rem; line-height: 1.1; }
.brand-text small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--orange); letter-spacing: 0.05em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--navy); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--orange); }
.nav .has-sub { position: relative; }
.nav .has-sub > a::after { content: "▾"; margin-left: 4px; font-size: 0.7em; opacity: 0.6; }
.nav .submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 540px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 16px;
}
.nav .has-sub:hover .submenu, .nav .has-sub:focus-within .submenu { display: grid; }
.nav .submenu a { padding: 6px 10px; border-radius: 6px; font-size: 0.9rem; font-weight: 500; color: var(--text); }
.nav .submenu a:hover { background: var(--bg-soft); color: var(--orange); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-tel { font-weight: 700; color: var(--navy); font-size: 1.05rem; display: flex; align-items: center; gap: 6px; }
.header-tel:hover { color: var(--orange); }
.header-tel .pulse {
  width: 9px; height: 9px; background: var(--success); border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22,163,74,0.6);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--navy);
}
.menu-toggle svg { width: 28px; height: 28px; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 70%, #1f4a8c 100%);
  color: #fff;
  padding: clamp(64px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at top right, rgba(247,108,12,0.18), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 .accent { color: var(--orange-light); }
.hero-lead { font-size: 1.125rem; color: rgba(255,255,255,0.88); margin-bottom: 1.75rem; max-width: 560px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.85rem; font-weight: 500;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,36,71,0.4));
}
.hero-card {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(6px);
  padding: 16px 18px; border-radius: var(--radius);
  display: flex; gap: 14px; align-items: center;
}
.hero-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: grid; place-items: center; color: #fff; flex-shrink: 0;
}
.hero-card strong { display: block; color: var(--navy); font-size: 1rem; }
.hero-card span { color: var(--text-soft); font-size: 0.85rem; }

/* Trust strip */
.trust-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 28px 0;
}
.trust-item { display: flex; gap: 14px; align-items: center; padding: 0 12px; }
.trust-item .num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; color: var(--orange); line-height: 1; }
.trust-item .lbl { font-size: 0.85rem; color: var(--text-soft); font-weight: 500; }
.trust-item .lbl strong { color: var(--navy); display: block; font-weight: 700; font-size: 0.95rem; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.service-card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(247,108,12,0.12), rgba(247,108,12,0.05));
  color: var(--orange);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.service-card .icon svg { width: 28px; height: 28px; }
.service-card h3 { color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.95rem; margin-bottom: 14px; }
.service-card .more { font-weight: 600; font-size: 0.9rem; color: var(--orange); display: inline-flex; align-items: center; gap: 4px; }
.service-card .more::after { content: "→"; transition: transform 0.2s; }
.service-card:hover .more::after { transform: translateX(4px); }

/* Feature blocks */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius);
  border-top: 4px solid var(--orange);
  box-shadow: var(--shadow-sm);
}
.feature .feat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.5rem; color: var(--navy); opacity: 0.15; line-height: 1;
  margin-bottom: 6px;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature p { font-size: 0.95rem; }

/* Process steps */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; counter-reset: step; }
.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; color: var(--orange-light);
  margin-bottom: 10px;
}
.process-step h3 { color: #fff; font-size: 1.1rem; margin-bottom: 6px; }
.process-step p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin: 0; }

/* District grid */
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 8px;
}
.district-grid a {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--navy); font-weight: 500; font-size: 0.92rem;
  transition: all 0.18s ease;
}
.district-grid a::before {
  content: "📍"; font-size: 0.85rem;
}
.district-grid a:hover {
  background: var(--navy); color: #fff;
  border-color: var(--navy); transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--orange); font-size: 1.4rem; font-weight: 400;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--text-soft); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  padding: clamp(40px, 6vw, 64px);
  border-radius: var(--radius-lg);
  display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.92); margin: 0; }
.cta-banner .btn-light { font-size: 1.05rem; padding: 1rem 1.8rem; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; display: flex; gap: 14px; align-items: flex-start;
}
.contact-card .ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(247,108,12,0.12); color: var(--orange);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-card h4 { margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--text-soft); }
.contact-card a { color: var(--orange); font-weight: 600; }

form.contact-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 0.95rem;
  background: var(--bg-soft); color: var(--text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--orange); background: #fff;
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-consent { font-size: 0.82rem; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; margin-bottom: 14px; }
.form-consent input { margin-top: 3px; }
.form-status { font-size: 0.9rem; margin-top: 10px; min-height: 1.2em; }
.form-status.ok { color: var(--success); }
.form-status.err { color: #DC2626; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.78); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin-top: 14px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; font-family: var(--font); font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.site-footer a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.85rem;
}

/* Floating action buttons */
.fab-stack {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  display: flex; flex-direction: column; gap: 12px;
}
.fab {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.08); }
.fab.wa { background: #25D366; }
.fab.tel { background: var(--orange); }
.fab svg { width: 28px; height: 28px; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 110px);
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.breadcrumb a { color: var(--orange-light); }
.breadcrumb span { margin: 0 6px; opacity: 0.5; }

/* Article style for inner pages */
.article {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.article:has(.sticky-side) {
  display: grid; grid-template-columns: 1fr 300px; gap: 48px;
  max-width: 1200px;
}
.article-body h2 { margin-top: 36px; padding-top: 12px; }
.article-body h2:first-child { margin-top: 0; padding-top: 0; }
.article-body h3 { margin-top: 22px; }
.article-body ul li, .article-body ol li { color: var(--text-soft); }
.article-body img { border-radius: var(--radius); margin: 18px 0; box-shadow: var(--shadow-sm); }
.article-body .callout {
  background: linear-gradient(120deg, rgba(247,108,12,0.06), rgba(11,36,71,0.04));
  border-left: 4px solid var(--orange);
  padding: 18px 22px; border-radius: var(--radius-sm);
  margin: 22px 0;
}
.article-body .callout strong { color: var(--navy); }

.sticky-side { position: sticky; top: calc(var(--header-h) + 20px); }
.side-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm);
}
.side-card h4 { color: var(--navy); margin-bottom: 12px; }
.side-card .big-tel {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; color: var(--orange);
  margin-bottom: 6px;
}
.side-card .small { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.side-card .btn { width: 100%; justify-content: center; }
.side-card + .side-card { margin-top: 16px; }

/* Gallery (work showcase) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-muted);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img, .gallery-item picture { width: 100%; height: 100%; display: block; }
.gallery-item img { object-fit: cover; }
.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(11,36,71,0.92));
  color: #fff;
}
.gallery-caption strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
.gallery-caption span { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* Inline article image */
.article-img {
  margin: 28px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--bg-muted);
  aspect-ratio: 16/7;
}
.article-img img, .article-img picture { width: 100%; height: 100%; display: block; }
.article-img img { object-fit: cover; }

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Two column lists */
.two-col-list { columns: 2; column-gap: 28px; }
.two-col-list li { break-inside: avoid; margin-bottom: 6px; }

/* Responsive */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/10; max-width: 520px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article { grid-template-columns: 1fr; }
  .sticky-side { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-banner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 16px 20px; gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 10px 0; border-bottom: 1px solid var(--bg-muted); }
  .nav .submenu { position: static; transform: none; display: none; min-width: 0; padding: 6px 0 6px 16px; box-shadow: none; border: 0; grid-template-columns: 1fr 1fr; }
  .nav.open .has-sub.open .submenu { display: grid; }
  .header-cta .btn-primary { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .two-col-list { columns: 1; }
  .header-tel span.tel-label { display: none; }
}
