/* ==========================================================================
   Premium Carpet & Upholstery — Main Stylesheet
   ========================================================================== */

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

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-dark-gray);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-3);
  background: var(--color-navy);
  color: #fff;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--border-radius-sm);
  z-index: 10000;
  font-size: 0.875rem;
}

.skip-link:focus {
  top: var(--space-2);
  color: #fff;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-charcoal);
  font-weight: 700;
}

h1 {
  font-size: 3.25rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin-bottom: var(--space-3);
}

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

.section-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: var(--space-2);
  display: inline-block;
}

.section-heading {
  margin-bottom: var(--space-3);
}

.section-subtext {
  font-size: 1.0625rem;
  color: var(--color-medium-gray);
  max-width: 600px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

section {
  padding: var(--space-8) 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 36px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-default);
  text-align: center;
  line-height: 1;
  text-decoration: none;
  min-height: 48px;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-glow);
}

.btn--primary {
  background-color: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
}

.btn--primary:hover {
  background-color: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn--secondary:hover {
  background-color: var(--color-navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background-color: #fff;
  color: var(--color-navy);
  border-color: #fff;
}

.btn--white:hover {
  background-color: var(--color-off-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1rem;
}

.btn--full { width: 100%; }

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---- Phone Link ---- */
.phone-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.phone-link:hover {
  color: var(--color-orange-dark);
}

.phone-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
  background-color: var(--color-navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  padding: var(--space-2) 0;
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar__info {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar__item a {
  color: rgba(255, 255, 255, 0.8);
}

.top-bar__item a:hover {
  color: #fff;
}

.top-bar__item svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-bar__badges {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.top-bar__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.top-bar__badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  border-bottom: 1px solid transparent;
  transition: var(--transition-default);
}

.nav--scrolled {
  border-bottom-color: var(--color-light-gray);
  box-shadow: var(--shadow-md);
}

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

.nav__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.15;
}

.nav__logo-main {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  color: var(--color-medium-gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__center {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark-gray);
  text-decoration: none;
  padding: var(--space-2) 0;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: var(--transition-default);
}

.nav__link:hover {
  color: var(--color-navy);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__phone:hover {
  color: var(--color-orange-dark);
}

.nav__phone svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-navy);
  margin: 5px 0;
  transition: var(--transition-default);
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  padding: var(--space-9) var(--space-5) var(--space-5);
  transition: right 0.3s ease;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  overflow-y: auto;
}

.nav__mobile.active {
  right: 0;
}

.nav__mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-light-gray);
  text-decoration: none;
}

.nav__mobile-link:hover {
  color: var(--color-orange);
}

.nav__mobile-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--color-orange);
  text-decoration: none;
}

.nav__mobile-phone svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.nav__mobile-cta {
  margin-top: var(--space-4);
}

.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-overlay);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav__overlay.active {
  opacity: 1;
}

/* Mobile Sticky Phone Bar */
.mobile-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--color-orange);
  padding: var(--space-3);
}

.mobile-phone-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
}

.mobile-phone-bar__link svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: ring 1.5s ease infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(12deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(6deg); }
  40% { transform: rotate(0); }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  color: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: var(--space-9) 0;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: var(--space-4);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2;
}

.hero__title {
  color: #fff;
  font-size: 3.25rem;
  margin-bottom: var(--space-4);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-orange);
  text-decoration: none;
  margin-bottom: var(--space-5);
}

.hero__phone:hover {
  color: #fff;
}

.hero__phone svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}


/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.trust {
  background: var(--color-off-white);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--color-light-gray);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
}

.trust-badge {
  text-align: center;
  padding: var(--space-4) var(--space-3);
}

.trust-badge__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-3);
  background: var(--color-white);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.trust-badge__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-badge__icon--navy svg { stroke: var(--color-navy); }
.trust-badge__icon--green svg { stroke: var(--color-green); }
.trust-badge__icon--orange svg { stroke: var(--color-orange); }
.trust-badge__icon--blue svg { stroke: var(--color-blue); }

