/* ==========================================================================
   Loo Crew Porta Potty Rentals — Main Stylesheet
   ========================================================================== */

:root {
  --navy: #0b2545;
  --navy-dark: #071a33;
  --teal: #0ead69;
  --teal-dark: #0b8f56;
  --amber: #ffb703;
  --amber-dark: #e6a300;
  --ink: #16213a;
  --slate: #4b5a72;
  --mist: #f4f7fb;
  --cloud: #ffffff;
  --line: #e3e9f2;
  --danger: #d7263d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 20px 55px rgba(11, 37, 69, 0.18);
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--slate); }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
@media (max-width: 768px) { section { padding: 52px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-dark);
  background: rgba(14, 173, 105, 0.1); padding: 7px 16px; border-radius: 100px;
  margin-bottom: 16px;
}
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.08rem; }
.section-head.left { margin-left: 0; text-align: left; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.btn-primary { background: var(--amber); color: var(--navy-dark); box-shadow: 0 8px 24px rgba(255, 183, 3, 0.35); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255, 183, 3, 0.45); }
.btn-outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 24px rgba(14,173,105,.3); }
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-block { width: 100%; }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy-dark); color: #cfe0f5; font-size: 0.85rem;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 6px; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; margin-right: 18px; }
.topbar-item svg { width: 14px; height: 14px; opacity: .85; }
.topbar a.tel { color: #fff; font-weight: 600; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.badge-emergency { background: var(--danger); color: #fff; font-weight: 700; font-size: 0.75rem; padding: 4px 10px; border-radius: 100px; letter-spacing: .03em; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 500; background: #fff;
  box-shadow: 0 2px 14px rgba(11,37,69,0.07);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(145deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(11,37,69,.25);
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-head); font-weight: 800; font-size: 1.18rem; color: var(--navy); }
.brand-text span { font-size: 0.72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--teal-dark); font-weight: 700; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: flex; align-items: center; gap: 5px; padding: 12px 16px; font-weight: 600;
  font-size: 0.97rem; color: var(--navy); border-radius: 8px; transition: color .2s, background .2s;
}
.main-nav a.nav-link:hover, .main-nav li.active > a.nav-link { color: var(--teal-dark); background: var(--mist); }
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > a svg.chev { width: 12px; height: 12px; transition: transform .2s; }
.nav-item-dropdown:hover > a svg.chev { transform: rotate(180deg); }

.mega-dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 620px; background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 20px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease;
  border: 1px solid var(--line);
}
.nav-item-dropdown:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-dropdown a.mega-link {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius-sm);
  transition: background .18s;
}
.mega-dropdown a.mega-link:hover { background: var(--mist); }
.mega-dropdown a.mega-link .ico {
  width: 38px; height: 38px; border-radius: 9px; background: var(--mist); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.mega-dropdown a.mega-link .ico img { width: 100%; height: 100%; object-fit: cover; }
.mega-dropdown a.mega-link .txt strong { display: block; font-size: 0.9rem; color: var(--navy); font-family: var(--font-head); font-weight: 600; }
.mega-dropdown a.mega-link .txt small { color: var(--slate); font-size: 0.78rem; }
.mega-dropdown .mega-footer { grid-column: 1 / -1; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; text-align: center; }
.mega-dropdown .mega-footer a { color: var(--teal-dark); font-weight: 700; font-size: 0.88rem; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 10px; }
.nav-phone .ico-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--mist); display: flex; align-items: center; justify-content: center; }
.nav-phone .ico-circle svg { width: 20px; height: 20px; color: var(--teal-dark); }
.nav-phone .num-block { display: flex; flex-direction: column; line-height: 1.2; }
.nav-phone .num-block small { font-size: 0.7rem; color: var(--slate); text-transform: uppercase; letter-spacing: .04em; }
.nav-phone .num-block a { font-family: var(--font-head); font-weight: 800; font-size: 1.08rem; color: var(--navy); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: all .25s; }

