
:root {
  --prestige-blue: #2f5874;
  --prestige-blue-dark: #1f3f55;
  --prestige-gold: #efd777;
  --prestige-teal: #5aa7a4;
  --prestige-light: #f7f8fa;
  --prestige-dark: #18242d;
  --prestige-footer: #202a32;
  --prestige-footer-dark: #12191f;
}

/* =========================
   Base
========================= */

body {
  font-family: "Raleway", sans-serif;
  color: #222;
  line-height: 1.6;
}

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

a {
  color: var(--prestige-blue);
}

a:hover {
  color: var(--prestige-blue-dark);
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--prestige-blue);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.text-gold {
  color: var(--prestige-gold);
}

.btn-prestige {
  background: var(--prestige-gold);
  color: #000;
  border: 1px solid rgba(0,0,0,.35);
  border-radius: .6rem;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.btn-prestige:hover {
  background: #f6df87;
  color: #000;
}

/* =========================
   Header / Navbar
========================= */

.top-bar {
  background: var(--prestige-blue-dark);
  color: #fff;
  padding: .5rem 0;
  font-size: .95rem;
}

.top-phone span {
  display: block;
  font-size: .85rem;
  line-height: 1.1;
}

.top-phone a {
  color: var(--prestige-gold);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.1;
  text-shadow: 1px 1px 1px #000;
}

.site-navbar {
  position: relative;
  z-index: 10;
  overflow: visible;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.prestige-brand {
  position: relative;
  z-index: 20;
  margin-bottom: -70px;
}

.prestige-brand img {
  width: 270px;
  max-width: 100%;
  height: auto;
  display: block;
}

.navbar-nav .nav-link {
  color: var(--prestige-dark);
  font-weight: 700;
  padding-left: .85rem;
  padding-right: .85rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--prestige-blue);
}

.nav-cta {
  background: var(--prestige-gold);
  color: #000 !important;
  border: 1px solid rgba(0,0,0,.3);
  border-radius: .4rem;
  margin-left: .5rem;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.dropdown-menu {
  border-radius: .5rem;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}

.dropdown-item {
  font-weight: 600;
  padding: .6rem 1rem;
}

/* =========================
   Hero
========================= */

.hero-section {
  position: relative;
  margin-top: 0;
  background-image: url('../_images/hero-room.jpg');
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.45) 45%,
    rgba(0,0,0,.18) 65%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 980px;
  padding: 40px 0;
}

.hero-row {
  min-height: 78vh;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: .55rem 1rem;
  background: rgba(239,215,119,.15);
  border-radius: 999px;
  color: var(--prestige-gold);
  font-weight: 700;
  letter-spacing: .5px;
  backdrop-filter: blur(2px);
}

.hero-headline-wrap {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.hero-headline-wrap h1 {
  margin-bottom: 0;
  flex: 0 1 auto;
  white-space: nowrap;
}

.hero-content h1 {
	font-size: clamp(2.8rem, 5vw, 4rem);
	line-height: .95;
	font-weight: 800;
	text-shadow: 2px 2px 10px rgba(0,0,0,.45);
}

.hero-seal {
  width: 145px;
  flex: 0 0 auto;
  position: relative;
  top: 10px;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,1));
}

.hero-subheadline {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 650px;
  margin-top: 1.8rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.92);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Animations */

.hero-animate {
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 8900ms cubic-bezier(.22, 1, .36, 1) forwards;
}

.hero-delay-1 { animation-delay: 100ms; }
.hero-delay-2 { animation-delay: 800ms; }
.hero-delay-3 { animation-delay: 1500ms; }
.hero-delay-4 { animation-delay: 2000ms; }
.hero-delay-5 { animation-delay: 3000ms; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate-seal {
  opacity: 0;
  transform: translateY(24px) scale(.88) rotate(-69deg);
  animation:
    sealReveal 1800ms cubic-bezier(.22, 1, .36, 1) 2050ms forwards,
    sealFloat 6s ease-in-out 3s infinite;
}

@keyframes sealReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes sealFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(2.1deg);
  }
}

/* =========================
   Intro
========================= */

.intro-section {
  padding: 90px 0;
  background: var(--prestige-light);
}

.intro-content h2,
.referral-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--prestige-dark);
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.intro-service-areas {
  margin: 2rem 0;
  padding-left: 1.2rem;
  border-left: 4px solid var(--prestige-gold);
  font-weight: 700;
  color: var(--prestige-blue-dark);
}

