/* ===========================
   TASHUD PROPERTY SOLUTIONS
   Main Stylesheet
   =========================== */

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000000;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* CSS VARIABLES */
:root {
  --yellow: #fff000;
  --yellow-dark: #cccc00;
  --black: #000000;
  --black2: #0d0d0d;
  --black3: #141414;
  --black4: #1a1a1a;
  --white: #ffffff;
  --gray: #888;
  --gray2: #555;
  --border: rgba(255,255,255,0.08);
}

/* TYPOGRAPHY */
.yellow { color: var(--yellow); }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.0;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--yellow);
  letter-spacing: 0.1em;
}
.logo--horizontal .logo-main { font-size: 40px; }
.logo-divider {
  width: 2px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.logo-sub {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: #ccc;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
}
.logo--horizontal .logo-sub {
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #ccc;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #ccc;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links .nav-cta {
  background: var(--yellow);
  color: #000 !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: background 0.2s, transform 0.1s !important;
}
.nav-links .nav-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251,191,36,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 18px; }
.btn-xl { padding: 20px 44px; font-size: 20px; }
.btn-full { width: 100%; }

.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.42;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.3) 40%,
    rgba(0,0,0,0.75) 100%
  );
}
.hero-content--centered {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.hero-title--wide {
  font-size: clamp(80px, 13vw, 160px);
}
.hero-content--centered .hero-sub {
  max-width: 640px;
  text-align: center;
}
.hero-content--centered .hero-trust {
  justify-content: center;
}
.hero-content--centered .hero-actions {
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(251,191,36,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251,191,36,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(251,191,36,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow--right {
  left: auto;
  right: -10%;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.3);
  color: var(--yellow);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeDown 0.7s ease both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-title .line1, .hero-title .line2, .hero-title .line3 {
  display: block;
}
.hero-title .line1 { animation: fadeRight 0.6s 0.1s ease both; }
.hero-title .line2 { animation: fadeRight 0.6s 0.2s ease both; }
.hero-title .line3 { animation: fadeRight 0.6s 0.3s ease both; }
.hero-sub {
  font-size: 18px;
  color: #bbb;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.4s ease both;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeUp 0.6s 0.5s ease both;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.6s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #aaa;
}
.trust-icon { font-size: 18px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray2);
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

/* ===== SPEED BAND ===== */
.speed-band {
  background: #222200;
  border-top: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  padding: 0;
}
.speed-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}
.speed-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  gap: 4px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
}
.speed-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  margin: 12px 0;
}

/* ===== SECTION HEADERS ===== */
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  border-left: 3px solid var(--yellow);
  padding-left: 12px;
  margin-bottom: 16px;
}
.section-header {
  margin-bottom: 56px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 100px 0;
  background: var(--black);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--black2);
  padding: 44px 36px;
  position: relative;
  transition: transform 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  background: var(--black3);
  transform: translateY(-4px);
  z-index: 2;
}
.service-card--featured {
  background: var(--yellow);
  color: #000;
}
.service-card--featured:hover { background: #FCD34D; }
.service-card--featured h3 { color: #000; }
.service-card--featured p { color: rgba(0,0,0,0.7); }
.service-card--featured .service-features li { color: rgba(0,0,0,0.8); }
.service-card--featured .service-features li::before { background: #000; }
.service-card--featured .service-link { color: #000; border-color: rgba(0,0,0,0.3); }
.service-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gray2);
  margin-bottom: 4px;
}
.service-card--featured .service-number { color: rgba(0,0,0,0.4); }
.service-icon-wrap { width: 56px; height: 56px; }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.service-card p { color: #ffffff; font-size: 15px; line-height: 1.6; }
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
  flex: 1;
}
.service-features li {
  font-size: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--yellow);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(251,191,36,0.3);
  padding-bottom: 2px;
  transition: gap 0.2s;
  width: fit-content;
}
.service-link:hover { gap: 8px; }
.services-cta { text-align: center; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--black2);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-body {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 36px;
  margin-top: 20px;
  line-height: 1.7;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-dot {
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.why-point strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.why-point p { color: #888; font-size: 14px; margin: 0; }
.why-visual { display: flex; align-items: center; justify-content: center; }
.why-card-stack { width: 100%; max-width: 380px; display: flex; flex-direction: column; gap: 16px; }
.why-big-card {
  background: var(--yellow);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.why-card-icon { font-size: 48px; }
.why-card-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: #000;
  letter-spacing: 0.05em;
}
.why-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}
.why-small-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-sm-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #aaa;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.why-sm-card span:first-child { font-size: 24px; }

/* ===== CTA STRIP ===== */
.cta-strip {
  padding: 80px 0;
  background: var(--black3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.04em;
}
.cta-text p { color: #888; font-size: 16px; margin-top: 8px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero--short { padding: 130px 0 60px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 10vw, 110px);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.page-hero-content p {
  color: #aaa;
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail--alt {
  background: var(--black2);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid--flip .service-detail-visual { order: 2; }
.service-detail-grid--flip .service-detail-text { order: 1; }
.svc-visual-box {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 360px;
  text-align: center;
}
.svc-visual-box--yellow {
  background: var(--yellow);
  border-color: var(--yellow-dark);
}
.svc-num-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(251,191,36,0.15);
  letter-spacing: 0.05em;
  margin-bottom: -20px;
}
.svc-big-icon { opacity: 0.9; }
.svc-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  color: var(--yellow);
  text-transform: uppercase;
}
.service-detail-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  margin-top: 12px;
}
.service-lead {
  font-size: 18px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 16px;
}
.service-detail-text p { color: #999; font-size: 15px; line-height: 1.7; margin-bottom: 32px; }
.detail-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.detail-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.df-icon {
  width: 28px;
  height: 28px;
  background: var(--yellow);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-feature strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.detail-feature p { color: #888; font-size: 14px; margin: 0; }

/* ===== DEPOSIT SECTION ===== */
.deposit-section {
  padding: 80px 0;
  background: var(--black2);
}
.deposit-box {
  background: linear-gradient(135deg, rgba(251,191,36,0.08), rgba(251,191,36,0.03));
  border: 1px solid rgba(251,191,36,0.25);
  border-radius: 12px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.deposit-icon { font-size: 48px; }
.deposit-text { flex: 1; min-width: 200px; }
.deposit-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.deposit-text p { color: #aaa; font-size: 15px; line-height: 1.6; }
.deposit-text strong { color: var(--yellow); }

/* ===== QUOTE PAGE ===== */
.quote-section {
  padding: 60px 0 100px;
}
.quote-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.progress-bar-wrap {
  margin-bottom: 40px;
}
.progress-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.progress-step:last-child { flex: 0; }
.ps-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black4);
  border: 2px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray);
  flex-shrink: 0;
  transition: all 0.3s;
}
.progress-step span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray2);
  white-space: nowrap;
  transition: color 0.3s;
}
.progress-step.active .ps-circle,
.progress-step.done .ps-circle {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}
.progress-step.active span,
.progress-step.done span { color: var(--yellow); }
.progress-line { flex: 1; height: 1px; background: var(--border); margin: 0 4px; }
.progress-track {
  height: 3px;
  background: var(--black4);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 25%;
}

.quote-form-box {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 48px;
}
.form-step { display: none; }
.form-step.active { display: block; }
.step-header { margin-bottom: 36px; }
.step-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.step-header p { color: #888; font-size: 15px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 32px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black3);
  border: 1px solid var(--gray2);
  border-radius: 6px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group select { appearance: none; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(251,191,36,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.step-actions { display: flex; gap: 16px; align-items: center; margin-top: 8px; }
.form-note { margin-top: 16px; color: #666; font-size: 13px; }
.form-note a { color: var(--yellow); text-decoration: none; }

/* Service select cards */
.service-select-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 36px; }
.svc-select-card {
  background: var(--black3);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 28px 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  text-align: center;
}
.svc-select-card:hover { border-color: rgba(251,191,36,0.4); background: var(--black4); }
.svc-select-card.selected {
  border-color: var(--yellow);
  background: rgba(251,191,36,0.06);
}
.svc-select-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
}
.svc-select-card.selected .svc-select-check { display: flex; }
.svc-select-icon { font-size: 36px; margin-bottom: 12px; }
.svc-select-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.svc-select-card p { font-size: 13px; color: #888; line-height: 1.5; }

/* Conditional sections */
.conditional-section {
  display: none;
  background: rgba(251,191,36,0.04);
  border: 1px solid rgba(251,191,36,0.15);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 24px;
}
.conditional-section.visible { display: block; }
.conditional-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.radio-label, .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #aaa;
  cursor: pointer;
}
.radio-label input, .checkbox-label input { accent-color: var(--yellow); }

/* Estimate success */
.estimate-success { text-align: center; padding: 40px 0; }
.success-icon { font-size: 64px; margin-bottom: 20px; }
.estimate-success h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 0.04em; margin-bottom: 16px; }
.success-lead { color: #aaa; font-size: 16px; max-width: 500px; margin: 0 auto 32px; line-height: 1.7; }
.estimate-summary {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  text-align: left;
  margin-bottom: 24px;
}
.es-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: #aaa; }
.es-row:last-child { border-bottom: none; }
.es-row strong { color: var(--white); }
.deposit-reminder {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  margin-bottom: 32px;
}
.dep-icon { font-size: 24px; }
.deposit-reminder strong { display: block; font-size: 15px; margin-bottom: 4px; }
.deposit-reminder p { font-size: 13px; color: #888; margin: 0; }
.success-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* QUOTE - NEW STACKED LAYOUT */
.quote-wrap-new {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.quote-top-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
/* SIDEBAR / INFO CARDS */
.quote-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 90px; }
.sidebar-card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 20px;
}
.sc-icon { font-size: 28px; margin-bottom: 10px; }
.sidebar-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.sidebar-card p { color: #aaa; font-size: 13px; line-height: 1.5; }
.sidebar-phone {
  display: block;
  color: var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-top: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 60px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.contact-intro { color: #aaa; font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-decoration: none;
  color: var(--white);
  transition: border-color 0.2s, transform 0.2s;
}
.contact-method:hover { border-color: rgba(251,191,36,0.4); transform: translateX(4px); }
.contact-method--primary { border-color: rgba(251,191,36,0.3); background: rgba(251,191,36,0.04); }
.cm-icon { font-size: 28px; }
.cm-body { display: flex; flex-direction: column; gap: 2px; }
.cm-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--yellow); }
.cm-value { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 0.05em; }
.cm-note { font-size: 13px; color: #666; }
.response-promise {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(251,191,36,0.06);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 32px;
}
.rp-badge { font-size: 32px; }
.rp-text strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--yellow); }
.rp-text p { font-size: 13px; color: #888; margin: 0; line-height: 1.6; }
.service-area-box { }
.service-area-box h3 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.06em; margin-bottom: 12px; color: #aaa; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tags span {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
}
.contact-form-box {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  position: sticky;
  top: 90px;
}
.cfb-header { margin-bottom: 32px; }
.cfb-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 0.04em; margin-bottom: 8px; }
.cfb-header p { color: #888; font-size: 14px; }
.contact-sent { text-align: center; padding: 40px 0; }
.sent-icon { font-size: 56px; margin-bottom: 16px; }
.contact-sent h3 { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 0.04em; margin-bottom: 12px; }
.contact-sent p { color: #aaa; font-size: 15px; }
.contact-sent a { color: var(--yellow); text-decoration: none; }

/* EMERGENCY BAND */
.emergency-band {
  background: #1a0000;
  border-top: 2px solid #ff3333;
  border-bottom: 2px solid #ff3333;
  padding: 60px 0;
}
.emergency-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.emg-tag {
  display: inline-block;
  background: #ff3333;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 8px;
}
.emg-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 0.04em; color: #fff; margin-bottom: 8px; }
.emg-text p { color: #bbb; font-size: 16px; }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251,191,36,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(251,191,36,0); }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: #666; font-size: 14px; margin-top: 12px; line-height: 1.6; max-width: 240px; }
.footer-nav h4, .footer-contact h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: var(--yellow); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--yellow); }
.footer-contact p { font-size: 13px; color: #555; }
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.25);
  color: var(--yellow) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  width: fit-content;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { color: #444; font-size: 13px; }

/* ===== SOCIAL LINKS ===== */
.footer-grid--with-social {
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
}
.footer-social h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.social-links { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  border: 1px solid var(--border);
  color: #ccc;
}
.social-link--ig:hover { background: rgba(225,48,108,0.12); border-color: rgba(225,48,108,0.4); color: #e1306c; }
.social-link--yt:hover { background: rgba(255,0,0,0.10); border-color: rgba(255,0,0,0.35); color: #ff0000; }
.social-note { font-size: 12px; color: #555; line-height: 1.5; }

/* ===== QUOTE CONFIRMATION STEP ===== */
.confirm-summary-box {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  text-align: left;
  margin-bottom: 24px;
}
.confirm-next-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}
.cns-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}
.cns-icon { font-size: 24px; flex-shrink: 0; }
.cns-item strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--white); }
.cns-item p { font-size: 13px; color: #888; margin: 0; line-height: 1.6; }

/* ===== ANIMATIONS ===== */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeRight { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== ESTIMATE PRICE BOX ===== */
.estimate-price-box {
  background: #0d0d0d;
  border: 2px solid var(--yellow);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  text-align: left;
}
.ep-total-row {
  background: var(--yellow);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ep-total-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #000;
}
.ep-total-range {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: #000;
  line-height: 1;
}
.ep-breakdown {
  padding: 16px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ep-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: #bbb;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ep-line:last-child { border-bottom: none; }
.ep-deposit-row {
  padding: 20px 28px;
  background: rgba(255,240,0,0.05);
}
.ep-deposit-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ep-dep-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ep-dep-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}
.ep-dep-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--yellow);
}

/* ===== SERVICE PHOTO BOXES ===== */
.svc-photo-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid var(--border);
}
.svc-photo-box img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.svc-photo-box:hover img { transform: scale(1.03); }
.svc-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--yellow);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 4px;
}

/* ===== SECTION SUBTITLE ===== */
.section-subtitle {
  font-size: 17px;
  color: #ffffff;
  margin-top: 12px;
  font-weight: 500;
}

/* ===== HERO BADGE GLOW FIX ===== */
.hero-badge {
  background: rgba(255,240,0,0.10);
  border-color: rgba(255,240,0,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card--featured { order: -1; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .footer-grid, .footer-grid--with-social { grid-template-columns: 1fr 1fr; }
  .quote-top-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-box { position: static; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid--flip .service-detail-visual { order: -1; }
  .service-detail-grid--flip .service-detail-text { order: 0; }
  .svc-photo-box, .svc-photo-box img { min-height: 260px; }
}

@media (max-width: 768px) {
  /* NAV */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { text-align: center; }
  .nav-inner { height: 60px; }

  /* LOGO */
  .logo--horizontal { gap: 6px; }
  .logo--horizontal .logo-main { font-size: 22px; }
  .logo--horizontal .logo-sub { font-size: 10px; letter-spacing: 0.1em; }
  .logo-divider { height: 20px; }

  /* HERO */
  .hero { padding: 90px 20px 60px; }
  .hero-title { font-size: clamp(52px, 16vw, 90px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-sub { font-size: 16px; }
  .hero-trust { gap: 16px; }
  .trust-item { font-size: 12px; }

  /* SPEED BAND */
  .speed-inner { flex-wrap: wrap; }
  .speed-stat { min-width: 48%; padding: 20px 8px; }
  .stat-num { font-size: 36px; }
  .stat-label { font-size: 10px; }
  .speed-divider { display: none; }

  /* SECTIONS */
  .section-title { font-size: clamp(40px, 10vw, 60px); }
  .services-preview { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }

  /* SERVICE CARDS */
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 32px 24px; }

  /* CTA STRIP */
  .cta-strip { padding: 48px 0; }
  .cta-strip-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-text h2 { font-size: 36px; }
  .cta-actions { justify-content: center; flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; text-align: center; }

  /* WHY US */
  .why-us { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-visual { display: none; }
  .why-small-cards { grid-template-columns: 1fr; }

  /* PAGE HERO */
  .page-hero { padding: 100px 0 48px; }
  .page-title { font-size: clamp(48px, 14vw, 80px); }

  /* SERVICE DETAIL */
  .service-detail { padding: 48px 0; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-grid--flip .service-detail-visual { order: -1; }
  .service-detail-grid--flip .service-detail-text { order: 0; }
  .svc-photo-box, .svc-photo-box img { min-height: 220px; }
  .service-detail-title { font-size: clamp(40px, 10vw, 60px); }
  .service-lead { font-size: 16px; }

  /* QUOTE PAGE */
  .quote-section { padding: 32px 0 60px; }
  .quote-wrap-new { gap: 20px; }
  .quote-top-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .sidebar-card { padding: 16px 14px; }
  .sidebar-card h3 { font-size: 15px; }
  .sidebar-card p { font-size: 12px; }
  .quote-form-box { padding: 24px 16px; }
  .step-header h2 { font-size: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
  .service-select-grid { grid-template-columns: 1fr; }
  .step-actions { flex-direction: column; align-items: stretch; }
  .step-actions .btn { text-align: center; }
  .progress-step span { display: none; }
  .ep-deposit-cols { grid-template-columns: 1fr; }

  /* CONTACT */
  .contact-section { padding: 32px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form-box { position: static; padding: 24px 16px; }
  .contact-info-title { font-size: 36px; }

  /* EMERGENCY BAND */
  .emergency-band { padding: 40px 0; }
  .emergency-inner { flex-direction: column; text-align: center; gap: 24px; }
  .emg-text h2 { font-size: 32px; }
  .btn-xl { padding: 16px 32px; font-size: 17px; }

  /* DEPOSIT */
  .deposit-section { padding: 48px 0; }
  .deposit-box { flex-direction: column; padding: 28px 20px; }

  /* FOOTER */
  .footer-grid, .footer-grid--with-social { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

  /* CONFIRMATION STEP */
  .confirm-next-steps { gap: 12px; }
  .cns-item { padding: 16px; }
  .success-actions { flex-direction: column; align-items: center; }
  .success-actions .btn { width: 100%; max-width: 320px; text-align: center; }
  .estimate-success { padding: 20px 0; }
}

/* ===== HOME QUOTE SECTION ===== */
.home-quote-section {
  padding: 80px 0;
  background: var(--black2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.home-quote-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.home-quote-header { text-align: center; }
.home-quote-header p { color: #aaa; font-size: 16px; margin-top: 8px; }
.home-quote-form-box {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.hq-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.hq-step {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.hq-step:last-child { flex: 0; }
.hq-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black4);
  border: 2px solid var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray);
  flex-shrink: 0;
  transition: all 0.3s;
}
.hq-step span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray2);
  white-space: nowrap;
  transition: color 0.3s;
}
.hq-step.active .hq-circle, .hq-step.done .hq-circle {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}
.hq-step.active span, .hq-step.done span { color: var(--yellow); }
.hq-line { flex: 1; height: 1px; background: var(--border); margin: 0 4px; }
.hq-track {
  height: 3px;
  background: var(--black4);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 32px;
}
.hq-fill {
  height: 100%;
  background: var(--yellow);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 25%;
}
.hq-form-step { display: none; }
.hq-form-step.active { display: block; }

@media (max-width: 768px) {
  .home-quote-form-box { padding: 24px 16px; }
  .hq-step span { display: none; }
}

/* ===== TWO SERVICE GRID ===== */
.services-grid--two {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto 56px;
}

/* ===== THREE SERVICE GRID ===== */
.services-grid--three {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto 56px;
}
@media (max-width: 900px) {
  .services-grid--three { grid-template-columns: 1fr; }
}
.service-card--large {
  padding: 48px 40px;
}
.service-card--large h3 { font-size: 36px; }
.service-select-grid--two {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .services-grid--two { grid-template-columns: 1fr; }
  .service-select-grid--two { grid-template-columns: 1fr; }
  .service-card--large { padding: 32px 24px; }
}

/* ===== SERVICE CARD PHOTO BACKGROUNDS ===== */
.service-card--photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.service-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  transition: opacity 0.3s;
  z-index: 0;
}
.service-card--photo:hover::before { opacity: 0.28; }
.service-card--photo > * { position: relative; z-index: 1; }
.service-card--demo::before { background-image: url('service-demo.jpg'); }
.service-card--junk::before { background-image: url('service-junk.jpg'); }
