/* Max Electrical Services - styles.css */
/* Design: Bold industrial electric - dark bg, red-orange (#F0503B) primary, yellow (#ECE70E) accent */

:root {
  --primary: #F0503B;
  --primary-dark: #D4432F;
  --accent: #ECE70E;
  --dark: #0D0D0D;
  --dark-surface: #1A1A1A;
  --dark-card: #222222;
  --dark-border: #333333;
  --light: #F5F5F5;
  --white: #FFFFFF;
  --text: #E0E0E0;
  --text-muted: #999999;
  --font-display: 'Teko', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--dark);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

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

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

/* ─── TOP BAR ─── */

.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  padding: 6px 0;
}
.top-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.top-bar-text { opacity: 0.9; }
.top-bar-phone {
  color: var(--white); font-weight: 700;
  text-decoration: none; letter-spacing: 0.5px;
}
.top-bar-phone:hover { color: var(--accent); }

/* ─── HEADER ─── */

.site-header {
  background: var(--dark-surface);
  border-bottom: 1px solid var(--dark-border);
  position: sticky; top: 0; z-index: 100;
  padding: 0;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--white);
}
.logo-img { width: 50px; height: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: var(--text-muted); font-weight: 500; font-size: 15px;
  padding: 8px 14px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--primary); color: var(--white);
  padding: 10px 20px; border-radius: 6px;
  font-weight: 600; font-size: 14px; margin-left: 8px;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); }

/* Mobile toggle */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; position: relative;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark-surface); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: 2px;
  transition: color 0.15s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--primary); }
.mobile-nav-cta {
  margin-top: 16px; background: var(--primary); color: var(--white);
  padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 18px;
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
}

/* ─── HERO ─── */

.hero {
  position: relative; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.7) 50%, rgba(240,80,59,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 80px 0; }
.hero-badge {
  display: inline-block;
  background: var(--primary); color: var(--white);
  padding: 6px 18px; border-radius: 4px;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700; line-height: 1.05;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: 6px;
  font-weight: 600; font-size: 15px;
  transition: all 0.15s; cursor: pointer;
  border: none; text-decoration: none;
  min-height: 44px; min-width: 44px;
}
.btn-primary {
  background: var(--primary); color: var(--white);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(240,80,59,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: var(--dark-card); color: var(--white);
  border: 1px solid var(--dark-border);
}
.btn-secondary:hover { background: var(--dark-border); color: var(--white); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); color: var(--white); transform: translateY(-1px); }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-full { width: 100%; }

/* ─── STATS BAR ─── */

.stats-bar {
  background: var(--dark-surface);
  border-top: 3px solid var(--primary);
  padding: 40px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-item { }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px; font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-text-value {
  font-size: 48px;
}
.stat-label {
  display: block;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

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

/* ─── SECTION TITLES ─── */

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--white);
  text-align: center; margin-bottom: 16px;
}
.section-sub {
  text-align: center; max-width: 700px; margin: 0 auto 48px;
  color: var(--text-muted); font-size: 17px; line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 40px; }

/* ─── SERVICES OVERVIEW (index) ─── */

.services-overview {
  padding: 80px 0;
  background: var(--dark);
}
.services-cats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.service-cat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.service-cat-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.service-cat-img { height: 200px; overflow: hidden; }
.service-cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.service-cat-card:hover .service-cat-img img { transform: scale(1.05); }
.service-cat-name {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 600;
  color: var(--primary); padding: 20px 24px 8px;
  text-transform: uppercase; letter-spacing: 1px;
}
.service-cat-list {
  list-style: none; padding: 0 24px 24px;
}
.service-cat-list li {
  padding: 6px 0; font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-cat-list li:last-child { border-bottom: none; }

@media (max-width: 600px) {
  .services-cats-grid { grid-template-columns: 1fr; }
}

/* ─── WHY CHOOSE US ─── */

.why-us {
  padding: 80px 0;
  background: var(--dark-surface);
}
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 32px 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.why-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.why-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(240,80,59,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.why-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ─── TESTIMONIALS ─── */

.testimonials-preview {
  padding: 80px 0;
  background: var(--dark);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 32px;
  border-left: 4px solid var(--primary);
}
.testimonial-stars {
  font-size: 20px; color: var(--accent);
  margin-bottom: 12px; letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 16px; line-height: 1.7;
  color: var(--text); margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card cite {
  font-size: 14px; color: var(--text-muted);
  font-style: normal;
}

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

/* Full testimonials page */
.testimonials-full { padding: 60px 0 80px; }
.testimonials-stack { max-width: 800px; margin: 0 auto; }
.testimonial-card-full {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 40px;
  margin-bottom: 24px;
  border-left: 4px solid var(--primary);
}
.testimonial-card-full .testimonial-stars {
  font-size: 22px; color: var(--accent);
  margin-bottom: 16px; letter-spacing: 2px;
}
.testimonial-card-full blockquote {
  font-size: 17px; line-height: 1.8;
  color: var(--text); margin-bottom: 16px;
  font-style: italic;
}
.testimonial-card-full cite {
  font-size: 14px; color: var(--text-muted);
  font-style: normal;
}

/* ─── CTA BANNER ─── */

.cta-banner {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px;
}
.cta-content p { color: rgba(255,255,255,0.85); font-size: 17px; margin-top: 8px; }
.cta-banner .btn-primary {
  background: var(--white); color: var(--primary);
}
.cta-banner .btn-primary:hover {
  background: var(--accent); color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

@media (max-width: 700px) {
  .cta-inner { flex-direction: column; text-align: center; }
}

/* ─── PAGE HERO ─── */

.page-hero {
  position: relative; min-height: 360px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.page-hero-short { min-height: 300px; }
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.9) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-bottom: 48px; padding-top: 80px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}
.page-hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 650px; line-height: 1.7;
}

/* ─── ABOUT PAGE ─── */

.about-intro { padding: 80px 0; }
.about-split {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px; align-items: center;
}
.about-lead {
  font-size: 18px; line-height: 1.8;
  color: var(--white); margin-bottom: 20px;
}
.about-text p { margin-bottom: 16px; }
.about-text .btn { margin-top: 16px; }
.about-image img { border-radius: 12px; }

.credentials-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px; margin-bottom: 8px;
}
.credential-badge {
  background: rgba(240,80,59,0.1);
  border: 1px solid rgba(240,80,59,0.3);
  color: var(--primary); padding: 6px 16px;
  border-radius: 6px; font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
}

.owner-bio {
  padding: 80px 0;
  background: var(--dark-surface);
}
.owner-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px; align-items: center;
}
.owner-image img { border-radius: 12px; }
.owner-text h2 {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 8px;
}
.owner-title {
  color: var(--primary); font-weight: 600;
  font-size: 15px; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}