.trust-badge__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.trust-badge__subtitle {
  font-size: 0.75rem;
  color: var(--color-medium-gray);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
  background: var(--color-white);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.services__header .section-subtext {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-md);
  padding: var(--space-5) var(--space-4);
  transition: var(--transition-default);
  text-align: center;
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-orange);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-4);
  background: var(--color-blue-light);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__name {
  font-size: 1.125rem;
  margin-bottom: var(--space-2);
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--color-medium-gray);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.service-card__link {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__link:hover {
  color: var(--color-orange-dark);
  gap: 8px;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition-default);
}

/* ==========================================================================
   BEFORE / AFTER
   ========================================================================== */
.before-after {
  background: var(--color-off-white);
}

.before-after__header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.before-after__header .section-subtext {
  margin: 0 auto;
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

/* ---- Before/After Slider ---- */
.ba-slider {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.ba-slider:hover {
  box-shadow: var(--shadow-md);
}

.ba-slider__container {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}

.ba-slider__img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.ba-slider__before-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.ba-slider__before-clip .ba-slider__img--before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
}

.ba-slider__label {
  position: absolute;
  top: var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 3;
  pointer-events: none;
}

.ba-slider__label--before {
  left: var(--space-2);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.ba-slider__label--after {
  right: var(--space-2);
  background: var(--color-green);
  color: #fff;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.ba-slider__handle-line {
  position: absolute;
  inset: 0;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.ba-slider__handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--color-orange);
  border: 3px solid #fff;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.ba-slider__handle-knob svg:first-child {
  margin-right: -6px;
}

.ba-slider__handle-knob svg:last-child {
  margin-left: -6px;
}

.ba-slider__body {
  padding: var(--space-3) var(--space-4);
}

.ba-slider__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  background: var(--color-white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.testimonial-card {
  background: var(--color-off-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-5);
  border: 1px solid var(--color-light-gray);
}

.testimonial-card__stars {
  color: var(--color-orange);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}

.testimonial-card__text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-dark-gray);
  margin-bottom: var(--space-4);
}

.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.testimonials__cta {
  text-align: center;
}

.testimonials__google-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-dark-gray);
  text-decoration: none;
}

.testimonials__google-link:hover {
  color: var(--color-orange);
}

.testimonials__google-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   SERVICE AREA
   ========================================================================== */
.service-area {
  background: var(--color-navy);
  color: #fff;
}

.service-area__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

.service-area .section-label {
  color: var(--color-orange);
}

.service-area__title {
  color: #fff;
  margin-bottom: var(--space-4);
}

.service-area__text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  margin-bottom: var(--space-5);
}

.service-area__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-5);
  margin-bottom: var(--space-5);
}

.service-area__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.service-area__item svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.service-area__map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

/* ==========================================================================
   QUOTE FORM
   ========================================================================== */
.quote {
  background: var(--color-off-white);
  position: relative;
}

.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: start;
}

.quote__content {
  padding-top: var(--space-4);
}

.quote__title {
  margin-bottom: var(--space-3);
}

.quote__text {
  font-size: 1.0625rem;
  color: var(--color-medium-gray);
  margin-bottom: var(--space-5);
}

.quote__perks {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.quote__perk {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.quote__perk-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-green-light);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote__perk-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote__perk-text {
  font-size: 0.9375rem;
}

.quote__perk-text strong {
  display: block;
  color: var(--color-charcoal);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 2px;
}

/* Form */
.quote-form {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-light-gray);
}

.quote-form__title {
  text-align: center;
  margin-bottom: var(--space-1);
}

.quote-form__subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-medium-gray);
  margin-bottom: var(--space-4);
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.form-group label .required {
  color: var(--color-error);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 12px 16px;
  border: 2px solid var(--color-light-gray);
  border-radius: var(--border-radius-sm);
  background: var(--color-white);
  color: var(--color-charcoal);
  transition: var(--transition-default);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-medium-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: var(--shadow-glow);
}

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

.quote-form__submit {
  margin-top: var(--space-3);
}

