/* ---------- Design Tokens ---------- */
:root {
  --c-navy:       #0a2540;
  --c-navy-dark:  #061a30;
  --c-navy-mid:   #103558;
  --c-orange:     #f4a51c;
  --c-orange-hi:  #ffb733;
  --c-orange-soft:#fef6e5;
  --c-green:      #25c060;
  --c-ink:        #1a2332;
  --c-muted:      #56657a;
  --c-faint:      #7a8798;
  --c-bg:         #ffffff;
  --c-bg-alt:     #f5f8fb;
  --c-border:     #eaeef3;
  --c-white-soft: #cfdbe8;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  --sh-sm: 0 4px 12px rgba(10,37,64,0.06);
  --sh-md: 0 12px 30px rgba(10,37,64,0.10);
  --sh-lg: 0 20px 60px rgba(10,37,64,0.30);
  --sh-brand: 0 8px 24px rgba(244,165,28,0.35);

  --trans: 0.2s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

/* The HTML hidden attribute must always win over author display rules */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

img, svg, video { max-width: 100%; }

/* Protect long emails/URLs from blowing out mobile layouts */
a[href^="mailto:"],
a[href^="tel:"] { word-break: break-word; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--c-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 var(--r-md) 0;
  font-weight: 700;
}
.skip-link:focus { left: 0; outline: 2px solid var(--c-orange); }

/* Focus ring */
:focus-visible {
  outline: 3px solid var(--c-orange);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.chat-bubble:focus-visible { outline-offset: 3px; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

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

a { color: #0a2540; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: #0a2540;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

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

.section {
  padding: 90px 0;
}
.section-alt {
  background: var(--c-bg-alt);
}

@media (max-width: 760px) {
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head p { font-size: 1rem; }
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-head p {
  color: #56657a;
  font-size: 1.1rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f4a51c;
  margin-bottom: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: #f4a51c;
  color: #0a2540;
  box-shadow: 0 8px 24px rgba(244, 165, 28, 0.35);
}
.btn-primary:hover { background: #ffb733; }

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

.btn-outline {
  background: #fff;
  color: #0a2540;
  border-color: #0a2540;
}
.btn-outline:hover { background: #0a2540; color: #fff; }

.btn-call {
  background: #0a2540;
  color: #fff;
}
.btn-call:hover { background: #123558; }

.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-xl { padding: 20px 36px; font-size: 1.15rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid #eaeef3;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-text strong {
  display: block;
  font-size: 1.05rem;
  color: #0a2540;
  line-height: 1.1;
  font-weight: 800;
}
.brand-text small {
  display: block;
  font-size: 0.75rem;
  color: #56657a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--c-ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--c-orange);
  transition: right 0.22s ease;
}
.nav-links a:hover {
  color: var(--c-orange);
  text-decoration: none;
}
.nav-links a:hover::after { right: 0; }

.header-call {
  font-size: 0.9rem;
  padding: 10px 16px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244,165,28,0.25), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(65, 173, 255, 0.22), transparent 60%),
    linear-gradient(135deg, #0a2540 0%, #103558 60%, #0a2540 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(1.1) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,37,64,0.85) 0%, rgba(16,53,88,0.7) 60%, rgba(10,37,64,0.9) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(244,165,28,0.15), transparent 55%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy h1 {
  color: #fff;
  margin-bottom: 18px;
}
.hero-copy h1 .accent { color: #f4a51c; }

.lede {
  font-size: 1.2rem;
  color: #cfdbe8;
  max-width: 520px;
  margin-bottom: 28px;
}
.lede strong { color: #fff; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(37, 192, 96, 0.15);
  border: 1px solid rgba(37, 192, 96, 0.5);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8ae9aa;
  margin-bottom: 20px;
}
.pulse {
  width: 8px; height: 8px;
  background: #25c060;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 192, 96, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 192, 96, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(37, 192, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 192, 96, 0); }
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #a9bccf;
  font-size: 0.95rem;
}
.trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.trust svg { color: #f4a51c; }

/* Hero quote card */
.hero-card {
  background: #fff;
  color: #1a2332;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
}
.card-head h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.card-head p {
  color: #56657a;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.mini-price {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  background: #f5f8fb;
  border-radius: 12px;
  overflow: hidden;
}
.mini-price li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid #e6ecf2;
}
.mini-price li:last-child { border-bottom: none; }
.mini-price span { color: var(--c-ink); font-weight: 500; }
.mini-price strong {
  color: var(--c-navy);
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}

@media (max-width: 440px) {
  .hero-card { padding: 24px 20px; }
  .mini-price li { padding: 10px 12px; font-size: 0.92rem; }
}
.fine {
  font-size: 0.8rem;
  color: #7a8798;
  margin: 12px 0 0;
  text-align: center;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 50px 0 60px; }
}
@media (max-width: 520px) {
  .hero { padding: 40px 0 50px; }
  .hero-inner { gap: 30px; }
  .lede { font-size: 1.05rem; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 100%; }
  .trust { gap: 12px; font-size: 0.88rem; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.08);
  border-color: #f4a51c;
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-mid));
  display: block;
}
.service-svg {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.service-svg svg { width: 100%; height: 100%; display: block; }

.service-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-navy), var(--c-navy-mid));
}
.service-img-wrap .service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fuel-fallback {
  display: none;
  margin: 0;
  position: absolute;
  inset: 0;
}
.fuel-fallback svg { width: 100%; height: 100%; display: block; }
.service-img-wrap.show-svg-fallback .fuel-fallback { display: block; }
.service-body {
  padding: 24px 26px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body .price-tag { margin-top: auto; align-self: flex-start; }

.service-card-cta {
  background: linear-gradient(135deg, #0a2540 0%, #103558 100%);
  color: #fff;
  border-color: transparent;
}
.service-card-cta:hover { border-color: #f4a51c; }
.service-card-cta h3 { color: #fff; }
.service-card-cta p { color: #cfdbe8; }
.service-body-cta {
  padding: 32px 26px;
  text-align: center;
  align-items: center;
}
.icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a2540, #123558);
  color: #f4a51c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icon-wrap.big {
  background: #f4a51c;
  color: #0a2540;
  width: 72px; height: 72px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
}
.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
  color: #1a2332;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  background: #25c060;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 10.3L4 7.8l-1 1 3.5 3.5L13 6l-1-1z'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.check-list.big li { margin-bottom: 12px; font-size: 1rem; }

.price-tag {
  display: inline-block;
  padding: 8px 14px;
  background: var(--c-orange-soft);
  color: #8a5a00;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}
.price-tag strong { color: var(--c-navy); font-weight: 800; }

.service-note {
  text-align: center;
  color: #56657a;
  margin-top: 40px;
  font-size: 1rem;
}
.service-note a {
  color: #f4a51c;
  font-weight: 700;
}

/* ---------- How It Works (Steps) ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}
.steps li {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #eaeef3;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f4a51c;
  color: #0a2540;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.steps p { color: #56657a; margin: 0; }

/* ---------- Pricing Table ---------- */
.pricing-table-wrap {
  max-width: 820px;
  margin: 0 auto 50px;
  background: #fff;
  border: 1px solid #eaeef3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.06);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.pricing-table thead {
  background: #0a2540;
  color: #fff;
}
.pricing-table th {
  text-align: left;
  padding: 16px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #eef2f7;
  transition: background 0.15s ease;
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: #fafbfd; }
.pricing-table th[scope="row"] {
  color: #0a2540;
  font-weight: 700;
  padding: 18px 22px;
  width: 32%;
  background: transparent;
}
.pricing-table th[scope="row"] .sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #7a8798;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}
.pricing-table td {
  padding: 18px 22px;
  color: #56657a;
}
.pricing-table td.rate {
  color: #0a2540;
  font-weight: 800;
  font-size: 1.15rem;
  width: 18%;
}
@media (max-width: 640px) {
  .pricing-table { font-size: 0.95rem; }
}
/* Stack pricing table into row-cards on small screens */
@media (max-width: 560px) {
  .pricing-table,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td { display: block; width: 100%; }
  .pricing-table thead { display: none; }
  .pricing-table tr {
    padding: 16px 18px;
    border-bottom: 1px solid var(--c-border);
  }
  .pricing-table tr:last-child { border-bottom: none; }
  .pricing-table th[scope="row"] {
    padding: 0 0 4px;
    font-size: 1rem;
    color: var(--c-navy);
  }
  .pricing-table th[scope="row"] .sub { display: inline; margin-left: 6px; font-style: italic; }
  .pricing-table td.rate {
    padding: 0 0 8px;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--c-orange);
    font-weight: 900;
  }
  .pricing-table td:not(.rate) {
    padding: 0;
    color: var(--c-muted);
    font-size: 0.92rem;
    line-height: 1.45;
  }
}

/* ---------- Fee cards (mileage / after hours) ---------- */
.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .fee-grid { grid-template-columns: 1fr; }
}
.fee-card {
  background: #fff;
  border: 1px solid #eaeef3;
  border-radius: 16px;
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.fee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.08);
  border-color: #f4a51c;
}
.fee-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fef6e5;
  color: #f4a51c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.fee-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.fee-card p { color: #56657a; font-size: 0.95rem; margin-bottom: 10px; }
.fee-card .check-list li { font-size: 0.9rem; margin-bottom: 6px; }
.fee-card strong { color: #0a2540; }

/* ---------- Service Area ---------- */
.area-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 820px) {
  .area-wrap { grid-template-columns: 1fr; }
}
.area-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.area-list li {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #eaeef3;
  border-radius: 10px;
  font-weight: 500;
  color: #1a2332;
  position: relative;
  padding-left: 38px;
}
.area-list li::before {
  content: '';
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  background: #f4a51c;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(244, 165, 28, 0.2);
}

.area-map {
  height: 360px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d6e8f5 0%, #a7cfe8 100%);
}
.area-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.area-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0) 40%, rgba(10,37,64,0.4) 100%);
  z-index: 1;
}
.map-pin {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4));
}
.map-pin span {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  color: #0a2540;
  background: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ---------- About ---------- */
.grid-2-about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
@media (max-width: 820px) {
  .grid-2-about { grid-template-columns: 1fr; }
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.stat {
  background: #f5f8fb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: #0a2540;
}
.stat span {
  display: block;
  font-size: 0.85rem;
  color: #56657a;
  margin-top: 4px;
}

.about-card {
  background: linear-gradient(135deg, #0a2540 0%, #123558 100%);
  color: #fff;
  border-radius: 20px;
  padding: 36px;
  overflow: hidden;
  position: relative;
}
.about-img {
  width: calc(100% + 72px);
  margin: -36px -36px 24px;
  height: 220px;
  object-fit: cover;
  display: block;
}
.about-card h3 { color: #f4a51c; margin-bottom: 20px; }
.about-card .check-list li { color: #cfdbe8; }
.about-card .check-list li::before { background: #f4a51c; }

/* ---------- FAQ ---------- */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq details {
  background: #fff;
  border: 1px solid #eaeef3;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
}
.faq summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0a2540;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: #f4a51c;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 22px 18px;
  color: #56657a;
  margin: 0;
}

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, #0a2540 0%, #103558 50%, #0a2540 100%);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(244,165,28,0.15), transparent 60%);
}
.cta-inner { position: relative; }
.cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 10px;
}
.cta p { color: #cfdbe8; font-size: 1.15rem; margin-bottom: 30px; }
.cta-sub { margin-top: 22px; color: #a9bccf; font-size: 0.95rem; }
.cta-sub a { color: #f4a51c; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: #061a30;
  color: #cfdbe8;
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 50px;
  padding-bottom: 40px;
}
@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.brand-footer .brand-text strong { color: #fff; }
.brand-footer .brand-text small { color: #8ba0b7; }

.foot-tag {
  color: #8ba0b7;
  font-size: 0.9rem;
  margin-top: 16px;
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 560px) {
  .foot-cols { grid-template-columns: repeat(2, 1fr); }
}
.foot-cols h4 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.foot-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-cols li { margin-bottom: 8px; }
.foot-cols a { color: #cfdbe8; font-size: 0.95rem; }
.foot-cols a:hover { color: #f4a51c; text-decoration: none; }

.sub-foot {
  border-top: 1px solid #12304e;
  padding: 20px 0;
  color: #6f849c;
  font-size: 0.85rem;
}
.sub-foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.admin-link {
  background: transparent;
  border: none;
  color: #6f849c;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--trans), background var(--trans);
  font-family: inherit;
  min-height: 36px;
}
.admin-link:hover { color: var(--c-orange); background: rgba(255,255,255,0.04); }
.admin-link:focus-visible { outline-offset: 2px; }

/* ---------- Admin Login Modal ---------- */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 26, 48, 0.72);
  backdrop-filter: blur(4px);
  animation: fade-in 0.18s ease;
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.admin-modal-box {
  position: relative;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 32px 28px;
  width: 100%;
  max-width: 380px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  box-shadow: var(--sh-lg);
  animation: chat-slide 0.2s ease-out;
}
@media (max-width: 420px) {
  .admin-modal-box { padding: 28px 22px; }
}
.admin-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--c-bg-alt);
  color: var(--c-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-modal-close:hover { background: var(--c-border); color: var(--c-navy); }
.admin-modal-box h3 { margin-bottom: 4px; }
.admin-modal-sub { color: var(--c-muted); font-size: 0.95rem; margin-bottom: 18px; }
.admin-field span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.admin-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7dee6;
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 14px;
}
.admin-field input:focus {
  outline: none;
  border-color: var(--c-orange);
  box-shadow: 0 0 0 3px rgba(244,165,28,0.18);
}
.admin-error {
  color: #c92424;
  font-size: 0.88rem;
  margin: -6px 0 10px;
  font-weight: 600;
}
.admin-hint {
  font-size: 0.78rem;
  color: var(--c-faint);
  margin: 16px 0 0;
  line-height: 1.5;
}
.admin-hint code {
  background: var(--c-bg-alt);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* ---------- Edit Mode ---------- */
.edit-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  background: var(--c-orange);
  color: var(--c-navy);
  box-shadow: var(--sh-md);
}
.edit-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.edit-bar-label { font-size: 0.92rem; }
.edit-bar-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-ghost-dark {
  background: transparent;
  color: var(--c-navy);
  border-color: rgba(10,37,64,0.25);
}
.btn-ghost-dark:hover { background: rgba(10,37,64,0.08); }

body.edit-mode { padding-top: 56px; }
body.edit-mode [contenteditable="true"] {
  outline: 1px dashed rgba(244,165,28,0.55);
  outline-offset: 2px;
  border-radius: 3px;
  cursor: text;
  transition: outline var(--trans), background var(--trans);
}
body.edit-mode [contenteditable="true"]:hover {
  background: rgba(244,165,28,0.08);
  outline-color: var(--c-orange);
}
body.edit-mode [contenteditable="true"]:focus {
  outline: 2px solid var(--c-orange);
  background: rgba(244,165,28,0.12);
}

/* Editable images */
body.edit-mode .img-editable {
  outline: 2px dashed rgba(244,165,28,0.75);
  outline-offset: 2px;
  cursor: pointer;
  transition: outline var(--trans), filter var(--trans);
}
body.edit-mode .img-editable:hover {
  outline: 3px solid var(--c-orange);
  filter: brightness(1.05);
}
body.edit-mode .img-editable.is-dragover {
  outline: 4px solid var(--c-green);
  filter: brightness(1.15) saturate(1.25);
}

.img-edit-btns {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  gap: 6px;
  z-index: 20;
}
body.edit-mode .img-edit-btns { display: inline-flex; }
.img-edit-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  padding: 0;
  color: #fff;
  transition: transform var(--trans), background var(--trans);
}
.img-edit-btn:hover { transform: scale(1.08); }
.img-edit-btn.is-replace { background: rgba(10,37,64,0.92); }
.img-edit-btn.is-replace:hover { background: var(--c-navy-mid); }
.img-edit-btn.is-remove { background: rgba(200,40,40,0.95); }
.img-edit-btn.is-remove:hover { background: rgb(220,60,60); }

.img-drop-hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,37,64,0.85) 80%);
  color: #fff;
  text-align: center;
  padding: 18px 10px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
  z-index: 19;
  display: none;
}
body.edit-mode .has-img-edit:hover .img-drop-hint,
body.edit-mode .has-img-edit .img-editable.is-dragover ~ .img-drop-hint { opacity: 1; }
body.edit-mode .img-drop-hint { display: block; }

/* Service card drag-reorder */
body.edit-mode .service-card[data-reorderable="true"] { position: relative; }
body.edit-mode .drag-handle {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10,37,64,0.92);
  color: #fff;
  border: 2px solid #fff;
  cursor: grab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 21;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}
body.edit-mode .drag-handle:active { cursor: grabbing; }
body.edit-mode .service-card.is-dragging {
  opacity: 0.5;
  transform: scale(0.98);
}
body.edit-mode .service-card.drop-target-before { box-shadow: -4px 0 0 var(--c-orange); }
body.edit-mode .service-card.drop-target-after  { box-shadow:  4px 0 0 var(--c-orange); }

/* Removed image placeholder state */
.is-img-removed { position: relative; }
.is-img-removed::after {
  content: 'Image hidden — click Replace in edit mode to restore';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #f5f8fb 0 10px, #eaeef3 10px 20px);
  color: var(--c-muted);
  font-size: 0.82rem;
  padding: 10px;
  text-align: center;
  border-radius: inherit;
}
body:not(.edit-mode) .is-img-removed::after { content: ''; background: transparent; }

@media (max-width: 680px) {
  .edit-bar-inner { padding: 10px 14px; gap: 8px; }
  .edit-bar-label { font-size: 0.82rem; width: 100%; line-height: 1.4; }
  .edit-bar-actions { width: 100%; justify-content: flex-start; }
  .btn-sm { font-size: 0.8rem; padding: 7px 11px; }
  body.edit-mode { padding-top: 120px; }
}
@media (max-width: 420px) {
  .edit-bar-actions .btn-sm { flex: 1 1 calc(50% - 8px); }
}

/* ---------- Sticky Call Bar (mobile only) ---------- */
.sticky-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 92px;
  bottom: 16px;
  background: #f4a51c;
  color: #0a2540;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: 999px;
  text-align: center;
  z-index: 100;
  box-shadow: 0 16px 40px rgba(244, 165, 28, 0.45);
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none !important;
}
.sticky-call:hover { background: #ffb733; }

@media (max-width: 700px) {
  .sticky-call { display: inline-flex; }
  .cta { padding-bottom: 140px; }
  .site-footer { padding-bottom: 100px; }
  .header-call { display: none; }
  .sticky-call span { font-size: 0.95rem; }
}

/* ---------- Chat / SMS Widget ---------- */
.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
}

.chat-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-orange);
  color: var(--c-navy);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md), 0 0 0 3px rgba(244,165,28,0.18);
  transition: transform var(--trans), background var(--trans), box-shadow var(--trans);
  padding: 0;
}
.chat-bubble:hover {
  transform: translateY(-2px);
  background: var(--c-orange-hi);
  box-shadow: var(--sh-md), 0 0 0 5px rgba(244,165,28,0.22);
}
.chat-bubble:active { transform: translateY(0); }

