/* ============================================================
   RUSH CARPET CLEANING — THE KING OF CLEAN
   Elvis-Themed CSS: Gold, Purple, Black, Cream
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #D4AF37;
  --gold-light: #E8C84A;
  --gold-dark: #A88A20;
  --purple: #4B0082;
  --purple-light: #6A0DAD;
  --purple-dark: #2D0050;
  --black: #1a1a1a;
  --black-rich: #0d0d0d;
  --cream: #F5F5DC;
  --cream-dark: #E8E8C0;
  --white: #ffffff;
  --gray-light: #2a2a2a;
  --gray-mid: #444;
  --text-light: #c8c8b0;
  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
  --shadow-purple: 0 0 20px rgba(75, 0, 130, 0.4);
  --transition: 0.3s ease;
  --border-radius: 8px;
  --nav-height: 70px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 700; }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-badge {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padded { padding: 5rem 0; }
.section-padded-sm { padding: 3rem 0; }
.bg-dark { background: var(--black-rich); }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-block { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(13, 13, 13, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 13, 13, 0.99);
  border-bottom-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 0.5rem;
  right: 0.5rem;
}

.nav-cta {
  display: block;
  padding: 0.5rem 1rem;
  background: var(--purple);
  color: var(--gold) !important;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--purple-light);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-rich) 0%, #1a0033 40%, #0d0d1a 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(75, 0, 130, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Elvis SVG silhouette */
.elvis-silhouette {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 85vh;
  max-height: 700px;
  opacity: 0.08;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}
.elvis-svg {
  height: 100%;
  width: auto;
  color: var(--gold);
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem 1.5rem;
}

.hero-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.hero-title-sub {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-top: 0.5rem;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-tagline em { color: var(--gold); font-style: normal; }

.hero-description {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-phone {
  animation: fadeInUp 0.8s ease 0.7s both;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.phone-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
}
.phone-number {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.phone-number:hover { color: var(--gold-light); }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--gray-mid);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
}
.scroll-arrow {
  animation: bounce 2s infinite;
  margin-top: 0.25rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-rich) 0%, #1a0033 60%, #0d0d1a 100%);
  padding-top: var(--nav-height);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(75, 0, 130, 0.2) 0%, transparent 70%);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
.page-hero-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
}

/* ===== SERVICES TEASER ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  display: block;
  padding: 2.5rem 2rem;
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  color: inherit;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card--featured {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(160deg, var(--gray-light), rgba(75, 0, 130, 0.2));
}
.service-card--featured::before { transform: scaleX(1); }

.service-badge-card {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ===== ABOUT TEASER ===== */
.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-teaser-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}
.about-teaser-text .section-title { margin-bottom: 1.5rem; }

.owner-card {
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.owner-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold-dark));
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
}
.owner-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
}
.owner-title { font-size: 0.9rem; color: var(--text-light); margin: 0.25rem 0; }
.owner-location { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 1rem; }
.owner-quote {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding: 1rem;
  background: rgba(0,0,0,0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  text-align: left;
}
.owner-stars { color: var(--gold); font-size: 1.1rem; }

/* ===== TESTIMONIAL TEASER ===== */
.testimonials-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-mini-card {
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-mini-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; }
.testimonial-mini-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-dark) 100%);
  padding: 4rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cta-band-text p { color: var(--cream); opacity: 0.85; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black-rich);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--cream);
  display: block;
  margin-top: 0.5rem;
}
.footer-tagline {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.footer-links h4, .footer-contact h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text-light); }
.footer-contact a { color: var(--text-light); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-mid); }
.footer-elvis-note {
  color: var(--purple-light) !important;
  margin-top: 0.25rem;
}

