/* ============================================
   EXPLOSION CLEANING SERVICES — Design System
   Color Palette: Black, Gold (#C8A656), White
   ============================================ */

/* Google Fonts loaded via <link> in index.html for non-blocking render */

/* ---- CSS Custom Properties ---- */
:root {
  /* Core Colors */
  --gold: #C8A656;
  --gold-light: #DECD98;
  --gold-dark: #A88B3C;
  --gold-gradient: linear-gradient(135deg, #C8A656 0%, #E8D5A0 40%, #C8A656 60%, #A88B3C 100%);
  --gold-shimmer: linear-gradient(90deg, #A88B3C 0%, #C8A656 25%, #E8D5A0 50%, #C8A656 75%, #A88B3C 100%);
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-soft: #2A2A2A;
  --white: #FFFFFF;
  --white-off: #F8F6F0;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D4D4D4;
  --gray-500: #8A8A8A;
  --gray-700: #4A4A4A;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Dancing Script', cursive;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out-expo);
  --transition-medium: 0.4s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);
  --shadow-gold: 0 4px 24px rgba(200, 166, 86, 0.25);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

/* ---- Utility ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- NAVIGATION ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-medium);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img {
  height: 50px;
  width: auto;
  transition: height var(--transition-medium);
}

.navbar.scrolled .nav-logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-medium);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold-gradient) !important;
  color: var(--black) !important;
  padding: 10px 28px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  transition: all var(--transition-medium) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(200, 166, 86, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-medium);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.05);
  animation: fadeIn 1.5s ease-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.7) 40%,
    rgba(10, 10, 10, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 166, 86, 0.12);
  border: 1px solid rgba(200, 166, 86, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 10px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-title .script {
  font-family: var(--font-script);
  font-size: 1.1em;
  font-weight: 700;
  display: block;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.8s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(200, 166, 86, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all var(--transition-medium);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 1s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 166, 86, 0.12);
  border: 1px solid rgba(200, 166, 86, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.trust-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}

/* Floating sparkle particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  animation: sparkle 3s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 80%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 90%; animation-delay: 0.5s; }
.particle:nth-child(3) { top: 40%; left: 75%; animation-delay: 1s; }
.particle:nth-child(4) { top: 80%; left: 85%; animation-delay: 1.5s; }
.particle:nth-child(5) { top: 30%; left: 95%; animation-delay: 2s; }

/* ---- HERO PERSON IMAGE ---- */
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-person {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  animation: fadeInUp 1s var(--ease-out-expo) 1.2s both;
}

.hero-person img {
  height: 580px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
  transition: transform var(--transition-medium);
}

.hero-person:hover img {
  transform: scale(1.03) translateY(-5px);
}

.hero-person-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(200, 166, 86, 0.3), transparent 70%);
  border-radius: 50%;
  filter: blur(15px);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--black);
  padding: 24px 0;
  border-top: 1px solid rgba(200, 166, 86, 0.15);
  border-bottom: 1px solid rgba(200, 166, 86, 0.15);
  position: relative;
  z-index: 4;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.trust-bar-item svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.trust-bar-divider {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
}

/* ---- SERVICES SECTION ---- */
.services {
  padding: var(--section-padding);
  background: var(--white-off);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

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

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-medium);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
  z-index: 2;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-img .service-icon-float {
  position: absolute;
  bottom: -24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
  transition: transform var(--transition-medium);
}

