/* ==========================================================================
   A PLUS HARDWOOD FLOORING — PRODUCTION STYLESHEET
   Brand Colors: #3552B6 (Royal Blue), #FAC53B (Gold/Amber), #1A2B57 (Navy)
   Typography: Barlow (Headings 700-800) + Inter (Body 400-600)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,600;0,700;0,800;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --primary-blue: #3552B6;
  --primary-blue-dark: #243B8B;
  --primary-blue-light: #EEF2FF;
  --accent-gold: #FAC53B;
  --accent-gold-dark: #E0A91D;
  --accent-gold-light: #FFF8E5;
  --dark-navy: #1A2B57;
  --dark-charcoal: #1C1F2A;
  --text-muted: #5A6275;
  --bg-light: #F7F8FA;
  --bg-white: #FFFFFF;
  --border-color: #E2E6F0;

  --font-heading: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 4px 12px rgba(26, 43, 87, 0.05);
  --shadow-md: 0 8px 24px rgba(26, 43, 87, 0.09);
  --shadow-lg: 0 16px 40px rgba(26, 43, 87, 0.12);
  --shadow-gold: 0 6px 20px rgba(250, 197, 59, 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1240px;
}

/* --- Base Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--dark-charcoal);
  background-color: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html.menu-open,
body.menu-open {
  overflow: hidden !important;
  height: 100vh !important;
  max-height: 100vh !important;
  position: fixed !important;
  width: 100% !important;
  touch-action: none !important;
  -webkit-overflow-scrolling: none !important;
  overscroll-behavior: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography & Headings --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-charcoal);
  line-height: 1.15;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-blue);
  background-color: var(--primary-blue-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.eyebrow-white {
  color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(250, 197, 59, 0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark-charcoal);
}

.section-title-white {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.section-subtitle-white {
  color: rgba(255, 255, 255, 0.85);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --- Visible ⚠ Warning Badge (Review Tag) --- */
.warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #FFF3CD;
  color: #856404;
  border: 1px solid #FFEBAA;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 8px;
}

.warning-badge svg {
  width: 14px;
  height: 14px;
  fill: #856404;
  flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(53, 82, 182, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(53, 82, 182, 0.45);
}

.btn-accent {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
  background-color: var(--accent-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 197, 59, 0.5);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--dark-navy);
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background-color: var(--primary-blue-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.15rem;
}

/* --- PHONE CALL CTA BUTTON STANDARD (MATCHING USER SPECIFICATION) --- */
.btn-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px 10px 14px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  text-decoration: none;
  cursor: pointer;
}

.btn-call-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.btn-call-icon-circle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.btn-call-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.25;
}

.btn-call-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: 0.9;
}

