/* ============================================================
   LUMINEX CLEANING — COMMERCIAL PAGE STYLES
   Design tokens copied from luminexcleaningbayarea.com/styles.css
   ============================================================ */

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

/* ── Design Tokens (exact match to main site) ──────────────── */
:root {
  --navy:        #1e3a5f;
  --blue-mid:    #2d7fc1;
  --blue-sky:    #3ab5e6;
  --teal:        #4ecdc4;
  --white:       #ffffff;
  --off-white:   #f0f7ff;
  --silver:      #a8b8c8;
  --charcoal:    #2c3e50;
  --light-blue:  #cce8f4;
  --text-dark:   #1a2a3a;
  --text-muted:  #5a7080;
}

/* ── Base ──────────────────────────────────────────────────── */
html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: Inter, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 95%;
  max-width: 1350px;
  padding: 0 24px;
  margin: 0 auto;
}

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--blue-mid);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-sky), var(--teal));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(58, 181, 230, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58, 181, 230, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-card {
  background: transparent;
  color: var(--blue-sky);
  border: 2px solid var(--blue-sky);
  padding: 10px 24px;
  font-size: 14px;
}
.btn-card:hover {
  background: var(--blue-sky);
  color: var(--white);
}

.btn-full { width: 100%; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(30, 58, 95, 0.10);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: filter 0.3s;
}

/* "COMMERCIAL" pill — appears once, next to logo */
.nav-commercial-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue-sky);
  background: rgba(58, 181, 230, 0.12);
  border: 1px solid rgba(58, 181, 230, 0.35);
  padding: 3px 10px;
  border-radius: 100px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue-sky); }

/* Ghost "Residential" back link */
.nav-links .nav-back-link {
  color: var(--text-muted);
  font-size: 13px;
}
.nav-links .nav-back-link:hover { color: var(--navy); }

.btn-nav {
  background: var(--blue-sky);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-nav:hover {
  background: var(--blue-mid) !important;
  color: var(--white) !important;
}

/* On dark hero — nav links go white */
.navbar:not(.scrolled) .nav-links a:not(.btn-nav) { color: rgba(255, 255, 255, 0.9); }
.navbar:not(.scrolled) .nav-links a:not(.btn-nav):hover { color: var(--blue-sky); }
.navbar:not(.scrolled) .nav-commercial-tag {
  color: var(--teal);
  background: rgba(78, 205, 196, 0.12);
  border-color: rgba(78, 205, 196, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: 0.3s;
}
.navbar:not(.scrolled) .hamburger span { background: var(--white); }

/* Mobile nav drawer */
.nav-links.open {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 55%, var(--blue-mid) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Background decorative shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.shape-1 { width: 700px; height: 700px; background: var(--blue-sky); top: -250px; right: -150px; }
.shape-2 { width: 450px; height: 450px; background: var(--teal); bottom: -150px; left: -100px; }
.shape-3 { width: 280px; height: 280px; background: var(--white); top: 60%; left: 38%; transform: translate(-50%, -50%); }

.hero-content { position: relative; z-index: 1; padding: 80px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.hero-title {
  font-family: Montserrat, sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.gradient-text {
  background: linear-gradient(90deg, var(--blue-sky), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }

.hero-cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
  margin-top: 12px;
  letter-spacing: 0.3px;
  margin-bottom: 32px;
}

.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }

.trust-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon { color: var(--teal); font-size: 16px; font-weight: 700; }

/* Hero image panel */
.hero-image-panel {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap { position: relative; width: 100%; max-width: 560px; }

.hero-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  display: block;
}

.hero-stat {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero-stat-icon { font-size: 28px; line-height: 1; }

.hero-stat-text strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}

.hero-stat-text span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stat-1 { bottom: -20px; left: -24px; }
.hero-stat-2 { top: -20px; right: -24px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Services ──────────────────────────────────────────────── */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: 0.3s;
  border: 2px solid transparent;
  overflow: hidden;
}

/* Top image area */
.service-card-img {
  width: calc(100% + 64px);
  margin: -40px -32px 28px;
  height: 15rem;
  display: block;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
  border-color: var(--light-blue);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--navy), #1a4a7a);
  color: var(--white);
  border-color: var(--blue-sky);
}

.featured-badge {
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-sky), var(--teal));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon-wrap { margin-bottom: 24px; }
.service-icon { font-size: 40px; }

.service-card h3 {
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card.featured h3 { color: var(--white); }

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}
.service-card.featured p { color: rgba(255, 255, 255, 0.75); }

.service-list { padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 8px; }

.service-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.service-card.featured .service-list li { color: rgba(255, 255, 255, 0.80); }
.service-card.featured .service-list li::before { color: var(--teal); }

/* Add-ons */
.addons {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.addons-title {
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}
.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.addon-item {
  background: var(--off-white);
  border: 1px solid var(--light-blue);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  cursor: default;
  user-select: none;
}
.addon-item:hover { background: var(--light-blue); }

/* ── Why Us ────────────────────────────────────────────────── */
.why-us { background: var(--white); }

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}

.why-us-image { position: relative; }

.why-us-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(30, 58, 95, 0.15);
  display: block;
}

.why-us-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--blue-sky), var(--teal));
  color: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(58, 181, 230, 0.40);
}
.why-us-img-badge strong {
  display: block;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}
.why-us-img-badge span {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 32px;
  transition: 0.3s;
}
.feature-card:hover {
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.10);
  transform: translateY(-4px);
  background: var(--white);
}
.feature-icon { font-size: 36px; margin-bottom: 16px; }
.feature-card h4 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ── Process ───────────────────────────────────────────────── */
.process {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
}

.process .section-tag {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.process .section-title { color: var(--white); }

.process-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}

