/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #0f1f3d;
  --navy-light: #1a3460;
  --amber: #f5a623;
  --amber-dark: #d4891c;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-100: #f0f2f5;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --text-dark: #0f1f3d;
  --text-mid: #374151;
  --text-light: #6b7280;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --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 8px 32px rgba(0,0,0,0.15);

  --transition: 0.2s ease;
  --max-width: 1200px;
  --px: clamp(1rem, 5vw, 2rem);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.1; font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); line-height: 1.2; font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
p { max-width: 65ch; }
.lead { font-size: 1.1rem; line-height: 1.75; color: var(--text-mid); }

/* ===== LAYOUT ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--px); }
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-large { padding: 0.9rem 1.9rem; font-size: 1rem; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-300);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  color: var(--navy);
  flex-shrink: 0;
}
.nav-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text strong { font-size: 0.95rem; }
.nav-logo-text span { font-size: 0.7rem; font-weight: 500; color: var(--text-light); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color var(--transition);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); border-bottom-color: var(--amber); }
.nav-links .nav-cta { margin-left: 0.5rem; border-bottom: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3.5rem, 9vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 45%;
  height: 140%;
  background: rgba(245,166,35,0.04);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.hero h1 { color: var(--white); margin-bottom: 1.1rem; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 46ch; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.hero-badges span { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.hero-stats { display: flex; flex-direction: column; gap: 1rem; }
.hero-stat-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: background var(--transition);
}
.hero-stat-card:nth-child(2) { margin-left: 1.75rem; }
.hero-stat-card:hover { background: rgba(255,255,255,0.08); }
.stat-num { font-size: 2.4rem; font-weight: 800; color: var(--amber); line-height: 1; flex-shrink: 0; letter-spacing: -0.03em; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.45; }

/* ===== SERVICES STRIP ===== */
.services-strip { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.service-card {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: all var(--transition);
  display: block;
  color: var(--text-dark);
}
.service-card:hover { border-color: var(--amber); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-icon { font-size: 1.6rem; margin-bottom: 0.9rem; }
.service-card h3 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.825rem; color: var(--text-light); max-width: none; line-height: 1.55; }

/* ===== WHY US ===== */
.why-us { background: var(--off-white); }
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.why-us-header h2 { margin-bottom: 0.9rem; }
.why-us-header p { color: var(--text-mid); }
.why-us-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.stat-block {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1.5px solid var(--gray-300);
}
.stat-block-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.stat-block-num span { color: var(--amber); font-size: 1.8rem; }
.stat-block h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.stat-block p { font-size: 0.85rem; color: var(--text-light); max-width: none; line-height: 1.55; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--amber); padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-text h2 { color: var(--navy); }
.cta-band-text p { color: rgba(15,31,61,0.7); margin-top: 0.4rem; max-width: none; }
.cta-band .btn-navy { background: var(--navy); color: var(--white); }
.cta-band .btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.cta-band .btn-outline-dark { border: 2px solid var(--navy); color: var(--navy); }
.cta-band .btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.cta-band-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-header { margin-bottom: 2.5rem; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; }
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.testimonial-card:nth-child(2) { margin-top: 2rem; }
.stars { color: var(--amber); font-size: 1rem; letter-spacing: 0.05em; margin-bottom: 0.8rem; }
.testimonial-card blockquote { font-size: 0.925rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1.25rem; quotes: none; }
.testimonial-card blockquote::before, .testimonial-card blockquote::after { content: none; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: var(--white); flex-shrink: 0;
}
.author-info strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.author-info span { font-size: 0.775rem; color: var(--text-light); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2.5rem, 7vw, 5rem) 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .lead { color: rgba(255,255,255,0.7); margin: 0 auto; text-align: center; max-width: 55ch; }
.page-hero .trust-strip { margin: 0 auto 1.25rem; }

/* ===== SERVICE SECTIONS (services.html) ===== */
.service-section { border-bottom: 1px solid var(--gray-100); }
.service-section:nth-child(even) { background: var(--off-white); }
.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.service-section:nth-child(even) .service-section-inner { direction: rtl; }
.service-section:nth-child(even) .service-section-inner > * { direction: ltr; }
.service-header { display: flex; align-items: center; gap: 0.9rem; margin-bottom: 1.1rem; }
.service-big-icon {
  width: 52px; height: 52px;
  background: rgba(245,166,35,0.1);
  border: 2px solid rgba(245,166,35,0.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.service-section-text p { color: var(--text-mid); margin-bottom: 1.5rem; }
.service-includes h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light); margin-bottom: 0.6rem;
}
.service-includes ul { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
.service-includes li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-mid); }
.service-includes li::before { content: '✓'; color: var(--amber); font-weight: 700; flex-shrink: 0; }
.service-side { display: flex; flex-direction: column; gap: 1rem; }
.service-why {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.service-why-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--amber); margin-bottom: 0.6rem;
  display: block;
}
.service-why h4 { color: var(--white); margin-bottom: 0.5rem; }
.service-why p { color: rgba(255,255,255,0.75); font-size: 0.875rem; max-width: none; line-height: 1.65; }
.service-cta-box {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
}
.service-cta-box p { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 1rem; max-width: none; text-align: center; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about-portrait-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--gray-500);
}
.about-portrait-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(15,31,61,0.85) 0%, transparent 100%);
}
.portrait-icon { font-size: 5rem; }
.portrait-caption {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 1;
  color: var(--white);
}
.portrait-caption strong { display: block; font-size: 1.1rem; }
.portrait-caption span { font-size: 0.875rem; opacity: 0.8; }
.about-text .section-label { display: block; }
.about-text h2 { margin-bottom: 1.1rem; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; }
.about-accreditations { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.accreditation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.75rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-mid);
}
.values-section { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; }
.value-card { border-left: 3px solid var(--amber); padding-left: 1.25rem; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; color: var(--text-mid); max-width: none; line-height: 1.65; }
.about-testimonials { background: var(--white); }
.about-testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.5rem; }

