/* ==========================================================================
   NORTHERN ILLINOIS CLEANING SERVICES LLC - STYLESHEET
   ========================================================================== */

:root {
  /* Brand Colors from Logo */
  --primary-blue: #0088cc;
  --primary-dark: #004b7a;
  --primary-deep: #07223b;
  --accent-blue: #00a4e4;
  --accent-light: #e5f6fd;
  
  --brand-green: #6ea824;
  --brand-green-dark: #588a1b;
  --brand-green-light: #eef7e4;
  
  --dark: #132238;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 75, 122, 0.08), 0 2px 4px -2px rgba(0, 75, 122, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0, 75, 122, 0.1), 0 4px 6px -4px rgba(0, 75, 122, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(0, 75, 122, 0.15), 0 8px 10px -6px rgba(0, 75, 122, 0.05);
  
  /* Transitions */
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --container-max: 1240px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--light-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-deep);
  line-height: 1.25;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

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

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

a:hover {
  color: var(--brand-green);
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 136, 204, 0.35);
}

.btn-primary:hover {
  background-color: #0072aa;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.45);
}

.btn-green {
  background-color: var(--brand-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(110, 168, 36, 0.35);
}

.btn-green:hover {
  background-color: var(--brand-green-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-deep);
  color: #ffffff;
}

.btn-secondary:hover {
  background-color: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--primary-deep);
  transform: translateY(-2px);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-outline-primary:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary-deep);
}

