/* ==========================================================================
   Taylor Brothers Plumbing & HVAC — Stylesheet
   Fonts: Outfit (display) + Inter (body)
   ========================================================================== */

:root {
  --ink: #0b1c33;
  --navy-900: #0a1730;
  --navy-800: #102448;
  --navy-700: #17325f;
  --blue: #1266f1;
  --blue-dark: #0d4fc4;
  --blue-soft: #e8f0fe;
  --orange: #ff7a1a;
  --orange-dark: #e7660a;
  --amber: #ffb020;
  --bg: #f6f8fc;
  --white: #ffffff;
  --text: #1c2b41;
  --muted: #5d6b82;
  --border: #e4eaf3;
  --shadow-sm: 0 2px 10px rgba(11, 28, 51, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 28, 51, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 28, 51, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --font-display: "Outfit", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}

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

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

a {
  color: var(--blue);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--blue);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(18, 102, 241, 0.30);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 102, 241, 0.38);
}

.btn-cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 122, 26, 0.38);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 122, 26, 0.46);
  filter: brightness(1.04);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

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

.btn-lg {
  padding: 19px 34px;
  font-size: 1.15rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

/* ---------- Eyebrows & section heads ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
}

.eyebrow-light {
  color: #ffd9b8;
}
.eyebrow-light::before {
  background: linear-gradient(90deg, var(--amber), #fff);
}

.section {
  padding: 96px 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  justify-content: center;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar {
  background: var(--navy-900);
  color: #c6d4ec;
  font-size: 0.84rem;
  padding: 8px 0;
  position: relative;
  z-index: 60;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.topbar strong {
  color: #fff;
}
.topbar-stars svg {
  width: 15px;
  height: 15px;
  color: var(--amber);
}
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2ee59d;
  box-shadow: 0 0 0 0 rgba(46, 229, 157, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 229, 157, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(46, 229, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 229, 157, 0); }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 6px 24px rgba(11, 28, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(11, 28, 51, 0.25));
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-text span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-list a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.15s ease;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2.5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  transition: width 0.22s ease;
}
.nav-list a:hover {
  color: var(--blue);
}
.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 20px;
  font-size: 0.95rem;
}

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

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
  padding: 88px 0 140px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(18, 102, 241, 0.35), transparent 55%),
    radial-gradient(ellipse at 90% 90%, rgba(255, 122, 26, 0.25), transparent 50%),
    linear-gradient(180deg, rgba(10, 23, 48, 0.88) 0%, rgba(10, 23, 48, 0.80) 60%, rgba(11, 28, 51, 0.95) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #bcd2f5;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 99px;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.25);
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
}
.grad-text {
  background: linear-gradient(92deg, #ffd08a 0%, var(--orange) 55%, #ff9a3d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.12rem;
  color: #c3d2ea;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #c3d2ea;
}
.hero-trust li svg {
  width: 17px;
  height: 17px;
  color: var(--amber);
  flex-shrink: 0;
}
.hero-trust li strong {
  color: #fff;
}

.hero-photo-wrap {
  position: relative;
}
.hero-photo-wrap > img {
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
  aspect-ratio: 1200 / 750;
  object-fit: cover;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  padding: 13px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}
.float-card span {
  font-size: 0.78rem;
  color: var(--muted);
}
.float-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  flex-shrink: 0;
}
.float-icon svg {
  width: 21px;
  height: 21px;
}
.float-card-top {
  top: -22px;
  left: -18px;
}
.float-card-bottom {
  bottom: -20px;
  right: -12px;
  animation-delay: 1.2s;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero-wave svg {
  width: 100%;
  height: 70px;
  display: block;
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  background: var(--white);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform: translateY(-46px);
  margin-bottom: -46px;
  position: relative;
  z-index: 5;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 24px 26px;
}
.trust-item svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  padding-top: 120px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-soft), #dbe7fd);
  color: var(--blue);
  margin-bottom: 20px;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}
.card-icon svg {
  width: 27px;
  height: 27px;
}
.service-card:hover .card-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}

.service-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card > p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.card-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--text);
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--blue-soft);
}
.card-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 5px;
  height: 2px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  margin-top: auto;
}
.card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}
.card-link:hover {
  color: var(--blue-dark);
}
.card-link:hover svg {
  transform: translateX(4px);
}

.services-extra {
  margin-top: 48px;
  text-align: center;
}
.services-extra .eyebrow {
  justify-content: center;
}
.extra-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}
.extra-chips li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.extra-chips li:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  color: var(--blue);
}

.services-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 56px;
  background: linear-gradient(120deg, var(--blue-soft), #f4e9fc);
  border: 1px solid #dbe4f6;
  border-radius: var(--radius);
  padding: 30px 36px;
}
.services-cta p {
  max-width: 560px;
  font-weight: 600;
  color: var(--navy-800);
}

/* ==========================================================================
   Why us
   ========================================================================== */
.why {
  background: var(--white);
}

.why-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.why-photo-frame {
  position: relative;
}
.why-photo-frame > img {
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1200 / 750;
  object-fit: cover;
}

.since-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy-900);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
}
.since-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(92deg, #ffd08a, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.since-badge span:last-child {
  font-size: 0.92rem;
  color: #c3d2ea;
  line-height: 1.35;
}