.satisfaction-box {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 2.5rem 0;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.satisfaction-box img {
  max-width: 120px;
  flex-shrink: 0;
}

.satisfaction-box h3 {
  margin-bottom: .5rem;
  font-size: 1.4rem;
  color: var(--prestige-blue-dark);
}

.satisfaction-box p {
  margin-bottom: 0;
}

.intro-image-wrap img {
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  border: 6px solid white;
}

/* =========================
   Review Banner
========================= */

.review-section {
  position: relative;
  padding: 100px 0;
  background-image: url('../_images/service-carpet.jpg');
  background-size: cover;
  background-position: center bottom;
  overflow: hidden;
}

.review-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.52) 55%,
    rgba(0,0,0,.18) 100%
  );
}

.review-content {
  position: relative;
  z-index: 2;
  color: white;
}

.review-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,.4);
}

.review-content p {
  max-width: 650px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255,255,255,.92);
  margin-bottom: 2rem;
}

.review-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.review-buttons .btn {
  border-radius: .6rem;
  font-weight: 800;
  padding: .9rem 1.25rem;
}

/* =========================
   Estimate / Services Cards
========================= */

.estimate-section,
.services-section {
  padding: 100px 0;
  background: var(--prestige-light);
}

.estimate-header,
.services-header {
  max-width: 850px;
  margin: 0 auto 4rem auto;
}

.estimate-header h2,
.services-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--prestige-dark);
}

.estimate-header p,
.services-header p {
  font-size: 1.2rem;
  color: #555;
}

/* Estimate Cards */

.estimate-card {
  height: 100%;
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.estimate-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(0,0,0,.12);
}

.estimate-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Service Cards */

.service-card {
  display: block;
  height: 100%;
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(47,88,116,.08);
  transition:
    box-shadow .25s ease,
    border-color .25s ease;
}

.service-card:hover {
  color: inherit;
  transform: none;
  box-shadow: 0 18px 45px rgba(47,88,116,.16);
  border-color: rgba(47,88,116,.28);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform .35s ease,
    filter .35s ease;
}

.service-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.estimate-card-body,
.service-card-body {
  padding: 2rem;
}

.estimate-step {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: rgba(47,88,116,.08);
  color: var(--prestige-blue);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.estimate-card h3,
.service-card h3 {
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--prestige-dark);
}

.estimate-card h3 {
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.7rem;
}

.estimate-card p,
.service-card p {
  color: #555;
  line-height: 1.8;
}

.service-card p {
  margin-bottom: 1.5rem;
}

.estimate-contact {
  margin-top: 2rem;
}

.estimate-contact a {
  display: block;
  text-decoration: none;
  font-weight: 800;
  margin-bottom: .5rem;
}

.estimate-contact a:first-child {
  font-size: 1.8rem;
}

.service-link {
  display: inline-block;
  font-weight: 800;
  text-decoration: none;
  color: var(--prestige-blue);
  transition:
    color .25s ease,
    letter-spacing .25s ease;
}

.service-card:hover .service-link {
  color: var(--prestige-blue-dark);
  letter-spacing: .03em;
}
/* =========================
   Referral
========================= */
.referral-section {
  padding: 65px 0;
  background: #fff;
}

.referral-content {
  max-width: 560px;
}

.referral-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.08;
  font-weight: 800;
  color: var(--prestige-dark);
  margin-bottom: 1.25rem;
}

.referral-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

.referral-image-wrap {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.referral-image-wrap img {
  display: block;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
}

@media (max-width: 991.98px) {
  .referral-section {
    padding: 55px 0;
  }

  .referral-content {
    max-width: 100%;
  }

  .referral-image-wrap img {
    max-width: 340px;
  }
}
/* =========================
   Trust Badges
========================= */

.trust-badges-section {
  padding: 55px 0;
  background: rgba(235,216,132,0.3);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.trust-badge img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

/* =========================
   Footer
========================= */

.footer-cta {
  position: relative;

  margin-top: -90px;

  padding: 55px 0;

  background: transparent;

  color: white;

  z-index: 5;
}

.footer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 48%;
  height: 100%;

  background: var(--prestige-blue);
  z-index: 1;
}

.footer-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 48%;

  width: 90px;
  height: 100%;

  background: var(--prestige-blue);

  clip-path: polygon(0 0, 100% 100%, 0 100%);
  z-index: 1;
}

.footer-cta .container {
  position: relative;
  z-index: 2;
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(0.8rem, 1.6vw, 1.9rem);
  line-height: 1.15;
  font-weight: 800;
}

.footer-cta {
  filter:
    drop-shadow(0 12px 28px rgba(0,0,0,.18));
}

.footer-main {
    background: var(--prestige-footer);
  color: rgba(255,255,255,.82);
}

.footer-logo {
  max-width: 230px;
  margin-bottom: 1.5rem;
}