.btn-white:hover {
  background-color: #f1f5f9;
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-cyan {
  background-color: var(--accent-light);
  color: var(--primary-blue);
  border: 1px solid rgba(0, 136, 204, 0.2);
}

.badge-green {
  background-color: var(--brand-green-light);
  color: var(--brand-green);
  border: 1px solid rgba(110, 168, 36, 0.25);
}

.badge-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   TOP BAR & HEADER NAVIGATION
   ========================================================================== */
.top-bar {
  background-color: var(--primary-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar a:hover {
  color: #72d4ff;
}

/* Base Site Header: Modern Transparent at Top */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrolled State & Mobile Menu Open State: Solid White Frosted Glass */
.site-header.scrolled,
.site-header.menu-open {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 4px 20px -2px rgba(7, 34, 59, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-inner {
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-img-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  transition: width 0.3s ease, height 0.3s ease, filter 0.3s ease;
}

.site-header.scrolled .logo-img-mark {
  width: 44px;
  height: 44px;
  filter: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-header.scrolled .logo-title,
.site-header.menu-open .logo-title {
  color: var(--primary-blue);
  text-shadow: none;
}

.logo-subtitle {
  font-size: 0.8rem;
  font-weight: 800;
  color: #94e82b;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-header.scrolled .logo-subtitle,
.site-header.menu-open .logo-subtitle {
  color: var(--brand-green);
  text-shadow: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

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

.nav-link:hover, .nav-link.active {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(114, 212, 255, 0.5);
}

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

/* Scrolled Nav Links */
.site-header.scrolled .nav-link {
  color: var(--text-main);
  text-shadow: none;
}

.site-header.scrolled .nav-link::after {
  background-color: var(--primary-blue);
}

.site-header.scrolled .nav-link:hover, 
.site-header.scrolled .nav-link.active {
  color: var(--primary-blue);
  text-shadow: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Estimate button in transparent state has subtle glow */
.site-header:not(.scrolled) .nav-actions .btn-primary {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.5);
}

.mobile-social-menu-item {
  display: none;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.site-header.scrolled .mobile-toggle,
.site-header.menu-open .mobile-toggle {
  color: var(--primary-deep);
}

/* Anchor smooth scrolling offset */
section[id], div[id] {
  scroll-margin-top: 85px;
}

/* ==========================================================================
   PAGE HERO / SUBPAGE BANNER
   ========================================================================== */
.page-banner {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 60%, var(--primary-blue) 100%);
  color: #ffffff;
  margin-top: -84px;
  padding: calc(84px + 3.5rem) 0 3.25rem;
  position: relative;
  overflow: hidden;
}

.page-banner h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  max-width: 650px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: #72d4ff;
}

/* ==========================================================================
   HOMEPAGE HERO SECTION - CRESCENT CLEANING CINEMATIC VIDEO HERO
   ========================================================================== */
.hero-video-section {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -84px;
  padding: calc(84px + 6rem) 0 8.5rem;
  overflow: hidden;
  background-color: var(--primary-deep);
  color: #ffffff;
}

/* Background Video Container */
.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-element {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}

.hero-video-element.active {
  opacity: 1;
}

/* Dark Cinematic Navy/Blue Gradient Overlay */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(7, 34, 59, 0.72) 0%,
    rgba(7, 34, 59, 0.48) 45%,
    rgba(7, 34, 59, 0.88) 100%
  );
  backdrop-filter: blur(1px);
}

/* Hero Content */
.hero-video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-giant-title {
  font-family: var(--font-heading);
  font-size: 3.85rem;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.65);
}

.hero-giant-title span.text-highlight {
  display: block;
  color: #72d4ff;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 0.45rem;
}

/* Scroll Down Indicator */
.hero-scroll-down {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.35rem;
  animation: heroBounce 2s infinite;
  text-decoration: none;
  transition: var(--transition);
}

.hero-scroll-down:hover {
  color: #72d4ff;
}

@keyframes heroBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

@media (max-width: 768px) {
  .hero-video-section {
    min-height: 85vh;
    margin-top: -76px;
    padding: calc(76px + 3rem) 0 4.5rem;
  }

  .hero-giant-title {
    font-size: 2.35rem;
    margin-bottom: 0;
  }
}

/* ==========================================================================
   STATS STRIP
   ========================================================================== */
.stats-strip {
  background-color: #ffffff;
  padding: 2.25rem 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 10;
  margin-top: -30px;
  border-radius: var(--radius-xl);
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  max-width: var(--container-max);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 0 1rem;
  border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.section {
  padding: 5rem 0;
}

.section-light {
  background-color: var(--light-bg);
}

.section-white {
  background-color: #ffffff;
}

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

.section-header .badge {
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

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

.service-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 136, 204, 0.4);
}

.service-thumb-wrap {
  position: relative;
  height: 250px;
  overflow: visible;
}

.service-thumb-main {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  position: relative;
  background-color: #07223b;
}

.service-thumb-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.service-card:hover .service-thumb-main img {
  transform: scale(1.06);
}

/* Category Badge (Top Left of Thumbnail) */
.service-category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 34, 59, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.service-category-tag i {
  color: var(--brand-green);
}

/* Parallax Subimage Floating Card (Shifted down and to the right into whitespace) */
.service-subimage-card {
  position: absolute;
  bottom: -36px;
  right: -22px;
  width: 192px;
  height: 142px;
  border-radius: 18px;
  border: none;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  z-index: 5;
  -webkit-transform: translate3d(0, var(--subimage-y, 0px), 0);
  transform: translate3d(0, var(--subimage-y, 0px), 0);
  transition: box-shadow 0.3s ease;
  will-change: transform;
}

.service-card:hover .service-subimage-card {
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.5);
}

.subimage-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background-color: #07223b;
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}

.service-card:hover .subimage-inner {
  transform: scale(1.04);
}

.subimage-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .subimage-inner img {
  transform: scale(1.08);
}

.service-body {
  padding: 2.25rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--primary-deep);
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.service-features li i {
  color: var(--brand-green);
  font-size: 0.8rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-blue);
}

.service-link:hover {
  color: var(--brand-green);
  gap: 0.6rem;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-img-stack {
  position: relative;
}

.feature-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 440px;
}

.feature-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  max-width: 240px;
}

.feature-badge-box h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: var(--primary-deep);
}

.feature-badge-box p {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-top: 1.75rem;
}

.feature-item {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  color: var(--primary-blue);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid rgba(0, 136, 204, 0.15);
}

.feature-item-body h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.feature-item-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   GALLERY PAGE & SHOWCASE
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background-color: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25);
}

