/* =====================================================
   GRACE CABINETS — Premium Conversion-Focused CSS
   ===================================================== */

/* ---- Google Fonts loaded in HTML ---- */

/* =====================================================
   1. DESIGN TOKENS / CSS VARIABLES
   ===================================================== */
:root {
  /* Brand Colors */
  --gold: #B68A35;
  --gold-light: #D4A853;
  --gold-dark: #8B6B1F;
  --gold-xlight: #F0DCA8;
  --gold-bg: #FDF8EE;
  --gold-bg-deep: #F5EDD6;

  /* Neutrals */
  --white: #FFFFFF;
  --warm-white: #FAFAF8;
  --warm-gray-50: #F7F4F0;
  --warm-gray-100: #EEE9E2;
  --warm-gray-200: #DDD5C8;
  --warm-gray-300: #C4B9A8;
  --warm-gray-400: #A09080;

  /* Text */
  --text-dark: #18160F;
  --text-body: #3A3529;
  --text-muted: #7A7262;
  --text-light: #B0A898;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
  --shadow-xl: 0 24px 72px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(182,138,53,0.30);
  --shadow-gold-lg: 0 8px 40px rgba(182,138,53,0.40);

  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

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

  /* Transitions */
  --transition-fast: all 0.18s ease;
  --transition: all 0.28s ease;
  --transition-slow: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Layout */
  --container: 1180px;
  --header-height: 72px;
}

/* =====================================================
   2. RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

/* =====================================================
   3. LAYOUT UTILITIES
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }

/* =====================================================
   4. TYPOGRAPHY
   ===================================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--gold-xlight);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-label-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.22;
  margin-bottom: 18px;
}

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

.section-header { margin-bottom: 56px; }

/* =====================================================
   5. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  padding: 13px 28px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--transition-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }

/* Gold CTA — Primary */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  background: linear-gradient(135deg, #DEB860 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.btn-gold:active { transform: translateY(0); }

/* White Button */
.btn-white {
  background: var(--white);
  color: var(--gold-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--warm-gray-50);
  transform: translateY(-2px);
}

/* Ghost Gold */
.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold-xlight);
}
.btn-ghost-gold:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
}

/* Outline Gold */
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline White */
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-xl { padding: 18px 42px; font-size: 1.05rem; font-weight: 700; }
.btn-full { width: 100%; }

/* =====================================================
   6. SCROLL REVEAL ANIMATIONS
   ===================================================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0,0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =====================================================
   7. ANNOUNCEMENT BAR
   ===================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--white);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  font-size: 0.875rem;
  z-index: 1000;
}

.announcement-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.announcement-badge {
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.announcement-cta {
  font-weight: 700;
  background: rgba(255,255,255,0.2);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition-fast);
}
.announcement-cta:hover { background: rgba(255,255,255,0.35); }

.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.announcement-close:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

/* =====================================================
   8. HEADER & NAVIGATION
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--warm-gray-100);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.99);
}

.navbar {
  display: flex;
  align-items: center;
  height: var(--header-height);
  gap: 24px;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo */
.nav-brand { flex-shrink: 0; }
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  flex-shrink: 0;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  margin-left: auto;
}
.mobile-menu-toggle:hover { background: var(--warm-gray-50); }
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--warm-gray-100);
  background: var(--white);
  animation: slideDown 0.28s ease forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-inner {
  padding: 20px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: var(--container);
  margin: 0 auto;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.mobile-nav-link:hover {
  background: var(--warm-gray-50);
  color: var(--gold);
  padding-left: 22px;
}

.mobile-menu-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--warm-gray-100);
}

.mobile-menu-info {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--warm-gray-100);
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* =====================================================
   9. HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18,14,5,0.82) 0%,
    rgba(18,14,5,0.60) 40%,
    rgba(18,14,5,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(182,138,53,0.20);
  border: 1px solid rgba(212,168,83,0.50);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.headline-gold {
  color: var(--gold-light);
  background: linear-gradient(90deg, var(--gold-light), #F0C060, var(--gold-light));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

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

.hero-subheadline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-trust-item svg { fill: var(--gold-light); flex-shrink: 0; }

.hero-trust-separator {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.3);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* =====================================================
   10. TRUST STRIP
   ===================================================== */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--warm-gray-100);
  padding: 28px 0;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  flex: 1;
  min-width: 180px;
  justify-content: center;
}

.trust-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.trust-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.trust-content span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--warm-gray-200);
  flex-shrink: 0;
}

