/* ==========================================================================
   NEXT PANE WINDOW CLEANING - MAIN STYLESHEET
   Ultra-premium, bespoke, human-designed aesthetic for Henderson, TN & Surrounding Areas
   ========================================================================== */

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

/* --- DESIGN TOKENS --- */
:root {
  /* Brand Colors */
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  /* Accent & Secondary */
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --emerald-500: #10b981;
  
  /* Dark Slate / Navy */
  --slate-900: #0f172a;
  --slate-850: #131d36;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

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

  /* Elevations & Shadows */
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 6px 18px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 32px -8px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-glow: 0 0 35px rgba(14, 165, 233, 0.35);

  /* Glassmorphic Surfaces */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-card-bg: rgba(255, 255, 255, 0.92);
  --glass-card-border: rgba(226, 232, 240, 0.8);
  --glass-blur: blur(14px);

  /* Layout */
  --container-max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition-smooth: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-800);
  background-color: var(--slate-50);
  line-height: 1.65;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-900);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

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

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

/* --- TOP ANNOUNCEMENT BAR --- */
.top-bar {
  background: linear-gradient(90deg, #075985 0%, #0369a1 50%, #0284c7 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar .container,
.site-header .container {
  max-width: 1440px;
  padding-left: 28px;
  padding-right: 28px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-promo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.promo-pill {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.promo-code {
  background: rgba(255, 255, 255, 0.22);
  border: 1px dashed rgba(255, 255, 255, 0.85);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: monospace;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.top-contact-links {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.top-link-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
  white-space: nowrap;
}

.top-link-item:hover {
  color: var(--white);
  text-decoration: underline;
}

/* --- NAVIGATION / HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000; /* Always above all page elements */
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1.5px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.07);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: #ffffff;
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.12);
  border-bottom-color: rgba(203, 213, 225, 0.9);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

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

.nav-brand-icon {
  width: 52px;
  height: 41px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.brand-logo:hover .nav-brand-icon {
  transform: scale(1.05);
}

.nav-brand-img {
  width: 82px;
  height: auto;
  max-width: none;
  margin-top: -5px;
  filter: drop-shadow(0 2px 8px rgba(2, 132, 199, 0.3));
  transition: filter 0.25s ease;
}

.brand-logo:hover .nav-brand-img {
  filter: drop-shadow(0 3px 12px rgba(2, 132, 199, 0.5));
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.12;
}

.nav-brand-name {
  font-family: var(--font-heading, inherit);
  font-size: 1.35rem;
  font-weight: 900;
  color: #0b1329;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.nav-brand-accent {
  color: var(--primary-600);
}

.nav-brand-sub {
  font-size: 0.70rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--primary-600);
  margin-top: 1px;
  white-space: nowrap;
}

.site-logo {
  height: 70px;
  width: auto;
  max-width: 260px;
  display: block;
  object-fit: contain;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.site-logo:hover {
  transform: scale(1.02);
}

.site-logo-white {
  height: 48px;
  width: auto;
  max-width: 250px;
  display: block;
  object-fit: contain;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 1;
}

.nav-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--slate-700);
  padding: 7px 13px;
  border-radius: var(--radius-full);
  position: relative;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  white-space: nowrap; /* Prevents awkward wrapping */
  line-height: 1;
}

.nav-link:hover {
  color: var(--primary-700);
  background: var(--primary-50);
}

.nav-link.active {
  color: var(--primary-700);
  background: var(--primary-100);
  font-weight: 800;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.phone-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--primary-50);
  border: 1.5px solid var(--primary-200);
  color: var(--primary-700);
  font-weight: 700;
  font-size: 0.86rem;
  transition: var(--transition-smooth);
  white-space: nowrap; /* Prevents phone number from breaking */
  flex-shrink: 0;
  line-height: 1;
}

.phone-quick-btn:hover {
  background: var(--primary-100);
  border-color: var(--primary-300);
  transform: translateY(-1px);
}
  border-color: var(--primary-300);
  transform: translateY(-1px);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-500);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Hamburger mobile button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--slate-800);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--white);
  z-index: 1250;
  padding: 24px 20px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-close {
  align-self: flex-end;
  background: var(--slate-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 24px;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-link {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--slate-800);
  padding: 8px 0;
  border-bottom: 1px solid var(--slate-100);
  display: block;
}

/* --- BUTTONS & PILLS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  text-align: center;
  line-height: 1;
  position: relative;
  overflow: hidden;
  white-space: nowrap; /* Prevents button text from breaking into two lines */
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: var(--white);
  box-shadow: 0 8px 24px -4px rgba(2, 132, 199, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  box-shadow: 0 12px 28px -4px rgba(2, 132, 199, 0.55);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: var(--slate-900);
  box-shadow: 0 8px 22px -4px rgba(245, 158, 11, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 12px 26px -4px rgba(245, 158, 11, 0.55);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.85);
  color: var(--slate-800);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.btn-glass:hover {
  background: var(--white);
  border-color: var(--primary-300);
  color: var(--primary-600);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0 20px;
  font-size: 0.86rem;
  height: 40px;
  line-height: 40px;
}

/* --- BADGES & TRUST CHIPS --- */
.badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: var(--shadow-sm);
}

.badge-chip-primary {
  background: var(--primary-50);
  border-color: var(--primary-200);
  color: var(--primary-700);
}

.rating-stars {
  color: var(--amber-400);
  display: inline-flex;
  gap: 2px;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 60%, #f8fafc 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--slate-900);
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate-600);
  margin-bottom: 32px;
  max-width: 580px;
}

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

