/* ========================================
   Irwin Electric - Midnight Spark Theme
   Deep navy + Electric amber + Teal accents
   Fonts: Sora (headings) + DM Sans (body)
   ======================================== */

:root {
  --color-navy: #0D1B2A;
  --color-navy-light: #1B2D45;
  --color-amber: #F0A500;
  --color-amber-light: #FFD166;
  --color-teal: #4ECDC4;
  --color-white: #FFFFFF;
  --color-offwhite: #F5F5F0;
  --color-light: #E8E8E3;
  --color-text: #2D3748;
  --color-text-light: #718096;
  --color-border: rgba(255,255,255,0.1);
  --color-border-dark: #E2E2DD;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.15s ease; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

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

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

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--color-amber); margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--color-amber);
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem; color: var(--color-text-light);
  max-width: 640px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.text-center .section-label { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-heading); font-size: 0.95rem; font-weight: 600;
  transition: all 0.15s ease; cursor: pointer; border: 2px solid transparent;
  min-height: 48px;
}
.btn-primary {
  background: var(--color-amber); color: var(--color-navy);
  border-color: var(--color-amber);
}
.btn-primary:hover { background: var(--color-amber-light); border-color: var(--color-amber-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(240,165,0,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:focus-visible { outline: 3px solid var(--color-teal); outline-offset: 2px; }

.btn-outline {
  background: transparent; color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--color-white); background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.btn-outline:active { transform: translateY(0); }
.btn-outline:focus-visible { outline: 3px solid var(--color-teal); outline-offset: 2px; }

.btn-outline-dark {
  background: transparent; color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.btn-outline-dark:hover { background: var(--color-navy); color: var(--color-white); transform: translateY(-1px); }
.btn-outline-dark:active { transform: translateY(0); }
.btn-outline-dark:focus-visible { outline: 3px solid var(--color-amber); outline-offset: 2px; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; padding: 16px 0;
  background: rgba(13,27,42,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 0.3s ease, background 0.3s ease;
}
.header.scrolled { padding: 10px 0; background: rgba(13,27,42,0.97); }
.header .container { display: flex; align-items: center; justify-content: space-between; }

.logo {
  font-family: var(--font-heading); font-size: 1.35rem; font-weight: 800;
  color: var(--color-white); display: flex; align-items: center; gap: 6px;
}
.logo .bolt { color: var(--color-amber); font-size: 1.3em; }

.nav-desktop { display: flex; gap: 32px; }
.nav-desktop a {
  color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500;
  position: relative; transition: color 0.15s ease;
}
.nav-desktop a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--color-amber);
  transition: width 0.3s var(--ease-out);
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--color-white); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }
.nav-desktop a:focus-visible { outline: 2px solid var(--color-amber); outline-offset: 4px; border-radius: 2px; }

.nav-cta {
  background: var(--color-amber); color: var(--color-navy) !important;
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem;
  transition: all 0.15s ease;
}
.nav-cta:hover { background: var(--color-amber-light); transform: translateY(-1px); }
.nav-cta:focus-visible { outline: 3px solid var(--color-teal); outline-offset: 2px; }

/* Mobile toggle */
.mobile-toggle { display: none; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--color-white); transition: all 0.3s ease; display: block; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-navy); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav.open { display: flex; opacity: 1; pointer-events: auto; }
.mobile-nav a {
  color: var(--color-white); font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 600;
}
.mobile-nav a:hover { color: var(--color-amber); }
.mobile-nav-cta {
  background: var(--color-amber); color: var(--color-navy) !important;
  padding: 14px 32px; border-radius: var(--radius); font-size: 1.1rem !important;
  margin-top: 16px;
}

/* Hero */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--color-navy);
  overflow: hidden; padding: 120px 0 80px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../img/about-electrician.jpg') center/cover no-repeat;
  opacity: 0.25;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.7) 50%, rgba(13,27,42,0.85) 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--color-amber);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s var(--ease-out) both;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-teal);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  color: var(--color-white); margin-bottom: 20px;
  animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}
.hero h1 .accent { color: var(--color-amber); }

.hero-text {
  font-size: 1.15rem; color: rgba(255,255,255,0.75);
  line-height: 1.8; max-width: 580px; margin-bottom: 36px;
  animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}

