@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

/* ============================================================
   MASTER PLUMBING REPAIR — Modern Design System
   ============================================================ */

/* ── Design Tokens & Variables ─────────────────────────────── */
:root {
  /* Brand Colors */
  --primary:          #0265c7;
  --primary-hover:    #014fa0;
  --primary-dark:     #013a77;
  --primary-light:    #eff6ff;
  --primary-glow:     rgba(2, 101, 199, 0.18);

  /* High Conversion Orange */
  --orange:           #ff6b2b;
  --orange-dark:      #e55315;
  --orange-light:     #fff3ed;
  --orange-glow:      rgba(255, 107, 43, 0.32);

  /* Deep Navy Themes */
  --navy:             #071731;
  --navy-dark:        #040d1c;
  --navy-light:       #0e264d;
  --navy-surface:     rgba(255, 255, 255, 0.06);
  --navy-border:      rgba(255, 255, 255, 0.12);

  /* Trust & Accents */
  --gold:             #f59e0b;
  --green:            #10b981;
  --cyan:             #38bdf8;
  --link:             #0265c7;

  /* Neutrals & Surfaces */
  --white:            #ffffff;
  --gray-50:          #f8fafc;
  --gray-100:         #f1f5f9;
  --gray-200:         #e2e8f0;
  --gray-300:         #cbd5e1;
  --gray-400:         #94a3b8;
  --gray-500:         #64748b;
  --gray-600:         #475569;
  --gray-700:         #334155;
  --gray-800:         #1e293b;
  --gray-900:         #0f172a;

  --gray-bg:          #f8fafc;
  --gray-border:      #e2e8f0;
  --text-dark:        #0f172a;
  --text-body:        #475569;
  --text-muted:       #64748b;

  /* Typography */
  --font-main:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevations */
  --shadow-xs:        0 1px 2px 0 rgba(15, 23, 42, 0.04);
  --shadow-sm:        0 2px 4px 0 rgba(15, 23, 42, 0.06);
  --shadow-md:        0 4px 14px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg:        0 12px 28px -4px rgba(15, 23, 42, 0.1), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl:        0 20px 40px -6px rgba(15, 23, 42, 0.14), 0 8px 16px -4px rgba(15, 23, 42, 0.06);

  /* Layout */
  --radius-sm:        6px;
  --radius:           10px;
  --radius-lg:        14px;
  --radius-full:      9999px;
  --transition:       all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--text-body);
  background-color: var(--white);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

p {
  margin: 0 0 16px;
  line-height: 1.75;
  color: var(--text-body);
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  color: var(--primary-hover);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--text-dark);
  margin: 0 0 16px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(28px, 4vw, 42px); line-height: 1.18; }
h2 { font-size: clamp(24px, 3.2vw, 34px); line-height: 1.24; }
h3 { font-size: clamp(18px, 2.2vw, 22px); line-height: 1.35; }
h4 { font-size: 16px; line-height: 1.4; }
h5 { font-size: 14px; line-height: 1.4; }

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER & NAVBAR
   ============================================================ */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2, 101, 199, 0.28);
  flex-shrink: 0;
  transition: var(--transition);
}

.logo:hover .logo-icon {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 6px 18px rgba(2, 101, 199, 0.38);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.logo-text .tagline {
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 2px;
}

/* Nav links */
nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links li a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  display: block;
}

.nav-links li a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* Header Phone CTA */
.header-phone {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8347 100%) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  transition: var(--transition) !important;
  white-space: nowrap;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(255, 107, 43, 0.35);
}

.header-phone:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 43, 0.45);
}

.header-phone i {
  font-size: 16px;
  animation: phone-shake 2.5s infinite ease-in-out;
}

@keyframes phone-shake {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50% { transform: rotate(0deg); }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--gray-900);
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: var(--gray-200);
}

/* Mobile Menu Drawer */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease-in-out, opacity 0.25s ease;
  opacity: 0;
}

.mobile-menu.open {
  max-height: 480px !important;
  opacity: 1 !important;
  padding: 12px 0 20px;
}

.mobile-nav-links {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav-links li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-header-phone {
  background: var(--orange) !important;
  color: var(--white) !important;
  margin-top: 10px;
  padding: 14px 20px !important;
  border-radius: var(--radius-sm) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700 !important;
  text-align: center;
  box-shadow: 0 4px 14px rgba(255, 107, 43, 0.3);
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.rs-banner {
  background: linear-gradient(135deg, #071731 0%, #0c234a 45%, #0a3672 80%, #06152d 100%);
  padding: 72px 0 68px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.rs-banner::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 68%);
  pointer-events: none;
}

.rs-banner::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 107, 43, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

.banner-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner-row.full-width {
  grid-template-columns: 1fr;
  max-width: 860px;
}

.banner-content-col {
  max-width: 650px;
}

/* Sub-label badge */
.sub-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 18px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.08);
  backdrop-filter: blur(8px);
}