/* Mobile nav */
@media (max-width: 992px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: 88%; max-width: 360px; background: #fff;
    flex-direction: column; align-items: stretch; padding: 90px 24px 24px; transform: translateX(100%);
    transition: transform .3s ease; overflow-y: auto; box-shadow: -10px 0 40px rgba(0,0,0,.2); z-index: 600; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; gap: 0; }
  .main-nav a.nav-link { padding: 15px 6px; border-bottom: 1px solid var(--line); border-radius: 0; justify-content: space-between; }
  .mega-dropdown { position: static; width: 100%; transform: none; box-shadow: none; border: none; opacity: 1; visibility: visible;
    display: none; grid-template-columns: 1fr; padding: 6px 0 6px 12px; }
  .nav-item-dropdown.open .mega-dropdown { display: grid; }
  .nav-item-dropdown.open > a.nav-link svg.chev { transform: rotate(180deg); }
  .nav-cta .nav-phone .num-block small { display: none; }
  .hamburger { display: flex; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(11,37,69,.5); z-index: 550; }
  .nav-overlay.open { display: block; }
}
@media (max-width: 560px) {
  .nav-cta .btn-quote-text { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative; color: #fff; display: flex; align-items: center;
  min-height: 620px; background-size: cover; background-position: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(7,26,51,.94) 0%, rgba(7,26,51,.82) 40%, rgba(7,26,51,.55) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; padding: 60px 0; }
.hero-content .eyebrow { background: rgba(255,183,3,.16); color: var(--amber); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--amber); }
.hero p.lead { font-size: 1.15rem; color: #dbe6f5; max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; }
.hero-trust .item svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }
.hero-trust .item span { font-size: 0.92rem; font-weight: 600; color: #eaf1fb; }

.hero-card {
  background: rgba(255,255,255,.97); border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.hero-card h3 { margin-bottom: 6px; }
.hero-card p.sub { color: var(--slate); font-size: 0.92rem; margin-bottom: 18px; }
.hero-card .field { margin-bottom: 14px; }
.hero-card label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: var(--mist);
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.hero-card .or-divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: var(--slate); font-size: 0.82rem; }
.hero-card .or-divider::before, .hero-card .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; padding: 40px 0; }
  .hero { min-height: unset; }
}

