/* =====================================================
   PATRIOT HOME PROS — Global Design System
   ===================================================== */

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

/* --- CSS Custom Properties --- */
:root {
  /* New "Workforce" Roofing Palette */
  --navy:        #0F172A;   /* Deep Charcoal — Foundation */
  --steel:       #EA580C;   /* Construction Orange — Call to Action */
  --sky:         #475569;   /* Slate Gray — Accents */
  --cream:       #F8FAFC;   /* Modern Neutral — Backgrounds */

  /* Legacy semantic aliases kept for compatibility */
  --scarlet:       var(--steel);
  --scarlet-dark:  var(--navy);
  --scarlet-light: var(--sky);
  --gray-dark:     var(--navy);
  --gray-charcoal: #020617;  /* Deepest Slate */
  --gray-light:    #F1F5F9;  /* Cool Light Gray */
  --gray-mid:      var(--sky);

  --white: #ffffff;
  --off-white: var(--cream);
  --light-gray: #F1F5F9;
  --mid-gray: #CBD5E1;
  --text: #0F172A;           /* Maximum contrast charcoal */
  --text-muted: #334155;     /* Darker muted text for readability */
  --text-light: #64748B;
  --success: #15803d;        /* Darker success green */
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.1), 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.12), 0 2px 6px rgba(15,23,42,0.08);
  --shadow-lg: 0 10px 40px rgba(15,23,42,0.16), 0 4px 12px rgba(15,23,42,0.1);
  --shadow-card: 0 2px 12px rgba(15,23,42,0.08);
  --radius-sm: 4px;          /* Slightly sharper corners for construction feel */
  --radius: 8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --nav-height: 110px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition), opacity var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2.25rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 2.8vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.75rem;
}
.section-title {
  color: var(--gray-dark);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 0;
}
.section-sm {
  padding: 3.5rem 0;
}
.section-lg {
  padding: 8rem 0;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: color var(--transition), background-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--scarlet);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--scarlet-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234,88,12,0.3);
}
.btn-secondary {
  background: var(--gray-dark);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--gray-charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,23,42,0.25);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--scarlet);
  color: var(--scarlet);
}
.btn-outline:hover {
  background: var(--scarlet);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--gray-dark);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}
.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}
.btn svg, .btn .btn-icon { flex-shrink: 0; }

/* --- Navigation --- */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Gradual Interpolation Variables */
  --scroll-progress: 0; 
  --nav-min-height: 60px;
  --nav-max-height: 110px;
  
  height: calc(var(--nav-max-height) - (var(--nav-max-height) - var(--nav-min-height)) * var(--scroll-progress));
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background-color var(--transition), box-shadow var(--transition);
  will-change: height, background-color, box-shadow;
}
#site-nav.scrolled {
  box-shadow: 0 4px 30px rgba(2,6,23,0.4);
}
#site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-left-group {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  background: #ffffff;
  border-radius: 8px;
  /* Gradual padding: from (8px 20px) to (4px 12px) */
  padding: calc(8px - 4px * var(--scroll-progress)) calc(20px - 8px * var(--scroll-progress));
  transition: opacity var(--transition);
}
.nav-logo:hover {
  opacity: 0.9;
}
.nav-logo-img {
  /* Gradual height: from 86px to 48px */
  height: calc(86px - 38px * var(--scroll-progress));
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.nav-phone:hover {
  background: rgba(255,255,255,0.1);
  color: var(--scarlet);
  border-color: var(--scarlet);
  transform: translateY(-1px);
}
.nav-phone svg { width: 14px; height: 14px; color: var(--scarlet); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:first-child { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:last-child { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--gray-charcoal);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--scarlet); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.mobile-menu .mobile-cta a {
  border: none;
  padding: 0;
  text-align: center;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Footer --- */
#site-footer {
  background: var(--gray-charcoal);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.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.1);
}
.footer-brand .footer-logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer-brand .footer-logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
  margin-left: -0.6rem; /* Align with text flow */
}
.footer-contact-item:hover {
  background: rgba(255,255,255,0.05);
}
.footer-contact-item svg { flex-shrink: 0; color: var(--scarlet); }
.footer-contact-item a { transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--scarlet); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--scarlet); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}

/* --- Sticky Mobile Call Button --- */
#sticky-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: var(--navy);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  gap: 0.6rem;
  align-items: center;
  transition: all var(--transition);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#sticky-call:hover {
  background: var(--gray-charcoal);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}