/* ==========================================================================
   Creative Transformation Gallery (Dual Before & After with Indicator)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.gallery-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 48, 80, 0.1);
  box-shadow: 0 4px 20px rgba(0, 48, 80, 0.05);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.2, 0, 0.2, 1),
              border-color 0.3s ease;
  position: relative;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 48, 80, 0.1);
  border-color: rgba(0, 136, 204, 0.25);
}

.card-header-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding: 0 0.25rem;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.card-title-clean {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin: 0;
}

.category-tag-clean {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-blue);
  background: rgba(0, 136, 204, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.transform-duo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  border-radius: var(--radius-lg);
  align-items: stretch;
}

.photo-pane,
.showcase-photo-pane {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  background-color: #07223b;
  cursor: pointer;
}

.showcase-photo-pane {
  height: 280px;
}

.photo-pane img,
.showcase-photo-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0, 0.2, 1),
              filter 0.4s ease;
}

/* Grayscale on Before image to emphasize dirty vs pristine transformation */
.before-pane img {
  filter: grayscale(88%) contrast(92%);
}

.before-pane:hover img {
  filter: grayscale(0%) contrast(100%);
}

.photo-pane:hover img,
.showcase-photo-pane:hover img {
  transform: scale(1.05);
}

/* Status Badges */
.status-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.pill-before {
  background: rgba(220, 38, 38, 0.92);
  color: #ffffff;
}

.pill-after {
  background: rgba(22, 163, 74, 0.95);
  color: #ffffff;
}

.pill-showcase {
  background: rgba(0, 75, 122, 0.88);
  color: #ffffff;
}

/* Floating Center Indicator Arrow */
.transform-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  pointer-events: none;
}

.indicator-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(0, 48, 80, 0.2);
  border: 2px solid var(--brand-green);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.transform-card:hover .indicator-icon {
  transform: scale(1.18);
  background: var(--brand-green);
  color: #ffffff;
}

/* Pane Zoom Icon */
.pane-zoom-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  z-index: 3;
}

.photo-pane:hover .pane-zoom-btn,
.showcase-photo-pane:hover .pane-zoom-btn {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .photo-pane {
    height: 165px;
  }
  .showcase-photo-pane {
    height: 220px;
  }
  .indicator-icon {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
}

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

.testimonial-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.star-rating {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand-green-light);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 0.95rem;
  color: var(--primary-deep);
  margin-bottom: 0.15rem;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-blue) 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  max-width: 600px;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT PAGE & FORMS
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
}

.form-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.form-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
}

.form-card p.form-subtitle {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background-color: #f8fafc;
  color: var(--text-main);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.15);
}

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

.form-status {
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
  margin-bottom: 1.25rem;
}

.form-status.success {
  display: block;
  background-color: var(--brand-green-light);
  color: var(--brand-green-dark);
  border: 1px solid rgba(110, 168, 36, 0.3);
}

.form-status.error {
  display: block;
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Contact Info Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-card {
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.contact-info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.65rem;
}

.contact-info-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-blue);
  border-radius: var(--radius-full);
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.95rem;
  color: var(--primary-deep);
  margin-bottom: 0.2rem;
}

.contact-item-text p, .contact-item-text a {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-item-text a:hover {
  color: var(--primary-blue);
}

/* ==========================================================================
   EDITORIAL MODERNIST - SCHEDULE & TERRITORY
   ========================================================================== */
.editorial-territory-section {
  position: relative;
  background-color: #f8fbfe;
  background-image: 
    radial-gradient(rgba(0, 102, 178, 0.06) 1.2px, transparent 1.2px),
    linear-gradient(180deg, #f8fbfe 0%, #edf4f9 100%);
  background-size: 28px 28px, 100% 100%;
  padding: 6rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 102, 178, 0.08);
  border-bottom: 1px solid rgba(0, 102, 178, 0.08);
}

/* Ambient glowing mesh orbs */
.editorial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.editorial-glow-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -150px;
  background: radial-gradient(circle, rgba(0, 164, 228, 0.15) 0%, rgba(0, 164, 228, 0) 70%);
}

.editorial-glow-2 {
  width: 550px;
  height: 550px;
  bottom: -150px;
  right: -120px;
  background: radial-gradient(circle, rgba(110, 168, 36, 0.12) 0%, rgba(110, 168, 36, 0) 70%);
}

