/* ============================================================
   Emergency Pipe and Drain Repair — theme.css
   ============================================================ */

/* ============================================================
   1. CSS Custom Properties
   ============================================================ */
:root {
  --navy-950: #020C1B;
  --navy-900: #0A1628;
  --navy-800: #0D1F3C;
  --navy-700: #112647;
  --navy-600: #163360;
  --blue-100: #C8DCFB;
  --orange: #FF4D00;
  --orange-dk: #D93F00;
  --orange-lt: #FF6B2B;
  --orange-pale: rgba(255,77,0,0.08);
  --white: #FFFFFF;
  --gray-50: #F5F7FB;
  --gray-100: #EBEEf4;
  --gray-200: #D2D8E5;
  --gray-400: #8A9BB5;
  --gray-600: #4A5770;
  --gray-800: #1C2940;
  --green: #16A34A;
  --green-lt: rgba(22,163,74,0.1);

  --container-max: 1200px;
  --section-py: 80px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--orange-dk);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-800);
}

p {
  line-height: 1.7;
}

/* ============================================================
   3. Container & Layout Utilities
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-py {
  padding: var(--section-py) 0;
}

.section-py--sm {
  padding: 56px 0;
}

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

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

/* ============================================================
   4. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,77,0,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--gray-50);
  color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 16px;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   5. Emergency Bar
   ============================================================ */
.epdr-emergency-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--orange-dk), var(--orange), var(--orange-lt));
  color: var(--white);
  padding: 10px 0;
}

.epdr-emergency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.epdr-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.epdr-live-dot__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  position: relative;
  flex-shrink: 0;
  animation: epdr-pulse 1.8s ease-in-out infinite;
}

@keyframes epdr-pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  50% { transform: scale(1.1); opacity: 0.9; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

.epdr-emergency-bar__text {
  font-size: 14px;
  font-weight: 500;
}

.epdr-emergency-bar__text span {
  display: inline;
}

.epdr-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.2);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition);
  white-space: nowrap;
}

.epdr-phone-pill:hover {
  background: rgba(0,0,0,0.35);
  color: var(--white);
}

.epdr-phone-pill svg {
  width: 14px;
  height: 14px;
}

/* Mobile: show only live dot + phone */
@media (max-width: 700px) {
  .epdr-emergency-bar__text {
    display: none;
  }
  .epdr-emergency-bar__inner {
    justify-content: space-between;
    padding: 0 16px;
  }
}

/* ============================================================
   6. Header / Navigation
   ============================================================ */
.epdr-header {
  background: var(--navy-900);
  position: relative;
  z-index: 100;
}

.epdr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.epdr-header__logo {
  flex-shrink: 0;
}

.epdr-header__logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.epdr-header__logo img {
  height: 50px;
  width: auto;
}

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

.epdr-logo-text__name {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: var(--white);
  line-height: 1.1;
}

.epdr-logo-text__tagline {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

.epdr-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.epdr-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.epdr-nav__menu > li {
  position: relative;
}

.epdr-nav__menu > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--blue-100);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}

.epdr-nav__menu > li > a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* Dropdown */
.epdr-nav__menu .has-dropdown {
  position: relative;
}

.epdr-nav__menu .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  margin-left: 6px;
  transition: transform var(--transition);
}

.epdr-nav__menu .has-dropdown:hover > a::after {
  transform: rotate(-135deg) translateY(-3px);
}

.epdr-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  list-style: none;
}

.epdr-nav__menu .has-dropdown:hover .epdr-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.epdr-dropdown li a {
  display: block;
  padding: 9px 14px;
  color: var(--blue-100);
  font-size: 14px;
  border-radius: 8px;
  transition: all var(--transition);
}

.epdr-dropdown li a:hover {
  background: var(--orange-pale);
  color: var(--orange-lt);
}

.epdr-nav__cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
  white-space: nowrap;
  margin-left: 8px;
}

.epdr-nav__cta:hover {
  background: var(--orange-dk);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,77,0,0.4);
}

/* Hamburger */
.epdr-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: background var(--transition);
}

.epdr-hamburger:hover {
  background: rgba(255,255,255,0.15);
}

.epdr-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.epdr-hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.epdr-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.epdr-hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.epdr-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 500;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.epdr-nav-overlay.is-open {
  display: flex;
}