.banner-content h1.title {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.18;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.banner-content h1.title span {
  background: linear-gradient(135deg, #38bdf8 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content p.description {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.banner-content p.description strong {
  color: var(--white);
}

.btn-part {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Readon Buttons */
.readon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.readon.orange {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8347 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 107, 43, 0.38);
}

.readon.orange:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 43, 0.48);
}

.banner-img-box {
  position: relative;
  display: block;
}

.banner-img-box img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.45);
  transition: var(--transition);
}

.banner-badge {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8347 100%);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 107, 43, 0.42);
}

.banner-badge .big {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.banner-badge .small {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
  font-weight: 600;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: var(--gray-50);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.bc-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-500);
}

.bc-inner a {
  color: var(--primary);
  font-weight: 600;
}

.bc-inner a:hover {
  text-decoration: underline;
}

.bc-sep {
  color: var(--gray-300);
  font-size: 14px;
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.rs-counter {
  background: #051329;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.counter-list {
  padding: 32px 24px;
  position: relative;
  transition: background 0.3s;
}

.counter-list:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.counter-list:hover {
  background: rgba(255, 255, 255, 0.03);
}

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

.counter-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  transition: var(--transition);
}

.counter-list:hover .counter-icon {
  background: rgba(2, 101, 199, 0.25);
  border-color: rgba(2, 101, 199, 0.4);
  transform: scale(1.06);
}

.counter-number {
  text-align: left;
}

.counter-number .count-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.counter-number .rs-count {
  font-size: 30px;
  font-weight: 800;
  font-family: var(--font-main);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}

.counter-number .prefix {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-left: 2px;
}

.counter-number h5.title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  margin-top: 6px;
  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(22px, 2.8vw, 32px);
  margin-bottom: 40px;
  color: var(--text-dark);
  font-weight: 800;
}

.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.services-slider {
  display: flex;
}

.services-slider .services-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-xs);
}

.services-slider .services-item:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
}

.services-icon-bar,
.services-content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.services-btn {
  position: relative;
  z-index: 3;
  pointer-events: auto;
}

/* Service icon bar */
.services-icon-bar {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f0fe 100%);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-200);
  transition: background var(--transition);
}

.services-slider .services-item:hover .services-icon-bar {
  background: linear-gradient(135deg, #e0f0fe 0%, #bae6fd 100%);
}

.services-icon-bar .svc-icon {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(2, 101, 199, 0.12);
  flex-shrink: 0;
  transition: var(--transition);
}

.services-slider .services-item:hover .svc-icon {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(2, 101, 199, 0.35);
  transform: scale(1.05);
}

.services-content {
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.services-content h3.title {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
  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: 14.5px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.services-btn {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--gray-200);
}

.services-btn a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.services-btn a:hover {
  color: var(--primary);
}

.btn-text {
  white-space: nowrap;
}

.arrow-icon {
  background: #fef08a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  font-size: 13px;
  color: var(--gray-900);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 800;
  flex-shrink: 0;
}

.services-btn a:hover .arrow-icon {
  transform: translateX(6px);
  background: var(--primary);
  color: var(--white);
}

/* ============================================================
   INTERACTIVE USA MAP & STATES / CITIES
   ============================================================ */
.rs-addon-services {
  background: var(--white);
  padding: 80px 0;
}

.rs-addon-services h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 800;
  text-align: center;
}

.interactive-usa-map {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 48px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.interactive-usa-map svg {
  width: 100%;
  height: auto;
  aspect-ratio: 959 / 593;
}

.interactive-usa-map path {
  fill: #cbd5e1;
  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);
  filter: drop-shadow(0 4px 8px rgba(2, 101, 199, 0.35));
}

.addon-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.addon-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.addon-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(2, 101, 199, 0.12);
  transform: translateY(-3px);
  background: #fbfdff;
}

.services-title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 16px 8px;
  font-size: 15px;
  color: var(--text-dark);
}

