/* ==========================================================================
   Festive Lights Experts - Premium Holiday Lighting Stylesheet
   Fully Responsive, Sticky Persistent Header & Mobile-First Engineered
   ========================================================================== */

:root {
  --primary-forest: #072318;
  --primary-spruce: #0c3827;
  --primary-accent: #155d42;
  --gold-warm: #e0b457;
  --gold-glow: #ffdf85;
  --gold-dark: #b88a2e;
  --festive-red: #c92a2a;
  --festive-red-hover: #a51d24;
  --dark-bg: #070d17;
  --card-bg: rgba(12, 30, 24, 0.78);
  --card-border: rgba(224, 180, 87, 0.25);
  --glass-bg: rgba(7, 18, 14, 0.95);
  --text-main: #f3f5f7;
  --text-muted: #b5c4bd;
  --text-light: #ffffff;
  --white: #ffffff;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-glow: 0 0 25px rgba(224, 180, 87, 0.25);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(12, 56, 39, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 85% 65%, rgba(201, 42, 42, 0.2) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(224, 180, 87, 0.12) 0%, transparent 40%);
  background-attachment: fixed;
  padding-top: 68px; /* For permanently fixed header */
  padding-bottom: 72px; /* For mobile bottom bar */
}

[id] {
  scroll-margin-top: 85px; /* Offset for permanently fixed header */
}

@media (min-width: 769px) {
  body {
    padding-top: 74px;
    padding-bottom: 0;
  }
}

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

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

ul {
  list-style: none;
}

/* Container Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-warm); }
.text-white { color: var(--white); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-light);
  line-height: 1.25;
  letter-spacing: -0.015em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(224, 180, 87, 0.15);
  border: 1px solid var(--gold-warm);
  border-radius: var(--radius-full);
  color: var(--gold-glow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

.section-header {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.25rem;
  }
}

.section-title {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: var(--font-sans);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-dark) 100%);
  color: #0d1a12;
  box-shadow: 0 4px 18px rgba(224, 180, 87, 0.4);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ffd778 0%, var(--gold-warm) 100%);
  box-shadow: 0 6px 25px rgba(255, 215, 120, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold-warm);
  color: var(--gold-glow);
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, var(--festive-red) 0%, #991b1b 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(201, 42, 42, 0.4);
}

.btn-red:hover {
  background: linear-gradient(135deg, #e03131 0%, #b91c1c 100%);
  box-shadow: 0 6px 25px rgba(201, 42, 42, 0.6);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   Header & Navigation - Constant, Sticky Across All Devices
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(224, 180, 87, 0.25);
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--gold-warm) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  color: #072318;
  font-size: 1.25rem;
  box-shadow: 0 0 15px rgba(224, 180, 87, 0.5);
  flex-shrink: 0;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.brand-title span {
  color: var(--gold-warm);
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 1.05rem;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-warm);
}

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

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Header Call Button in place of plain number/get-quote */
.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-dark) 100%);
  color: #071810 !important;
  font-weight: 800;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 14px rgba(224, 180, 87, 0.4);
  font-size: 0.9rem;
}