.btn-call-number {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* Gold Variant (e.g. Hero, Final CTA) */
.btn-accent.btn-call-cta {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  box-shadow: 0 8px 24px rgba(250, 197, 59, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-accent.btn-call-cta .btn-call-icon-circle {
  background-color: rgba(26, 43, 87, 0.12);
  color: var(--dark-navy);
}

.btn-accent.btn-call-cta:hover {
  background-color: #F5B825;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(250, 197, 59, 0.5);
}

.btn-accent.btn-call-cta:hover .btn-call-icon-circle {
  background-color: var(--dark-navy);
  color: var(--accent-gold);
}

/* Blue Variant (e.g. Why Choose Us, FAQ) */
.btn-primary.btn-call-cta {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(53, 82, 182, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary.btn-call-cta .btn-call-icon-circle {
  background-color: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.btn-primary.btn-call-cta:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(53, 82, 182, 0.45);
}

.btn-primary.btn-call-cta:hover .btn-call-icon-circle {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
}

/* --- HEADER / NAVBAR --- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;

}

.nav-logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-charcoal);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark-navy);
  background-color: var(--bg-light);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.nav-phone-badge:hover {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.nav-phone-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-blue);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: var(--dark-navy);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  padding: 200px 0 200px 0;
  background: #1A2B57;
  color: #FFFFFF;
  overflow: hidden;
}

.hero-bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 43, 87, 0.68) 0%, rgba(17, 29, 62, 0.76) 100%);
  z-index: 2;
}

.hero-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  background-image: radial-gradient(#FFFFFF 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 3;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

/* --- INFINITE TRUST MARQUEE TICKER (GOLD BACKGROUND) --- */
.infinite-trust-bar {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  pointer-events: none; /* No hover interaction as requested */
}

.trust-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeContinuous 22s linear infinite;
}

.trust-marquee-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark-navy);
}

.marquee-bullet {
  color: var(--primary-blue);
  font-size: 1.25rem;
}

@keyframes marqueeContinuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(26, 43, 87, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(250, 197, 59, 0.4);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #FFFFFF;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-text h4 {
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 800;
}

.hero-badge-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* --- SECTION 2: WHY HOMEOWNERS CHOOSE US --- */
.why-us-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px 28px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(26, 43, 87, 0.04);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  width: 44px;
  height: 4px;
  background-color: var(--primary-blue);
  border-radius: 0 0 4px 4px;
  transition: width var(--transition-fast), background-color var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(53, 82, 182, 0.3);
}

.why-card:hover::before {
  background-color: var(--accent-gold);
  width: 60px;
}

.why-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon-wrapper {
  background-color: var(--primary-blue);
  color: #FFFFFF;
}

.why-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--dark-navy);
  line-height: 1.3;
  text-align: left;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: left;
}

.why-us-cta-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

/* --- SECTION 2.5: FREE ESTIMATE QUOTE FORM --- */
.quote-form-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.quote-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .quote-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.quote-left-content .section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 16px;
}

.quote-left-content .section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.quote-direct-contact {
  margin-top: 24px;
}

.quote-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: var(--bg-white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 16px rgba(26, 43, 87, 0.05);
}

.quote-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-badge-info {
  display: flex;
  flex-direction: column;
}

.quote-badge-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.quote-badge-info a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark-navy);
  transition: color var(--transition-fast);
}

.quote-badge-info a:hover {
  color: var(--primary-blue);
}

.lead-quote-form {
  background-color: var(--bg-white);
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 32px rgba(26, 43, 87, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-quote-form .form-group {
  width: 100%;
}

.lead-quote-form .form-control {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  background-color: #FFFFFF;
  color: var(--dark-navy);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.lead-quote-form .form-control::placeholder {
  color: #94A3B8;
  opacity: 1;
}

.lead-quote-form .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(53, 82, 182, 0.12);
}

.lead-quote-form select.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='%231A2B57'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  cursor: pointer;
}

.btn-quote-submit {
  width: 100%;
  padding: 18px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 8px 20px rgba(250, 197, 59, 0.35);
  margin-top: 8px;
}

.btn-quote-submit:hover {
  background-color: #F5B825;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(250, 197, 59, 0.5);
}

/* --- SECTION 3: SERVICES --- */
.services-section {
  padding: 100px 0;
  background: var(--dark-navy);
  color: #FFFFFF;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  border-color: var(--accent-gold);
}

.service-image {
  height: 250px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(26, 43, 87, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(26, 43, 87, 0.88);
  backdrop-filter: blur(10px);
  color: var(--accent-gold);
  border: 1px solid rgba(250, 197, 59, 0.45);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.service-body {
  padding: 28px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.service-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
  line-height: 1.25;
  text-align: left;
  letter-spacing: -0.01em;
}

.service-body p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: left;
}

.service-features {
  list-style: none;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-navy);
  text-align: left;
}

.service-features svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-blue);
  background-color: var(--primary-blue-light);
  padding: 3px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(53, 82, 182, 0.15);
}

.services-cta-wrapper {
  margin-top: 50px;
  text-align: center;
}

/* --- SECTION 4: HOW IT WORKS --- */
.how-it-works-section {
  padding: 100px 0;
  background: var(--dark-navy);
  color: #FFFFFF;
  position: relative;
}