.editorial-container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
}

/* Editorial Header */
.editorial-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.editorial-badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.editorial-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-deep);
  background: rgba(0, 136, 204, 0.08);
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: var(--radius-full);
}

.editorial-pill.pill-cyan {
  background: rgba(0, 164, 228, 0.1);
  color: #0077b6;
  border-color: rgba(0, 164, 228, 0.25);
}

.editorial-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e7029;
  background: rgba(110, 168, 36, 0.14);
  border: 1px solid rgba(110, 168, 36, 0.3);
  border-radius: var(--radius-full);
}

.editorial-live-status .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--brand-green);
  box-shadow: 0 0 8px var(--brand-green);
  animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.editorial-headline {
  font-size: 2.35rem;
  letter-spacing: -0.025em;
  line-height: 1.22;
  color: var(--primary-deep);
  margin-bottom: 0.85rem;
}

.editorial-subheadline {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Editorial Hours Grid */
.editorial-hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.editorial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-2xl, 24px);
  border: 1px solid rgba(0, 102, 178, 0.12);
  box-shadow: 0 16px 40px rgba(0, 48, 80, 0.05);
  padding: 3rem 2.75rem 2.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.editorial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(0, 48, 80, 0.1);
  border-color: rgba(0, 136, 204, 0.35);
}

/* Watermark typography */
.editorial-watermark {
  position: absolute;
  top: -10px;
  right: 15px;
  font-family: var(--font-heading);
  font-size: 5.2rem;
  font-weight: 900;
  color: rgba(0, 75, 122, 0.03);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.04em;
}

.editorial-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.editorial-tier-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(0, 48, 80, 0.08);
}

.editorial-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-green);
  background: rgba(110, 168, 36, 0.12);
  padding: 0.32rem 0.72rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.editorial-tag.tag-blue {
  color: var(--primary-blue);
  background: rgba(0, 136, 204, 0.1);
}

.editorial-metric {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.editorial-time-display {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.15rem;
}

.editorial-time-display.commercial {
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
}

.editorial-time-display.commercial .editorial-time-badge {
  margin-left: 0;
  white-space: nowrap;
}

.editorial-time-val {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
  line-height: 1;
}

.editorial-time-val small {
  font-size: 1.1rem;
  font-weight: 700;
  margin-left: 0.2rem;
  color: var(--primary-blue);
}

.editorial-time-sep {
  font-size: 1.8rem;
  color: #cbd5e1;
  font-weight: 300;
}

.editorial-time-badge {
  background: rgba(0, 136, 204, 0.12);
  color: var(--primary-blue);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  margin-left: 0.75rem;
}

.editorial-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  flex: 1;
}

.editorial-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.editorial-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}

.editorial-feature-item i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(110, 168, 36, 0.15);
  color: var(--brand-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Editorial Territory Showcase */
.editorial-territory-showcase {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-2xl, 24px);
  border: 1px solid rgba(0, 102, 178, 0.12);
  box-shadow: 0 20px 45px rgba(0, 48, 80, 0.06);
  padding: 3.5rem 3.25rem;
  overflow: hidden;
}

.editorial-watermark-number {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-heading);
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 136, 204, 0.035);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.05em;
  z-index: 1;
}

.territory-top-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.territory-title-wrap {
  max-width: 620px;
}

.territory-title-wrap h3 {
  font-size: 1.85rem;
  letter-spacing: -0.02em;
  color: var(--primary-deep);
  margin: 0.75rem 0 0.5rem;
}

.territory-title-wrap p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.territory-quick-cta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary-deep);
  border: 1.5px solid rgba(0, 48, 80, 0.2);
  padding: 0.85rem 1.65rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(7, 34, 59, 0.2);
}

/* Territory Radar Graphic (DeKalb Center Orbit with Simulated Regional Map Underlay) */
.territory-radar-diagram {
  position: relative;
  z-index: 2;
  background: radial-gradient(circle at center, #ffffff 0%, #f0f6fa 100%);
  border: 1px solid rgba(0, 102, 178, 0.16);
  border-radius: var(--radius-xl);
  height: 560px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 2px 12px rgba(0, 48, 80, 0.04);
}

/* Simulated Vector Map Underlay (Subtle Abstract Radar Watermark) */
.radar-map-underlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.18;
}

