@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   PLUMBING MASTER PROS — Stylesheet
   Based on original template
   ============================================================ */

/* ============================================================
   NPROGRESS — Top loading bar
   ============================================================ */
#nprogress {
  pointer-events: none;
}
#nprogress .bar {
  background: #FF6B00;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  box-shadow: 0 0 10px #FF6B00, 0 0 5px #FF6B00;
}
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #FF6B00, 0 0 5px #FF6B00;
  opacity: 1;
  transform: rotate(3deg) translate(0, -4px);
}


/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:      #0B223D;
  --primary-lt:   #F0F6FF;
  --orange:       #FF5A00;
  --orange-dark:  #D82200;
  --green-dark:   #051326;
  --green-testi:  #0B223D;
  --yellow:       #FFD600;
  --link:         #0284C7;
  --gray-bg:      #f5f7fa;
  --gray-border:  #e2e8f0;
  --text-body:    #475569;
  --text-dark:    #0F172A;
  --navy:         #07172C;
  --white:        #ffffff;
  --transition:   all 0.3s ease;
  --radius:       8px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}
body {
  font-size: 15px;
  color: var(--text-body);
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  font-weight: 400;
  overflow-x: clip;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overflow-x: hidden;
  position: relative;
}
img, svg, iframe { max-width: 100%; height: auto; display: block; }
p { margin: 0 0 18px; line-height: 1.8; color: var(--text-body); word-break: break-word; overflow-wrap: break-word; }
p:last-child { margin-bottom: 0; }
a { color: var(--link); transition: var(--transition); text-decoration: none; }
a:hover { color: var(--primary); }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  margin: 0 0 16px;
  line-height: 1.25;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: break-word;
}
h1 { font-size: 33px; line-height: 42px; }
h2 { font-size: 32px; line-height: 42px; }
h3 { font-size: 18px; line-height: 28px; }
h4 { font-size: 15px; line-height: 24px; }
h5 { font-size: 14px; line-height: 22px; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 1px 0 var(--gray-border), 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  gap: 12px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}
.header-logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}
.brand-text {
  min-width: 0;
}
.brand-title {
  font-size: 19px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.4px;
  line-height: 1.2;
  white-space: nowrap;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Nav */
.desktop-nav { display: flex; align-items: center; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links li a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 7px 13px;
  border-radius: 5px;
  transition: var(--transition);
  white-space: nowrap;
  display: block;
}
.nav-links li a:hover { color: var(--primary); background: var(--primary-lt); }

/* Header phone CTA */
.header-phone-btn {
  background: linear-gradient(135deg, #FF5A00 0%, #FF2E00 100%);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 60, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
}
.header-phone-btn:hover {
  background: linear-gradient(135deg, #FF6B1A 0%, #E62500 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255, 60, 0, 0.5);
}
.header-phone-btn .call-badge {
  display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: #f1f5f9;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 7px 9px;
  cursor: pointer;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  transition: all 0.2s ease;
}
.mobile-menu-btn:hover {
  background: #e2e8f0;
}

/* ============================================================
   BANNER
   ============================================================ */
.rs-banner {
  background: radial-gradient(circle at 82% 18%, rgba(255, 90, 0, 0.16) 0%, transparent 40%),
              radial-gradient(circle at 12% 85%, rgba(14, 165, 233, 0.16) 0%, transparent 45%),
              linear-gradient(135deg, #051325 0%, #0A203A 40%, #0D2A4D 75%, #061528 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.rs-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.rs-banner::after {
  content: '';
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.banner-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.banner-content-col {
  max-width: 580px;
  width: 100%;
  min-width: 0;
}
.banner-content { position: relative; z-index: 2; min-width: 0; }

/* Sub-label */
.sub-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #38BDF8;
  margin-bottom: 16px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(56, 189, 248, 0.12);
  backdrop-filter: blur(8px);
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  line-height: 1.35;
}
.banner-content h1.title {
  font-size: clamp(28px, 4.5vw, 54px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.banner-content h1.title span {
  color: #38BDF8;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}
.banner-content p.description {
  font-size: 16.5px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}
.btn-part { margin-top: 28px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Readon buttons */
.readon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}
.readon.orange {
  background: linear-gradient(135deg, #FF5A00 0%, #FF2E00 100%);
  color: var(--white) !important;
  box-shadow: 0 6px 20px rgba(255, 60, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.readon.orange:hover {
  background: linear-gradient(135deg, #FF6B1A 0%, #E62500 100%);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 60, 0, 0.58);
}
.readon.transparent {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.readon.transparent:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Banner right image */
.banner-img-box { position: relative; }
.banner-img-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
}
.banner-badge {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: linear-gradient(135deg, #FF5A00 0%, #D82200 100%);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(255, 60, 0, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.banner-badge .big { font-size: 24px; font-weight: 800; line-height: 1; }
.banner-badge .small { font-size: 9.5px; text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--gray-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
}
.bc-inner {
  display: flex;
  align-items: center;
  column-gap: 8px;
  row-gap: 4px;
  font-size: 13.5px;
  color: #999;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.bc-inner::-webkit-scrollbar {
  display: none;
}
.bc-inner a, .bc-inner span { white-space: nowrap; }
.bc-inner a { color: var(--primary); font-weight: 600; }
.bc-inner a:hover { text-decoration: underline; }
.bc-sep { color: #ddd; font-size: 14px; }

/* ============================================================
   COUNTER SECTION — compact, elegant, horizontal
   ============================================================ */
.rs-counter {
  background: var(--green-dark);
  padding: 0;
  border-top: 4px solid rgba(255,255,255,0.07);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
/* Divider between items */
.counter-list {
  padding: 36px 24px;
  position: relative;
  transition: background 0.3s;
}
.counter-list:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.counter-list:hover { background: rgba(255,255,255,0.04); }

.counter-list .counter-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Icon bubble */
.counter-icon {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  transition: var(--transition);
}
.counter-list:hover .counter-icon { background: rgba(255,255,255,0.16); transform: scale(1.05); }

/* Number area */
.counter-number { text-align: left; }
.counter-number .count-row {
  display: flex;
  align-items: baseline;
  gap: 1px;
}
.counter-number .rs-count {
  font-size: 30px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  line-height: 1;
}
.counter-number .prefix {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  margin-left: 2px;
}
.counter-number h5.title {
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-top: 4px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.rs-services {
  background: var(--gray-bg);
  padding: 80px 0;
}
.rs-services > .container > h2 {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 40px;
  color: var(--text-dark);
}
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services-slider { display: flex; }
.services-slider .services-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.services-slider .services-item:hover {
  box-shadow: 0 8px 28px rgba(1,83,159,0.1);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* ── Full-card clickable overlay ── */
.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius);
}
.services-icon-bar,
.services-content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.services-btn {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

/* Service Image */
.services-img-box {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--gray-border);
}
.services-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.services-slider .services-item:hover .services-img-box img {
  transform: scale(1.08);
}

.services-content {
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.services-content h3.title {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 700;
}
.services-content h3.title a { color: var(--text-dark); pointer-events: auto; }
.services-content h3.title a:hover { color: var(--primary); }
.services-content p.description {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

/* ── Get Quotes button with yellow arrow ── */
.services-btn {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed #eee;
}
.services-btn a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.services-btn a:hover { color: var(--primary); }
.btn-text { white-space: nowrap; }
.arrow-icon {
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 13px;
  color: var(--primary);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.services-btn a:hover .arrow-icon {
  transform: translateX(5px);
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   STATES / CITIES GRID & MAP
   ============================================================ */
.rs-addon-services {
  background: var(--white);
  padding: 70px 0;
}
.rs-addon-services h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 30px;
  color: var(--text-dark);
}
.interactive-usa-map {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px;
}
.interactive-usa-map svg {
  width: 100%;
  height: auto;
  aspect-ratio: 959 / 593;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.06));
}
.interactive-usa-map path {
  fill: #cbd5e1; /* Default slate-300 */
  stroke: #ffffff;
  stroke-width: 1.5;
  outline: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.interactive-usa-map path:hover {
  fill: var(--primary) !important;
  transform: translateY(-2px);
}

.addon-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.addon-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.addon-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(3,105,161,0.15);
  transform: translateY(-4px);
}
.services-title {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 16px 8px;
  font-size: 15px;
  color: var(--text-dark);
}
.services-title:hover {
  color: var(--primary);
}
.services-title h3 {
  font-size: 15px;
  font-weight: 700;
  color: inherit;
  margin: 0;
  line-height: 1.3;
}
.location-meta {
  padding: 0 16px 16px;
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}
.location-meta .county {
  font-size: 10px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ============================================================
   WHY CHOOSE / ABOUT
   ============================================================ */
.rs-choose {
  background: var(--white);
  padding: 80px 0;
}
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.choose-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
}
.sec-title4 .sub-line {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 10px;
}
.sec-title4 .sub-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.sec-title4 h2 {
  font-size: clamp(20px, 2.6vw, 30px);
  margin-bottom: 18px;
}
.sec-title4 p { margin-bottom: 14px; color: var(--text-body); font-size: 14.5px; }

/* Mini cards */
.about-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.mini-card {
  background: var(--gray-bg);
  border-left: 3px solid var(--primary);
  border-radius: 6px;
  padding: 14px 16px;
  transition: var(--transition);
}
.mini-card:hover { background: var(--primary-lt); }
.mini-card h4 {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mini-card p { font-size: 12px; color: #888; margin: 0; }

/* Zip codes */
.zip-section { margin-top: 22px; }
.zip-section h3 { font-size: 13.5px; color: var(--primary); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.zip-wrap { display: flex; flex-wrap: wrap; gap: 7px; }
.zip-pill {
  background: var(--gray-bg);
  border: 1px solid var(--gray-border);
  padding: 3px 11px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #555;
}

/* ============================================================
   MAP
   ============================================================ */
.rs-map { padding: 0 0 50px; }
.map-frame {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ============================================================
   FAQ
   ============================================================ */
.rs-faq { padding: 72px 0; background: var(--gray-bg); }
.rs-faq h2.faq-inner-title {
  text-align: center;
  font-size: clamp(18px, 2.6vw, 28px);
  margin-bottom: 44px;
  color: var(--text-dark);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.faq-img img {
  width: 100%;
  border-radius: 12px;
  height: 380px;
  object-fit: cover;
}
.acc-item {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.acc-item.open { border-color: var(--primary); box-shadow: 0 2px 12px rgba(1,83,159,0.08); }
.acc-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px 17px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  line-height: 1.4;
}
.acc-question:hover { color: var(--primary); }
.acc-item.open .acc-question { color: var(--primary); }
.acc-icon {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
}
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 17px;
}
.acc-item.open .acc-answer { max-height: 400px; padding: 0 17px 16px; }
.acc-answer p { font-size: 13.5px; color: #666; margin: 0; line-height: 1.75; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rs-testimonial {
  background: var(--green-testi);
  padding: 72px 0;
}
.rs-testimonial .sec-inner-title {
  text-align: center;
  margin-bottom: 44px;
}
.rs-testimonial .sec-inner-title .sub-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #90cdf4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.rs-testimonial .sec-inner-title h2 {
  color: var(--white);
  font-size: clamp(20px, 2.6vw, 30px);
  margin: 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 26px 22px;
  transition: var(--transition);
  position: relative;
}
.testi-item:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}
.testi-stars { color: #f6c90e; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-item > p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-author { font-weight: 700; font-size: 13.5px; color: #90cdf4; margin: 0; }
.testi-loc { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ============================================================
   NEARBY CITIES
   ============================================================ */
.nearby-section { padding: 36px 0; background: var(--gray-bg); }
.nearby-section h3 { font-size: 16px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.nearby-section h3 a { color: var(--primary); }
.nearby-links { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-link {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  padding: 5px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.nearby-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lt);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: radial-gradient(circle at 50% 120%, rgba(255, 90, 0, 0.2) 0%, transparent 60%),
              linear-gradient(135deg, #051325 0%, #0A223E 50%, #051325 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 550px; height: 220px;
  background: radial-gradient(ellipse, rgba(255, 90, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 34px);
  margin-bottom: 12px;
  font-weight: 800;
}
.cta-strip p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  margin-bottom: 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.6fr;
  gap: 36px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand .brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand > p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Footer cols */
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 26px; height: 2px;
  background: var(--orange);
  border-radius: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-col ul li a:hover { color: #90cdf4; padding-left: 4px; }

/* Contact items */
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.ci-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; opacity: 0.7; }
.footer-contact-item p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.5;
}
.footer-contact-item a { color: #90cdf4; font-weight: 600; }
.footer-contact-item a:hover { color: var(--white); }

/* Footer bottom */
.footer-bottom {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom a { color: #90cdf4; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   FLOATING PHONE
   ============================================================ */
.float-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FF5A00 0%, #FF2E00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(255, 90, 0, 0.45);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.float-phone:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(255, 90, 0, 0.65);
}

/* ============================================================
   MOBILE MENU DRAWER
   ============================================================ */
.mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--gray-border);
}
.mobile-menu.open {
  max-height: 400px;
}
.mobile-nav-links {
  list-style: none;
  padding: 8px 16px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-links li {
  border-bottom: 1px solid #f1f5f9;
}
.mobile-nav-links li:last-child {
  border-bottom: none;
  margin-top: 10px;
}
.mobile-nav-links a {
  display: block;
  padding: 12px 6px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-links a:hover {
  color: var(--orange);
}
.mobile-header-phone {
  background: linear-gradient(135deg, #FF5A00 0%, #FF2E00 100%) !important;
  color: #fff !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px !important;
  border-radius: 8px !important;
  text-align: center;
  box-shadow: 0 4px 14px rgba(255, 60, 0, 0.35);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; margin: 0 auto; }
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 14px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: 0 4px 18px rgba(26,86,219,0.07); }
.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card h4 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.contact-card p { font-size: 13px; color: var(--text-body); margin: 4px 0 0; }
.contact-phone-link { display: block; font-size: 20px; font-weight: 800; color: var(--orange); margin: 4px 0; text-decoration: none; }
.contact-phone-link:hover { color: var(--orange-dark); }
.contact-email-link { font-size: 14px; font-weight: 600; color: var(--primary); word-break: break-all; }
.contact-hours { display: flex; flex-direction: column; gap: 3px; }
.contact-hours span { font-size: 12.5px; color: var(--text-body); }
.contact-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.ct-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-lt);
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}
.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,23,42,0.08);
}
.form-header {
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  padding: 28px 32px;
  border-bottom: 3px solid var(--orange);
}
.form-header h3 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.form-header p { font-size: 14px; color: rgba(255,255,255,0.65); margin: 0; }
.contact-form { padding: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; }
.req { color: var(--orange); }
.input-wrap { position: relative; }
.input-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 16px; color: #aaa; pointer-events: none; }
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  box-sizing: border-box;
}
.input-wrap textarea { resize: vertical; min-height: 110px; padding-top: 14px; }
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}
.urgency-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.urgency-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: 8px;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}
.urgency-pill input[type="radio"] { display: none; }
.urgency-pill:hover, .urgency-pill.active { border-color: var(--primary); background: var(--primary-lt); color: var(--primary); }
.form-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  margin-top: 8px;
}
.form-submit-btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.5); }
.form-disclaimer {
  text-align: center;
  font-size: 11.5px;
  color: #aaa;
  margin-top: 14px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

/* ── High-Converting Trust Badges ── */
.trust-bar-wrap {
  background: #081a2f;
  border-bottom: 3px solid #FF5A00;
  padding: 18px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.trust-bar-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}
.trust-bar-item i {
  color: #38BDF8;
  font-size: 20px;
}

/* ── How It Works ── */
.how-it-works-sec {
  padding: 70px 0;
  background: #fff;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 40px;
  width: 100%;
}
.step-card {
  background: var(--gray-bg);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px 26px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.step-num {
  position: absolute;
  top: -16px;
  left: 24px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card h3 {
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--navy);
}
.step-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 0;
}

/* ── Emergency Action Box ── */
.emergency-action-box {
  background: linear-gradient(135deg, #0A2540 0%, #103358 100%);
  color: #fff;
  border-radius: 14px;
  padding: 40px 32px;
  margin: 50px 0;
  box-shadow: 0 12px 30px rgba(10,37,64,0.2);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.emergency-action-inner {
  max-width: 750px;
  width: 100%;
}
.action-protocol-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,107,0,0.2);
  color: var(--orange);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.emergency-action-box h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 14px;
  color: #fff;
}
.emergency-action-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #cbd5e1;
}
.action-check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.action-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
}
.action-check-item i {
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}
.action-btn-part {
  margin-top: 24px;
}

/* ── Service Detail Process Grid ── */
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.service-process-item {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  box-sizing: border-box;
}
.service-process-item h4 {
  color: var(--navy);
  margin-bottom: 8px;
}

/* ============================================================
   RESPONSIVE (TABLET & MOBILE) — Placed strictly at the end
   ============================================================ */
@media (max-width: 1024px) {
  .services-row { grid-template-columns: repeat(2, 1fr); }
  .addon-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .choose-grid { gap: 36px; }
}

@media (max-width: 991px) {
  /* STRICTLY HIDE CALL BUTTON AND NAV IN MOBILE/TABLET HEADER */
  .desktop-nav { display: none !important; }
  .header-phone-btn { display: none !important; }
  .header-phone { display: none !important; }
  .mobile-menu-btn { display: inline-flex !important; }
  .header-inner {
    padding: 12px 0;
    justify-content: space-between;
  }
  .header-right {
    gap: 0;
  }
  .brand-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    white-space: normal;
    max-width: 280px;
  }
  .contact-main-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body, p, li { font-size: 16px; line-height: 1.65; }
  h1 { font-size: clamp(30px, 8vw, 38px) !important; line-height: 1.2 !important; font-weight: 800 !important; word-break: break-word; }
  h2 { font-size: clamp(23px, 6.2vw, 30px) !important; line-height: 1.25 !important; font-weight: 800 !important; word-break: break-word; }
  h3 { font-size: 20px !important; line-height: 1.3 !important; }
  h4 { font-size: 18px !important; line-height: 1.35 !important; }

  /* Header: Logo left, Hamburger right ONLY */
  .header-phone-btn { display: none !important; }
  .header-phone { display: none !important; }
  .brand-title {
    font-size: 17px;
    font-weight: 800;
    white-space: normal;
    max-width: 250px;
    line-height: 1.2;
  }
  .header-logo-img { width: 36px; height: 36px; }

  /* Readon buttons — Full width on mobile, bold & clear */
  .readon {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 16.5px !important;
    font-weight: 700 !important;
    padding: 15px 20px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    display: flex !important;
    gap: 8px !important;
    border-radius: 8px !important;
  }

  /* Breadcrumb */
  .breadcrumb-bar { padding: 10px 0; }
  .bc-inner { font-size: 14px; gap: 8px; }

  /* Banner & Hero */
  .rs-banner {
    padding: 38px 0 32px;
    width: 100%;
    overflow: hidden;
  }
  .banner-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .banner-content-col {
    max-width: 100%;
    width: 100%;
  }
  .sub-label {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 7px 14px;
    line-height: 1.35;
    margin-bottom: 14px;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-sizing: border-box;
  }
  .banner-content h1.title {
    font-size: clamp(30px, 8vw, 38px) !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    margin-bottom: 16px;
    word-break: break-word;
  }
  .banner-content p.description {
    font-size: 16px !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,0.92);
    margin-bottom: 22px;
    word-break: break-word;
  }
  .btn-part {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 20px;
  }

  /* Banner image & badge on mobile */
  .banner-img-box {
    margin-top: 18px;
    width: 100%;
    max-width: 100%;
    display: block;
    position: relative;
    border-radius: 10px;
  }
  .banner-img-box img {
    border-radius: 10px;
    width: 100%;
    height: auto;
  }
  .banner-badge {
    display: block !important;
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(255, 60, 0, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
  }
  .banner-badge .big {
    font-size: 20px;
  }
  .banner-badge .small {
    font-size: 8.5px;
  }

  /* Steps / How it works */
  .how-it-works-sec { padding: 44px 0; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 22px;
  }
  .step-card { padding: 24px 20px; }
  .step-card h4 { font-size: 19px !important; margin-bottom: 8px; }
  .step-card p { font-size: 15.5px !important; line-height: 1.6; }

  /* Emergency Action Guide */
  .emergency-action-box {
    padding: 24px 18px;
    margin: 28px 0;
    border-radius: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .emergency-action-box h2 {
    font-size: 22px !important;
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  .emergency-action-box p {
    font-size: 15.5px !important;
    line-height: 1.65 !important;
  }
  .action-check-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 18px 0;
  }
  .action-check-item {
    font-size: 15px !important;
    gap: 10px;
  }
  .action-check-item i {
    font-size: 20px !important;
  }

  /* Grids & Cards */
  .interactive-usa-map { display: none !important; }
  .services-row { grid-template-columns: 1fr; gap: 22px; }
  .services-content h3.title { font-size: 20px !important; line-height: 1.3 !important; }
  .services-content p.description { font-size: 15px !important; line-height: 1.6 !important; }
  .addon-row { grid-template-columns: repeat(2, 1fr); }
  .choose-grid { grid-template-columns: 1fr; gap: 28px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-img { display: none; }
  .acc-question { font-size: 15.5px !important; padding: 16px 18px !important; }
  .acc-answer { font-size: 15px !important; line-height: 1.65 !important; }
  .counter-grid { grid-template-columns: 1fr; }
  .counter-list:not(:last-child)::after { display: none; }
  .counter-list {
    padding: 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .counter-list .counter-text { justify-content: flex-start; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-mini { grid-template-columns: 1fr; }
  .rs-choose { padding: 46px 0; }
  .rs-services { padding: 46px 0; }
  .rs-addon-services { padding: 46px 0; }
  .rs-faq { padding: 46px 0; }
  .cta-strip { padding: 42px 0; }
  .cta-strip h2 { font-size: clamp(22px, 6vw, 28px) !important; }
  .service-process-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 576px) {
  .form-row { grid-template-columns: 1fr; }
  .urgency-options { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .form-header { padding: 22px 18px; }
}

@media (max-width: 480px) {
  .addon-row { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .brand-title {
    max-width: 220px;
    font-size: 16px;
    font-weight: 800;
  }
  .header-logo-img { width: 34px; height: 34px; }
  .float-phone {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}