/* Sections */
.section { padding: 100px 0; }
.section-navy { background: var(--color-navy); color: var(--color-white); }
.section-navy .section-subtitle { color: rgba(255,255,255,0.65); }
.section-navy .section-title { color: var(--color-white); }
.section-offwhite { background: var(--color-offwhite); }
.section-charcoal { background: var(--color-navy-light); color: var(--color-white); }
.section-charcoal .section-title { color: var(--color-white); }

/* Services Grid (Homepage) */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  position: relative;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px; background: var(--color-amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out); z-index: 2;
}
.service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); border-color: rgba(240,165,0,0.2); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .card-img {
  width: 100%; height: 160px; object-fit: cover;
}
.service-card-body { padding: 24px; }
.service-card h3 { color: var(--color-white); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.6; }

/* Services Detail (Services Page) */
.services-detail-grid { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }

.service-detail {
  display: grid; grid-template-columns: 200px 1fr auto;
  align-items: start; gap: 32px;
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--color-white); border: 1px solid var(--color-border-dark);
  transition: all 0.3s var(--ease-out);
}
.service-detail:nth-child(even) { background: var(--color-offwhite); }
.service-detail:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.service-detail-img {
  width: 200px; height: 140px; object-fit: cover;
  border-radius: var(--radius); flex-shrink: 0;
}
.service-detail h3 { margin-bottom: 8px; color: var(--color-navy); }
.service-detail p { color: var(--color-text-light); font-size: 0.95rem; }

.key-points { display: flex; flex-wrap: wrap; gap: 8px; align-self: center; }
.key-point {
  background: rgba(240,165,0,0.08); padding: 6px 14px;
  border-radius: 100px; font-size: 0.8rem; font-weight: 500;
  color: var(--color-navy); white-space: nowrap;
  border: 1px solid rgba(240,165,0,0.15);
}

/* Why Choose Us */
.why-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; margin-top: 48px;
}
.why-item {
  text-align: center; padding: 32px 16px;
}
.why-item .num {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 800;
  color: var(--color-amber); opacity: 0.3; margin-bottom: 8px;
  line-height: 1;
}
.why-item h3 { margin-bottom: 10px; font-size: 1.05rem; }
.why-item p { font-size: 0.9rem; color: var(--color-text-light); line-height: 1.6; }

/* Testimonials */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--color-white); border: 1px solid var(--color-border-dark);
  transition: all 0.3s var(--ease-out);
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.stars { color: var(--color-amber); font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.95rem; line-height: 1.7; color: var(--color-text);
  font-style: normal; flex: 1;
}
.author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--color-navy); color: var(--color-amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem;
}
.author-info .name { font-weight: 600; font-size: 0.9rem; }
.author-info .source { font-size: 0.8rem; color: var(--color-text-light); }

/* Dark testimonial cards */
.section-navy .testimonial-card,
.section-charcoal .testimonial-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-navy .testimonial-card blockquote,
.section-charcoal .testimonial-card blockquote { color: rgba(255,255,255,0.85); }
.section-navy .author-info .name,
.section-charcoal .author-info .name { color: var(--color-white); }
.section-navy .author-info .source,
.section-charcoal .author-info .source { color: rgba(255,255,255,0.5); }
.section-navy .testimonial-card:hover,
.section-charcoal .testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(240,165,0,0.2);
}

/* Service Area */
.service-area-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; margin-top: 48px;
}
.service-area-text { font-size: 1.05rem; line-height: 1.8; color: var(--color-text-light); margin-bottom: 24px; }

.area-list { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tag {
  background: var(--color-offwhite); border: 1px solid var(--color-border-dark);
  padding: 10px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s ease;
}
.area-tag:hover { background: var(--color-amber); color: var(--color-navy); border-color: var(--color-amber); }

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 2px solid var(--color-border-dark);
  height: 400px;
}
#map { width: 100%; height: 100%; }

/* Contact CTA Strip */
.contact-strip {
  background: var(--color-amber); padding: 60px 0;
}
.contact-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.contact-strip h2 { color: var(--color-navy); font-size: clamp(1.4rem, 3vw, 2rem); }
.contact-strip p { color: rgba(13,27,42,0.7); }
.contact-strip .btn {
  background: var(--color-navy); color: var(--color-white);
  border-color: var(--color-navy);
}
.contact-strip .btn:hover { background: var(--color-navy-light); transform: translateY(-1px); }
.contact-strip .btn-ghost {
  background: transparent; color: var(--color-navy);
  border: 2px solid var(--color-navy);
}
.contact-strip .btn-ghost:hover { background: var(--color-navy); color: var(--color-white); }