.chat-bubble .chat-icon-close { display: none; }
.chat-widget.open .chat-bubble {
  background: var(--c-navy);
  color: #fff;
}
.chat-widget.open .chat-bubble .chat-icon-open { display: none; }
.chat-widget.open .chat-bubble .chat-icon-close { display: inline-block; }

@media (max-width: 700px) {
  .chat-widget { right: 16px; bottom: 16px; }
  .chat-bubble { width: 56px; height: 56px; }
  .chat-panel {
    width: calc(100vw - 24px);
    right: -8px;
    bottom: 70px;
  }
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 360px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 110px);
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg), var(--sh-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: chat-slide 0.22s ease-out;
}
@keyframes chat-slide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-head {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  color: #fff;
  padding: 18px 18px 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chat-head-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}
.chat-head-text small {
  display: block;
  font-size: 0.82rem;
  color: #9bbad3;
  margin-top: 2px;
}
.chat-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
  padding: 0;
  flex-shrink: 0;
}
.chat-close:hover { background: rgba(255,255,255,0.2); }

.chat-form {
  padding: 18px 22px 22px;
  overflow-y: auto;
  flex: 1;
}
.chat-form label {
  display: block;
  margin-bottom: 12px;
}
.chat-form label > span {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.chat-form input,
.chat-form select,
.chat-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d7dee6;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: #1a2332;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.chat-form input:focus,
.chat-form select:focus,
.chat-form textarea:focus {
  outline: none;
  border-color: #f4a51c;
  box-shadow: 0 0 0 3px rgba(244, 165, 28, 0.18);
}
.chat-form textarea { resize: vertical; min-height: 68px; }
.chat-form .btn { margin-top: 6px; }
.chat-note {
  font-size: 0.78rem;
  color: #7a8798;
  text-align: center;
  margin: 10px 0 0;
  line-height: 1.4;
}

.chat-success {
  padding: 32px 26px;
  text-align: center;
}
.success-check {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #25c060;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.chat-success h4 { font-size: 1.2rem; margin-bottom: 8px; }
.chat-success p { color: #56657a; font-size: 0.95rem; }
.chat-success .chat-alt { font-size: 0.9rem; margin: 16px 0 20px; }
.chat-success .chat-alt a { color: #f4a51c; font-weight: 700; }
