:root {
  --navy: #0d1f3c;
  --navy-2: #1a3a6b;
  --blue: #1e90ff;
  --blue-2: #58b9ff;
  --gold: #f4c430;
  --yellow: #f4c430;
  --orange: #ff8c00;
  --green: #34a853;
  --ink: #10243a;
  --muted: #617389;
  --line: #dfe8f2;
  --soft: #f5f9fd;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --radius-sm: .5rem;
  --radius: .75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .18s ease;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: #1b82e6;
}

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--gray-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

p {
  margin-top: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 10px;
  left: 10px;
  z-index: 100000;
  width: auto;
  height: auto;
  clip: auto;
  padding: .8rem 1rem;
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--blue);
}

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

.container.narrow {
  width: min(100% - 2rem, 900px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled,
body:not(.is-front-page) .site-header {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  max-width: var(--container);
  min-height: 96px;
  margin: 0 auto;
  padding: .4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  width: auto;
  height: 84px;
  max-width: 250px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.nav-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: .25rem;
  padding: .5rem .9rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: .9375rem;
  border-radius: var(--radius-sm);
  text-shadow: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-link::after,
.nav-menu a::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .35rem;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav-link:hover::after,
.nav-menu a:hover::after,
.current-menu-item > a::after {
  transform: scaleX(1);
}

.is-front-page .site-header:not(.is-scrolled) .nav-link,
.is-front-page .site-header:not(.is-scrolled) .nav-menu a {
  color: var(--white);
  text-shadow: 0 2px 6px rgba(0, 0, 0, .5);
}

.is-front-page .site-header:not(.is-scrolled) .nav-link:hover,
.is-front-page .site-header:not(.is-scrolled) .nav-link--active,
.is-front-page .site-header:not(.is-scrolled) .nav-menu a:hover {
  color: var(--yellow);
}

.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-menu a:hover,
body:not(.is-front-page) .nav-link:hover,
body:not(.is-front-page) .nav-menu a:hover {
  color: var(--blue);
  background: var(--gray-100);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  gap: .35rem;
}

.dropdown-arrow {
  flex-shrink: 0;
  transition: transform .25s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 1001;
  min-width: 240px;
  margin: 0;
  padding: .4rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link,
.nav-menu .dropdown-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-height: auto;
  padding: .65rem 1rem;
  color: var(--gray-700) !important;
  font-size: .9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  text-shadow: none !important;
}

.dropdown-link::after {
  display: none;
}

.dropdown-link:hover {
  color: var(--blue) !important;
  background: var(--gray-50);
}

.dropdown-icon {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  text-decoration: none;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: var(--transition);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -130%;
  width: 75%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: skewX(-16deg);
  transition: left .55s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  left: 130%;
}

.btn-primary,
.btn-quote,
.btn-cta-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(30, 144, 255, .28);
}

.btn-primary:hover,
.btn-quote:hover,
.btn-cta-primary:hover {
  background: #167fe3;
  box-shadow: 0 18px 34px rgba(30, 144, 255, .34);
}

.is-front-page .site-header:not(.is-scrolled) .btn-quote {
  color: var(--white);
  background: var(--blue);
  box-shadow: var(--shadow-lg);
}

.btn-outline,
.btn-cta-outline {
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
}

.btn-outline-white {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
}

.btn-large {
  min-height: 58px;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
}

.mobile-toggle,
.mobile-close {
  display: none;
  border: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
}

.mobile-overlay {
  display: none;
}

.site-shell {
  padding-top: 96px;
}

.is-front-page .site-shell {
  padding-top: 0;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 860px;
  display: block;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .72) 52%, rgba(0, 0, 0, .42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .24) 0%, rgba(0, 0, 0, .54) 100%);
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease-in-out, transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: calc(96px + 3rem) 2rem 4rem;
}

.hero-copy {
  max-width: 820px;
}

.section-label,
.hero-badge {
  display: inline-block;
  min-height: auto;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(30, 144, 255, .12);
  color: var(--blue);
  border: 1px solid rgba(30, 144, 255, .2);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-badge {
  color: var(--white);
  background: rgba(13, 31, 60, .68);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0 1rem;
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .8);
}

.hero-subtext {
  max-width: 600px;
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(.95rem, 2.2vw, 1.2rem);
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .6);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .92);
  font-size: .875rem;
  font-weight: 500;
}

.trust-pill::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .5), 0 0 16px rgba(244, 196, 48, .32);
}

.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--gray-700);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
  transform: translateY(-50%);
  transition: var(--transition);
  cursor: pointer;
}

.hero-nav:hover {
  color: var(--gray-700);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
  left: 20px;
}