/* ===== SERVICE DETAIL ===== */
.service-section { }
.service-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.service-detail--reverse {
  grid-template-columns: 2fr 1fr;
  direction: rtl;
}
.service-detail--reverse > * { direction: ltr; }
.service-detail-icon-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  text-align: center;
  position: relative;
}
.service-detail-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}
.service-badge-float {
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  display: inline-block;
}
.service-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-detail-lead {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  border-left: 4px solid var(--gold);
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 4px 4px 0;
}
.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.service-features li {
  color: var(--cream);
  font-size: 0.9rem;
  padding: 0.5rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 4px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.about-portrait-col { position: sticky; top: calc(var(--nav-height) + 2rem); }
.portrait-frame {
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-gold);
}
.portrait-placeholder {
  background: linear-gradient(135deg, var(--purple-dark), var(--gray-light));
  padding: 3rem 2rem;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.portrait-initials {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}
.portrait-crown {
  font-size: 2rem;
  color: var(--gold);
  margin: 0.5rem 0;
}
.portrait-caption {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-top: 0.5rem;
  line-height: 1.4;
}
.portrait-caption span { font-size: 0.85rem; color: var(--text-light); font-style: italic; }
.owner-contact-card {
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
}
.owner-contact-card h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.owner-contact-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 0.5rem; }

.about-bio-col .section-title { color: var(--gold); }
.about-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.7;
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.about-quote cite {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 700;
}
.about-bio-col p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.about-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  border: 1px solid rgba(212, 175, 55, 0.15);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }
.about-subheading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 1.5rem 0 0.75rem;
}
.about-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.about-list li { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.about-list strong { color: var(--cream); }

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  transition: all var(--transition);
}
.value-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}
.value-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-card h3 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* ===== GALLERY ===== */
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-tab {
  padding: 0.6rem 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  background: transparent;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.gallery-item { transition: all var(--transition); }
.gallery-item.hidden { display: none; }

.before-after-card {
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--transition);
}
.before-after-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.ba-images {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
.ba-image { position: relative; flex: 1; border-radius: 4px; overflow: hidden; }
.ba-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 900;
  flex-shrink: 0;
}
.ba-label {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  z-index: 2;
}
.ba-label.before { background: rgba(180,0,0,0.8); color: white; }
.ba-label.after { background: rgba(0,130,0,0.8); color: white; }