.header-call-btn:hover {
  background: linear-gradient(135deg, #ffd778 0%, var(--gold-warm) 100%);
  transform: translateY(-2px);
  color: #071810 !important;
}

.header-call-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  color: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Menu Overlay Drawer */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    max-width: 360px;
    height: 100vh;
    background: #08161b;
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 1.35rem;
    border-left: 1px solid var(--card-border);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    transition: right 0.35s ease;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.15rem;
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header-call-btn {
    display: none !important;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(7, 35, 24, 0.8) 0%, rgba(7, 13, 23, 0.95) 100%);
  border-bottom: 1px solid rgba(224, 180, 87, 0.15);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.1rem, 4.3vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1.15rem;
  line-height: 1.16;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #ffd778 0%, #e0b457 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-badge-item svg {
  color: var(--gold-warm);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Hero Showcase Card */
.hero-visual {
  position: relative;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(224, 180, 87, 0.2);
  border: 1px solid var(--card-border);
  aspect-ratio: 16 / 9;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.hero-floating-card {
  position: absolute;
  bottom: -1rem;
  left: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 5;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224, 180, 87, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-glow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.floating-text-small {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--gold-warm);
  font-weight: 700;
}

.floating-text-bold {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--white);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
}

/* ==========================================================================
   Trust / Stats Banner
   ========================================================================== */
.trust-banner {
  background: rgba(12, 56, 39, 0.5);
  border-bottom: 1px solid rgba(224, 180, 87, 0.15);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(224, 180, 87, 0.15);
  border: 1px solid rgba(224, 180, 87, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
}

.trust-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 5rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  aspect-ratio: 16 / 10;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 1.15rem;
}

.about-lead {
  font-size: 1.08rem;
  color: #d1ded8;
  margin-bottom: 1.15rem;
  line-height: 1.65;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
  font-size: 0.98rem;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.feature-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}

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

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .about-features-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Services Grid (10 Dedicated Real Image Cards)
   ========================================================================== */
.services-section {
  padding: 5rem 0;
  background: rgba(7, 26, 19, 0.4);
  position: relative;
  border-top: 1px solid rgba(224, 180, 87, 0.1);
  border-bottom: 1px solid rgba(224, 180, 87, 0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-warm);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(224, 180, 87, 0.25);
}

.service-image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image-box img {
  transform: scale(1.06);
}

.service-badge-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(7, 18, 14, 0.88);
  border: 1px solid var(--gold-warm);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-glow);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-body {
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-quote-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-warm);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-quote-link:hover {
  color: var(--gold-glow);
  transform: translateX(3px);
}

/* ==========================================================================
   Regional Expertise / Local SEO Highlight
   ========================================================================== */
.local-spotlight-section {
  padding: 5rem 0;
  position: relative;
}

.spotlight-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.spotlight-card {
  background: linear-gradient(135deg, rgba(12, 56, 39, 0.65) 0%, rgba(7, 18, 14, 0.9) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
}

.spotlight-card h3 {
  font-size: 1.55rem;
  margin-bottom: 1rem;
  color: var(--gold-warm);
}

.spotlight-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.spotlight-card .spotlight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--white);
  border-bottom: 2px solid var(--gold-warm);
  padding-bottom: 0.2rem;
  font-size: 0.95rem;
}

.spotlight-card .spotlight-link:hover {
  color: var(--gold-glow);
}

@media (max-width: 992px) {
  .spotlight-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Service Area Tag Cloud */
.service-areas-bar {
  margin-top: 3rem;
  background: rgba(12, 30, 24, 0.55);
  border: 1px solid rgba(224, 180, 87, 0.2);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
}

.service-areas-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-warm);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.area-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-main);
  transition: var(--transition);
}

.area-tag:hover {
  background: rgba(224, 180, 87, 0.15);
  border-color: var(--gold-warm);
  color: var(--gold-glow);
}

.area-tag.primary-location {
  background: rgba(201, 42, 42, 0.2);
  border-color: var(--festive-red);
  color: #ffc9c9;
  font-weight: 700;
}

/* ==========================================================================
   Project Showcase / Gallery
   ========================================================================== */
.gallery-section {
  padding: 5rem 0;
  background: rgba(5, 16, 12, 0.5);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
}

.gallery-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.gallery-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-card:hover .gallery-image-wrap img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(7, 13, 23, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}

.gallery-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-warm);
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.gallery-title {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.gallery-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
  padding: 5rem 0;
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: left;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-warm);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--gold-warm);
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--white);
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-section {
  padding: 5rem 0;
  background: rgba(7, 26, 19, 0.4);
  border-top: 1px solid rgba(224, 180, 87, 0.1);
  border-bottom: 1px solid rgba(224, 180, 87, 0.1);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--gold-warm);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-text {
  color: var(--text-main);
  font-size: 0.98rem;
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--primary-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
}

.author-location {
  font-size: 0.8rem;
  color: var(--gold-warm);
}

/* ==========================================================================
   FAQ Section (Accordion)
   ========================================================================== */