.epdr-nav-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.epdr-nav-overlay__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
}

.epdr-nav-overlay__close:hover {
  background: rgba(255,255,255,0.18);
}

.epdr-nav-overlay__menu {
  list-style: none;
  flex: 1;
}

.epdr-nav-overlay__menu li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.epdr-nav-overlay__menu li a {
  display: block;
  padding: 16px 0;
  color: var(--blue-100);
  font-size: 18px;
  font-weight: 600;
  transition: color var(--transition);
}

.epdr-nav-overlay__menu li a:hover {
  color: var(--orange-lt);
}

.epdr-nav-overlay__cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1024px) {
  .epdr-nav { display: none; }
  .epdr-hamburger { display: flex; }
}

/* ============================================================
   7. Hero Section
   ============================================================ */
.epdr-hero {
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
  padding: 80px 0 120px;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.epdr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.epdr-hero__geo {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.epdr-hero__glow {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.epdr-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.epdr-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1px solid rgba(255,77,0,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-lt);
  margin-bottom: 20px;
}

.epdr-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: epdr-pulse 1.8s ease-in-out infinite;
}

.epdr-hero__h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.epdr-hero__h1 span {
  color: var(--orange);
}

.epdr-hero__desc {
  font-size: 18px;
  color: var(--blue-100);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.65;
}

.epdr-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.epdr-hero__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.epdr-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-100);
  font-size: 15px;
  font-weight: 500;
}

.epdr-trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-lt);
  flex-shrink: 0;
}

.epdr-trust-check svg {
  width: 12px;
  height: 12px;
  color: var(--green);
}

/* Hero right column */
.epdr-hero__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.epdr-hero__lottie-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 340px;
  margin: 0 auto;
}

.epdr-hero__lottie-fallback {
  width: 100%;
  height: auto;
}

.epdr-glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.epdr-glass-card__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.epdr-glass-card__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.epdr-glass-card__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--blue-100);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.epdr-glass-card__link:hover {
  background: var(--orange-pale);
  color: var(--orange-lt);
}

.epdr-glass-card__link svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .epdr-hero__inner {
    grid-template-columns: 1fr;
  }
  .epdr-hero__right {
    display: none;
  }
}

@media (max-width: 700px) {
  .epdr-hero {
    padding: 60px 0 100px;
  }
  .epdr-hero__actions {
    flex-direction: column;
  }
  .epdr-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   8. Stats Band
   ============================================================ */
.epdr-stats {
  background: var(--navy-800);
  padding: 56px 0;
}

.epdr-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.epdr-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.epdr-stats__number {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 52px);
  color: var(--orange);
  line-height: 1;
  display: block;
}

.epdr-stats__suffix {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--orange);
}

.epdr-stats__label {
  font-size: 15px;
  color: var(--blue-100);
  font-weight: 500;
}

@media (max-width: 900px) {
  .epdr-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .epdr-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

/* ============================================================
   9. Services Section
   ============================================================ */
.epdr-services {
  background: var(--white);
  padding: var(--section-py) 0;
}

.epdr-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.epdr-section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 12px;
}

.epdr-section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--navy-900);
}

.epdr-section-head p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
}

.epdr-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.epdr-service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid transparent;
}

.epdr-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--orange);
}

.epdr-service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}

.epdr-service-card:hover .epdr-service-card__icon {
  background: var(--orange);
}

.epdr-service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
  transition: color var(--transition);
}

.epdr-service-card:hover .epdr-service-card__icon svg {
  color: var(--white);
}

.epdr-service-card__title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
}

.epdr-service-card__desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.65;
}

.epdr-service-card__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.epdr-service-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
}

.epdr-service-card__bullets li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
}

.epdr-service-card__tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 50px;
}

@media (max-width: 1024px) {
  .epdr-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .epdr-services__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   10. Why Us / About
   ============================================================ */
.epdr-why {
  background: var(--gray-50);
  padding: var(--section-py) 0;
}

.epdr-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.epdr-why__left {
  background: var(--navy-900);
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.epdr-why__left::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.epdr-why__left h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
}

.epdr-why__left p {
  color: var(--blue-100);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
  position: relative;
}

.epdr-why__left .btn {
  position: relative;
}

.epdr-why__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.epdr-feature-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--border-radius);
  border: 1.5px solid var(--gray-100);
  transition: all var(--transition);
}