.hero-guarantee-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
}

.guarantee-item svg {
  color: var(--primary-600);
  flex-shrink: 0;
}

/* Hero Visual & Quick Estimator Card */
.hero-visual-col {
  position: relative;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 60px -15px rgba(2, 132, 199, 0.25);
  border: 4px solid var(--white);
  background: var(--white);
}

.hero-main-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

/* Floating overlay cards on Hero */
.hero-floating-badge {
  position: absolute;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.badge-top-right {
  top: 24px;
  right: -20px;
}

.badge-bottom-left {
  bottom: 24px;
  left: -24px;
}

.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-gold {
  background: #fef3c7;
  color: #d97706;
}

.icon-blue {
  background: #e0f2fe;
  color: #0284c7;
}

.hero-badge-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--slate-900);
}

.hero-badge-text span {
  font-size: 0.78rem;
  color: var(--slate-500);
}

/* --- SECTION COMMON --- */
/* --- TRUST & PARTNER LOGOS SECTION --- */
.partner-logos-strip {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 38px 0 42px;
  position: relative;
  z-index: 10;
}

.partner-strip-title {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--slate-500);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.partner-strip-title::before,
.partner-strip-title::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--slate-200);
}

.partner-logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 32px;
}

.partner-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 2px 8px -2px rgba(15, 23, 42, 0.04);
  filter: grayscale(70%) opacity(0.85);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: default;
}

.partner-logo-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: translateY(-3px);
  border-color: var(--primary-300);
  box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.15);
  background: #ffffff;
}

.partner-logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.partner-logo-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--slate-800);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.partner-logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.02em;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-light {
  background-color: var(--white);
}

.section-slate {
  background-color: #f8fafc;
}

.section-dark {
  background-color: var(--slate-900);
  color: var(--white);
}

.section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: var(--slate-300);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-600);
  margin-bottom: 12px;
}

.section-dark .section-eyebrow {
  color: var(--cyan-400);
}

.section-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-600);
}

/* --- BEFORE & AFTER SLIDER --- */
.before-after-wrapper {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  user-select: none;
  background: var(--slate-800);
}

.comparison-slider {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.img-after {
  z-index: 1;
}

.img-before-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  transition: width 0.05s linear;
}