.hero-nav-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 10;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  transition: var(--transition);
  cursor: pointer;
}

.hero-dot.is-active,
.hero-dot:hover {
  background: var(--white);
  transform: scale(1.2);
}

.bubble-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero .bubble-field {
  z-index: 2;
}

.section--navy > .container,
.cta-section > .container {
  position: relative;
  z-index: 2;
}

.bubble-field span {
  position: absolute;
  bottom: -80px;
  width: var(--size, 42px);
  height: var(--size, 42px);
  left: var(--left, 10%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .42);
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .88), rgba(120, 197, 255, .24) 42%, rgba(255, 255, 255, .05) 70%);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, .38);
  animation: bubble-rise var(--speed, 11s) linear infinite;
  opacity: .72;
}

.bubble-field span:nth-child(2) { --left: 28%; --size: 26px; --speed: 9s; animation-delay: 1.8s; }
.bubble-field span:nth-child(3) { --left: 58%; --size: 54px; --speed: 14s; animation-delay: 3.2s; }
.bubble-field span:nth-child(4) { --left: 77%; --size: 32px; --speed: 10s; animation-delay: 2.4s; }
.bubble-field span:nth-child(5) { --left: 90%; --size: 46px; --speed: 12s; animation-delay: 4s; }

.section {
  position: relative;
  padding: 6rem 0;
}

.section--light {
  background: var(--gray-50);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.section-header {
  max-width: 680px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header.text-left {
  margin-left: 0;
  text-align: left;
}

.section-title,
.section h2 {
  margin: .7rem 0 .75rem;
  color: var(--navy);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}

.section--navy .section-title,
.section--navy h2 {
  color: var(--white);
}

.section-desc {
  margin: 0;
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section--navy .section-desc {
  color: rgba(255, 255, 255, .8);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 144, 255, .32);
  box-shadow: var(--shadow-xl);
}

.card h3 {
  margin: .9rem 0 .45rem;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
}

.card p {
  margin: 0;
  color: var(--gray-600);
  font-size: .9375rem;
  line-height: 1.65;
}

.card-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.service-icon {
  width: 66px;
  height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  color: var(--white);
  font-weight: 800;
  font-size: 1.28rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.05fr .95fr;
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform .45s ease;
}

.image-card:hover img {
  transform: scale(1.04);
}

.check-list {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: .65rem;
  align-items: start;
  color: var(--gray-800);
  font-weight: 600;
}

.check-list li::before,
.rug-type-item::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: .2rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .58);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat-item {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .1);
  text-align: center;
}

.stat-num {
  display: block;
  color: var(--gold);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: .4rem;
  color: rgba(255, 255, 255, .84);
  font-weight: 800;
}

.rug-types-grid,
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.rug-type-item,
.area-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .55rem;
  align-items: center;
  padding: .95rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--navy);
}

.area-item {
  display: block;
  text-align: center;
}

.process-mini-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.process-mini-step,
.timeline-step {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
}

.timeline-step {
  background: var(--white);
  border-color: var(--gray-200);
  box-shadow: var(--shadow-md);
}

.step-num,
.pms-num {
  display: inline-flex;
  color: var(--gold);
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 800;
}

.timeline-step .step-num {
  color: var(--blue);
}

.pms-label,
.timeline-step h3 {
  display: block;
  margin-top: .55rem;
  font-weight: 700;
  color: var(--white);
}

.timeline-step h3 {
  color: var(--navy);
  font-size: 1.15rem;
}

.timeline-step p {
  margin: .4rem 0 0;
  color: var(--gray-600);
  line-height: 1.75;
}

.process-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.process-image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.process-image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.process-image-card div {
  padding: 1rem;
}

.process-image-card h3 {
  margin: 0 0 .45rem;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.2;
}

.process-image-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.6;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(30, 144, 255, .93) 0%, rgba(255, 140, 0, .93) 100%),
    url("../images/contact-pickup-service.jpg") center/cover no-repeat;
  color: var(--white);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
}

.cta-content p {
  color: rgba(255, 255, 255, .84);
  font-size: 1.15rem;
}

.cta-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(96px + 3.5rem) 0 4.5rem;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(13, 31, 60, .96), rgba(26, 58, 107, .86)),
    url("../images/hero-slide-4-rug-washing-facility.jpg") center/cover no-repeat;
}

.page-hero > .container {
  position: relative;
  z-index: 3;
}

.page-hero .section-label {
  color: var(--white);
  background: rgba(13, 31, 60, .66);
  border: 1px solid rgba(255, 255, 255, .34);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .6);
}

.page-hero--process {
  background:
    linear-gradient(135deg, rgba(13, 31, 60, .96), rgba(26, 58, 107, .84)),
    url("../images/process-immersion-wash.jpg") center/cover no-repeat;
}