.epdr-feature-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.epdr-feature-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.epdr-feature-item__icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.epdr-feature-item__text h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy-900);
}

.epdr-feature-item__text p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

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

/* ============================================================
   11. How It Works
   ============================================================ */
.epdr-process {
  background: var(--white);
  padding: var(--section-py) 0;
}

.epdr-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.epdr-process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0,
    var(--orange) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.epdr-process__step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.epdr-process__step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 24px;
  color: var(--orange);
}

.epdr-process__step h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.epdr-process__step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .epdr-process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .epdr-process__steps::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .epdr-process__steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   12. Service Areas
   ============================================================ */
.epdr-areas {
  background: var(--navy-950);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.epdr-areas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.epdr-areas__inner {
  position: relative;
  z-index: 1;
}

.epdr-areas .epdr-section-head h2 {
  color: var(--white);
}

.epdr-areas .epdr-section-head p {
  color: var(--blue-100);
}

.epdr-areas__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}

.epdr-area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--blue-100);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.epdr-area-chip:hover {
  background: var(--orange-pale);
  border-color: var(--orange);
  color: var(--orange-lt);
}

.epdr-area-chip svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.epdr-areas__cta {
  text-align: center;
}

.epdr-areas__cta p {
  color: var(--blue-100);
  margin-bottom: 20px;
  font-size: 16px;
}

.epdr-areas__cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   13. Gallery Section
   ============================================================ */
.epdr-gallery {
  background: var(--white);
  padding: var(--section-py) 0;
}

.epdr-gallery__filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.epdr-gallery__filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.epdr-gallery__filter-btn:hover,
.epdr-gallery__filter-btn.is-active {
  background: var(--orange);
  color: var(--white);
}

.epdr-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.epdr-gallery__item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  cursor: pointer;
}

.epdr-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.epdr-gallery__item:hover img {
  transform: scale(1.05);
}

.epdr-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.epdr-gallery__item:hover .epdr-gallery__item-overlay {
  opacity: 1;
}

.epdr-gallery__item-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.epdr-gallery__item[data-category] {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.epdr-gallery__item.is-hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

/* Gallery empty state */
.epdr-gallery__empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--gray-400);
}

.epdr-gallery__empty svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--gray-200);
}

.epdr-gallery__empty p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* Gallery Swiper (mobile) */
.epdr-gallery__swiper {
  display: none;
}

.epdr-gallery__swiper .swiper-slide {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.epdr-gallery__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 700px) {
  .epdr-gallery__grid {
    display: none;
  }
  .epdr-gallery__swiper {
    display: block;
  }
}

@media (max-width: 1024px) {
  .epdr-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   14. Reviews
   ============================================================ */
.epdr-reviews {
  background: var(--gray-50);
  padding: var(--section-py) 0;
}

.epdr-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.epdr-review-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  border: 1.5px solid var(--gray-100);
  transition: all var(--transition);
}

.epdr-review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.epdr-review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.epdr-review-card__stars svg {
  width: 18px;
  height: 18px;
  fill: #F59E0B;
  color: #F59E0B;
}

.epdr-review-card__quote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.epdr-review-card__quote::before {
  content: '"';
  font-size: 36px;
  color: var(--orange);
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  line-height: 0;
  vertical-align: -12px;
  margin-right: 4px;
}

.epdr-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.epdr-review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.epdr-review-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
}

.epdr-review-card__location {
  font-size: 12px;
  color: var(--gray-400);
}

@media (max-width: 1024px) {
  .epdr-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .epdr-reviews__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   15. FAQ
   ============================================================ */
.epdr-faq {
  background: var(--white);
  padding: var(--section-py) 0;
}

.epdr-faq__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}

.epdr-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.epdr-faq__item {
  border: 1.5px solid var(--gray-100);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.epdr-faq__item.is-open {
  border-color: var(--orange);
}

.epdr-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  text-align: left;
  width: 100%;
}

.epdr-faq__question:hover {
  background: var(--gray-50);
}

.epdr-faq__item.is-open .epdr-faq__question {
  background: var(--orange-pale);
}

.epdr-faq__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.epdr-faq__item.is-open .epdr-faq__icon {
  background: var(--orange);
  transform: rotate(45deg);
}