.faq-section {
  padding: 5rem 0;
}

.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.15rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(224, 180, 87, 0.5);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(224, 180, 87, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gold-warm);
  color: var(--dark-bg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 280px;
  padding-bottom: 1.25rem;
}

/* ==========================================================================
   Full Contact & Quote Section (Integrated on Landing Page)
   ========================================================================== */
.contact-section {
  padding: 5.5rem 0;
  position: relative;
  background: linear-gradient(180deg, rgba(7, 26, 19, 0.6) 0%, rgba(7, 13, 23, 0.98) 100%);
  border-top: 1px solid rgba(224, 180, 87, 0.2);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.contact-info-col h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.3rem);
  margin-bottom: 1rem;
}

.contact-info-col p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.contact-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.detail-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(224, 180, 87, 0.15);
  border: 1px solid var(--gold-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-warm);
  flex-shrink: 0;
}

.detail-content h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-warm);
  margin-bottom: 0.2rem;
  font-family: var(--font-sans);
}

.detail-content p, .detail-content a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  word-break: break-word;
}

.detail-content a:hover {
  color: var(--gold-glow);
}

.map-card-wrapper {
  margin-top: 1.5rem;
  background: rgba(7, 13, 23, 0.7);
  border: 1px solid rgba(224, 180, 87, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding: 1.25rem;
}

.map-card-wrapper h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.map-card-wrapper .map-sub {
  font-size: 0.85rem;
  color: var(--gold-warm);
  margin-bottom: 0.85rem;
}

.map-embed-box {
  width: 100%;
  height: 240px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(224, 180, 87, 0.2);
}

.map-embed-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.service-scope-note {
  margin-top: 1.5rem;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--gold-warm);
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Contact Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(7, 13, 23, 0.85);
  border: 1px solid rgba(224, 180, 87, 0.3);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px; /* Prevents auto-zoom on iOS */
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-warm);
  box-shadow: 0 0 15px rgba(224, 180, 87, 0.25);
  background: rgba(7, 13, 23, 0.95);
}

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

textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* Service Multi-Select Checkboxes inside Contact Form */
.services-selection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.35rem;
}

.service-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  background: rgba(7, 13, 23, 0.65);
  border: 1px solid rgba(224, 180, 87, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.service-checkbox-label:hover {
  border-color: var(--gold-warm);
  background: rgba(224, 180, 87, 0.1);
}

.service-checkbox-label input[type="checkbox"] {
  accent-color: var(--gold-warm);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-feedback {
  display: none;
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.form-feedback.success {
  display: block;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #6ee7b7;
}

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.75rem;
    gap: 2.5rem;
  }
}

@media (max-width: 576px) {
  .form-row,
  .services-selection-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #040910;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  color: var(--white);
}

.footer-contact-item a {
  color: var(--gold-warm);
  font-weight: 700;
}

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

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.4rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-warm);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

/* ==========================================================================
   Mobile Sticky Bottom CTA Bar
   ========================================================================== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 16, 12, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-warm);
  z-index: 998;
  padding: 0.65rem 1rem;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-sticky-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--festive-red) 0%, #991b1b 100%);
  color: var(--white);
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(201, 42, 42, 0.4);
}

.mobile-sticky-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-dark) 100%);
  color: #07160e;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(224, 180, 87, 0.4);
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: block;
  }
}

/* ==========================================================================
   Scroll Back To Top Floating Button
   ========================================================================== */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-warm) 0%, var(--gold-dark) 100%);
  color: #071810;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45), 0 0 18px rgba(224, 180, 87, 0.35);
  z-index: 995;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.scroll-to-top:hover {
  background: linear-gradient(135deg, #ffd778 0%, var(--gold-warm) 100%);
  box-shadow: 0 10px 30px rgba(224, 180, 87, 0.6);
  transform: translateY(-4px);
  color: #071810;
}

.scroll-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.8;
  transition: transform 0.25s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* On mobile screens, elevate above mobile sticky call bar */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 84px; /* Sits above the 72px mobile bottom bar */
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