/* ===== REVIEWS PAGE ===== */
.rating-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem) 0;
  text-align: center;
}
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.rating-badge .stars { margin: 0; }
.rating-hero h1 { color: var(--white); margin-bottom: 0.6rem; }
.rating-hero p { color: rgba(255,255,255,0.7); margin: 0 auto; }
.reviews-masonry {
  columns: 3;
  column-gap: 1.25rem;
  margin-top: 2.5rem;
}
.review-card {
  break-inside: avoid;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}
.review-card blockquote { font-size: 0.9rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 1rem; }
.review-service-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.725rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.projects-section { background: var(--off-white); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
.project-card {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.project-type-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  border-radius: 100px;
  padding: 0.2rem 0.7rem;
  font-size: 0.725rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}
.project-card h3 { margin-bottom: 0.5rem; }
.project-card > p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1.25rem; }
.project-change { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.project-before, .project-after {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.825rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.project-before h5, .project-after h5 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.project-before h5 { color: var(--text-light); }
.project-after h5 { color: #15803d; }

/* ===== CONTACT PAGE ===== */
.contact-phone-hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.contact-phone-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.contact-phone-hero p { color: rgba(255,255,255,0.7); margin: 0 auto 1.5rem; }
.big-phone {
  display: inline-block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1rem;
  transition: color var(--transition);
}
.big-phone:hover { color: var(--amber-dark); }
.phone-note { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.contact-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-form-wrap h2 { margin-bottom: 0.4rem; }
.contact-form-wrap > p { color: var(--text-light); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.825rem; font-weight: 600; margin-bottom: 0.35rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.925rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--text-dark);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,31,61,0.07);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; padding: 1rem; font-size: 1rem; justify-content: center; margin-top: 0.25rem; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  color: #166534;
}
.form-success h3 { margin-bottom: 0.5rem; }
.contact-sidebar h2 { margin-bottom: 0.5rem; }
.contact-sidebar > p { color: var(--text-light); margin-bottom: 2rem; }
.info-block { margin-bottom: 2rem; }
.info-block h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.75rem; }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.875rem;
}
.info-item:last-child { border-bottom: none; }
.info-item .ico { font-size: 1rem; flex-shrink: 0; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem; }
.area-tag {
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 100px;
  padding: 0.25rem 0.7rem;
  font-size: 0.775rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; pointer-events: none; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 28ch; }
.footer-col h4 { color: var(--white); font-size: 0.8rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul a { font-size: 0.85rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-contact h4 { color: var(--white); font-size: 0.8rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-phone { font-size: 1.4rem; font-weight: 700; color: var(--amber); display: block; margin-bottom: 0.75rem; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 0.35rem; max-width: none; }
.gas-safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.775rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ===== STICKY CALL BUTTON ===== */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--amber);
  color: var(--navy);
  text-align: center;
  padding: 0.9rem 1rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transition: background var(--transition);
}
.sticky-call:hover { background: var(--amber-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; }
  .hero-stat-card { flex: 1 1 200px; }
  .hero-stat-card:nth-child(2) { margin-left: 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:nth-child(2) { margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait-wrap { max-width: 420px; }
  .contact-body { grid-template-columns: 1fr; gap: 3rem; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .reviews-masonry { columns: 2; }
  .service-section-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-section:nth-child(even) .service-section-inner { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; flex-direction: column; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-300); padding: 1.25rem var(--px); gap: 1rem; z-index: 99; box-shadow: var(--shadow-md); align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-inner .cta-band-btns { justify-content: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .values-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .reviews-masonry { columns: 1; }
  .project-change { grid-template-columns: 1fr; }
  .why-us-stats { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-testimonials-grid { grid-template-columns: 1fr; }
  .sticky-call { display: block; }
  body { padding-bottom: 54px; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-us-stats { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stat-card:nth-child(2) { margin-left: 0; }
}