#sticky-call svg { width: 16px; height: 16px; color: var(--scarlet); }
@keyframes popIn {
  from { transform: scale(0.7) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 5rem;
  overflow: hidden;
  background: var(--gray-charcoal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: opacity, transform;
  opacity: 0.22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21,35,51,0.97) 0%, rgba(33,52,72,0.85) 50%, rgba(33,52,72,0.72) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.hero-content {
  position: relative;
  margin-top: -1.5rem;
  display: flex;
  flex-direction: column;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(84,119,146,0.2);
  border: 1px solid rgba(148,180,193,0.45);
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}
.hero-label .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.hero-title span { color: var(--scarlet); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-bullet {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.hero-bullet svg { color: var(--scarlet); flex-shrink: 0; }
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-subtext {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  max-width: 180px;
  line-height: 1.4;
}
.hero-stats {
  display: flex;
  gap: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: auto;
  padding-top: 2rem;
}
.hero-stat { text-align: center; }
.hero-stat .stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--scarlet);
  line-height: 1;
}
.hero-stat .stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.hero-form-column {
  margin-top: -1.5rem; /* Slight shift up for visual balance */
}

/* Form refinement for hero context */
.hero-form-column .quote-form-box {
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-form-column {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--nav-height) + 2rem);
    min-height: auto;
    padding-bottom: 5rem;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }
  .hero-stats {
    gap: 2rem;
    justify-content: center;
  }
  .hero-stat .stat-num {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .hero-subtext {
    max-width: none;
    text-align: center;
  }
  .hero-stat {
    flex: 1 1 40%;
  }
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid #E1E6EB;
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-charcoal);
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.75;
}
@media (max-width: 600px) {
  .trust-bar-inner {
    gap: 1rem;
    padding: 0 1rem;
  }
  .trust-item {
    font-size: 0.75rem;
  }
}
.trust-item svg { color: var(--scarlet); flex-shrink: 0; }
.trust-divider { width: 1px; height: 20px; background: var(--mid-gray); }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  will-change: transform, box-shadow;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--scarlet);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--scarlet);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Why Choose Us --- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(58,61,64,0.05);
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.why-card .why-icon {
  width: 56px; height: 56px;
  background: var(--scarlet);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);

}
.why-card h3 {
  font-size: 1.05rem;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-card:hover img { transform: scale(1.07); }
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,32,35,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gallery-badge {
  display: inline-block;
  background: var(--scarlet);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.4rem;
  width: fit-content;
}
.gallery-card-overlay h4 {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
}
.gallery-card-overlay p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(58,61,64,0.1);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.stars svg { color: var(--scarlet); width: 17px; height: 17px; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--scarlet);
  flex-shrink: 0;
  border: 1px solid var(--gray-mid);
}
.testimonial-author .author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-dark);
}
.testimonial-author .author-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* --- Quote Form --- */
.quote-section {
  background: var(--gray-light);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(200,16,46,0.03);
  pointer-events: none;
}
.quote-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(0,0,0,0.02);
  pointer-events: none;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.quote-text h2 { color: var(--gray-dark); margin-bottom: 1rem; }
.quote-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.quote-bullets { display: flex; flex-direction: column; gap: 0.6rem; }
.quote-bullet {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.quote-bullet svg { color: var(--scarlet); flex-shrink: 0; }
.quote-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.06);
}
.quote-form-box h3 {
  color: var(--gray-dark);
  margin-bottom: 0.35rem;
}
.quote-form-box .form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gray-dark);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.form-group.form-row > div { margin-bottom: 0; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }
.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success svg { color: var(--steel); margin: 0 auto 1rem; }
.form-success h4 { color: var(--gray-dark); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.88rem; color: var(--text-muted); }