.service-card:hover .service-icon-float {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-float svg {
  width: 24px;
  height: 24px;
  fill: var(--black);
}

.service-card-body {
  padding: 32px 24px 28px;
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ---- LANGUAGE-SPECIFIC TOGGLING ---- */
body[data-lang="en"] .lang-es-only { display: none !important; }
body[data-lang="es"] .lang-en-only { display: none !important; }

/* ---- PRICING SECTION ---- */
.pricing {
  padding: var(--section-padding);
  background: var(--white-off);
  position: relative;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.pricing-tab-btn {
  padding: 12px 28px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  color: var(--gray-700);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.pricing-tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pricing-tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(200, 166, 86, 0.3);
}

.pricing-tab-content {
  display: none;
}

.pricing-tab-content.active {
  display: block;
}

/* Grid & Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(200, 166, 86, 0.2);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
  border: 2.5px solid var(--gold);
  box-shadow: 0 8px 30px rgba(200, 166, 86, 0.12);
}

.pricing-card-badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.pricing-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--black);
  margin-bottom: 15px;
}

.pricing-card-header .price {
  font-size: 0.95rem;
  color: var(--gray-600);
}

.pricing-card-header .price span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
}

.pricing-card-header p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin-top: 10px;
}

/* Card Lists */
.pricing-card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.pricing-card-body ul li {
  font-size: 0.95rem;
  color: var(--gray-800);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
}

.pricing-card-body ul li:last-child {
  border-bottom: none;
}

.pricing-card-body ul li strong {
  color: var(--gold);
}

.pricing-card-body .btn-primary {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Add-ons Page Grid & Layout */
.pricing-addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.addons-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.addons-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.addons-list li:last-child {
  border-bottom: none;
}

.addons-list li span {
  color: var(--gray-800);
}

.addons-list li strong {
  color: var(--gold);
}

.addons-list li strong.discount {
  color: #52c41a;
  background: rgba(82, 196, 26, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85rem;
}

.sub-section {
  margin-bottom: 30px;
}

.sub-section:last-child {
  margin-bottom: 0;
}

.sub-section h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(200, 166, 86, 0.15);
  padding-bottom: 6px;
}

/* ---- WHY CHOOSE US ---- */
.why-us {
  padding: var(--section-padding);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 166, 86, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

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

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

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

.why-us-header .section-subtitle {
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 166, 86, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 166, 86, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.why-card:hover {
  border-color: rgba(200, 166, 86, 0.35);
  transform: translateY(-4px);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(200, 166, 86, 0.1);
  border: 1px solid rgba(200, 166, 86, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition-medium);
}

.why-card:hover .why-card-icon {
  background: var(--gold-gradient);
  border-color: transparent;
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition-medium);
}

.why-card:hover .why-card-icon svg {
  stroke: var(--black);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ---- SERVICE AREAS ---- */
.areas {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

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

.areas-header .section-subtitle {
  margin: 0 auto;
}

.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-off);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  transition: all var(--transition-medium);
  cursor: default;
}

.area-chip:hover {
  border-color: var(--gold);
  background: rgba(200, 166, 86, 0.05);
  transform: translateX(4px);
}

.area-chip svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
  flex-shrink: 0;
}

.area-chip span {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--black);
}

.areas-info {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.areas-info::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 166, 86, 0.12), transparent 70%);
  border-radius: 50%;
}

.areas-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.areas-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
}

.areas-info .btn-primary {
  position: relative;
}

.areas-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* ---- BOND & INSURANCE SECTION ---- */
.bond-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
  position: relative;
  overflow: hidden;
}

.bond-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(200, 166, 86, 0.06), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(200, 166, 86, 0.04), transparent 50%);
}

.bond-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.bond-badges {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.bond-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(200, 166, 86, 0.08);
  border: 2px solid rgba(200, 166, 86, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all var(--transition-medium);
}

.bond-badge:hover {
  background: rgba(200, 166, 86, 0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}

.bond-badge svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.bond-badge span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bond-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.bond-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 500px;
}

.bond-text .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: var(--section-padding);
  background: var(--white-off);
  position: relative;
}

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

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-medium);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}

.testimonial-info strong {
  font-size: 0.92rem;
  display: block;
  color: var(--black);
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- CTA SECTION ---- */
.cta {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 166, 86, 0.1), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200, 166, 86, 0.06), transparent 50%);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-image {
  display: flex;
  justify-content: center;
}

.cta-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  max-width: 400px;
}

.cta-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  transition: transform var(--transition-slow);
}

.cta-image-wrapper:hover img {
  transform: scale(1.03);
}

.cta-image-border {
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-xl) + 4px);
  border: 2px solid transparent;
  background: var(--gold-gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: left;
}

.cta-content .section-title {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.cta-content .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px;
  text-align: left;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 36px;
  transition: all var(--transition-medium);
}

.cta-phone:hover {
  transform: scale(1.05);
}

.cta-phone svg {
  width: 36px;
  height: 36px;
  fill: var(--gold);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta .btn-secondary {
  border-color: rgba(200, 166, 86, 0.3);
  color: var(--gold);
}

.cta .btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(200, 166, 86, 0.08);
}

/* ---- FAQ SECTION ---- */
.faq {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition-medium);
  background: var(--white);
}

.faq-item:hover {
  border-color: rgba(200, 166, 86, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary:hover {
  background: rgba(200, 166, 86, 0.03);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  flex: 1;
  padding-right: 16px;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition-medium);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  animation: fadeIn 0.3s ease-out;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--gold);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(200, 166, 86, 0.1);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-medium);
}

.footer-social a:hover {
  background: var(--gold-gradient);
  border-color: transparent;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.6);
  transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
  fill: var(--black);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: all var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ---- SCROLL-TO-TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--gold-gradient);
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(200, 166, 86, 0.45);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: var(--black);
  fill: none;
  stroke-width: 2.5;
}

