/* ==========================================================================
   THE RIGHT TOUCH CLEANING SERVICES - BOLD MAGENTA & BLACK IDENTITY
   Brand Direction: High-Impact T-Mobile Magenta (#E20074), Jet Black (#000000 / #0D0D11)
   & Crisp Stark White (#FFFFFF). Giant Typography & Dynamic Graphic Elements.
   ========================================================================== */

:root {
  /* Core Bold Brand Colors */
  --color-magenta: #e20074;
  --color-magenta-glow: #ff007f;
  --color-magenta-dark: #b8005d;
  --color-magenta-light: rgba(226, 0, 116, 0.12);
  --color-magenta-border: rgba(226, 0, 116, 0.35);

  --color-black: #08090b;
  --color-black-surface: #111318;
  --color-black-card: #181a22;
  --color-black-border: rgba(255, 255, 255, 0.1);

  --color-white: #ffffff;
  --color-offwhite: #f8f9fc;
  --color-text-dark: #090a0d;
  --color-text-body: #374151;
  --color-text-muted: #94a3b8;
  --color-text-light: #ffffff;

  --color-gold: #f59e0b;
  --color-gold-bg: rgba(245, 158, 11, 0.12);

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

  /* Spacing & Radii */
  --max-width: 1240px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  /* High Impact Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.16);
  --shadow-magenta: 0 8px 32px rgba(226, 0, 116, 0.45);
  --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.35);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ==========================================================================
   Typography & Bold Graphics
   ========================================================================== */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.text-magenta {
  color: var(--color-magenta-glow);
}

.text-white {
  color: var(--color-white);
}

/* Large Graphic Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-magenta {
  background: var(--color-magenta);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(226, 0, 116, 0.5);
}

.badge-outline-magenta {
  background: rgba(226, 0, 116, 0.15);
  border: 1.5px solid var(--color-magenta-glow);
  color: #ffffff;
}

.badge-google {
  background: #ffffff;
  color: var(--color-black);
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Giant Statement Typography */
.giant-title {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-magenta-glow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-magenta {
  background: var(--color-magenta);
  color: #ffffff;
  box-shadow: var(--shadow-magenta);
}

.btn-magenta:hover {
  background: var(--color-magenta-glow);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(255, 0, 127, 0.65);
}

.btn-black {
  background: #000000;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-black:hover {
  border-color: var(--color-magenta-glow);
  color: var(--color-magenta-glow);
  transform: translateY(-3px);
}

.btn-white {
  background: #ffffff;
  color: var(--color-black);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--color-magenta);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation (Sleek Black + Magenta Glow)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(8, 9, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(226, 0, 116, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 9, 11, 0.98);
  border-bottom-color: var(--color-magenta);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1360px;
  gap: 1.25rem;
}

.logo-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(226, 0, 116, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.header-brand-titles {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.header-brand-name {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.header-brand-sub {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-magenta-glow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  white-space: nowrap;
  flex-shrink: 1;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 800;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.25rem 0;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-magenta-glow);
}

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

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-phone-btn span {
  white-space: nowrap;
}

.header-phone-btn:hover {
  background: var(--color-magenta);
  border-color: var(--color-magenta);
}

.btn-quote {
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   Hero Section (Bold Black & Magenta Visual Showcase)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 0 6rem;
  background: radial-gradient(circle at 85% 20%, rgba(226, 0, 116, 0.28) 0%, transparent 55%),
              radial-gradient(circle at 15% 85%, rgba(226, 0, 116, 0.15) 0%, transparent 45%),
              #08090b;
  overflow: hidden;
}

/* Giant background watermark slogan */
.hero-watermark {
  position: absolute;
  top: 15%;
  right: -5%;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  line-height: 0.8;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-title-main {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.25rem;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.hero-cta-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* Hero Trust Metrics Grid */
.hero-metrics-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.metric-card {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual & Large Logo Integration */
.hero-visual-col {
  position: relative;
}

.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(226, 0, 116, 0.4);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(226, 0, 116, 0.25);
}

.hero-media-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-media-card:hover img {
  transform: scale(1.03);
}

/* Large Graphic Floating Badge */
.hero-graphic-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: rgba(8, 9, 11, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2.5px solid var(--color-magenta);
  border-radius: var(--radius-xl);
  padding: 1.5rem 1.85rem;
  box-shadow: var(--shadow-card), 0 0 35px rgba(226, 0, 116, 0.45);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  max-width: 440px;
  z-index: 3;
}

.badge-logo-icon {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(226, 0, 116, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-info-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.badge-info-text span {
  font-size: 0.92rem;
  color: #cbd5e1;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  margin-top: 0.35rem;
}

/* ==========================================================================
   Continuous Marquee Reviews Ticker (High Energy Graphic Element)
   ========================================================================== */
.marquee-section {
  background: var(--color-magenta);
  padding: 1.1rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 30px rgba(226, 0, 116, 0.5);
  transform: rotate(-0.5deg);
  margin: 1.5rem -10px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.marquee-star {
  color: #ffeb3b;
  font-size: 1.3rem;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Differentiator Section (Detra's Core Focus: "IN THE DETAILS")
   ========================================================================== */
.differentiator-section {
  padding: 7rem 0;
  background: #0d0e12;
  position: relative;
}

.diff-hero-banner {
  background: linear-gradient(135deg, #161820 0%, #0d0e12 100%);
  border: 3px solid var(--color-magenta);
  border-radius: var(--radius-xl);
  padding: 4.5rem 3.5rem;
  text-align: center;
  margin-bottom: 4.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(226, 0, 116, 0.2);
  position: relative;
  overflow: hidden;
}

.diff-quote-icon {
  font-size: 5rem;
  color: var(--color-magenta-glow);
  line-height: 0.6;
  margin-bottom: 1.5rem;
  font-family: Georgia, serif;
}

.diff-giant-quote {
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 980px;
  margin: 0 auto 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.diff-lead-p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}

.diff-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.2rem;
}

.diff-feature-card {
  background: var(--color-black-card);
  border: 2px solid var(--color-black-border);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  transition: var(--transition);
  position: relative;
}

.diff-feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-magenta);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(226, 0, 116, 0.2);
}

.diff-card-num {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-magenta-glow);
  margin-bottom: 1.25rem;
}

.diff-feature-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.diff-feature-card p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ==========================================================================
   Services Section (Bold High-Contrast Grid)
   ========================================================================== */
.services-section {
  padding: 7rem 0;
  background-color: var(--color-black);
}

.section-head-center {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-head-center .giant-title {
  margin-bottom: 1.25rem;
}

.section-head-center .section-subdesc {
  font-size: 1.2rem;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto;
}

.services-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.service-box-card {
  background: var(--color-black-surface);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-box-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-magenta);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(226, 0, 116, 0.3);
}

.service-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-box-card:hover .service-card-media img {
  transform: scale(1.08);
}

.service-tag-pill {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: #000000;
  color: var(--color-magenta-glow);
  border: 1.5px solid var(--color-magenta);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.service-box-body {
  padding: 2.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-box-body h3 {
  font-size: 1.55rem;
  color: #ffffff;
  margin-bottom: 0.95rem;
  text-transform: uppercase;
}

.service-box-body p {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-check-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #e2e8f0;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.service-check-list li svg {
  color: var(--color-magenta-glow);
  flex-shrink: 0;
}

.service-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-magenta-glow);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-action-link:hover {
  color: #ffffff;
  gap: 0.9rem;
}

/* ==========================================================================
   Real Google Reviews Showcase (4.9 ★ Rating on 15 Reviews)
   ========================================================================== */
.reviews-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, #0d0e12 0%, #08090b 100%);
  border-top: 2px solid rgba(226, 0, 116, 0.25);
  border-bottom: 2px solid rgba(226, 0, 116, 0.25);
  position: relative;
}

.reviews-score-banner {
  background: var(--color-black-card);
  border: 2px solid var(--color-magenta);
  border-radius: var(--radius-xl);
  padding: 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(226, 0, 116, 0.25);
}

.score-left-col {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.score-num-big {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.score-stars-col {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.score-stars-row {
  color: #f59e0b;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

.score-reviews-count {
  font-size: 1rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

.reviews-cards-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.review-speech-card {
  background: var(--color-black-surface);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-speech-card:hover {
  border-color: var(--color-magenta);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.review-speech-card.featured {
  border-color: var(--color-magenta);
  background: radial-gradient(circle at top right, rgba(226, 0, 116, 0.15) 0%, var(--color-black-surface) 100%);
}

.review-card-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

.review-quote-body {
  font-size: 1.05rem;
  color: #e2e8f0;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-style: italic;
  flex-grow: 1;
}

.review-person-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.person-details strong {
  display: block;
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 800;
}

.person-details span {
  font-size: 0.85rem;
  color: var(--color-magenta-glow);
  font-weight: 600;
}

.google-tag-pill {
  font-size: 0.78rem;
  font-weight: 800;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
}

/* ==========================================================================
   Gallery Section & Lightbox (Launch48 Standard)
   ========================================================================== */
.gallery-section {
  padding: 7rem 0;
  background: var(--color-black);
}

.gallery-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.gallery-preview-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: var(--color-black-surface);
}

.gallery-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 11, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-preview-card:hover .gallery-card-hover,
.gallery-preview-card:focus-visible .gallery-card-hover {
  opacity: 1;
}

.gallery-zoom-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-magenta);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(226, 0, 116, 0.7);
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

.gallery-preview-card:hover .gallery-zoom-badge {
  transform: scale(1.08);
}

.gallery-cta-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(226, 0, 116, 0.25) 0%, var(--color-black-card) 100%);
  border: 2px dashed var(--color-magenta);
  text-align: center;
  padding: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-cta-tile:hover {
  background: var(--color-magenta);
  transform: translateY(-4px);
  box-shadow: var(--shadow-magenta);
}

.gallery-cta-tile:hover .tile-title,
.gallery-cta-tile:hover .tile-desc,
.gallery-cta-tile:hover svg {
  color: #ffffff;
}

.tile-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0.5rem 0 0.25rem;
}

.tile-desc {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* Lightbox Modal (Frosted Glass Backdrop) */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.lightbox-wrapper {
  position: relative;
  max-width: 1040px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-stage {
  position: relative;
  width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
  border: 2px solid rgba(226, 0, 116, 0.4);
  background: #000000;
}

.lightbox-stage img {
  max-height: 75vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--color-magenta);
  border-color: var(--color-magenta);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 14, 18, 0.85);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-nav-btn:hover {
  background: var(--color-magenta);
  border-color: var(--color-magenta);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-info-bar {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.lightbox-counter {
  font-size: 1.05rem;
  color: #ffffff;
  font-weight: 800;
  background: var(--color-magenta);
  padding: 0.5rem 1.6rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 18px rgba(226, 0, 116, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Service Area & Schedule (Richmond Market)
   ========================================================================== */
.area-section {
  padding: 7rem 0;
  background-color: #0d0e12;
}

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

.area-content-card {
  background: var(--color-black-surface);
  border: 2px solid var(--color-black-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.area-towns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.town-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #000000;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  color: #ffffff;
}

.town-badge svg {
  color: var(--color-magenta-glow);
}

.hours-statement-box {
  background: rgba(226, 0, 116, 0.12);
  border: 2px solid var(--color-magenta);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.hours-top-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.hours-title-text {
  font-weight: 900;
  color: #ffffff;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.hours-time-val {
  color: var(--color-magenta-glow);
  font-weight: 900;
  font-size: 1.15rem;
}

.hours-lastminute-p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.55;
}

.map-viewport-frame {
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--color-magenta);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.map-viewport-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Contact & Quote Form Section (Arcyverion Mailer Gateway)
   ========================================================================== */
.contact-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--color-black) 0%, #050608 100%);
  border-top: 2px solid rgba(226, 0, 116, 0.3);
}

.contact-grid-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
}

.contact-info-col h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.contact-lead-p {
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-action-tiles {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-tile-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-black-surface);
  border: 2px solid var(--color-black-border);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-tile-link:hover {
  border-color: var(--color-magenta);
  transform: translateX(8px);
  background: rgba(226, 0, 116, 0.1);
  box-shadow: 0 10px 30px rgba(226, 0, 116, 0.25);
}

.contact-tile-icon {
  width: 56px;
  height: 56px;
  background: var(--color-magenta);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(226, 0, 116, 0.5);
}

.contact-tile-label {
  font-size: 0.85rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.contact-tile-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #ffffff;
}

/* Quote Form Card */
.quote-form-container {
  background: var(--color-black-surface);
  border: 2px solid var(--color-magenta);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(226, 0, 116, 0.25);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-label .req {
  color: var(--color-magenta-glow);
}

.form-input {
  width: 100%;
  background: #000000;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  color: #ffffff;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-magenta);
  box-shadow: 0 0 0 4px rgba(226, 0, 116, 0.35);
  background: #08090b;
}

.form-input::placeholder {
  color: #64748b;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23e20074' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 3rem;
}

select.form-input option {
  background: #000000;
  color: #ffffff;
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-status-alert {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: none;
}

.form-status-alert.success {
  display: block;
  background: rgba(16, 185, 129, 0.2);
  border: 2px solid #10b981;
  color: #34d399;
}

.form-status-alert.error {
  display: block;
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid #ef4444;
  color: #f87171;
}

.btn-form-submit {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.15rem;
}

.btn-form-submit.loading {
  opacity: 0.75;
  pointer-events: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #040507;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 5rem 0 2.5rem;
  color: #94a3b8;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand-bio p {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 320px;
}

.footer-column h4 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 0.75rem;
}

.footer-nav-list a {
  font-size: 0.95rem;
  color: #94a3b8;
}

.footer-nav-list a:hover {
  color: var(--color-magenta-glow);
}

.footer-bottom-row {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .hero-visual-col {
    order: -1;
  }
  
  .hero-media-card img {
    height: 380px;
  }
  
  .contact-grid-layout,
  .area-grid-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }
  
  .site-header {
    width: 100%;
    max-width: 100vw;
  }

  .header-container {
    padding: 0 1rem;
    gap: 0.5rem;
    max-width: 100vw;
  }

  .header-logo-img {
    width: 40px;
    height: 40px;
  }

  .header-brand-name {
    font-size: 1.05rem;
  }

  .header-brand-sub {
    font-size: 0.68rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #08090b;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.75rem;
    border-bottom: 2px solid var(--color-magenta);
    transform: translateY(-150%);
    transition: transform 0.35s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
  }
  
  .nav-menu.open {
    transform: translateY(0);
  }
  
  .header-actions .btn-quote {
    display: none;
  }
  
  .header-actions {
    gap: 0.5rem;
  }

  .header-phone-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.88rem;
  }
  
  .form-row-2col,
  .area-towns-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-graphic-badge {
    position: static;
    margin-top: 1.25rem;
    max-width: 100%;
    padding: 1.2rem;
  }

  .badge-logo-icon {
    width: 70px;
    height: 70px;
  }
  
  .hero-metrics-bar {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .reviews-score-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .lightbox-modal {
    padding: 0.75rem;
    max-width: 100vw;
  }

  .lightbox-stage {
    max-height: 62vh;
    border-radius: var(--radius-sm);
  }

  .lightbox-stage img {
    max-height: 62vh;
  }

  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }

  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: -46px;
    right: 0;
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .contact-tile-value {
    word-break: break-all;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .header-phone-btn span {
    display: none;
  }

  .header-phone-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .giant-title {
    font-size: 2.2rem;
  }

  .hero-title-main {
    font-size: 2.3rem;
  }

  .hero-cta-box {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-box .btn {
    width: 100%;
  }

  .diff-giant-quote {
    font-size: 1.8rem;
  }

  .services-grid-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .gallery-preview-card {
    height: 180px;
  }

  .reviews-cards-masonry {
    grid-template-columns: 1fr;
  }

  .area-content-card,
  .quote-form-container {
    padding: 1.5rem;
  }
}