.radar-map-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Concentric Radar Distance Rings */
.radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(0, 136, 204, 0.22);
  pointer-events: none;
}

.radar-ring-1 {
  width: 200px;
  height: 200px;
  border-color: rgba(0, 136, 204, 0.25);
  background: rgba(0, 136, 204, 0.02);
}

.radar-ring-2 {
  width: 360px;
  height: 360px;
  border-color: rgba(0, 136, 204, 0.18);
}

.radar-ring-3 {
  width: 520px;
  height: 520px;
  border-color: rgba(0, 136, 204, 0.12);
}

/* Subtle cross-axes */
.radar-axis-x {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 136, 204, 0.12) 50%, transparent 100%);
  pointer-events: none;
}

.radar-axis-y {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 136, 204, 0.12) 50%, transparent 100%);
  pointer-events: none;
}

/* Radar Center Node (DeKalb) */
.radar-center-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.center-core-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-deep) 0%, #004b7a 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(7, 34, 59, 0.28);
  border: 2px solid #ffffff;
  transition: transform 0.25s ease;
  cursor: default;
}

.center-core-pill i {
  color: #72d4ff;
  font-size: 1.05rem;
}

.center-core-caption {
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  background: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 136, 204, 0.2);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Continuous Pulse Wave & Radar Sweep Beam (Animation Feature 3) */
.radar-pulse-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin-top: -45px;
  margin-left: -45px;
  border-radius: 50%;
  background: rgba(0, 164, 228, 0.25);
  animation: radarRipple 3s cubic-bezier(0.1, 0.5, 0.2, 1) infinite;
  pointer-events: none;
  z-index: -1;
}

.radar-sweep-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  margin-top: -260px;
  margin-left: -260px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 290deg, rgba(0, 164, 228, 0.02) 325deg, rgba(0, 164, 228, 0.16) 360deg);
  pointer-events: none;
  z-index: 2;
  animation: radarSweepSpin 8s linear infinite;
}

@keyframes radarSweepSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes radarRipple {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* Satellite City Pills (Strictly Non-Overlapping Radial Positions) */
.satellite-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid rgba(0, 48, 80, 0.14);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 48, 80, 0.06);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: all 0.22s cubic-bezier(0.2, 0, 0.2, 1);
  white-space: nowrap;
  user-select: none;
  z-index: 3;
}

.satellite-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-green);
  margin-right: 0.45rem;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: satellitePulse 2.8s infinite;
}

@keyframes satellitePulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.satellite-pill:hover {
  background: var(--primary-deep);
  color: #ffffff;
  border-color: var(--primary-deep);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 20px rgba(7, 34, 59, 0.22);
  z-index: 12;
}

.satellite-pill:hover::before {
  background-color: #72d4ff;
}

/* Inner Orbit (4 items at 90 deg quadrants) */
.pos-north-close    { top: 29%; left: 50%; } /* Sycamore (North) */
.pos-east-close     { top: 50%; left: 71%; } /* Cortland (East) */
.pos-south-close    { top: 71%; left: 50%; } /* Maple Park (South) */
.pos-west-close     { top: 50%; left: 29%; } /* Kingston (West) */

/* Mid Orbit (6 items well-spaced) */
.pos-northwest-mid  { top: 22%; left: 28%; } /* Belvidere (NW) */
.pos-north-mid      { top: 16%; left: 63%; } /* Genoa (NNE) */
.pos-northeast-mid  { top: 32%; left: 81%; } /* Hampshire (ENE) */
.pos-southwest-mid  { top: 69%; left: 23%; } /* Sandwich (SW) */
.pos-west-mid       { top: 40%; left: 16%; } /* Rochelle (WNW) */
.pos-east-mid       { top: 62%; left: 79%; } /* Elburn (ESE) */
.pos-south-mid      { top: 83%; left: 38%; } /* Somonauk (SSW) */