.img-before-wrapper .slider-img {
  width: 880px;
  max-width: none;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
}

.slider-badge {
  position: absolute;
  top: 20px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 15;
  backdrop-filter: blur(8px);
}

.badge-before {
  left: 20px;
  background: rgba(15, 23, 42, 0.75);
  color: var(--white);
}

.badge-after {
  right: 20px;
  background: rgba(2, 132, 199, 0.85);
  color: var(--white);
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-600), var(--cyan-400));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: var(--primary-50);
  border: 1px solid var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--slate-600);
  font-size: 0.96rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--slate-700);
  font-weight: 500;
}

.service-feature-item svg {
  color: var(--primary-600);
  flex-shrink: 0;
}

.service-card-footer {
  padding-top: 18px;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-price-hint {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--slate-500);
}

.service-price-hint span {
  font-size: 1.1rem;
  color: var(--primary-700);
  font-weight: 800;
}

/* --- VIDEO TESTIMONIALS SECTION --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.video-thumb-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
  background: var(--slate-900);
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb-img {
  transform: scale(1.05);
  opacity: 1;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--primary-600);
  color: var(--white);
}

.video-duration-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-location-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(2, 132, 199, 0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.video-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-quote {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 16px;
  line-height: 1.4;
}

.video-author-info {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate-900);
}

.author-role {
  font-size: 0.8rem;
  color: var(--slate-500);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--emerald-500);
  font-size: 0.78rem;
  font-weight: 700;
}

/* --- VIDEO MODAL --- */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.video-modal-container {
  background: var(--slate-900);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.video-modal-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--slate-850);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.video-modal-close {
  background: none;
  border: none;
  color: var(--slate-400);
  cursor: pointer;
  padding: 4px;
  font-size: 1.4rem;
  transition: color 0.2s;
}

.video-modal-close:hover {
  color: var(--white);
}

.video-player-frame {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: #000;
  overflow: hidden;
}

.video-mock-view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.video-mock-view svg {
  color: var(--cyan-400);
  margin-bottom: 16px;
  animation: pulseGlint 2s infinite;
}

.video-modal-footer {
  padding: 16px 20px;
  background: var(--slate-850);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- GOOGLE REVIEWS SECTION --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

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

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-600), var(--cyan-500));
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate-900);
  line-height: 1.2;
}

.reviewer-loc {
  font-size: 0.78rem;
  color: var(--slate-500);
}

.google-g-badge {
  width: 24px;
  height: 24px;
}

.review-body {
  font-size: 0.94rem;
  color: var(--slate-700);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--slate-400);
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
}

/* --- INSTAGRAM SHOWCASE SECTION --- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--slate-800);
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  gap: 10px;
  padding: 16px;
  text-align: center;
}

.insta-item:hover .insta-img {
  transform: scale(1.08);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-stats {
  display: flex;
  gap: 16px;
  font-size: 0.88rem;
  font-weight: 700;
}

.insta-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* --- INTERACTIVE QUOTE ESTIMATOR WIDGET --- */
.quote-estimator-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--slate-200);
  position: relative;
  z-index: 2;
}

.estimator-header {
  text-align: center;
  margin-bottom: 32px;
}

.estimator-step-group {
  margin-bottom: 28px;
}

.step-label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--slate-800);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
}

.property-radio {
  display: none;
}

.property-label {
  border: 2px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-height: 80px;
  justify-content: center;
}

.property-label:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
}

.property-radio:checked + .property-label {
  border-color: var(--primary-600);
  background: var(--primary-50);
  color: var(--primary-700);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.15);
}

.other-property-wrapper {
  margin-top: 14px;
  padding: 16px;
  background: #f8fafc;
  border: 1.5px solid var(--primary-200);
  border-radius: var(--radius-lg);
  animation: fadeIn 0.25s ease-in-out;
}

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