.epdr-faq__icon svg {
  width: 14px;
  height: 14px;
  color: var(--gray-600);
}

.epdr-faq__item.is-open .epdr-faq__icon svg {
  color: var(--white);
}

.epdr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.epdr-faq__item.is-open .epdr-faq__answer {
  max-height: 500px;
}

.epdr-faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* FAQ right — sticky contact card */
.epdr-faq__contact-card {
  background: var(--navy-900);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  color: var(--white);
  position: sticky;
  top: 100px;
}

.epdr-faq__contact-card h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.epdr-faq__contact-card p {
  font-size: 14px;
  color: var(--blue-100);
  margin-bottom: 24px;
  line-height: 1.65;
}

.epdr-faq__contact-card .btn {
  width: 100%;
  margin-bottom: 12px;
}

.epdr-faq__contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.epdr-faq__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--blue-100);
}

.epdr-faq__contact-row svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .epdr-faq__inner {
    grid-template-columns: 1fr;
  }
  .epdr-faq__contact-card {
    position: static;
  }
}

/* ============================================================
   16. CTA Band
   ============================================================ */
.epdr-cta-band {
  background: linear-gradient(135deg, var(--orange-dk) 0%, var(--orange) 50%, var(--orange-lt) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.epdr-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.03) 10px,
    rgba(255,255,255,0.03) 20px
  );
}

.epdr-cta-band__inner {
  position: relative;
  z-index: 1;
}

.epdr-cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.epdr-cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   17. Footer
   ============================================================ */
.epdr-footer {
  background: var(--navy-950);
  color: var(--blue-100);
  padding: 64px 0 0;
}

.epdr-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.epdr-footer__brand p {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.epdr-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.epdr-footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}

.epdr-footer__social-link:hover {
  background: var(--orange);
  color: var(--white);
}

.epdr-footer__social-link svg {
  width: 16px;
  height: 16px;
}

.epdr-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.epdr-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.epdr-footer__links li a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color var(--transition);
}

.epdr-footer__links li a:hover {
  color: var(--orange-lt);
}

.epdr-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.epdr-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-400);
}

.epdr-footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.epdr-footer__contact-item a {
  color: var(--gray-400);
  transition: color var(--transition);
}

.epdr-footer__contact-item a:hover {
  color: var(--orange-lt);
}

.epdr-footer__bottom {
  padding: 20px 0;
}

.epdr-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.epdr-footer__copyright {
  font-size: 13px;
  color: var(--gray-400);
}

.epdr-footer__seo-areas {
  font-size: 12px;
  color: var(--gray-600);
  text-align: right;
}

.epdr-footer__seo-areas a {
  color: var(--gray-600);
  margin: 0 4px;
  transition: color var(--transition);
}

.epdr-footer__seo-areas a:hover {
  color: var(--orange-lt);
}

@media (max-width: 1024px) {
  .epdr-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .epdr-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .epdr-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .epdr-footer__seo-areas {
    text-align: center;
  }
}

/* ============================================================
   18. Page Templates
   ============================================================ */
.epdr-page-hero {
  background: var(--navy-900);
  padding: 56px 0;
  text-align: center;
}

.epdr-page-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
}

.epdr-page-content {
  padding: var(--section-py) 0;
}

.epdr-page-content .wp-content {
  max-width: 860px;
  margin: 0 auto;
}

.epdr-page-content .wp-content h2,
.epdr-page-content .wp-content h3 {
  margin-bottom: 16px;
  margin-top: 32px;
}

.epdr-page-content .wp-content p {
  margin-bottom: 18px;
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ============================================================
   19. AOS Compatibility
   ============================================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   20. Cookie Consent Overrides
   ============================================================ */
/* Overrides moved to cookie.css */

/* ============================================================
   21. Miscellaneous Utilities
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wp-block-image img {
  border-radius: var(--border-radius);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Scroll-to-top button */
.epdr-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(255,77,0,0.4);
}

.epdr-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.epdr-scroll-top:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
}

.epdr-scroll-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 480px) {
  :root {
    --section-py: 56px;
  }
  .container {
    padding: 0 16px;
  }
  .btn {
    padding: 12px 22px;
    font-size: 14px;
  }
  .btn--lg {
    padding: 15px 28px;
    font-size: 15px;
  }
}