/* =====================================================
   11. SERVICES SECTION
   ===================================================== */
.services-section { background: var(--warm-gray-50); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border: 1px solid var(--warm-gray-100);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-xlight);
}

.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-img-gradient {
  width: 100%;
  height: 100%;
}
.bg-painting {
  background: linear-gradient(135deg, #E8E0D5 0%, #D5C8B5 50%, #C4B49A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-drywall {
  background: linear-gradient(135deg, #D8D5CF 0%, #C5C0B8 50%, #B8B0A5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,14,5,0.75) 0%, rgba(18,14,5,0) 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-card-overlay { opacity: 1; }

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

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

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

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  transition: var(--transition-fast);
}
.service-link:hover { color: var(--gold-dark); gap: 6px; }

.services-cta-row {
  text-align: center;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--warm-gray-100);
}
.services-cta-row p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* =====================================================
   12. MID-PAGE CTA BANNER
   ===================================================== */
.mid-cta-banner {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.mid-cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.mid-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.mid-cta-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.mid-cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
}

.mid-cta-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* =====================================================
   13. GALLERY SECTION
   ===================================================== */
.gallery-section { background: var(--white); }

.gallery-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--warm-gray-50);
  border: 1px solid var(--warm-gray-100);
  transition: var(--transition-fast);
}
.gallery-filter:hover, .gallery-filter.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-bottom: 40px;
}

.gallery-item-large { grid-column: span 2; grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }

.gallery-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--warm-gray-100);
  height: 100%;
  min-height: 220px;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-thumb img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,14,5,0.80) 0%, rgba(18,14,5,0) 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-info {
  color: var(--white);
}
.gallery-tag {
  display: inline-block;
  background: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}
.gallery-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.gallery-info p {
  font-size: 0.8rem;
  opacity: 0.8;
}

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

/* Gallery filter animation */
.gallery-item {
  transition: var(--transition);
}
.gallery-item.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

/* =====================================================
   14. WHY CHOOSE US
   ===================================================== */
.why-us-section { background: var(--warm-gray-50); }

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

.why-us-img-stack {
  position: relative;
}

.why-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-xl);
}

.why-us-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold-lg);
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.stat-number span { font-size: 1.6rem; }
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 4px;
}

.why-us-years-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--white);
  border: 2px solid var(--gold-xlight);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.years-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.years-text {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  max-width: 90px;
  line-height: 1.3;
  margin-top: 4px;
}

.why-us-content .section-label { margin-bottom: 12px; }
.why-us-content .section-title { margin-bottom: 16px; }

.why-us-intro {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 38px;
  height: 38px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-xlight);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
}

.why-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.why-feature p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =====================================================
   15. PRICING SECTION
   ===================================================== */
.pricing-section { background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--warm-gray-100);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-sm);
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-xlight);
}

.pricing-card-featured {
  background: linear-gradient(155deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.04);
  box-shadow: var(--shadow-gold-lg);
}
.pricing-card-featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 32px 72px rgba(182,138,53,0.45);
}

.pricing-badge-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.pricing-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-xlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card-featured .pricing-icon {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}
.pricing-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
}
.pricing-card-featured .pricing-icon svg { stroke: var(--white); }

.pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-card-featured .pricing-label { color: rgba(255,255,255,0.75); }

.pricing-from {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pricing-card-featured .pricing-from { color: rgba(255,255,255,0.7); }

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1.1;
  margin: 4px 0 12px;
}
.pricing-card-featured .pricing-price { color: var(--white); }

.pricing-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.pricing-card-featured .pricing-note { color: rgba(255,255,255,0.75); }

.pricing-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-body);
}
.pricing-features li svg { fill: var(--gold); flex-shrink: 0; }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.9); }
.pricing-card-featured .pricing-features li svg { fill: rgba(255,255,255,0.8); }

.pricing-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.83rem;
  color: var(--text-muted);
  padding: 16px 24px;
  background: var(--warm-gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--warm-gray-100);
}
.pricing-disclaimer svg { stroke: var(--gold); flex-shrink: 0; }

/* =====================================================
   16. TESTIMONIALS
   ===================================================== */
.testimonials-section { background: var(--warm-gray-50); }

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--warm-gray-200);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  margin-top: 8px;
}
.google-stars {
  color: #F9AB00;
  font-size: 1rem;
  letter-spacing: 2px;
}
.google-rating-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--warm-gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold-xlight);
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-xlight);
}