.other-property-select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--slate-300);
  font-size: 0.95rem;
  background: #ffffff;
  color: var(--slate-800);
  cursor: pointer;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.other-property-select:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.custom-property-input {
  width: 100%;
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--slate-300);
  font-size: 0.92rem;
  box-sizing: border-box;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-property-input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* Range sliders */
.custom-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--slate-200);
  outline: none;
  -webkit-appearance: none;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-600);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.4);
  border: 2px solid var(--white);
  transition: transform 0.1s;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-val-badge {
  background: var(--primary-100);
  color: var(--primary-800);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
}

/* Add-ons checkboxes */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.addon-checkbox {
  display: none;
}

.addon-label {
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
  transition: var(--transition-smooth);
}

.addon-checkbox:checked + .addon-label {
  border-color: var(--primary-600);
  background: var(--primary-50);
  color: var(--primary-800);
}

.addon-price {
  font-size: 0.82rem;
  color: var(--primary-600);
  font-weight: 700;
}

/* Calculation summary bar */
.calculator-result-bar {
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-850) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.price-display-block {
  display: flex;
  flex-direction: column;
}

.price-hint {
  font-size: 0.8rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.estimate-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--cyan-400);
  line-height: 1;
}

/* --- TENNESSEE SERVICE AREAS SECTION --- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-smooth);
}

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

.area-icon-pin {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-50);
  color: var(--primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.area-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.area-info p {
  font-size: 0.82rem;
  color: var(--slate-500);
}

.area-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald-500);
  margin-top: 4px;
}

/* --- FAQ ACCORDION --- */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--slate-700);
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary-600);
  color: var(--white);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.65;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col-title {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cyan-400);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--slate-300);
}

.footer-contact-item svg {
  color: var(--cyan-400);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-badge-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-200);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--slate-200);
  transition: all 0.25s ease;
  cursor: pointer;
}

.social-icon-btn svg {
  transition: transform 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--primary-600);
  color: #ffffff;
  border-color: var(--primary-400);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
}

.social-icon-btn:hover svg {
  transform: scale(1.1);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--slate-500);
}

/* --- SOCIAL PROOF TOAST --- */
.social-proof-toast {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 180;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.social-proof-toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast-content {
  font-size: 0.84rem;
  color: var(--slate-700);
  line-height: 1.35;
}

.toast-content strong {
  color: var(--slate-900);
}

.toast-time {
  font-size: 0.72rem;
  color: var(--slate-400);
  display: block;
}

.toast-close {
  background: none;
  border: none;
  color: var(--slate-400);
  cursor: pointer;
  padding: 4px;
}

/* --- MOBILE BOTTOM STICKY BAR --- */
/* --- LAYOUT GRID UTILITIES --- */
.split-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quote-layout-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.quote-summary-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 96px; /* Aligns neatly below the 76px sticky header */
  align-self: start;
  z-index: 10;
}

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

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