/* Page header (non-home hero, smaller) */
.page-hero {
  position: relative; color: #fff; background-size: cover; background-position: center;
  padding: 90px 0 60px;
}
.page-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(100deg, rgba(7,26,51,.93), rgba(11,37,69,.75)); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: #bcd0ea; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: #bcd0ea; font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 14px; max-width: 780px; }
.page-hero p.lead { color: #dbe6f5; max-width: 680px; font-size: 1.08rem; margin-bottom: 26px; }
.page-hero .hero-actions { margin-bottom: 0; }

/* ============ SECTIONS: bg variants ============ */
.bg-mist { background: var(--mist); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: #c6d5ea; }

/* ============ CARDS / GRIDS ============ */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 992px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .card-img { height: 200px; overflow: hidden; position: relative; }
.card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card-img img { transform: scale(1.07); }
.card .card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card .card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card .card-body p { font-size: 0.94rem; margin-bottom: 16px; flex: 1; }
.card .card-link { font-family: var(--font-head); font-weight: 700; color: var(--teal-dark); font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.card .card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.card .card-link:hover svg { transform: translateX(4px); }
.card .price-tag { position: absolute; top: 14px; right: 14px; background: var(--amber); color: var(--navy-dark); font-weight: 800; font-size: 0.78rem; padding: 5px 12px; border-radius: 100px; }

/* Icon feature blocks */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .f-ico {
  width: 54px; height: 54px; border-radius: var(--radius-sm); background: linear-gradient(145deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature .f-ico svg { width: 26px; height: 26px; color: #fff; }
.feature h3 { margin-bottom: 6px; font-size: 1.08rem; }
.feature p { font-size: 0.93rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 22px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: counter(step);
  width: 40px; height: 40px; border-radius: 50%; background: var(--amber); color: var(--navy-dark);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800;
  margin-bottom: 16px; font-size: 1.1rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step p { font-size: 0.9rem; }

/* Stats */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 700px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--amber); }
.stat span { font-size: 0.88rem; color: #c6d5ea; font-weight: 600; }

/* Testimonials */
.testimonial-card { background: #fff; border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars svg { width: 18px; height: 18px; color: var(--amber); }
.testimonial-card p.quote { color: var(--ink); font-size: 0.98rem; font-style: italic; margin-bottom: 18px; flex: 1; }
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; }
.testimonial-card .author strong { display: block; font-size: 0.92rem; color: var(--navy); }
.testimonial-card .author small { color: var(--slate); font-size: 0.8rem; }

/* Trust logos / badges row */
.badge-row { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: center; }
.trust-pill { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); padding: 12px 20px; border-radius: 100px; box-shadow: var(--shadow-sm); }
.trust-pill svg { width: 22px; height: 22px; color: var(--teal-dark); }
.trust-pill strong { font-size: 0.88rem; color: var(--navy); font-family: var(--font-head); }

/* FAQ Accordion */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 22px 4px; cursor: pointer; gap: 20px; }
.faq-q h3 { font-size: 1.02rem; margin: 0; }
.faq-q .plus { width: 26px; height: 26px; border-radius: 50%; background: var(--mist); flex-shrink: 0; position: relative; transition: transform .25s; }
.faq-q .plus::before, .faq-q .plus::after { content:''; position:absolute; background: var(--navy); border-radius: 2px; }
.faq-q .plus::before { width: 12px; height: 2px; top: 12px; left: 7px; }
.faq-q .plus::after { width: 2px; height: 12px; top: 7px; left: 12px; transition: opacity .2s; }
.faq-item.open .plus { transform: rotate(180deg); background: var(--teal); }
.faq-item.open .plus::before, .faq-item.open .plus::after { background: #fff; }
.faq-item.open .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 22px; font-size: 0.95rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg); padding: 50px; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::after { content:''; position:absolute; width:340px; height:340px; background: radial-gradient(circle, rgba(14,173,105,.25), transparent 70%); top:-120px; right:-80px; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #c6d5ea; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-band .cta-left { position: relative; z-index: 2; }

/* Service area list */
.area-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px 20px; }
@media (max-width: 800px) { .area-list { grid-template-columns: repeat(2, 1fr); } }
.area-list li { display: flex; align-items: center; gap: 8px; padding: 6px 0; color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.area-list li svg { width: 16px; height: 16px; color: var(--teal-dark); flex-shrink: 0; }

/* Content prose (service pages) */
.prose { max-width: 840px; }
.prose h2 { margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 26px 0 10px; font-size: 1.2rem; }
.prose p { margin-bottom: 16px; font-size: 1.02rem; }
.prose ul { margin: 0 0 20px; }
.prose ul li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--slate); }
.prose ul li::before {
  content: ''; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 5px;
  background: var(--teal); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.7 5.3a1 1 0 010 1.4l-7.5 7.5a1 1 0 01-1.4 0l-3.5-3.5a1 1 0 111.4-1.4l2.8 2.8 6.8-6.8a1 1 0 011.4 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.prose blockquote { border-left: 4px solid var(--teal); padding: 4px 22px; margin: 26px 0; font-style: italic; color: var(--navy); background: var(--mist); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.prose figure { margin: 26px 0; }
.prose figure img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.prose figure figcaption { font-size: 0.85rem; color: var(--slate); margin-top: 8px; text-align: center; }
.side-sticky { position: sticky; top: 100px; }

/* Two-col layout for service pages */
.layout-2col { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
@media (max-width: 992px) { .layout-2col { grid-template-columns: 1fr; } }

.spec-box { background: var(--mist); border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--line); }
.spec-box h3 { font-size: 1.05rem; margin-bottom: 16px; }
.spec-box ul li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); font-size: 0.9rem; color: var(--ink); }
.spec-box ul li span:first-child { color: var(--slate); }
.spec-box ul li:last-child { border-bottom: none; }

.quote-box { background: #fff; border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-md); border-top: 4px solid var(--teal); margin-bottom: 22px; }
.quote-box h3 { margin-bottom: 4px; }
.quote-box p { font-size: 0.88rem; margin-bottom: 16px; }

/* Related services */
.related-nav { background: var(--mist); border-radius: var(--radius-md); padding: 20px; }
.related-nav h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 14px; }
.related-nav a { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 0.92rem; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--line); }
.related-nav a:last-child { border-bottom: none; }
.related-nav a:hover { color: var(--teal-dark); }
.related-nav a svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--teal-dark); }