/* CSS carpet placeholders */
.carpet-placeholder {
  height: 120px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.carpet-texture {
  position: absolute;
  inset: 0;
}
.carpet-texture.dirty {
  background: repeating-linear-gradient(
    45deg,
    rgba(100,80,60,0.6) 0px, rgba(100,80,60,0.6) 2px,
    rgba(80,60,40,0.4) 2px, rgba(80,60,40,0.4) 6px
  );
}
.carpet-texture.clean {
  background: repeating-linear-gradient(
    45deg,
    rgba(180,160,140,0.3) 0px, rgba(180,160,140,0.3) 2px,
    rgba(160,140,120,0.2) 2px, rgba(160,140,120,0.2) 6px
  );
}

.carpet-dirty { background-color: #5a4030; }
.carpet-clean { background-color: #c8b090; }
.carpet-dark { background-color: #3a2820; }
.carpet-dark-clean { background-color: #8a7060; }
.carpet-commercial-dirty { background-color: #4a4040; }
.carpet-commercial-clean { background-color: #9a9090; }
.carpet-jet-dirty { background-color: #303040; }
.carpet-jet-clean { background-color: #6070a0; }

.stain {
  position: absolute;
  border-radius: 50%;
  background: rgba(30,20,10,0.7);
  filter: blur(3px);
}
.stain-1 { width: 30px; height: 20px; top: 20%; left: 15%; }
.stain-2 { width: 20px; height: 25px; top: 60%; left: 60%; }
.stain-3 { width: 15px; height: 12px; top: 40%; left: 75%; }
.stain-4 { width: 25px; height: 18px; top: 70%; left: 25%; }
.stain-5 { width: 12px; height: 12px; top: 15%; left: 50%; }

.traffic-lane {
  position: absolute;
  left: 30%; right: 30%;
  top: 0; bottom: 0;
  background: rgba(0,0,0,0.35);
  filter: blur(4px);
}
.traffic-lane-2 { left: 20%; right: 50%; }

.ba-info {
  padding: 1rem 1.25rem 1.25rem;
}
.ba-info h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.ba-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.ba-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid;
}
.ba-tag.residential { color: var(--gold); border-color: var(--gold); }
.ba-tag.commercial { color: var(--purple-light); border-color: var(--purple-light); }
.ba-tag.jets { color: #60a0d0; border-color: #60a0d0; }

.gallery-cta-note {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius);
}
.gallery-note-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.gallery-note-icon { font-size: 2rem; flex-shrink: 0; }
.gallery-note-inner strong { color: var(--cream); }
.gallery-note-inner p { font-size: 0.9rem; color: var(--text-light); margin-top: 0.25rem; }

/* ===== TESTIMONIALS PAGE ===== */
.rating-summary-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 600px;
  margin: 0 auto;
}
.rating-big { text-align: center; flex-shrink: 0; }
.rating-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.rating-stars { color: var(--gold); font-size: 1.3rem; margin: 0.5rem 0; }
.rating-count { font-size: 0.75rem; color: var(--text-light); }
.rating-breakdown { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-light);
}
.rating-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--gold); border-radius: 3px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}
.testimonial-card--featured {
  grid-column: span 2;
  border-color: rgba(212, 175, 55, 0.25);
  background: linear-gradient(135deg, var(--gray-light), rgba(75,0,130,0.15));
}
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -1rem;
}
.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--gold-dark));
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author { font-weight: 700; color: var(--cream); font-size: 0.9rem; }
.testimonial-location { font-size: 0.8rem; color: var(--gray-mid); }
.testimonial-author-info { display: flex; flex-direction: column; gap: 0.15rem; }

.review-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.review-cta-inner p { color: var(--text-light); margin-bottom: 2rem; }
.review-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-col .section-title { color: var(--gold); margin-bottom: 1rem; }
.contact-info-col > p { color: var(--text-light); margin-bottom: 1.5rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: var(--border-radius);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.contact-method-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  color: inherit;
  transform: translateX(4px);
}
.contact-method-card--primary {
  border-color: rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, var(--gray-light), rgba(75,0,130,0.2));
}
.contact-method-icon { font-size: 1.8rem; flex-shrink: 0; }
.contact-method-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); }
.contact-method-value { font-size: 1rem; font-weight: 700; color: var(--cream); margin: 0.15rem 0; }
.contact-method-note { font-size: 0.8rem; color: var(--text-light); }

.service-area-box {
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius);
}
.service-area-box h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.service-area-box p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 0.75rem; }
.area-list { display: flex; flex-direction: column; gap: 0.3rem; }
.area-list li { font-size: 0.9rem; color: var(--cream); padding-left: 1rem; position: relative; }
.area-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 0.6rem; top: 0.35rem; }

.contact-form-card {
  background: var(--gray-light);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.form-header {
  padding: 2rem 2rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.form-header p { font-size: 0.9rem; color: var(--text-light); }

.contact-form { padding: 0 2rem 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group select option { background: var(--black); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-top: 0.75rem;
}
.form-success {
  padding: 3rem 2rem;
  text-align: center;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.form-success p { color: var(--text-light); }

/* Map */
.map-section {
  background: var(--black-rich);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}
.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}
.map-pin-icon { font-size: 3rem; }
.map-pin-text { color: var(--cream); }
.map-pin-text strong { font-family: var(--font-heading); color: var(--gold); font-size: 1.1rem; }
.map-pin-text { font-size: 0.9rem; line-height: 1.8; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonials-mini { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--featured { grid-column: span 2; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait-col { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail--reverse { direction: ltr; }
  .service-features { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav-links.open { max-height: 500px; }
  .nav-link, .nav-cta { width: 100%; text-align: center; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero { min-height: 90vh; }
  .elvis-silhouette { opacity: 0.04; right: -5%; }
  .hero-actions { flex-direction: column; align-items: center; }

  .about-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-portrait-col { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: span 1; }
  .rating-summary-inner { flex-direction: column; gap: 2rem; text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 480px) {
  .section-padded { padding: 3rem 0; }
  .about-stats { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-phone { flex-direction: column; gap: 0.25rem; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black-rich); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ===== SELECTION ===== */
::selection { background: var(--gold); color: var(--black); }