.process-steps-col { order: 1; }
.process-image     { position: relative; order: 2; }

.process-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.30);
  display: block;
}

.process-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.2), rgba(58, 181, 230, 0.1));
}

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.step:last-child { border-bottom: none; }

.step-number {
  font-family: Montserrat, sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--blue-sky);
  flex-shrink: 0;
  width: 72px;
  line-height: 1;
}

.step-content h4 {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-content p { font-size: 15px; color: rgba(255, 255, 255, 0.70); line-height: 1.7; }

/* ── Areas ─────────────────────────────────────────────────── */
.areas { background: var(--off-white); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.area-chip {
  background: var(--white);
  border: 2px solid var(--light-blue);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: 0.2s;
  cursor: default;
}
.area-chip:hover {
  background: var(--blue-sky);
  color: var(--white);
  border-color: var(--blue-sky);
  box-shadow: 0 4px 16px rgba(58, 181, 230, 0.30);
}

.areas-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 20px;
}
.areas-note a { color: var(--blue-sky); font-weight: 600; }
.areas-note a:hover { text-decoration: underline; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--light-blue) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.testimonials .container { position: relative; z-index: 1; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 36px;
  border: 2px solid transparent;
  transition: 0.3s;
}
.testimonial-card:hover {
  border-color: var(--light-blue);
  box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
}

.testimonial-card.featured-testimonial {
  background: linear-gradient(135deg, var(--navy), #1a4a7a);
  border-color: var(--blue-sky);
}

.stars {
  color: #f59e0b;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card.featured-testimonial p { color: rgba(255, 255, 255, 0.85); }

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-sky), var(--teal));
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
}
.testimonial-card.featured-testimonial .testimonial-author strong { color: var(--white); }

.testimonial-author span { font-size: 13px; color: var(--text-muted); }
.testimonial-card.featured-testimonial .testimonial-author span { color: rgba(255, 255, 255, 0.60); }

/* ── Contact / Form ────────────────────────────────────────── */
/* DEVELOPER NOTE: Connect the <form id="quoteForm"> action to
   the same backend endpoint used in index.html.
   Field names are kept identical for easy integration. */

.contact { background: linear-gradient(135deg, var(--off-white) 0%, var(--light-blue) 100%); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  margin-top: 12px;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
}

.detail-icon { font-size: 20px; }

/* Honeypot — keep hidden, same as main site */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Form card */
.quote-form {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(30, 58, 95, 0.12);
  transition: box-shadow 0.4s;
}

/* Highlight ring when CTA button scrolls user to the form */
.quote-form.form-highlight {
  box-shadow: 0 0 0 4px rgba(58, 181, 230, 0.40), 0 20px 60px rgba(30, 58, 95, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  row-gap: 0;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.optional { font-weight: 400; color: var(--text-muted); }

input, select, textarea {
  font-family: Inter, sans-serif;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue-sky);
  box-shadow: 0 0 0 3px rgba(58, 181, 230, 0.15);
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7080' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea { resize: vertical; min-height: 80px; }

input.error, select.error, textarea.error { border-color: #ef4444; }

.field-error { font-size: 12px; color: #ef4444; display: block; margin-top: 4px; }

.form-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Success state — same as main site */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-sky), var(--teal));
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.form-success h4 {
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.form-success p { color: var(--text-muted); }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--charcoal); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand .footer-logo { height: 40px; margin-bottom: 16px; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-size: 1rem;
}
.social-btn:hover {
  background: var(--blue-sky);
  border-color: var(--blue-sky);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--blue-sky); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.40); font-size: 13px; }

/* ── FAB Phone button ──────────────────────────────────────── */
.fab-phone {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  gap: 0;
  white-space: nowrap;
}

.fab-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-sky), var(--teal));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(58, 181, 230, 0.45);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.25s, box-shadow 0.25s;
  font-size: 1.4rem;
}

.fab-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(58, 181, 230, 0.45);
  animation: fabPulse 2.2s ease-out infinite;
}

@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.5); opacity: 0; }
}

.fab-label {
  background: var(--navy);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px 8px 20px;
  border-radius: 100px 0 0 100px;
  margin-right: -8px;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s;
}

.fab-phone:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.fab-phone:hover .fab-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(58, 181, 230, 0.55);
}

/* ── Scroll Animations ─────────────────────────────────────── */
.anim-hidden {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s, transform 0.55s;
}

.anim-hidden-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.5s, transform 0.5s;
}

.anim-hidden-scale {
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-visible { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  .anim-hidden, .anim-hidden-left, .anim-hidden-scale {
    opacity: 1; transform: none; transition: none;
  }
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .why-us-inner, .process-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    padding: 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 999;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links a { color: var(--charcoal) !important; }

  .nav-commercial-tag { display: none; }

  .hero > .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { padding: 60px 0 20px; }
  .hero-image-panel { padding-bottom: 60px; }
  .hero-img-main { height: 300px; }
  .hero-stat-1 { bottom: -10px; left: 0; }
  .hero-stat-2 { top: -10px; right: 0; }
  .hero-trust { gap: 16px; }
  .hero-ctas { flex-direction: column; }

  .why-us-img { height: 300px; }
  .why-us-img-badge { bottom: -12px; right: 12px; }
  .features-grid { grid-template-columns: 1fr; }

  .process-image { order: -1; }
  .process-img { height: 260px; }
  .process-inner { grid-template-columns: 1fr; gap: 40px; }

  .contact-wrapper { grid-template-columns: 1fr; flex-direction: column; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom p { text-align: center; }

  .fab-phone { bottom: 6rem; right: 20px; }
  .fab-icon { width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .footer-inner, .process-inner, .why-us-inner { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .quote-form { padding: 28px 20px; }
}