.timeline-process-container {
  position: relative;
  margin-top: 60px;
  width: 100%;
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

/* Horizontal connecting line across nodes */
.timeline-line {
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #121E3E;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 3;
  transition: all var(--transition-normal);
}

/* Active or Hovered step circle (Gold halo matching reference print) */
.timeline-step.step-active .step-circle,
.timeline-step:hover .step-circle {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--dark-navy);
  box-shadow: 0 0 24px rgba(250, 197, 59, 0.5);
  transform: scale(1.08);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.35;
}

.step-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin: 0;
}

/* --- SECTION 5: OUR WORK (GALLERY) --- */
.our-work-section {
  padding: 100px 0;
  background: var(--dark-navy);
  color: #FFFFFF;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 43, 87, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

.gallery-zoom-icon {
  width: 36px;
  height: 36px;
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.gallery-zoom-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(10px);
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);

}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-gold);
  color: var(--dark-navy);
}

/* --- SECTION 6: TESTIMONIALS --- */
/* --- SECTION 6: TESTIMONIALS (MANUAL SLIDER) --- */
.testimonials-section {
  padding: 100px 0;
  background-color: #FFFFFF;
  overflow: hidden;
}

.testimonials-carousel-wrapper {
  position: relative;
  margin-top: 24px;
  padding: 16px 8px 16px 8px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  cursor: grab;
  padding: 4px 0;
}

.testimonials-track:active {
  cursor: grabbing;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(26, 43, 87, 0.04);
  display: flex;
  flex-direction: column;
  height: 330px;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  user-select: none;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}

.testimonial-card:hover {
  box-shadow: 0 14px 32px rgba(26, 43, 87, 0.14);
  border-color: var(--primary-blue);
  transform: translateY(-6px);
  z-index: 20;
}

.testimonial-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  width: 100%;
}

.google-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #F1F4F9;
  color: #3C4043;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  border: 1px solid #E1E5EA;
  flex-shrink: 0;
}

.google-badge-pill svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  display: block;
  flex-shrink: 0;
}

.testimonial-stars {
  color: var(--accent-gold);
  display: flex;
  gap: 3px;
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 16px;
  flex-grow: 1;
}

.testimonial-bottom-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar.gold {
  background-color: var(--accent-gold-light);
  color: var(--dark-navy);
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.testimonial-author-info h4 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 2px;
  line-height: 1.2;
}

.testimonial-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Custom scrollbar for testimonial text */
.testimonial-text::-webkit-scrollbar {
  width: 4px;
}

.testimonial-text::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

.testimonial-text::-webkit-scrollbar-thumb:hover {
  background: var(--primary-blue);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.carousel-btn:hover {
  background-color: var(--primary-blue);
  color: #FFFFFF;
  border-color: var(--primary-blue);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-color);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.carousel-dot.active {
  background-color: var(--primary-blue);
  width: 28px;
  border-radius: var(--radius-full);
}

/* --- SECTION 7: SERVICE AREA (BIANCO MEDI MAP LAYOUT) --- */
.service-area-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  width: 100%;
}

.city-tag {
  background-color: var(--primary-blue-light);
  color: var(--primary-blue);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(53, 82, 182, 0.2);
  flex: 1 1 calc(25% - 12px);
  min-width: 140px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(53, 82, 182, 0.05);
}

.map-wrapper-bianco {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(26, 43, 87, 0.12);
  border: 1px solid var(--border-color);
  margin-top: 20px;
}

.map-wrapper-bianco iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-overlay-cards {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: grid;
  grid-template-columns: 1.25fr 1.25fr 1fr;
  gap: 16px;
  z-index: 5;
}