.testimonial-stars {
  color: #F9AB00;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
  position: relative;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  font-style: normal;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-info {
  flex: 1;
}
.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}
.testimonial-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-source {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

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

/* =====================================================
   17. SERVICE AREAS
   ===================================================== */
.areas-section { background: var(--white); }

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

.areas-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--warm-gray-100);
  background: var(--white);
  transition: var(--transition);
}
.area-card:hover {
  border-color: var(--gold-xlight);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.area-card.primary {
  background: linear-gradient(135deg, var(--gold-bg) 0%, rgba(253,248,238,0) 100%);
  border-color: var(--gold-xlight);
}

.area-pin {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(182,138,53,0.30);
}
.secondary-pin {
  background: var(--warm-gray-200);
  box-shadow: none;
}
.secondary-pin svg { fill: var(--text-muted); }
.area-pin svg { fill: var(--white); }

.area-info h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.area-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.area-badge {
  margin-left: auto;
  background: var(--gold-bg);
  border: 1px solid var(--gold-xlight);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* Map Placeholder */
.map-card {
  background: linear-gradient(155deg, #EDE9E0 0%, #DDD5C5 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--warm-gray-200);
  box-shadow: var(--shadow-md);
}

.map-visual {
  height: 320px;
  position: relative;
  background: linear-gradient(135deg, #E8E2D6 0%, #D4CDBD 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(182,138,53,0.06) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.04) 40px);
}

.map-dot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.map-dot::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(182,138,53,0.25);
  animation: mapPulse 2.5s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(182,138,53,0.25); }
  50% { box-shadow: 0 0 0 10px rgba(182,138,53,0.08); }
}

.map-dot-cambridge { bottom: 30%; left: 38%; }
.map-dot-kitchener { bottom: 42%; left: 42%; }
.map-dot-waterloo { bottom: 52%; left: 44%; }

.map-dot-label {
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.map-card-bottom {
  padding: 20px 24px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.map-card-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* =====================================================
   18. FAQ SECTION
   ===================================================== */
.faq-section { background: var(--warm-gray-50); }
.faq-container { max-width: 760px; }

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--warm-gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item:hover { border-color: var(--gold-xlight); }
.faq-item.open { border-color: var(--gold-xlight); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-fast);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =====================================================
   19. QUOTE / CONTACT SECTION
   ===================================================== */
.quote-section {
  background: linear-gradient(155deg, #18160F 0%, #2A2412 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(182,138,53,0.12) 0%, transparent 70%);
}
.quote-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(182,138,53,0.08) 0%, transparent 70%);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.quote-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.quote-subtext {
  color: rgba(255,255,255,0.70);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.quote-contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition-fast);
}
a.quote-contact-item:hover {
  background: rgba(182,138,53,0.20);
  border-color: rgba(182,138,53,0.40);
}

.quote-contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(182,138,53,0.25);
  border: 1px solid rgba(182,138,53,0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote-contact-icon svg { fill: var(--gold-light); stroke: var(--gold-light); width: 18px; height: 18px; }

.quote-contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.quote-contact-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.quote-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.83rem;
}
.quote-hours svg { stroke: var(--gold); flex-shrink: 0; }

/* Form Card */
.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.quote-form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--warm-gray-100);
}
.quote-form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.quote-form-header p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--warm-gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: var(--transition-fast);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(182,138,53,0.12);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-submit {
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.form-disclaimer {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}
.form-disclaimer svg { stroke: var(--gold); flex-shrink: 0; }

/* Form Success */
.form-success {
  text-align: center;
  padding: 24px 0;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.form-success a { color: var(--gold); font-weight: 600; }

/* =====================================================
   20. FOOTER
   ===================================================== */
.site-footer { background: #0E0D09; }

.footer-top {
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-img { height: 44px; width: auto; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-text span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-fast);
  display: block;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; stroke: var(--gold); fill: var(--gold); opacity: 0.8; }

.footer-quote-btn { margin-top: 20px; }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.4);
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: var(--transition-fast); }
.footer-bottom a:hover { color: var(--gold-light); }

.footer-seo-links {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.2) !important;
}
.footer-seo-links a {
  color: rgba(255,255,255,0.25) !important;
  font-size: 0.72rem;
}
.footer-seo-links a:hover { color: var(--gold) !important; }

/* =====================================================
   21. STICKY MOBILE CTA
   ===================================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}

.sticky-call-btn, .sticky-quote-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.sticky-call-btn {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
}
.sticky-call-btn:hover { background: var(--gold-light); }

.sticky-quote-btn {
  background: var(--text-dark);
  color: var(--white);
}
.sticky-quote-btn:hover { background: #2A2412; }

/* =====================================================
   22. RESPONSIVE — TABLET (≤1024px)
   ===================================================== */
@media (max-width: 1024px) {
  :root { --container: 100%; }

  .nav-links { display: none; }
  .nav-actions { display: none; }
  .mobile-menu-toggle { display: flex; }

  .mobile-sticky-cta { display: grid; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item-large { grid-column: span 2; grid-row: span 1; }
  .gallery-item-wide { grid-column: span 2; }

  .why-us-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-img-main { height: 380px; }
  .why-us-stat-card { right: 0; bottom: -16px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-8px); }

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

  .areas-layout { grid-template-columns: 1fr; }
  .areas-map-placeholder { max-width: 100%; }

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

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

  .trust-divider { display: none; }
  .trust-grid { gap: 16px; }
}

/* =====================================================
   23. RESPONSIVE — MOBILE (≤768px)
   ===================================================== */
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  .announcement-text { display: none; }

  .navbar { padding: 0 16px; }

  .hero-content { padding: 60px 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-trust-row { gap: 10px; }
  .hero-trust-separator { display: none; }

  .trust-item { min-width: unset; width: 100%; justify-content: flex-start; padding: 12px 16px; }

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

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
  .gallery-item-wide { grid-column: span 1; }

  .why-us-img-stack { padding-right: 0; padding-bottom: 60px; }
  .why-us-years-badge { left: 0; }
  .why-features-grid { grid-template-columns: 1fr; gap: 14px; }

  .mid-cta-content { flex-direction: column; align-items: flex-start; }
  .mid-cta-actions { flex-direction: column; width: 100%; }
  .mid-cta-actions .btn { width: 100%; }

  .quote-form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }

  .hero-scroll-indicator { display: none; }
}