/* ---- LANGUAGE SELECTOR ---- */
.lang-toggle-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 30px;
  margin-left: 10px;
}

.btn-lang {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 6px;
  transition: color var(--transition-fast);
}

.btn-lang:hover,
.btn-lang.active {
  color: var(--gold);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  font-weight: 300;
  user-select: none;
}

/* ---- ESTIMATE SECTION ---- */
.estimate-section {
  padding: var(--section-padding);
  background: var(--white-off);
  position: relative;
}

.estimate-header {
  text-align: center;
  margin-bottom: 56px;
}

.estimate-header .section-subtitle {
  margin: 0 auto;
}

.estimate-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

.estimate-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
  border-bottom: 2px solid rgba(200, 166, 86, 0.15);
  padding-bottom: 12px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 166, 86, 0.15);
}

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

.count-row {
  grid-template-columns: repeat(3, 1fr);
}

/* Counter inputs */
.counter-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.btn-counter {
  background: var(--gray-100);
  border: none;
  width: 44px;
  height: 48px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.btn-counter:hover {
  background: var(--gray-200);
}

.counter-input input {
  border: none !important;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 !important;
  height: 48px;
  flex: 1;
  pointer-events: none;
}

/* Range slider */
.range-slider-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--gray-200);
  outline: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.range-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  min-width: 28px;
  text-align: center;
}

/* Flooring grid */
.flooring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
  width: 18px;
  height: 18px;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--gold);
}

/* Step buttons */
.btn-next-step,
.step-actions .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

.step-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.step-actions .btn-secondary {
  flex: 0.4;
  justify-content: center;
}

.step-actions .btn-primary {
  flex: 0.6;
}

.sms-consent-group {
  margin-top: 20px;
}

.sms-consent-group span {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--gray-500);
}

/* Estimate Output Card */
.estimate-card-output {
  position: sticky;
  top: 100px;
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 166, 86, 0.15);
  overflow: hidden;
}

.estimate-card-output::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gold-gradient);
}

.price-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 12px 0;
  line-height: 1.1;
}

.estimate-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  margin-bottom: 28px;
}

.estimate-breakdown {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 28px;
}

.estimate-breakdown h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.breakdown-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.breakdown-list li span:last-child {
  font-weight: 600;
  color: var(--white);
}

.breakdown-total-row {
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 10px;
  margin-top: 6px;
  font-weight: 700;
}

.breakdown-total-row span:last-child {
  color: var(--gold) !important;
}

.estimate-features {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.est-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.est-feature svg {
  color: var(--gold);
  flex-shrink: 0;
}

.est-feature span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .bond-content {
    flex-direction: column;
    text-align: center;
  }

  .bond-badges {
    justify-content: center;
  }

  .bond-text p {
    margin: 0 auto;
  }

  .hero-person img {
    height: 460px;
  }

  .cta-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-image-wrapper img {
    height: 420px;
  }

  .estimate-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .estimate-card-output {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 1.3rem;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .hero-person {
    display: none;
  }

  .hero .container {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .count-row {
    grid-template-columns: 1fr;
  }

  .flooring-grid {
    grid-template-columns: 1fr 1fr;
  }

  .estimate-form {
    padding: 24px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-content {
    text-align: center;
  }

  .cta-content .section-subtitle {
    text-align: center;
    margin: 0 auto 40px;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-image-wrapper img {
    height: 380px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .areas-content {
    grid-template-columns: 1fr;
  }

  .areas-list {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-phone {
    font-size: 1.8rem;
  }

  .trust-bar .container {
    gap: 20px;
  }

  .trust-bar-item {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .bond-badges {
    gap: 14px;
  }

  .bond-badge {
    width: 80px;
    height: 80px;
  }

  .areas-info {
    padding: 32px 24px;
  }

  .areas-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* ---- FLOATING PROMO BANNER ---- */
#promo-banner {
  position: fixed;
  top: -80px; /* Hidden above the viewport by default */
  left: 0;
  right: 0;
  min-height: 44px;
  background: linear-gradient(135deg, #c8a656 0%, #e0c27a 100%);
  color: #111111;
  z-index: 2000; /* Stays above header/navbar */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 50px 8px 20px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-heading);
}

#promo-banner.visible {
  top: 0;
}

#promo-banner a {
  color: #111111;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 5px;
}

#promo-banner a:hover {
  color: #333333;
}

.promo-close-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #111111;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  padding: 0 5px;
  line-height: 1;
}

.promo-close-btn:hover {
  opacity: 1;
}

/* Adjust fixed navbar transition and top offset */
.navbar {
  transition: top 0.4s ease, background var(--transition-medium), padding var(--transition-medium);
}