/* --- Service Area Section --- */
.service-area {
  background: var(--off-white);
}
.area-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}
.area-city {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  will-change: transform, box-shadow;
}
.area-city svg { color: var(--scarlet); flex-shrink: 0; }
.area-city:hover {
  border-color: var(--scarlet);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner-text h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-banner-text p { color: rgba(255,255,255,0.82); font-size: 1rem; margin-top: 0.35rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-banner-actions .btn-secondary { background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.4); }
.cta-banner-actions .btn-secondary:hover { background: var(--white); color: var(--navy); }

/* --- About Page Specific --- */
.about-hero {
  background: var(--cream);
  padding: 8rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid #E1E6EB;
}
.about-hero h1 { color: var(--navy); margin-bottom: 1rem; }
.about-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

.page-hero {
  background: var(--cream);
  padding: 8rem 0 5rem;
  text-align: center;
  border-bottom: 1px solid #E1E6EB;
}
.page-hero h1 { color: var(--navy); margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto 1.5rem; }
.page-hero .page-hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-gray);
  background: var(--white);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  will-change: transform, box-shadow;
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--scarlet);
}
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--scarlet);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}
.value-card h3 { color: var(--gray-dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(58,61,64,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform, box-shadow;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
}
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--gray-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.3);
  font-weight: 800;
}
.team-info { padding: 1.25rem 1.5rem; }
.team-info h3 { font-size: 1rem; color: var(--gray-dark); margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.8rem;
  color: var(--scarlet-dark);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.team-info p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

.cert-box {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--text);
  border: 1px solid var(--gray-mid);
}
.cert-box h3 { color: var(--gray-dark); margin-bottom: 1rem; }
.cert-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.cert-item {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.cert-item svg { color: var(--scarlet); flex-shrink: 0; }

/* --- Services Page --- */
.service-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.service-section:last-child { border-bottom: none; }
.service-section-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}
.service-section:nth-child(even) .service-section-inner {
  grid-template-columns: 0.8fr 1.2fr;
}
.service-section:nth-child(even) .service-text { order: 2; }
.service-section:nth-child(even) .service-image-wrap { order: 1; }
.service-image-wrap {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
}
.service-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 340px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.service-text h2 {
  color: var(--gray-dark);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.service-text > p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-subsection { margin-bottom: 1.5rem; }
.service-subsection h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scarlet-dark);
  margin-bottom: 0.6rem;
}
.service-subsection ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-subsection ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.service-subsection ul li::before {
  content: '✓';
  color: var(--scarlet);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.process-step {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--scarlet);
  border: 1px solid var(--gray-mid);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.step-text h5 {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.step-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* --- FAQ Accordion --- */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  will-change: box-shadow;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--gray-dark); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-dark);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gray-mid); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

/* --- Projects Filter Bar --- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--light-gray);
  border: 1.5px solid transparent;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--steel);
  color: var(--white);
  border-color: var(--steel);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(58,61,64,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
  will-change: transform, box-shadow;
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.project-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--light-gray);
}
.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-img-wrap img { transform: scale(1.07); }
.project-type {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--steel);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.project-info { padding: 1.25rem 1.5rem; }
.project-info h3 { font-size: 1rem; color: var(--gray-dark); margin-bottom: 0.25rem; }
.project-location {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}
.project-location svg { width: 13px; height: 13px; }
.project-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* --- Reviews Page --- */
.rating-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 3rem 0;
}
.rating-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.rating-big {
  text-align: center;
}
.rating-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.rating-stars-big {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 0.4rem 0;
}
.rating-stars-big svg { color: var(--scarlet); width: 22px; height: 22px; }
.rating-total { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.rating-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.15); }
.rating-stats { display: flex; flex-direction: column; gap: 0.5rem; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.bar-track {
  width: 160px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--scarlet);
  border-radius: 3px;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: var(--gray-light);
  border-radius: 50%;
  border: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scarlet);
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.85rem; font-weight: 700; color: var(--gray-dark); margin-bottom: 0.15rem; }
.contact-info-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }
.contact-info-text a:hover { color: var(--scarlet); }

.emergency-box {
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--gray-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1rem;
}
.emergency-box h4 { color: var(--scarlet); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.emergency-box p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

/* --- Stats Row --- */
.stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--scarlet);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}

/* --- Breadcrumb --- */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--scarlet); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

/* =============================================
   RESPONSIVE — Tablet
   ============================================= */