@media (max-width: 992px) {
  .map-wrapper-bianco {
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .map-wrapper-bianco iframe {
    height: 380px;
  }
  .map-overlay-cards {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    padding: 16px;
    background: var(--dark-navy);
    gap: 12px;
  }
}

.map-overlay-card {
  background: var(--dark-navy);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.map-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-card-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.map-card-text {
  display: flex;
  flex-direction: column;
}

.map-card-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.map-card-value {
  font-size: 0.88rem;
  color: #FFFFFF;
  line-height: 1.45;
}

.map-card-value strong {
  color: #FFFFFF;
  font-weight: 700;
}

.map-overlay-cta {
  background-color: var(--accent-gold);
  color: var(--dark-navy);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 25px rgba(250, 197, 59, 0.35);
  cursor: pointer;
}

.map-overlay-cta:hover {
  background-color: #F5B825;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(250, 197, 59, 0.5);
}

.map-cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.map-cta-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(26, 43, 87, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.map-cta-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-navy);
}

.map-cta-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-navy);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-cta-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* --- SECTION 8: FAQ (SPLIT 2-COLUMN LAYOUT) --- */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: flex-start;
}

.faq-left-content {
  position: sticky;
  top: 120px;
}

.faq-left-content .section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 0;
}

.faq-left-content .highlight-text {
  color: var(--primary-blue);
}

.faq-accent-line {
  width: 50px;
  height: 4px;
  background-color: var(--primary-blue);
  border-radius: 2px;
  margin: 16px 0 24px 0;
}

.faq-left-content .section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.btn-faq-cta {
  margin-top: 32px;
  display: inline-flex;
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(26, 43, 87, 0.04);
  transition: all var(--transition-fast);
  margin-bottom: 16px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  border-color: rgba(53, 82, 182, 0.25);
  box-shadow: 0 6px 18px rgba(26, 43, 87, 0.08);
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(53, 82, 182, 0.12);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-navy);
  gap: 16px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--dark-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary-blue);
}

.faq-answer {
  display: none;
  overflow: hidden;
  padding: 0 24px 24px 24px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  padding-bottom: 12px;
}

/* --- SECTION 9: FINAL CTA --- */
.final-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(26, 43, 87, 0.48) 0%, rgba(15, 26, 56, 0.58) 100%),
              url('fotos-servicos-webp/WhatsApp Image 2026-08-07 at 18.23.48 (3).webp') center/cover no-repeat;
  background-attachment: fixed;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-box {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-box h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.final-cta-box p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;

}

/* --- FOOTER --- */
.site-footer {
  background-color: #111B38;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 110px;
  max-height: 110px;
  width: auto;
  margin-bottom: 24px;
  object-fit: contain;
}

.footer-brand p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;

}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
}

.footer-bottom div {
  text-align: center;
  width: 100%;
}

.footer-bottom a {
  color: var(--accent-gold);
}

/* --- ASSINATURA LOCMÍDIA ABAIXO DO RODAPÉ (FAIXA BRANCA FINA) --- */
.footer-signature-bar {
  padding: 10px 0 !important;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF !important;
  width: 100%;
  border-top: none;
  margin-top: 0 !important;
  position: relative;
  z-index: 10;
}

.signature-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.signature-link:hover {
  transform: scale(1.04);
}

.signature-img {
  height: 24px !important;
  width: auto !important;
  display: block;
}

/* --- FLOATING "CALL NOW" ACTION BUTTON --- */
.floating-call-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-blue);
  color: var(--accent-gold);
  padding: 14px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(53, 82, 182, 0.45);
  border: 2px solid var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  transition: all var(--transition-normal);
  animation: floatPulse 2.5s infinite;
}

.floating-call-btn:hover {
  transform: scale(1.06) translateY(-4px);
  background-color: var(--dark-navy);
  box-shadow: 0 15px 35px rgba(250, 197, 59, 0.5);
}

.floating-call-icon {
  width: 26px;
  height: 26px;
  fill: var(--accent-gold);
}

@keyframes floatPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 197, 59, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(250, 197, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 197, 59, 0);
  }
}