/* =====================================================
   24. RESPONSIVE — SMALL MOBILE (≤480px)
   ===================================================== */
@media (max-width: 480px) {
  .hero-headline { font-size: 1.85rem; }
  .pricing-card { padding: 28px 20px; }
  .testimonial-card { padding: 24px 20px; }
  .quote-section { padding: 60px 0; }
  .gallery-filters { gap: 6px; }
  .gallery-filter { padding: 8px 16px; font-size: 0.82rem; }
}

/* =====================================================
   25. ACCESSIBILITY
   ===================================================== */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================
   26. WHATSAPP BUTTON STYLES
   ===================================================== */

/* Inline WhatsApp buttons */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.50);
  background: linear-gradient(135deg, #30E374 0%, #1EAA96 100%);
}
.btn-whatsapp:active { transform: translateY(0); }

/* Floating WhatsApp Bubble */
.whatsapp-float {
  position: fixed;
  bottom: 88px; /* above mobile sticky bar */
  right: 20px;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  padding: 14px 20px 14px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}

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

.whatsapp-float-label {
  white-space: nowrap;
}

/* On desktop, position above the bottom-right corner (no sticky bar) */
@media (min-width: 1025px) {
  .whatsapp-float {
    bottom: 28px;
    right: 28px;
  }
}

/* =====================================================
   27. SERVICES 4-COLUMN GRID
   ===================================================== */
.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 768px) {
  .services-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   28. UPDATED MOBILE STICKY BAR (3 BUTTONS)
   ===================================================== */
.mobile-sticky-cta {
  grid-template-columns: 1fr 1fr 1fr; /* override 2-col to 3-col */
}

.sticky-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  transition: var(--transition-fast);
}
.sticky-whatsapp-btn:hover {
  background: linear-gradient(135deg, #30E374 0%, #1EAA96 100%);
}

/* Slightly smaller text on sticky bar for 3 cols */
.sticky-call-btn,
.sticky-quote-btn {
  font-size: 0.8rem;
  padding: 16px 8px;
  gap: 5px;
}

/* Adjust WhatsApp float position on mobile (above the 3-button bar) */
@media (max-width: 1024px) {
  .whatsapp-float {
    bottom: 76px;
    right: 16px;
    padding: 10px 14px 10px 12px;
    font-size: 0.82rem;
  }
  /* Collapse label on very small screens */
}

@media (max-width: 480px) {
  .whatsapp-float-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}