@media (max-width: 960px) {
  .hamburger { display: none; }
  .nav-cta, .nav-phone { display: none; }
  .nav-links { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .service-section-inner,
  .service-section:nth-child(even) .service-section-inner { grid-template-columns: 1fr; gap: 2rem; }
  .service-section:nth-child(even) .service-text,
  .service-section:nth-child(even) .service-image-wrap { order: unset; }
  .service-image-wrap { position: static; }
  .service-image-wrap img { height: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .rating-banner-inner { gap: 2rem; }
  .rating-divider { display: none; }
}

/* =============================================
   RESPONSIVE — Mobile
   ============================================= */
@media (max-width: 640px) {
  #sticky-call { display: flex; }
  :root { --nav-height: 60px; }
  .nav-left-group { gap: 2rem; }
  .nav-logo { padding: 4px 8px; overflow: visible; }
  .nav-logo-img { height: 44px !important; width: auto; }
  .nav-links { gap: 0.5rem; }
  .nav-links a { padding: 0.65rem 1rem; font-size: 0.85rem; min-width: 64px; text-align: center; }
  .hero { padding-top: calc(var(--nav-height) + 6rem) !important; }
  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .hero-stats { gap: 1.5rem; }
  .hero-ctas { gap: 0.75rem; }
  .btn-lg { padding: 0.85rem 1.5rem; font-size: 0.95rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .form-group.form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 0.75rem 1.5rem; }
  .trust-divider { display: none; }
  .hero-stat .stat-num { font-size: 1.35rem; }
}

/* Honeypot Spam Protection */
.h-pot {
  position: absolute;
  left: -5000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Services Pro Grid --- */
.services-pro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.services-pro-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.services-pro-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--scarlet);
}
.spc-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spc-body { flex: 1; }
.spc-body h3 { font-size: 1rem; color: var(--gray-charcoal); margin-bottom: 0.2rem; }
.spc-body p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.4; margin: 0; }
.spc-arrow { font-size: 1.1rem; color: var(--mid-gray); transition: color var(--transition), transform var(--transition); }
.services-pro-card:hover .spc-arrow { color: var(--scarlet); transform: translateX(4px); }

/* --- Service Detail Sections --- */
.service-detail-section { padding: 6rem 0; border-top: 1px solid rgba(0,0,0,0.06); }
.service-detail-alt { background: var(--gray-charcoal); }
.service-detail-alt .sds-text h2 { color: var(--white); }
.service-detail-alt .sds-text p { color: rgba(255,255,255,0.72); }
.service-detail-alt .sds-text .section-label { color: var(--scarlet); border-color: rgba(240,160,58,0.3); background: rgba(240,160,58,0.1); }
.service-detail-alt .sds-list li { color: rgba(255,255,255,0.8); }
.service-detail-alt .sds-list li::before { color: var(--scarlet); }
.sds-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sds-reverse .sds-text { order: 2; }
.sds-reverse .sds-visual { order: 1; }
.sds-text h2 { font-size: 2.25rem; color: var(--gray-charcoal); margin-bottom: 1rem; }
.sds-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 1.5rem; }
.sds-list { list-style: none; padding: 0; margin: 0 0 2rem; display: flex; flex-direction: column; gap: 0.65rem; }
.sds-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; color: var(--text-body); }
.sds-list li::before { content: '✓'; color: var(--scarlet-dark); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.sds-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sds-visual-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; padding: 2rem; width: 100%; }
.sds-stat-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  backdrop-filter: blur(8px);
  width: 100%;
  justify-content: center;
}
.sds-stat { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.sds-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--scarlet); line-height: 1; }
.sds-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; text-align: center; }
.sds-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

@media (max-width: 960px) {
  .sds-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sds-reverse .sds-text { order: 1; }
  .sds-reverse .sds-visual { order: 2; }
  .services-pro-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services-pro-grid { grid-template-columns: 1fr; }
  .service-detail-section { padding: 4rem 0; }
}

/* --- Signs Checklist Box --- */
.sds-checklist {
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
}
.service-detail-alt .sds-checklist {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.sds-checklist-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--scarlet-dark);
  margin-bottom: 1rem;
  display: block;
}
.service-detail-alt .sds-checklist-title {
  color: var(--scarlet);
}
.sds-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}
.sds-checklist li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-detail-alt .sds-checklist li {
  color: rgba(255,255,255,0.7);
}
.sds-checklist li::before {
  content: '⚠';
  color: var(--scarlet);
  font-weight: 700;
}
@media (max-width: 640px) {
  .sds-checklist ul { grid-template-columns: 1fr; }
}


/* --- Plain Two-Section Checklist (Signs / What We Offer) --- */
.sds-section-header {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--scarlet-dark);
  margin: 1.75rem 0 0.6rem;
}
.service-detail-alt .sds-section-header {
  color: var(--scarlet);
}
.sds-check-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sds-check-ul li {
  position: relative;
  padding: 0.38rem 0 0.38rem 1.7rem;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.5;
}
.service-detail-alt .sds-check-ul li {
  color: rgba(255,255,255,0.88);
}
.sds-check-ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.38rem;
  color: var(--scarlet);
  font-weight: 700;
  font-size: 0.9rem;
}