/* --- RESPONSIVE MEDIA QUERIES (DESKTOP PRESERVED FOR 1024px) --- */
@media (max-width: 1024px) {
  .container {
    width: 100%;
    max-width: 1000px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Full-width CTA buttons ONLY on Mobile */
  .hero-actions .btn,
  .why-us-cta-wrapper .btn,
  .services-cta-wrapper .btn,
  .faq-left-content .btn,
  .final-cta-box .btn,
  .btn-call-cta,
  .map-overlay-cta,
  .quote-contact-badge {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    white-space: normal !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .quote-direct-contact {
    width: 100% !important;
    margin-top: 20px;
  }

  .quote-contact-badge {
    padding: 16px 20px !important;
  }

  /* Header & Mobile Drawer */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  }

  .nav-container {
    height: 80px;
  }

  .nav-logo img {
    height: 56px;
  }

  .nav-phone-badge {
    padding: 6px 14px;
    font-size: 0.88rem;
  }

  .nav-phone-badge span {
    display: inline !important; /* Show phone number in mobile header */
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 32px 24px;
    align-items: flex-start;
    gap: 20px;
    transition: left var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  /* Hero Section Mobile */
  .hero-section {
    padding: 130px 0 70px 0 !important;
  }

  .hero-grid {
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    padding: 0;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  /* Section 2: Why Choose Us */
  .why-us-section {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-card {
    padding: 24px 20px;
  }

  /* Section 2.5: Lead Quote Form (Form Overflow Fix) */
  .quote-form-section {
    padding: 50px 0;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .quote-form-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .quote-right-form {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .lead-quote-form {
    padding: 20px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: var(--radius-md) !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .lead-quote-form .form-group,
  .lead-quote-form .form-control,
  .btn-quote-submit {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .btn-quote-submit {
    padding: 16px 12px !important;
    font-size: 0.92rem !important;
    white-space: normal !important;
    word-break: break-word !important;
  }

  /* Section 3: Flooring Services */
  .services-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-image {
    height: 200px;
  }

  .service-body {
    padding: 24px 20px;
  }

  /* Section 4: How It Works Timeline */
  .how-it-works-section {
    padding: 60px 0;
  }

  .steps-timeline {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 20px;
    position: relative;
  }

  .timeline-line {
    display: block;
    top: 0;
    bottom: 0;
    left: 48px;
    right: auto;
    width: 3px;
    height: 100%;
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .step-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-content h3 {
    text-align: left;
    margin-top: 4px;
  }

  .step-content p {
    text-align: left;
  }

  /* Section 5: Our Work Gallery (Strict 2 Columns on Mobile) */
  .our-work-section {
    padding: 50px 0;
  }

  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .gallery-filters {
    gap: 8px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  /* Section 6: Testimonials */
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
    height: auto;
    min-height: 280px;
  }

  /* Section 7: Service Area Map */
  .service-area-section {
    padding: 60px 0;
  }

  .map-wrapper-bianco {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .map-wrapper-bianco iframe {
    height: 320px;
  }

  .map-overlay-cards {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    grid-template-columns: 1fr;
    padding: 16px;
    background: var(--dark-navy);
    gap: 12px;
  }

  /* Section 8: FAQ */
  .faq-section {
    padding: 60px 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-left-content {
    position: static;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 1rem;
  }

  /* Section 9: Final CTA */
  .final-cta-section {
    padding: 70px 0;
  }

  .final-cta-box h2 {
    font-size: 1.85rem;
  }

  .final-cta-box p {
    font-size: 1rem;
  }

  /* Footer Mobile Brand Alignment */
  .site-footer {
    padding: 50px 0 24px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-brand img {
    height: 120px !important;
    max-height: 120px !important;
    width: auto;
    margin: 0 auto 20px auto;
    object-fit: contain;
  }

  .footer-brand p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
  }

  /* Floating Call Button */
  .floating-call-btn {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px !important;
  }

  .nav-container {
    height: 72px;
    padding: 0 14px !important;
  }

  .nav-logo img {
    height: 46px;
  }

  .nav-phone-badge {
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  /* Keep 2 columns for portfolio gallery on small screens as requested */
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .btn-call-cta {
    padding: 10px 16px;
  }

  .btn-call-number {
    font-size: 1.05rem;
  }
}