/* Page Header (inner pages) */
.page-header {
  background: var(--color-navy); padding: 140px 0 60px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(240,165,0,0.06) 0%, transparent 60%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: var(--color-white); margin-bottom: 12px; }
.page-header .section-subtitle { color: rgba(255,255,255,0.65); }

/* About */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-top: 48px;
}
.about-text p { margin-bottom: 20px; color: var(--color-text-light); font-size: 1.05rem; line-height: 1.8; }
.about-img {
  width: 100%; height: 400px; object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-highlights { display: flex; flex-direction: column; gap: 16px; }
.highlight-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; background: var(--color-offwhite);
  border-radius: var(--radius); font-weight: 500;
  transition: all 0.2s ease;
}
.highlight-item:hover { background: var(--color-amber); color: var(--color-navy); transform: translateX(4px); }
.highlight-item .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--color-amber); color: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.highlight-item:hover .check { background: var(--color-navy); color: var(--color-amber); }

/* Owner card */
.owner-card {
  display: flex; gap: 24px; align-items: center;
  background: var(--color-navy); color: var(--color-white);
  padding: 32px; border-radius: var(--radius-lg);
  margin-top: 48px;
}
.owner-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--color-amber); color: var(--color-navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 2rem;
  flex-shrink: 0;
}
.owner-card h3 { color: var(--color-amber); margin-bottom: 4px; }
.owner-card .title { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.owner-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.7; }

/* Contact Grid */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--color-offwhite);
  border-radius: var(--radius); transition: all 0.2s ease;
}
.contact-info-item:hover { background: var(--color-light); }
.icon-box {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-navy); color: var(--color-amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.info-content h3 { font-size: 0.95rem; margin-bottom: 2px; }
.info-content a { color: var(--color-amber); font-weight: 500; }
.info-content a:hover { text-decoration: underline; }
.info-content p { font-size: 0.95rem; color: var(--color-text-light); }

/* Form */
.contact-form {
  background: var(--color-white); padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--color-border-dark);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: 0.9rem;
  margin-bottom: 6px; color: var(--color-navy);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius); background: var(--color-offwhite);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: var(--color-text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--color-amber);
  box-shadow: 0 0 0 3px rgba(240,165,0,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-status {
  margin-top: 16px; padding: 12px 16px;
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 500;
  display: none;
}
.form-status.success { display: block; background: #d4edda; color: #155724; }
.form-status.error { display: block; background: #f8d7da; color: #721c24; }

/* Footer */
.footer {
  background: var(--color-navy); color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; font-size: 1.3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.6);
  transition: all 0.2s ease;
}
.footer-social a:hover { background: var(--color-amber); color: var(--color-navy); border-color: var(--color-amber); }

.footer-links h4 {
  color: var(--color-white); font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--color-amber); }
.footer-links li:not(:has(a)) { font-size: 0.9rem; color: rgba(255,255,255,0.5); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
}

/* Trust Bar */
.trust-bar {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap; margin-top: 48px;
}
.trust-item {
  text-align: center;
}
.trust-item .trust-value {
  font-family: var(--font-heading); font-size: 2.4rem; font-weight: 800;
  color: var(--color-amber); line-height: 1;
}
.trust-item .trust-label {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Skyline accent image */
.skyline-img {
  width: 100%; height: 300px; object-fit: cover;
  border-radius: var(--radius-lg); margin-top: 32px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.reveal.from-left { transform: translateX(-30px); }
.reveal.from-left.visible { transform: translateX(0); }
.reveal.from-right { transform: translateX(30px); }
.reveal.from-right.visible { transform: translateX(0); }

.stagger .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger .reveal:nth-child(6) { transition-delay: 0.3s; }

/* Testimonials page full-width cards */
.testimonials-page .testimonials-grid {
  grid-template-columns: 1fr;
  max-width: 800px; margin: 48px auto 0;
}

/* Leaflet overrides */
.leaflet-container { font-family: var(--font-body); }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 160px 1fr; }
  .service-detail .key-points { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-desktop, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-area-split { grid-template-columns: 1fr; gap: 32px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 24px; }
  .contact-strip .container { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-img { width: 100%; height: 200px; }
  .owner-card { flex-direction: column; text-align: center; }
  .map-wrapper { height: 300px; }
  .trust-bar { gap: 32px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