.footer-main h3 {
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-main a {
  color: var(--prestige-gold);
  text-decoration: none;
  font-weight: 700;
}

.footer-main a:hover {
  color: white;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: .75rem;
}

.footer-owner {
  border: 5px solid white;
  border-radius: .75rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.footer-caption {
  margin-top: .85rem;
  color: white;
  font-weight: 700;
}

.footer-bottom {
  padding: 1.25rem 0;
  background: var(--prestige-footer-dark);
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 700;
}

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

@media (max-width: 767.98px) {
  .footer-cta::before {
    width: 82%;
  }

  .footer-cta::after {
    left: 82%;
    width: 70px;
  }
}

/* =========================
   Responsive
========================= */

@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .hero-seal {
    width: 140px;
  }
}

@media (max-width: 991.98px) {
  .prestige-brand {
    margin-bottom: 0;
  }

  .prestige-brand img {
    width: 210px;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: .5rem;
    display: inline-block;
  }

  .hero-content {
    padding: 90px 0;
    max-width: 720px;
  }

  .hero-headline-wrap {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-headline-wrap h1 {
    white-space: normal;
  }

  .hero-content h1 {
    line-height: 1.02;
  }

  .hero-seal {
    width: 120px;
    top: 0;
  }

  .hero-subheadline {
    font-size: 1.08rem;
  }

  .intro-section,
  .estimate-section,
  .referral-section,
  .services-section {
    padding: 70px 0;
  }

  .satisfaction-box {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 575.98px) {
  .top-bar .container {
    justify-content: center !important;
  }

  .top-phone {
    text-align: center;
  }

  .hero-content {
    padding: 75px 0;
  }

  .hero-badge {
    border-radius: .75rem;
  }

  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .trust-badge {
    min-height: 100px;
    padding: 1rem;
  }
}

/* =========================
   Reduced Motion
========================= */

@media (prefers-reduced-motion: reduce) {
  .hero-animate,
  .hero-animate-seal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .estimate-card,
  .service-card {
    transition: none;
  }

  .estimate-card:hover,
  .service-card:hover {
    transform: none;
  }
}

.estimate-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
}

.estimate-image-button img {
  transition: transform .3s ease;
}

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

.estimate-modal .modal-content {
  position: relative;
  background: transparent;
  border: 0;
}

.estimate-modal .modal-body {
  padding: 0;
  text-align: center;
}

.estimate-modal img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.estimate-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  filter: invert(1);
  opacity: 1;
  z-index: 5;
}

/* =========================================================
   Prestige Forms System
========================================================= */

.form-card,
.mini-form-card {
  position: relative;
  padding: 2rem;
  background: white;
  border-radius: 1.5rem;
  border: 1px solid rgba(47,88,116,.08);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.form-card h2,
.form-card h3,
.mini-form-card h2,
.mini-form-card h3 {
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--prestige-dark);
}

.form-card p,
.mini-form-card p {
  color: #555;
  line-height: 1.8;
}

.form-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--prestige-blue-dark);
}

.form-soft-highlight {
  padding: 1.25rem;
  margin: 1.5rem 0;
  background:
    linear-gradient(
      135deg,
      rgba(239,215,119,.25),
      rgba(255,255,255,.96)
    );

  border-left: 5px solid var(--prestige-gold);
  border-radius: 1rem;
}

.form-phone {
  display: inline-block;
  margin: .5rem 0 1.25rem;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  color: var(--prestige-blue-dark);
  text-decoration: none;
}

.form-stack {
  display: grid;
  gap: 1rem;
}

.form-divider {
  height: 1px;
  margin: 2rem 0;
  background: rgba(0,0,0,.08);
}

.form-muted {
  font-size: .95rem;
  color: #666;
}

.form-compact {
  padding: 1.5rem;
}

.form-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0,0,0,.11);
  transition: all .25s ease;
}

@media (max-width: 767.98px) {

  .form-card,
  .mini-form-card {
    padding: 1.5rem;
  }

}

/* =========================================================
   Prestige Email Signup Section
========================================================= */

.email-signup-section {
  position: relative;
  padding: 90px 0;

  background:
    radial-gradient(circle at top left,
      rgba(239,215,119,.22),
      transparent 34%),

    linear-gradient(
      180deg,
      #f7f8fa 0%,
      #ffffff 100%
    );
}

.email-signup-title {
  margin-bottom: 1.25rem;

  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;

  color: var(--prestige-dark);
}

.email-signup-text {
  font-size: 1.08rem;
  line-height: 1.9;
  color: #555;
}

.email-signup-small {
  margin-top: 1.5rem;

  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;

  color: var(--prestige-blue-dark);
}

.email-signup-form-wrap {

  padding: 1.5rem;

  background: rgba(255,255,255,.72);

  backdrop-filter: blur(8px);

  border-radius: 1.5rem;

  border: 1px solid rgba(47,88,116,.08);

  box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

@media (max-width: 991.98px) {

  .email-signup-section {
    padding: 70px 0;
  }

}