/* Outer Orbit (6 items along perimeter with zero collision) */
.pos-northeast-outer { top: 11%; left: 84%; } /* Elgin (NE edge) */
.pos-east-outer      { top: 46%; left: 91%; } /* St. Charles (Far East) */
.pos-southeast-outer { top: 75%; left: 88%; } /* Geneva (SE edge) */
.pos-south-outer     { top: 88%; left: 76%; } /* Batavia (SSE edge) */
.pos-far-southeast   { top: 92%; left: 57%; } /* Yorkville (South edge) */
.pos-far-south       { top: 90%; left: 22%; } /* Plano (SSW edge) */

.territory-footer-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.88rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.notice-text {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.notice-text i {
  color: var(--primary-blue);
  font-size: 1rem;
}

.notice-link {
  color: var(--primary-blue);
  font-weight: 700;
  transition: var(--transition);
}

.notice-link:hover {
  color: var(--primary-deep);
  text-decoration: underline;
}

/* Responsive Media Queries for Editorial Layout */
@media (max-width: 1024px) {
  .editorial-hours-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .territory-top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .editorial-territory-section {
    padding: 4rem 0;
  }

  .editorial-headline {
    font-size: 1.95rem;
  }

  .editorial-card {
    padding: 1.85rem 1.35rem 1.6rem;
  }

  .editorial-tag {
    font-size: 0.74rem;
    padding: 0.28rem 0.65rem;
    letter-spacing: 0.03em;
  }

  .editorial-metric {
    font-size: 0.78rem;
    letter-spacing: 0.03em;
  }

  .editorial-time-val {
    font-size: 2.1rem;
  }

  .editorial-territory-showcase {
    padding: 2.25rem 1.25rem;
  }

  .territory-radar-diagram {
    height: 440px;
  }

  .satellite-pill {
    font-size: 0.75rem;
    padding: 0.28rem 0.65rem;
  }

  .editorial-watermark-number {
    font-size: 8rem;
    right: -10px;
    bottom: -20px;
  }
}

@media (max-width: 520px) {
  .editorial-card {
    padding: 1.5rem 1.15rem 1.4rem;
  }

  .editorial-tier-meta {
    gap: 0.5rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.8rem;
  }

  .editorial-tag {
    font-size: 0.72rem;
    padding: 0.28rem 0.6rem;
    letter-spacing: 0.03em;
  }

  .editorial-metric {
    font-size: 0.76rem;
    letter-spacing: 0.03em;
  }

  .editorial-time-display {
    margin-bottom: 0.9rem;
  }

  .editorial-time-val {
    font-size: 1.95rem;
  }

  .editorial-time-badge {
    font-size: 0.76rem;
    padding: 0.28rem 0.65rem;
  }

  .editorial-watermark {
    font-size: 3.25rem;
    top: auto;
    bottom: 10px;
    right: 14px;
    color: rgba(0, 75, 122, 0.03);
  }

  .territory-radar-diagram {
    height: 480px;
  }

  .radar-ring-3 {
    width: 380px;
    height: 380px;
  }

  .satellite-pill {
    font-size: 0.7rem;
    padding: 0.22rem 0.55rem;
  }
}

.coverage-note-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.coverage-note-bar a {
  color: #72d4ff;
  font-weight: 700;
  transition: var(--transition);
}

.coverage-note-bar a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question i {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--primary-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.75rem 0 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-compact-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-compact {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 360px;
}

.footer-brand-compact p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.footer-hours-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.28rem 0.68rem;
  border-radius: var(--radius-full);
  margin-top: 0.25rem;
  width: fit-content;
}

.footer-hours-pill i {
  color: var(--brand-green);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.footer-nav-compact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav-compact a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav-compact a:hover,
.footer-nav-compact a.active {
  color: #72d4ff;
}

.footer-contact-compact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.footer-phone-pill i {
  color: var(--brand-green);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.footer-phone-pill:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(110, 168, 36, 0.35);
}

.footer-phone-pill:hover i {
  color: #ffffff;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}

.social-link:hover {
  background-color: #1877f2;
  border-color: #1877f2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link:last-child:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ea4335;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #72d4ff;
}

/* ==========================================================================
   LIGHTBOX MODAL FOR GALLERY
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background-color: rgba(7, 34, 59, 0.94);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

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

.lightbox-content {
  max-width: 900px;
  width: 100%;
  position: relative;
  background-color: #07223b;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
}

.lightbox-caption {
  padding: 1.25rem;
  background-color: var(--primary-deep);
  color: #ffffff;
}

.lightbox-caption h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  border-radius: 50%;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--primary-blue);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual {
    max-width: 550px;
    margin: 0 auto;
  }
  
  .services-grid, .gallery-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-split, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.3rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .stats-strip {
    margin-top: 1.5rem;
    padding: 1.75rem 1rem;
  }
  
  .services-grid, .gallery-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }
  
  .cta-actions {
    justify-content: center;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-card {
    padding: 1.75rem 1.25rem;
  }
  
  .header-inner {
    height: 76px;
  }

  .site-header.scrolled .header-inner {
    height: 66px;
  }

  .mobile-toggle {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 1.85rem;
    box-shadow: 0 20px 45px rgba(0, 48, 80, 0.16);
    border-top: 1px solid rgba(0, 48, 80, 0.08);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    gap: 0.35rem;
  }

  .site-header.scrolled .nav-links {
    top: 66px;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links > li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  /* Mobile menu links */
  .nav-links .nav-link {
    display: inline-block;
    color: var(--text-main) !important;
    text-shadow: none !important;
    font-size: 1.12rem;
    font-weight: 600;
    padding: 0.72rem 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 10px;
    border-bottom: none;
    transition: all 0.2s ease;
    text-align: center;
  }

  .nav-links .nav-link:hover {
    color: var(--primary-blue) !important;
    background-color: rgba(0, 136, 204, 0.05);
  }

  .nav-links .nav-link.active {
    color: var(--primary-blue) !important;
    background-color: rgba(0, 136, 204, 0.08);
    font-weight: 700;
  }

  .nav-links .nav-link::after {
    display: none;
  }
  
  .nav-actions .btn {
    display: none;
  }
  
  /* Mobile Hamburger Social Action Buttons */
  .mobile-social-menu-item {
    display: block !important;
    width: 100%;
    padding-top: 1.15rem;
    margin-top: 0.65rem;
    border-top: 1px solid rgba(0, 48, 80, 0.08);
  }

  .mobile-social-heading {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0.75rem;
  }

  .mobile-social-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .mobile-social-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    min-height: 46px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
  }

  .mobile-social-btn.btn-facebook {
    background-color: #1877f2;
    color: #ffffff !important;
    border: 1.5px solid #1877f2;
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.25);
  }

  .mobile-social-btn.btn-facebook i {
    font-size: 1.1rem;
    color: #ffffff;
  }

  .mobile-social-btn.btn-facebook:hover,
  .mobile-social-btn.btn-facebook:active {
    background-color: #0d65d9;
    border-color: #0d65d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.38);
    color: #ffffff !important;
  }

  .mobile-social-btn.btn-google {
    background-color: #ffffff;
    color: #1e293b !important;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .mobile-social-btn.btn-google .google-icon {
    flex-shrink: 0;
  }

  .mobile-social-btn.btn-google:hover,
  .mobile-social-btn.btn-google:active {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    color: #1e293b !important;
  }
  
  .footer-compact-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-bottom: 1.75rem;
  }

  .footer-brand-compact {
    max-width: 100%;
    width: 100%;
    gap: 0.85rem;
  }

  .footer-hours-pill {
    width: fit-content;
    padding: 0.28rem 0.65rem;
    font-size: 0.76rem;
    margin-top: 0.15rem;
  }

  .footer-nav-compact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem 1.4rem;
    width: 100%;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: visible;
  }

  .footer-nav-compact a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    padding: 0.2rem 0;
  }

  .footer-contact-compact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .footer-phone-pill {
    flex: 1;
    min-width: 190px;
    max-width: 240px;
    justify-content: center;
    padding: 0.68rem 1rem;
    font-size: 0.9rem;
  }

  .footer-socials {
    flex-shrink: 0;
    gap: 0.65rem;
  }

  .footer-bottom {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 1.25rem;
  }

  /* Hours & Coverage Responsive */
  .hours-schedule-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .coverage-hub {
    padding: 2.5rem 1.75rem;
  }

  .coverage-hub-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .coverage-towns-card {
    padding: 1.5rem 1.25rem;
  }

  .coverage-note-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .service-thumb-wrap {
    height: 230px;
  }

  .service-subimage-card {
    width: 165px;
    height: 124px;
    bottom: -28px;
    right: -12px;
    border-radius: 14px;
  }

  .subimage-inner {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .service-thumb-wrap,
  .schedule-thumb-wrap {
    height: 205px;
  }

  .service-subimage-card {
    width: 145px;
    height: 110px;
    bottom: -22px;
    right: -6px;
    border-radius: 12px;
  }

  .subimage-inner {
    border-radius: 12px;
  }

  .service-body,
  .schedule-card-body {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

/* ==========================================================================
   Scroll-Triggered Fade-In Animations (Fast & Responsive)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Snappy Stagger Delays */
.scroll-reveal.stagger-1 { transition-delay: 0.03s; }
.scroll-reveal.stagger-2 { transition-delay: 0.06s; }
.scroll-reveal.stagger-3 { transition-delay: 0.09s; }
.scroll-reveal.stagger-4 { transition-delay: 0.12s; }
.scroll-reveal.stagger-5 { transition-delay: 0.15s; }
.scroll-reveal.stagger-6 { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   ANIMATION FEATURE 1: Spotless Shimmer Light Sweep on Badges & Primary Buttons
   ========================================================================== */
.badge-cyan,
.badge-green,
.editorial-pill,
.editorial-live-status,
.btn-green,
.gallery-tag {
  position: relative;
  overflow: hidden;
}

.badge-cyan::after,
.badge-green::after,
.editorial-pill::after,
.editorial-live-status::after,
.btn-green::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -130%;
  width: 50%;
  height: 220%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 80%
  );
  transform: rotate(25deg);
  pointer-events: none;
  animation: spotlessShimmer 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spotlessShimmer {
  0% {
    left: -130%;
  }
  28%, 100% {
    left: 220%;
  }
}

/* ==========================================================================
   ANIMATION FEATURE 2: 3D Tilt & Cursor Glow Spotlight on Cards
   ========================================================================== */
.service-card,
.editorial-card {
  transform-style: preserve-3d;
  transition: transform 0.22s cubic-bezier(0.2, 0, 0.2, 1),
              box-shadow 0.22s cubic-bezier(0.2, 0, 0.2, 1),
              border-color 0.22s ease;
  position: relative;
}

.service-card::after,
.editorial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    450px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(0, 164, 228, 0.09),
    transparent 70%
  );
  pointer-events: none;
  opacity: var(--card-glow, 0);
  transition: opacity 0.3s ease;
  z-index: 4;
}

.service-card:hover,
.editorial-card:hover {
  --card-glow: 1;
}

/* ==========================================================================
   ANIMATION FEATURE: Editorial Masked "Slide-Up" Heading Reveal (Apple Style)
   ========================================================================== */
.heading-reveal-mask {
  overflow: hidden;
  display: block;
  padding-bottom: 4px;
}

.heading-reveal-mask > h1,
.heading-reveal-mask > h2,
.heading-reveal-mask > h3 {
  transform: translate3d(0, 110%, 0);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.45s ease;
  will-change: transform, opacity;
  margin-bottom: 0.25rem;
}

.revealed .heading-reveal-mask > h1,
.revealed .heading-reveal-mask > h2,
.revealed .heading-reveal-mask > h3,
.heading-reveal-mask.revealed > h1,
.heading-reveal-mask.revealed > h2,
.heading-reveal-mask.revealed > h3 {
  transform: translate3d(0, 0%, 0) !important;
  opacity: 1 !important;
}

@media (prefers-reduced-motion: reduce) {
  .heading-reveal-mask > h1,
  .heading-reveal-mask > h2,
  .heading-reveal-mask > h3 {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
}