.page-hero--pet {
  background:
    linear-gradient(135deg, rgba(13, 31, 60, .96), rgba(26, 58, 107, .84)),
    url("../images/pet-urine-treatment.jpg") center/cover no-repeat;
}

.page-hero--contact {
  background:
    linear-gradient(135deg, rgba(13, 31, 60, .96), rgba(26, 58, 107, .84)),
    url("../images/contact-pickup-service.jpg") center/cover no-repeat;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: 1.125rem;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .62);
}

.content-card {
  padding: 2.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-xl);
}

.contact-panel {
  display: grid;
  grid-template-columns: .95fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.contact-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.contact-photo figcaption {
  padding: .95rem 1rem;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.35;
}

.contact-detail {
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(30, 144, 255, .07);
  border-top: 1px solid rgba(30, 144, 255, .18);
  border-right: 1px solid rgba(30, 144, 255, .18);
  border-bottom: 1px solid rgba(30, 144, 255, .18);
}

.contact-detail span {
  display: block;
  color: var(--gray-500);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.quote-frame {
  width: 100%;
  min-height: 800px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--white);
}

.terms-content .terms-section {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.terms-content h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.terms-content p {
  color: var(--muted);
}

.thank-you-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-check {
  width: 90px;
  height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 3rem;
  font-weight: 950;
  box-shadow: 0 18px 44px rgba(30, 144, 255, .32);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  padding: 4rem 0 2.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr;
  gap: 2.5rem;
}

.footer-logo img {
  width: 320px;
  background: transparent;
  border-radius: 8px;
  padding: 0;
  max-height: 250px;
  object-fit: contain;
}

.footer-col h4 {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-col p {
  color: rgba(255, 255, 255, .78);
}

.footer-list {
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list a,
.footer-contact a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-badges span {
  padding: .45rem .55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .86);
  font-size: .85rem;
  font-weight: 800;
}

.footer-contact span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
  font-weight: 800;
}

.footer-phone {
  display: inline-block;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.15;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.2rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
}

.footer-integra {
  padding: 1.6rem 0;
  background: #0a3161;
  text-align: center;
}

.footer-integra p {
  margin: .25rem 0;
  color: rgba(255, 255, 255, .9);
}

.footer-integra a {
  color: var(--white);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bubble-rise {
  0% { transform: translateY(0) translateX(0) scale(.85); opacity: 0; }
  12% { opacity: .65; }
  100% { transform: translateY(-115vh) translateX(34px) scale(1.12); opacity: 0; }
}

@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .header-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0 0 auto auto;
    width: min(420px, 100%);
    min-height: 100vh;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(8, 37, 68, .16);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1002;
  }

  .mobile-nav.is-open {
    transform: translateX(0);
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-title {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 950;
  }

  .mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
  }

  .mobile-menu {
    display: grid;
    gap: .25rem;
    padding: 1rem;
    margin: 0;
    list-style: none;
  }

  .mobile-link {
    display: flex;
    padding: 1rem;
    border-radius: var(--radius-sm);
    color: var(--navy);
    background: var(--gray-50);
    text-decoration: none;
    font-weight: 700;
  }

  .mobile-sub-group ul {
    display: grid;
    gap: .25rem;
    margin: .25rem 0 0;
    padding: 0;
  }

  .mobile-sub-heading {
    display: block;
    padding: .75rem 1rem .25rem;
    color: var(--gray-500);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .mobile-sublink {
    margin-left: .75rem;
  }

  .mobile-link-quote {
    color: var(--white);
    background: var(--blue);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: block;
    background: rgba(8, 37, 68, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }

  .mobile-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .process-image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .admin-bar .site-header {
    top: 0;
  }

  .header-inner {
    min-height: 76px;
    padding: .35rem 1rem;
  }

  .header-logo-img {
    width: auto;
    height: 62px;
    max-width: 185px;
  }

  .site-shell {
    padding-top: 76px;
  }

  .hero {
    min-height: 100svh;
    max-height: none;
  }

  .hero-inner {
    padding: calc(76px + 2.5rem) 1.25rem 4rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.875rem, 7vw, 2.75rem);
  }

  .hero-nav-prev {
    left: 10px;
  }

  .hero-nav-next {
    right: 10px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .image-card img {
    height: 260px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .process-image-grid,
  .rug-types-grid,
  .areas-grid,
  .process-mini-grid,
  .timeline-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .page-hero {
    padding: calc(76px + 2.5rem) 0 3rem;
  }

  .footer-logo img {
    width: 230px;
    max-height: 220px;
  }

  .footer-grid,
  .footer-bottom-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}
