/* ============================================================
   BRYAN REVIVE ELECTRIC — Shared Stylesheet
   Color Scheme: Bright Green + Black
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Brand Colors */
  --brand-primary: #3DBD5A;       /* Bright/light green */
  --brand-secondary: #29A344;     /* Darker green for hover */
  --brand-accent: #F5C518;        /* Yellow-gold accent — pops against green & black */
  --brand-accent-hover: #E0B000;
  --brand-dark: #0A0F0A;          /* Near-black (footer, hero overlay base) */

  /* Neutrals */
  --color-dark: #0F1A0F;
  --color-dark-mid: #1A2B1A;
  --color-mid: #4A5568;
  --color-light: #F4FBF5;         /* Very light green tint for section bg */
  --color-white: #FFFFFF;
  --color-border: #D8EDD8;

  /* Typography */
  --font-heading: 'Inter', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;
  --radius-card: 12px;
  --radius-btn: 6px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.16);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-mid);
  line-height: 1.7;
  background: var(--color-white);
  padding-bottom: 60px; /* space for mobile sticky bar */
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY SCALE ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p  { font-size: 1rem; line-height: 1.7; color: var(--color-mid); }

/* ── SECTION HEADER ── */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 { color: var(--color-dark); margin-bottom: 14px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-mid);
  max-width: 580px;
  margin: 0 auto;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--brand-secondary); transform: translateY(-2px); }

.btn-accent {
  background: var(--brand-accent);
  color: #111;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-accent:hover { background: var(--brand-accent-hover); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ── TOP BAR ── */
.top-bar {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--brand-accent); font-weight: 600; }
.top-bar a:hover { color: #fff; }
.top-bar-right { display: flex; align-items: center; gap: 20px; }

/* ── STICKY HEADER ── */
.site-header {
  position: fixed;
  top: max(0px, calc(var(--top-bar-height, 38px) - var(--scroll-y, 0px)));
  left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.10);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo img { height: 52px; object-fit: contain; }
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.site-header:not(.scrolled) .main-nav a { color: rgba(255,255,255,0.92); }
.site-header.scrolled .main-nav a { color: var(--color-dark); }
.main-nav a:hover { color: var(--brand-accent) !important; }
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-accent) !important;
  white-space: nowrap;
}
.site-header.scrolled .header-phone { color: var(--brand-primary) !important; }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #fff;
  padding: 4px;
}
.site-header.scrolled .hamburger { color: var(--color-dark); }

/* ── HERO (Homepage) ── */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,15,5,0.88) 0%, rgba(5,20,5,0.58) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
}
.hero-location {
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 14px;
  font-weight: 700;
}
.hero-highlight { color: var(--brand-accent); }
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  color: #fff;
  backdrop-filter: blur(4px);
  font-weight: 500;
}