.quote-form__disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-medium-gray);
  margin-top: var(--space-3);
}

/* Success */
.quote-form__success {
  display: none;
  text-align: center;
  padding: var(--space-6) var(--space-4);
}

.quote-form__success.active {
  display: block;
}

.quote-form__success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: var(--color-green-light);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-form__success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: var(--color-white);
}

.contact__header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact__item {
  display: flex;
  gap: var(--space-3);
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-blue-light);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__item-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-navy);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__item-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-medium-gray);
  margin-bottom: 2px;
}

.contact__item-value {
  font-size: 1rem;
  color: var(--color-charcoal);
  line-height: 1.5;
}

.contact__item-value a {
  color: var(--color-charcoal);
}

.contact__item-value a:hover {
  color: var(--color-orange);
}

.contact__social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-3);
}

.contact__social-link {
  width: 44px;
  height: 44px;
  background: var(--color-blue-light);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
  transition: var(--transition-default);
}

.contact__social-link:hover {
  background: var(--color-navy);
  color: #fff;
}

.contact__social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact__map {
  width: 100%;
  height: 100%;
  min-height: 360px;
  background: var(--color-off-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__map-placeholder {
  text-align: center;
  color: var(--color-medium-gray);
}

.contact__map-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-light-gray);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: var(--space-2);
}

.contact__map-placeholder p {
  font-size: 0.875rem;
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-dark) 100%);
  color: #fff;
  padding: var(--space-7) 0;
  text-align: center;
}

.cta-banner__title {
  color: #fff;
  margin-bottom: var(--space-3);
}

.cta-banner__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.cta-banner__phone:hover {
  color: #fff;
  transform: scale(1.02);
}

.cta-banner__phone svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--color-navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-7) 0 var(--space-5);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-2);
}

.footer__brand-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.footer__brand-text {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: var(--space-4);
}

.footer__phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__phone:hover {
  color: #fff;
}

.footer__phone svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-4);
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-2);
  text-decoration: none;
}

.footer__link:hover {
  color: var(--color-orange);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-4);
}

.footer__bottom-links a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.footer__bottom-links a:hover {
  color: var(--color-orange);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.875rem; }
  h3 { font-size: 1.25rem; }

  section { padding: var(--space-7) 0; }

  .top-bar__badges { display: none; }

  .hero { min-height: 70vh; }

  .trust__grid { grid-template-columns: repeat(3, 1fr); }

  .services__grid { grid-template-columns: repeat(2, 1fr); }

  .before-after__grid { grid-template-columns: 1fr 1fr; }

  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .service-area__inner { grid-template-columns: 1fr; }
  .service-area__map { max-width: 500px; }

  .quote__inner { grid-template-columns: 1fr; }
  .quote__content { order: 1; }
  .quote-form { order: 2; max-width: 600px; margin: 0 auto; width: 100%; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }

  body { font-size: 0.9375rem; padding-bottom: 60px; }

  section { padding: var(--space-6) 0; }

  .container { padding: 0 var(--space-3); }

  /* Top Bar */
  .top-bar { display: none; }

  /* Nav */
  .nav__center { display: none; }
  .nav__right .btn { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile { display: block; }
  .mobile-phone-bar { display: block; }

  /* Hero */
  .hero { min-height: 80vh; }
  .hero__inner { padding: var(--space-7) 0; }
  .hero__title { font-size: 2rem; }
  .hero__phone { font-size: 1.25rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }

  /* Before/After */
  .before-after__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  /* Trust */
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .trust-badge { padding: var(--space-3); }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Quote */
  .quote-form__grid { grid-template-columns: 1fr; }
  .form-group--half { grid-column: auto; }

  /* CTA Banner */
  .cta-banner__phone { font-size: 1.5rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-5); }
  .footer__bottom { flex-direction: column; gap: var(--space-3); text-align: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  .hero__phone { font-size: 1.125rem; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .service-area__list { grid-template-columns: 1fr; }
}

/* ---- Utilities ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