.why-content .lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 30px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 34px;
}
.why-list li {
  display: flex;
  gap: 16px;
}
.check {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fd08e, #0ea47a);
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.check svg {
  width: 16px;
  height: 16px;
}
.why-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.why-list p {
  font-size: 0.93rem;
  color: var(--muted);
}

.why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   Process
   ========================================================================== */
.process {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(18, 102, 241, 0.08), transparent 60%),
    var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-soft);
  letter-spacing: -0.03em;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 122, 26, 0.32);
}
.step-icon svg {
  width: 30px;
  height: 30px;
}
.process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.93rem;
  color: var(--muted);
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews {
  background: var(--white);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  background: var(--blue-soft);
  border: 1px solid #d6e2fa;
  border-radius: 99px;
  padding: 10px 20px;
  font-size: 0.95rem;
}
.rating-stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
}
.rating-stars svg {
  width: 20px;
  height: 20px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #d6e2fa;
}

.stars {
  display: flex;
  gap: 3px;
  color: var(--amber);
  margin-bottom: 16px;
}
.stars svg {
  width: 18px;
  height: 18px;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}
.review-card blockquote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  display: block;
  color: var(--blue);
  opacity: 0.35;
  margin-bottom: 10px;
}

.review-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--av, var(--blue));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.review-card figcaption > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.review-card figcaption strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--ink);
}
.review-card figcaption span span {
  font-size: 0.78rem;
  color: var(--muted);
}
.g-logo {
  width: 22px;
  height: 22px;
  margin-left: auto;
  flex-shrink: 0;
}

.reviews-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}
.reviews-note svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
  flex-shrink: 0;
}

/* ==========================================================================
   Areas
   ========================================================================== */
.areas-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.area-chip svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.area-chip:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  color: var(--blue);
}

.areas-map {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.areas-map img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.areas-map p {
  font-size: 0.88rem;
  color: var(--muted);
}

.areas-note {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
}
.areas-note a {
  font-weight: 700;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-800) 0%, var(--navy-700) 55%, #1d3f78 100%);
  padding: 72px 0;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 120%, rgba(255, 122, 26, 0.35), transparent 45%),
    radial-gradient(ellipse at 90% -20%, rgba(18, 102, 241, 0.45), transparent 50%);
}
.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-content h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
}
.cta-content p {
  color: #bcd2f5;
  font-size: 1.05rem;
}

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}
.contact-info .lead {
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue-soft), #dbe7fd);
  color: var(--blue);
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
}
.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-list a,
.contact-list span {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}
.contact-list a:hover {
  color: var(--blue);
}

.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-md);
}
.hours-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.hours-head svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
}
.hours-head strong {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
}
.open-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0a7a55;
  background: #e3f8ef;
  border-radius: 99px;
  padding: 6px 12px;
}
.hours-list {
  display: flex;
  flex-direction: column;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.94rem;
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-list .hours-val {
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-display);
}
.payment-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-field .opt {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 13px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9aa7ba;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(18, 102, 241, 0.14);
}
.form-field textarea {
  resize: vertical;
  min-height: 110px;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235d6b82' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-footnote {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: #aebdd6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 56px;
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.footer-brand .brand-text strong {
  color: #fff;
}
.footer-brand p {
  font-size: 0.93rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  color: #aebdd6;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}
.footer-col ul a:hover {
  color: var(--amber);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
}
.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a:hover {
  color: var(--amber);
}

.footer-cta {
  padding: 13px 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  font-size: 0.85rem;
}
.footer-credit {
  color: var(--amber);
}

/* ==========================================================================
   Mobile call bar
   ========================================================================== */
.mobile-call {
  display: none;
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .hero-photo-wrap {
    max-width: 640px;
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .areas-layout {
    grid-template-columns: 1fr;
  }
  .areas-map {
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 86vw);
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 96px 30px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 70;
    box-shadow: -20px 0 60px rgba(10, 23, 48, 0.4);
  }
  .main-nav.is-open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    margin-bottom: 26px;
  }
  .nav-list a {
    color: #d6e1f5;
    font-size: 1.05rem;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-list a::after {
    display: none;
  }
  .nav-cta {
    justify-content: center;
  }
  .menu-toggle.is-open {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 80;
    color: #fff;
  }
  .menu-toggle.is-open .icon-open {
    display: none;
  }
  .menu-toggle.is-open .icon-close {
    display: block;
  }
  body.nav-locked {
    overflow: hidden;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .topbar-right .topbar-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }
  .topbar-inner {
    justify-content: center;
  }
  .topbar-right {
    display: none;
  }
  .hero {
    padding: 64px 0 120px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-cta {
    padding: 26px 24px;
    justify-content: center;
    text-align: center;
  }
  .float-card {
    padding: 10px 14px;
  }
  .float-card-top {
    left: -6px;
  }
  .float-card-bottom {
    right: -6px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
  .cta-band-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .contact-form-wrap {
    padding: 26px 22px;
  }

  .mobile-call {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 45;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 15px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(255, 122, 26, 0.5);
  }
  .mobile-call svg {
    width: 20px;
    height: 20px;
  }
  body {
    padding-bottom: 0;
  }
}