/* Table */
.table-wrap { overflow-x: auto; margin: 20px 0 28px; }
table.tbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-sm); overflow: hidden; }
table.tbl th, table.tbl td { padding: 13px 16px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--line); }
table.tbl th { background: var(--navy); color: #fff; font-family: var(--font-head); }
table.tbl tr:nth-child(even) td { background: var(--mist); }

/* Forms */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.96rem; background: var(--mist); color: var(--ink);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); background: #fff; }
.form-note { font-size: 0.82rem; color: var(--slate); margin-top: 10px; }

/* Info tiles (contact page) */
.info-tile { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-tile:last-child { border-bottom: none; }
.info-tile .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--mist); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-tile .ico svg { width: 22px; height: 22px; color: var(--teal-dark); }
.info-tile strong { display: block; color: var(--navy); font-family: var(--font-head); margin-bottom: 4px; }
.info-tile p, .info-tile a { font-size: 0.93rem; }
.info-tile a:hover { color: var(--teal-dark); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); height: 100%; min-height: 340px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* Emergency page specific */
.emergency-strip { background: var(--danger); color: #fff; padding: 14px 0; text-align: center; }
.emergency-strip strong { font-family: var(--font-head); }
.emergency-strip a { text-decoration: underline; font-weight: 700; }
.urgent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .urgent-grid { grid-template-columns: 1fr; } }
.urgent-card { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--danger); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }

/* Footer */
.site-footer { background: var(--navy-dark); color: #b9c9e0; }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand-text strong { color: #fff; }
.footer-brand p { font-size: 0.92rem; color: #97a9c6; margin-bottom: 18px; }
.footer-col h4 { color: #fff; font-family: var(--font-head); font-size: 1rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.9rem; color: #b9c9e0; transition: color .2s; }
.footer-col ul li a:hover { color: var(--amber); }
.footer-col .fico-line { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: 0.9rem; }
.footer-col .fico-line svg { width: 17px; height: 17px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.82rem; }
.footer-bottom a { color: #97a9c6; }
.footer-bottom a:hover { color: #fff; }

/* Mobile sticky call bar */
.mobile-callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400;
  background: #fff; box-shadow: 0 -6px 20px rgba(11,37,69,.18); padding: 10px 14px;
  gap: 10px;
}
.mobile-callbar a { flex: 1; text-align: center; padding: 13px; border-radius: 10px; font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mobile-callbar a.call { background: var(--teal); color: #fff; }
.mobile-callbar a.quote { background: var(--amber); color: var(--navy-dark); }
.mobile-callbar svg { width: 18px; height: 18px; }
@media (max-width: 768px) { .mobile-callbar { display: flex; } body { padding-bottom: 68px; } }

/* Back to top */
.back-top {
  position: fixed; right: 24px; bottom: 90px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s; z-index: 300; cursor: pointer; border: none;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
@media (max-width: 768px) { .back-top { bottom: 84px; } }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider-line { height: 1px; background: var(--line); margin: 40px 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.tag-list span { background: var(--mist); border: 1px solid var(--line); padding: 7px 14px; border-radius: 100px; font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 800px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
.gallery-strip .g-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery-strip .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery-strip .g-item:hover img { transform: scale(1.08); }