/* --- MOBILE BOTTOM STICKY BAR --- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1.5px solid rgba(226, 232, 240, 0.95);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12);
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .nav-menu, .phone-quick-btn {
    display: none !important;
  }
  .mobile-toggle {
    display: block !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-grid-2col,
  .quote-layout-grid,
  .contact-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }
  .site-header .container,
  .top-bar .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .top-contact-links {
    display: none !important;
  }
  .top-bar {
    padding: 8px 12px;
    background: linear-gradient(90deg, #075985 0%, #0369a1 50%, #0284c7 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .top-bar .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
  .top-promo-tag {
    white-space: normal !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 8px;
    font-size: 0.82rem;
    line-height: 1.4;
    text-align: center;
    width: 100%;
  }
  .top-promo-tag span {
    display: inline;
  }
  .promo-pill {
    font-size: 0.72rem;
    padding: 2px 8px;
    flex-shrink: 0;
  }
  .navbar {
    height: 70px;
    padding: 0;
  }
  .nav-brand-icon {
    width: 46px;
    height: 38px;
  }
  .nav-brand-img {
    width: 74px;
    margin-top: -4px;
  }
  .nav-brand-name {
    font-size: 1.18rem;
  }
  .nav-brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }
  .site-header .site-logo {
    height: 62px !important;
    max-width: 200px;
  }
  .hero-section {
    padding: 40px 0 60px;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
  }
  .hero-subtitle {
    font-size: 1.02rem;
    margin-bottom: 24px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
  }
  .hero-guarantee-strip {
    flex-direction: column;
    gap: 12px;
  }
  .hero-main-img {
    height: 300px;
  }
  .badge-top-right, .badge-bottom-left {
    position: static;
    margin-top: 10px;
  }
  .comparison-slider {
    height: 320px;
  }
  .property-type-grid {
    grid-template-columns: 1fr;
  }
  .addons-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-bottom: 12px;
  }
  .quote-layout-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .quote-estimator-card {
    padding: 24px 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-lg) !important;
  }
  .quote-estimator-card input,
  .quote-estimator-card textarea,
  .quote-estimator-card select {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .quote-submit-btn,
  .quote-estimator-card button.btn,
  .quote-estimator-card .btn {
    white-space: normal !important;
    font-size: 0.95rem !important;
    padding: 14px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
    height: auto !important;
  }
  .quote-summary-sticky {
    position: static !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .quote-summary-card {
    padding: 24px 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: 20px !important;
  }
  .quote-phone-card {
    padding: 20px 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-lg) !important;
  }
  .shape-canvas {
    overflow: hidden !important;
    max-width: 100% !important;
  }
  .prism-shape {
    max-width: 100% !important;
  }
  .calculator-result-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mobile-bottom-bar {
    display: block;
  }
  body {
    padding-bottom: 74px; /* Offset for sticky mobile bottom bar */
  }
  .social-proof-toast {
    bottom: 82px;
    left: 12px;
    right: 12px;
    max-width: none;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .partner-logos-grid {
    gap: 12px;
  }
  .partner-logo-item {
    padding: 8px 12px;
  }
}

@media (max-width: 600px) {
  .form-row-2col {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-bottom: 12px;
  }
  .partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .partner-logo-item {
    padding: 8px 10px;
    gap: 8px;
  }
  .partner-logo-icon {
    width: 28px;
    height: 28px;
  }
  .partner-logo-name {
    font-size: 0.8rem;
  }
  .partner-logo-sub {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .site-header .container,
  .top-bar .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .navbar {
    height: 64px;
    padding: 0;
  }
  .nav-brand-icon {
    width: 40px;
    height: 34px;
  }
  .nav-brand-img {
    width: 64px;
    margin-top: -3px;
  }
  .nav-brand-name {
    font-size: 1.05rem;
  }
  .nav-brand-sub {
    font-size: 0.56rem;
    letter-spacing: 0.08em;
  }
  .site-header .site-logo {
    height: 54px !important;
    max-width: 175px;
  }
  .nav-actions .btn-primary {
    padding: 0 12px;
    font-size: 0.8rem;
    height: 36px;
    line-height: 36px;
  }
  .hero-title {
    font-size: 1.85rem;
  }
  .hero-main-img {
    height: 230px;
  }
  .comparison-slider {
    height: 260px;
  }
  .section {
    padding: 50px 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .partner-logos-grid {
    grid-template-columns: 1fr;
  }
  .quote-estimator-card {
    padding: 20px 12px !important;
  }
  .quote-summary-card {
    padding: 20px 14px !important;
  }
  .quote-summary-card .estimate-number {
    font-size: 2.2rem !important;
  }
  .quote-phone-card {
    padding: 18px 12px !important;
  }
  .quote-submit-btn,
  .quote-estimator-card button.btn {
    font-size: 0.88rem !important;
    padding: 13px 8px !important;
  }
  .step-label {
    font-size: 0.90rem !important;
  }
}