.owner-text p:last-of-type { line-height: 1.7; }

@media (max-width: 800px) {
  .about-split, .owner-split { grid-template-columns: 1fr; }
  .owner-image { order: -1; }
}

/* ─── TRUST BADGES ─── */

.trust-badges { padding: 80px 0; background: var(--dark); }
.badges-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px; text-align: center;
}
.badges-grid-compact { grid-template-columns: repeat(4, 1fr); }
.badge-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 28px 16px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}
.badge-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 44px; font-weight: 700;
  color: var(--accent); line-height: 1;
  margin-bottom: 4px;
}
.badge-stars {
  display: block; font-size: 16px; color: var(--accent);
  margin-bottom: 4px; letter-spacing: 2px;
}
.badge-label {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-detail {
  display: block; font-size: 13px; color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 800px) { .badges-grid { grid-template-columns: repeat(3, 1fr); } .badges-grid-compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .badges-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─── SERVICES PAGE ─── */

.service-category { padding: 64px 0; }
.service-category.alt-bg { background: var(--dark-surface); }
.cat-header { margin-bottom: 32px; }
.cat-title {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--primary); text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--dark-border);
}
.services-detail-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}
.service-detail-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 10px; padding: 28px;
  transition: border-color 0.3s;
}
.service-detail-card:hover { border-color: var(--primary); }
.service-detail-card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--white); margin-bottom: 10px;
  text-transform: uppercase;
}
.service-detail-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--text-muted); margin-bottom: 14px;
}
.service-points {
  list-style: none; padding: 0;
}
.service-points li {
  position: relative; padding-left: 20px;
  font-size: 14px; color: var(--text);
  margin-bottom: 6px;
}
.service-points li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 600px) {
  .services-detail-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT PAGE ─── */

.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 32px;
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item svg { flex-shrink: 0; color: var(--primary); margin-top: 3px; }
.contact-item strong { display: block; color: var(--white); margin-bottom: 2px; }
.contact-item a { color: var(--primary); font-weight: 500; }
.contact-item p { color: var(--text-muted); font-size: 15px; margin: 0; }

.contact-form-wrap {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 32px;
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 6px; color: var(--white);
  font-family: var(--font-body); font-size: 15px;
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-status {
  display: none; padding: 12px 16px;
  border-radius: 6px; margin-bottom: 16px;
  font-size: 14px;
}
.form-status.success {
  display: block; background: rgba(76,175,80,0.15);
  color: #81c784; border: 1px solid rgba(76,175,80,0.3);
}
.form-status.error {
  display: block; background: rgba(240,80,59,0.15);
  color: #ef9a9a; border: 1px solid rgba(240,80,59,0.3);
}

@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── MAP ─── */

.map-section { border-top: 3px solid var(--primary); }
#map { width: 100%; min-height: 400px; }

/* ─── FOOTER ─── */

.site-footer {
  background: var(--dark-surface);
  border-top: 1px solid var(--dark-border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo-link {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-bottom: 12px;
}
.footer-logo { width: 42px; height: auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--white); text-transform: uppercase;
}
.footer-tagline { color: var(--text-muted); font-size: 14px; margin-bottom: 4px; }
.footer-license { color: var(--text-muted); font-size: 13px; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600;
  color: var(--white); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}
.footer-link {
  display: block; color: var(--text-muted);
  font-size: 15px; padding: 4px 0;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--primary); }
.footer-text { color: var(--text-muted); font-size: 15px; margin-bottom: 8px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--dark-card); border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all 0.15s;
}
.social-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.footer-bottom {
  margin-top: 48px; padding: 20px 0;
  border-top: 1px solid var(--dark-border);
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─── SERVICE AREA (index) ─── */

.service-area-section {
  padding: 80px 0;
  background: var(--dark-surface);
}
.service-area-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.service-area-text p {
  font-size: 17px; line-height: 1.7;
  color: var(--text-muted); margin-top: 16px;
}
@media (max-width: 800px) {
  .service-area-inner { grid-template-columns: 1fr; }
}

/* ─── SCROLL REVEAL ─── */

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.why-grid .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.2s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.3s; }
.why-grid .why-card:nth-child(5) { transition-delay: 0.4s; }
.why-grid .why-card:nth-child(6) { transition-delay: 0.5s; }

.badges-grid .badge-card:nth-child(2) { transition-delay: 0.1s; }
.badges-grid .badge-card:nth-child(3) { transition-delay: 0.2s; }
.badges-grid .badge-card:nth-child(4) { transition-delay: 0.3s; }
.badges-grid .badge-card:nth-child(5) { transition-delay: 0.4s; }

.stats-grid .stat-item:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 0.3s; }

/* ─── REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { animation: none; transform: none; }
}