/* Hero slideshow */
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}
.hero-slide.active { opacity: 1; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--color-white);
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.trust-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-mid);
  margin-bottom: 22px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--color-mid);
  font-size: 0.8rem;
  cursor: pointer;
}
.trust-item .stars { color: #F5A623; font-size: 1rem; }
.trust-item strong { font-size: 1.1rem; color: var(--color-dark); }
.bbb-rating { font-size: 1.2rem; font-weight: 900; color: #1a6baa; }

/* ── SERVICES GRID ── */
.services-section { background: var(--color-light); padding: var(--section-padding); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.service-img { height: 200px; background-size: cover; background-position: center; }
.service-body { padding: 24px; }
.service-icon { font-size: 2rem; margin-bottom: 10px; }
.service-body h3 { color: var(--color-dark); margin-bottom: 8px; }
.service-body p { font-size: 0.92rem; margin-bottom: 14px; }
.service-link { color: var(--brand-primary); font-weight: 600; font-size: 0.9rem; transition: color 0.2s; }
.service-link:hover { color: var(--brand-accent); }

/* ── ABOUT SECTION ── */
.about-section { background: var(--color-white); padding: var(--section-padding); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .check-list { list-style: none; padding: 0; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-text .check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; color: var(--color-mid); }
.about-text .check-list li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--brand-primary);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
  margin-top: 5px;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.14);
  object-fit: cover;
  height: 420px;
}
.floating-years-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(61,189,90,0.35);
}
.floating-years-badge .badge-num { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.floating-years-badge .badge-label { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

/* ── STATS ── */
.stats-section { background: var(--color-dark); padding: 70px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-number { font-size: 3.2rem; font-weight: 900; color: #fff; display: inline; }
.stat-plus { font-size: 2rem; font-weight: 900; color: var(--brand-accent); display: inline; }
.stat-label { font-size: 0.82rem; opacity: 0.75; margin-top: 6px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ── PROCESS ── */
.process-section { background: var(--color-light); padding: var(--section-padding); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.process-step {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.25s;
}
.process-step:hover { transform: translateY(-4px); }
.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--brand-accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -8px;
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.process-step h3 { color: var(--color-dark); margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { font-size: 0.88rem; }

/* ── GALLERY ── */
.gallery-section { background: var(--color-white); padding: var(--section-padding); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  color: #fff;
  padding: 24px 16px 14px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  font-weight: 600;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── WHY CHOOSE US ── */
.why-section { background: var(--color-light); padding: var(--section-padding); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.why-icon { font-size: 2.4rem; margin-bottom: 14px; }
.why-card h3 { color: var(--color-dark); margin-bottom: 10px; font-size: 1.05rem; }
.why-card p { font-size: 0.9rem; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--color-white); padding: var(--section-padding); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--brand-accent);
  transition: transform 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.t-stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 12px; }
.t-quote { font-size: 0.93rem; line-height: 1.75; color: var(--color-mid); margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.t-name { font-weight: 700; font-size: 0.9rem; color: var(--color-dark); }
.t-location { font-size: 0.78rem; color: var(--color-mid); }
.t-platform { margin-left: auto; }

/* ── SERVICE AREAS ── */
.areas-section { background: var(--color-light); padding: var(--section-padding); }
.areas-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.area-tag {
  background: #fff;
  border: 1.5px solid var(--brand-primary);
  color: var(--brand-primary);
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.area-tag:hover { background: var(--brand-primary); color: #fff; }
.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-wrap iframe { width: 100%; display: block; }

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,15,5,0.90) 0%, rgba(30,60,20,0.80) 100%);
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 30px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--color-white); padding: var(--section-padding); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-light);
  border-radius: 10px;
  padding: 20px;
}
.contact-card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--brand-primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card h4 { font-size: 0.85rem; color: var(--color-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--color-dark); font-weight: 600; }
.contact-card a:hover { color: var(--brand-primary); }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--color-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-size: 1rem;
  color: var(--color-dark);
  background: #fff;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(61,189,90,0.14);
}
.form-submit-btn {
  width: 100%;
  background: var(--brand-accent);
  color: #111;
  padding: 15px 32px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-body);
}
.form-submit-btn:hover { background: var(--brand-accent-hover); transform: translateY(-2px); }
.form-submit-btn.success { background: var(--brand-primary); color: #fff; }

/* ── FOOTER ── */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,0.72); }
.footer-main { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.footer-col p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 10px; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--brand-accent); }
.footer-logo { height: 52px; margin-bottom: 14px; }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--brand-primary); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--brand-accent); }