.addon-item:hover .services-title {
  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: 12.5px;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.location-meta .county {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   WHY CHOOSE US / ABOUT SECTION
   ============================================================ */
.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: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.sec-title4 .sub-line {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.sec-title4 .sub-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.sec-title4 h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 20px;
  font-weight: 800;
}

.sec-title4 p {
  margin-bottom: 16px;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.75;
}

/* Mini Cards */
.about-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.mini-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: var(--transition);
}

.mini-card:hover {
  background: var(--primary-light);
  border-color: var(--primary);
}

.mini-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-card p {
  font-size: 12.5px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* Zip codes */
.zip-section {
  margin-top: 24px;
}

.zip-section h3 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.zip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zip-pill {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
}

/* ============================================================
   GOOGLE MAP
   ============================================================ */
.rs-map {
  padding: 0 0 54px;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.rs-faq {
  padding: 80px 0;
  background: var(--gray-bg);
}

.rs-faq h2.faq-inner-title {
  text-align: center;
  font-size: clamp(20px, 2.8vw, 30px);
  margin-bottom: 48px;
  color: var(--text-dark);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.faq-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  height: 400px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.acc-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.acc-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(2, 101, 199, 0.1);
}

.acc-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  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: 20px;
  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 20px;
}

.acc-item.open .acc-answer {
  max-height: 400px;
  padding: 0 20px 20px;
}

.acc-answer p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.75;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rs-testimonial {
  background: linear-gradient(135deg, #051329 0%, #0c2650 100%);
  padding: 80px 0;
  color: var(--white);
}

.rs-testimonial .sec-inner-title {
  text-align: center;
  margin-bottom: 48px;
}

.rs-testimonial .sec-inner-title .sub-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.rs-testimonial .sec-inner-title h2 {
  color: var(--white);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  margin: 0;
}

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

.testi-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  backdrop-filter: blur(8px);
}

.testi-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
}

.testi-stars {
  color: #facc15;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-item > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  font-weight: 700;
  font-size: 14px;
  color: #38bdf8;
  margin: 0;
}

.testi-loc {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

/* ============================================================
   CONTACT FORM & LAYOUT
   ============================================================ */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card-box {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.contact-card-box:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--white);
  padding: 44px 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  position: relative;
}

.contact-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-form-card p.form-subtitle {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.form-control,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-main);
  font-size: 14.5px;
  padding: 12px 16px;
  color: var(--gray-900);
  background-color: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  background-color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-control::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8347 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255, 107, 43, 0.35);
  margin-top: 10px;
}

.form-submit-btn:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 107, 43, 0.45);
}

.form-success-box {
  display: none;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.form-success-box.show {
  display: block;
}

.form-success-box .success-icon {
  width: 60px;
  height: 60px;
  background: #22c55e;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.35);
}

.form-success-box h4 {
  font-size: 20px;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 10px;
}

.form-success-box p {
  font-size: 14.5px;
  color: #166534;
  line-height: 1.65;
  margin-bottom: 20px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   NEARBY CITIES
   ============================================================ */
.nearby-section {
  padding: 44px 0;
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-200);
}

.nearby-section h3 {
  font-size: 17px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.nearby-section h3 a {
  color: var(--primary);
}

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nearby-link {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  transition: var(--transition);
}

.nearby-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, #071731 0%, #0a2f64 50%, #071731 100%);
  padding: 68px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(ellipse, rgba(255, 107, 43, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #040d1a;
  color: rgba(255, 255, 255, 0.65);
  padding: 68px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand > p {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(2, 101, 199, 0.35);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: #38bdf8;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.ci-icon {
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  color: #38bdf8;
}

.footer-contact-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
}

.footer-contact-item a {
  color: #38bdf8;
  font-weight: 700;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-bottom a {
  color: #38bdf8;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================================================
   FLOATING PHONE CTA
   ============================================================ */
.float-phone {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8347 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255, 107, 43, 0.5);
  transition: all 0.3s ease;
  animation: pulse-ring 2.5s infinite;
  text-decoration: none;
}

.float-phone:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  color: var(--white);
}

@keyframes pulse-ring {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 43, 0.6), 0 6px 24px rgba(255, 107, 43, 0.4);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(255, 107, 43, 0), 0 8px 30px rgba(255, 107, 43, 0.6);
  }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1080px) {
  .services-row { grid-template-columns: repeat(2, 1fr); }
  .addon-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .choose-grid { gap: 40px; }
  .contact-layout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .banner-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .banner-img-box {
    display: block !important;
    max-width: 500px;
    margin: 10px auto 0;
    width: 100%;
  }
  .banner-badge {
    bottom: -10px;
    left: -8px;
    padding: 8px 14px;
  }
  .banner-badge .big {
    font-size: 18px;
  }
  .banner-badge .small {
    font-size: 8.5px;
  }
  .rs-banner {
    padding: 56px 0 52px;
  }
  .nav-links {
    display: none !important;
  }
  .mobile-menu-btn {
    display: block !important;
  }
  .mobile-menu {
    display: block !important;
  }
  .choose-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-img {
    display: none;
  }
  .counter-grid {
    grid-template-columns: 1fr;
  }
  .counter-list:not(:last-child)::after {
    display: none;
  }
  .counter-list {
    padding: 24px 20px;
  }
  .counter-list .counter-text {
    justify-content: flex-start;
  }
  .contact-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 18px;
  }
  .banner-img-box {
    max-width: 100%;
  }
  .services-row {
    grid-template-columns: 1fr;
  }
  .addon-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .about-mini {
    grid-template-columns: 1fr;
  }
  .rs-choose, .rs-services, .rs-addon-services, .rs-faq, .rs-testimonial {
    padding: 56px 0;
  }
  .float-phone {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