/* ── MOBILE STICKY BAR ── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: none;
}
.mobile-cta-call {
  flex: 1;
  background: var(--brand-primary);
  color: #fff;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 1rem;
}
.mobile-cta-book {
  flex: 1;
  background: var(--brand-accent);
  color: #111;
  text-align: center;
  padding: 16px;
  font-weight: 700;
  font-size: 1rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 140px 0 90px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,15,5,0.88) 0%, rgba(5,25,5,0.65) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.62); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.page-hero-content h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900; margin: 10px 0 14px; }
.page-hero-content p { font-size: 1.1rem; opacity: 0.88; max-width: 560px; margin: 0 auto; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────
   RESPONSIVE BREAKPOINTS
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 36px; }
}

@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid .about-image-wrap { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .areas-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-accent, .btn-ghost { text-align: center; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  }
  .main-nav.open { display: flex; }
  .main-nav a { color: var(--color-dark) !important; padding: 10px 0; border-bottom: 1px solid var(--color-border); }
  .hamburger { display: block; }
  .header-cta .btn-accent { display: none; }
  .header-phone { font-size: 0.85rem; }
  .mobile-cta-bar { display: flex; }
  .floating-years-badge { right: 10px; bottom: -15px; }
  .top-bar-right { display: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 24px; }
  .hero-badges { display: none; }
}

/* ── LUCIDE ICONS CUSTOM STYLING ── */
.lucide {
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  display: inline-block;
  vertical-align: middle;
  width: 1.25em;
  height: 1.25em;
}

.top-bar-icon {
  width: 14px;
  height: 14px;
  margin-right: 6px;
  color: var(--brand-accent);
  vertical-align: -2px;
  display: inline-block;
}

.header-phone-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  stroke-width: 2.5;
  vertical-align: -2px;
  display: inline-block;
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  color: var(--brand-accent);
  vertical-align: -2px;
  display: inline-block;
}

.mobile-bar-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: -3px;
  display: inline-block;
}

.badge-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  color: var(--brand-accent);
  margin-right: 4px;
  display: inline-block;
  vertical-align: -2px;
}

.badge-stars {
  display: inline-flex;
  gap: 1px;
  margin-right: 4px;
  vertical-align: middle;
}

.star-filled {
  fill: #F5A623;
  stroke: #F5A623;
  width: 16px;
  height: 16px;
}

.star-filled.small {
  width: 12px;
  height: 12px;
}

.stars-inline {
  display: inline-flex;
  gap: 1px;
  vertical-align: middle;
  margin-left: 4px;
}

.trust-icon {
  width: 32px;
  height: 32px;
  color: var(--brand-primary);
  margin-bottom: 6px;
}

.service-icon {
  display: flex;
  align-items: center;
  color: var(--brand-primary);
  margin-bottom: 12px;
  height: 2.2rem;
}
.service-icon .lucide {
  width: 2.2rem;
  height: 2.2rem;
  stroke-width: 1.5;
}

.btn-arrow {
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: -2px;
  display: inline-block;
  transition: transform 0.2s;
}
.service-link:hover .btn-arrow {
  transform: translateX(3px);
}

.step-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--brand-accent);
  margin-bottom: 16px;
  height: 3rem;
}
.step-icon .lucide {
  width: 2.2rem;
  height: 2.2rem;
  stroke-width: 1.75;
}

.why-icon {
  display: flex;
  align-items: center;
  color: var(--brand-primary);
  margin-bottom: 14px;
  height: 2.4rem;
}
.why-icon .lucide {
  width: 2.4rem;
  height: 2.4rem;
  stroke-width: 1.5;
}

.btn-icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: -2px;
  display: inline-block;
  stroke-width: 2.5;
}

.owner-tag-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  color: var(--brand-accent);
  vertical-align: -2px;
  display: inline-block;
  fill: var(--brand-accent);
}

.value-icon {
  display: flex;
  align-items: center;
  color: var(--brand-primary);
  margin-bottom: 14px;
  height: 2.4rem;
}
.value-icon .lucide {
  width: 2.4rem;
  height: 2.4rem;
  stroke-width: 1.5;
}

.chip-icon {
  width: 14px;
  height: 14px;
  color: var(--brand-primary);
  margin-right: 4px;
  display: inline-block;
}
