/* ===========================
   Design Tokens
   =========================== */
:root {
  /* Charcoal */
  --charcoal-900: #1a1a1a;
  --charcoal-800: #2d2d2d;
  --charcoal-700: #3a3a3a;
  --charcoal-600: #4a4a4a;
  --charcoal-500: #6b6b6b;

  /* Golds */
  --green-700: #a68a1b;
  --green-600: #c4a320;
  --green-500: #d4b32a;
  --green-400: #e8c840;
  --green-300: #f2d96e;
  --green-200: #f7e9a8;
  --green-100: #fdf6dc;
  --green-50:  #fefbf0;

  /* Yellow Accents */
  --yellow-500: #e8c840;
  --yellow-400: #f2d654;
  --yellow-300: #f5e08a;
  --yellow-200: #faf0c0;

  /* Whites & Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f2f0;
  --gray-200: #e2e5e2;
  --gray-300: #d0d3d0;

  /* Silver / Dark Surface Palette */
  --silver-100: #e8e8e8;
  --silver-200: #c8cacb;
  --silver-300: #a0a3a6;
  --surface-dark: #222222;
  --surface-darker: #1b1b1b;
  --surface-card: #2a2a2a;
  --surface-card-border: #353535;
  --surface-light: #f1f1f1;
  --surface-silver: #e9eaeb;

  /* Semantic */
  --color-primary: var(--green-500);
  --color-primary-dark: var(--green-600);
  --color-primary-light: var(--green-100);
  --color-accent: var(--yellow-500);
  --color-text: var(--silver-100);
  --color-text-light: var(--silver-300);
  --color-text-dark: var(--charcoal-800);
  --color-bg: var(--surface-dark);
  --color-bg-alt: var(--surface-darker);
  --color-bg-dark: var(--charcoal-900);

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container-max: 1200px;

  /* Misc */
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 100px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   Reset & Base
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--surface-darker);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   Utility
   =========================== */
.text-accent {
  color: var(--green-400);
}

.services .text-accent,
.how-it-works .text-accent,
.faq .text-accent,
.contact .text-accent {
  color: var(--green-600);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-400);
  margin-bottom: 12px;
  background: rgba(212, 179, 42, 0.12);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.services .section-label,
.how-it-works .section-label,
.faq .section-label,
.contact .section-label {
  color: var(--green-600);
  background: var(--green-100);
}

.section-desc {
  color: var(--silver-300);
  font-size: 1.1rem;
  margin-top: 16px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--white);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 163, 32, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--silver-100);
  border-color: var(--charcoal-500);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.contact .btn-outline,
.how-it-works .btn-outline,
.services .btn-outline,
.faq .btn-outline {
  color: var(--charcoal-700);
  border-color: var(--gray-300);
}

.btn-nav {
  background: var(--color-primary);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-nav:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ===========================
   Top Bar
   =========================== */
.top-bar {
  background: var(--charcoal-900);
  padding: 8px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--surface-card-border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-phone {
  color: var(--green-400);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.top-bar-phone:hover {
  color: var(--green-300);
}

.top-bar-text {
  color: var(--silver-300);
  font-weight: 400;
}

.top-bar-cta {
  color: var(--green-400);
  font-weight: 600;
}

.top-bar-cta:hover {
  color: var(--green-300);
}

.btn-nav-phone {
  color: var(--green-400) !important;
  border-color: var(--green-400) !important;
  padding: 8px 18px !important;
  font-size: 0.85rem !important;
}

.btn-nav-phone:hover {
  background: rgba(212, 179, 42, 0.1) !important;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 27, 27, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--surface-card-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-icon {
  font-size: 1.2rem;
  margin-right: 4px;
}

.logo-accent {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--silver-200);
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-100);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  padding: calc(105px + 80px) 0 var(--section-pad);
  background: var(--surface-darker);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('cleaningphotos/7119867958445370513.jpeg') center center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--surface-darker) 0%, transparent 30%, transparent 60%, var(--surface-darker) 100%);
}

.hero-bg-pattern {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 179, 42, 0.12) 0%, transparent 70%);
  opacity: 1;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-400);
  background: rgba(212, 179, 42, 0.1);
  border: 1px solid rgba(212, 179, 42, 0.25);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--silver-300);
  max-width: 500px;
  margin-top: 20px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--green-400);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--silver-300);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(212, 179, 42, 0.15);
  color: var(--green-400);
  font-size: 0.7rem;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 380px;
}

.hero-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.hero-stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 179, 42, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-stat-1 { animation: float-in 0.6s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-stat-2 { animation: float-in 0.6s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-stat-3 { animation: float-in 0.6s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-stat-4 { animation: float-in 0.6s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-stat-icon {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 179, 42, 0.12);
  border-radius: 10px;
  flex-shrink: 0;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.2;
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--silver-300);
  font-weight: 500;
  margin-top: 1px;
}

/* ===========================
   Services
   =========================== */
.services {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.services h2,
.services h3 {
  color: var(--charcoal-900);
}

.services .section-desc {
  color: var(--charcoal-600);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card h3 {
  color: var(--charcoal-800);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--green-400));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: var(--green-300);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--charcoal-800);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--charcoal-500);
  line-height: 1.7;
}

.services-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--green-200);
}

.services-note p {
  font-size: 0.95rem;
  color: var(--charcoal-600);
}

/* ===========================
   Pricing
   =========================== */
/* ===========================
   Gallery
   =========================== */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--surface-darker);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item {
  height: 300px;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pricing {
  padding: var(--section-pad) 0;
  background: var(--surface-dark);
}


.pricing-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-card-border);
  background: var(--surface-card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.pricing-table thead th {
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--silver-200);
  text-align: center;
  border-bottom: 1px solid var(--surface-card-border);
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table thead th:first-child {
  text-align: left;
}

.th-label {
  display: block;
  color: var(--green-400);
  font-size: 0.95rem;
}

.th-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--green-400);
  color: var(--charcoal-900);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-top: 4px;
  font-weight: 700;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--surface-card-border);
  transition: var(--transition);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.size-cell {
  padding: 22px 24px;
}

.size-cell strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
}

.size-cell span {
  font-size: 0.8rem;
  color: var(--silver-300);
}

.price-cell {
  padding: 22px 24px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--silver-100);
}

.price-cell.highlight {
  color: var(--green-400);
  background: rgba(212, 179, 42, 0.05);
}

.custom-quote-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-400);
}

.custom-quote-link:hover {
  color: var(--green-300);
}

.pricing-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.pricing-extra-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}

.pricing-extra-card:hover {
  border-color: rgba(212, 179, 42, 0.3);
}

.pricing-extra-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.pricing-extra-card p {
  font-size: 0.9rem;
  color: var(--silver-300);
  line-height: 1.7;
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-size: 0.95rem;
  color: var(--silver-300);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards-mobile {
  display: none;
}

/* ===========================
   How It Works
   =========================== */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.how-it-works h2,
.how-it-works h3 {
  color: var(--charcoal-900);
}

.how-it-works .section-desc {
  color: var(--charcoal-600);
}

.how-it-works .step-card p {
  color: var(--charcoal-600);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step-card {
  text-align: center;
  max-width: 280px;
  padding: 0 20px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(196, 163, 32, 0.3);
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.925rem;
  color: var(--color-text-light);
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-300), var(--green-200));
  margin-top: 28px;
  flex-shrink: 0;
}

/* ===========================
   Service Area
   =========================== */
.area {
  padding: var(--section-pad) 0;
  background: var(--charcoal-800);
  color: var(--white);
}

.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.area .section-label {
  background: rgba(212, 179, 42, 0.2);
  color: var(--green-400);
}

.area h2 {
  color: var(--white);
}

.area .text-accent {
  color: var(--green-400);
}

.area p {
  color: var(--gray-300);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.8;
}

.area-tags {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.area-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-200);
}

.area-visual {
  display: flex;
  justify-content: center;
}

.area-map-container {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid rgba(212, 179, 42, 0.3);
  box-shadow: 0 0 30px rgba(212, 179, 42, 0.1), 0 8px 40px rgba(0,0,0,0.3);
}

.area-map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-overlay {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  pointer-events: none;
}

.map-pin-icon {
  font-size: 1rem;
}

/* ===========================
   What's Included
   =========================== */
.included {
  padding: var(--section-pad) 0;
  background: var(--surface-darker);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-card);
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--surface-card-border);
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--silver-100);
  transition: var(--transition);
}

.included-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border-color: rgba(212, 179, 42, 0.3);
}

.included-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(212, 179, 42, 0.15);
  color: var(--green-400);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ===========================
   Contact
   =========================== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.contact h2,
.contact h3 {
  color: var(--charcoal-900);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-top: 8px;
}

.contact-info > p {
  color: var(--charcoal-600);
  font-size: 1.05rem;
  margin-top: 16px;
  line-height: 1.8;
}

.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius);
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal-500);
}

.contact-method p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal-800);
  margin-top: 2px;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal-800);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(196, 163, 32, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b6b' d='M6 8.825L0.375 3.2l1.05-1.05L6 6.725l4.575-4.575 1.05 1.05z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--charcoal-900);
  color: var(--gray-300);
  padding: 64px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-footer {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  color: var(--silver-300);
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-links li {
  font-size: 0.9rem;
  color: var(--silver-300);
}

.footer-links a:hover {
  color: var(--green-400);
}

/* Active nav link */
.nav-links .active-link {
  color: var(--color-primary) !important;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--silver-300);
}

/* ===========================
   Pricing Additions
   =========================== */

/* ===========================
   Testimonials
   =========================== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--surface-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.testimonial-stars {
  color: var(--yellow-500);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.975rem;
  color: var(--silver-200);
  line-height: 1.8;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--surface-card-border);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 179, 42, 0.15);
  color: var(--green-400);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--silver-100);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--silver-300);
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--surface-light);
}

.faq h2 {
  color: var(--charcoal-900);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.faq-item.active {
  border-color: var(--green-300);
  box-shadow: 0 2px 12px rgba(196, 163, 32, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal-800);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-text-light);
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--charcoal-600);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ===========================
   Form Success State
   =========================== */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--color-text-light);
}

/* ===========================
   Animations & Reveal System
   =========================== */
.reveal {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-fade {
  transform: none;
}

.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Hover micro-interactions */
.service-card,
.pricing-table-wrapper,
.pricing-extra-card,
.testimonial-card,
.included-item,
.faq-item {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
}

.btn {
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:active {
  transform: translateY(0) scale(0.97);
}

/* Smooth section transitions */
section {
  transition: background 0.5s ease;
}

/* Hero stack float */
.hero-stack {
  transition: transform 0.1s linear;
}

/* Nav link underline animation */
.nav-links a:not(.btn-nav) {
  position: relative;
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-400);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:not(.btn-nav):hover::after,
.nav-links a.active-link::after {
  width: 100%;
}


/* Step number pulse on reveal */
.step-card.revealed .step-number {
  animation: step-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes step-pop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* Smooth map glow */
.area-map-container {
  transition: box-shadow 0.4s ease;
}

.area-map-container:hover {
  box-shadow: 0 0 40px rgba(212, 179, 42, 0.2);
}

/* ===========================
   Stars / Sparkle Overlay
   =========================== */
.has-stars {
  position: relative;
}

.stars-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.has-stars > .container {
  position: relative;
  z-index: 1;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--duration) var(--delay) ease-in-out infinite;
}

.star.bright {
  width: 3px;
  height: 3px;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.star.accent {
  background: var(--green-400);
  box-shadow: 0 0 4px rgba(232, 200, 64, 0.3);
}

.star.gold {
  background: var(--yellow-400);
  box-shadow: 0 0 4px rgba(242, 214, 84, 0.2);
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: var(--peak-opacity); transform: scale(1); }
}

/* Shooting Stars */
.shooting-star {
  position: absolute;
  width: var(--trail-length, 80px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  border-radius: 1px;
  opacity: 0;
  pointer-events: none;
  transform: rotate(var(--angle, -35deg));
  animation: shoot var(--shoot-duration, 1s) var(--shoot-delay, 0s) ease-out forwards;
}

.shooting-star.gold-trail {
  background: linear-gradient(90deg, rgba(232, 200, 64, 0.5), rgba(232, 200, 64, 0));
}

.shooting-star::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 3px;
  height: 3px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.shooting-star.gold-trail::before {
  background: var(--yellow-400);
  box-shadow: 0 0 6px rgba(232, 200, 64, 0.5);
}

@keyframes shoot {
  0% {
    opacity: 0;
    transform: rotate(var(--angle, -35deg)) translateX(0);
  }
  5% {
    opacity: 1;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: rotate(var(--angle, -35deg)) translateX(var(--travel, 300px));
  }
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    display: flex;
    justify-content: center;
  }

  .hero-stack {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    gap: 12px;
  }

  .hero-stat-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 12px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-extras {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .area-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .area-tags {
    justify-content: center;
  }

  .area-visual {
    order: -1;
  }

  .area-map-container {
    width: 260px;
    height: 260px;
  }

  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .top-bar-text {
    display: none;
  }

  .top-bar-inner {
    justify-content: space-between;
  }

  .nav-links {
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    background: var(--surface-darker);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--surface-card-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--surface-card-border);
    font-size: 1rem;
  }

  .nav-links .btn-nav {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
    border-radius: var(--radius-full);
    padding: 14px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(96px + 36px);
    padding-bottom: 56px;
  }

  .hero-stack {
    grid-template-columns: 1fr 1fr;
    max-width: 360px;
  }

  .hero-stat-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing table to stacked cards on mobile */
  .pricing-table-wrapper {
    border: none;
    background: none;
    overflow: visible;
  }

  .pricing-table {
    display: none;
  }

  .pricing-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .included-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 28px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
  }

  .hero-badge {
    font-size: 0.7rem;
  }
}

/* (Mobile pricing cards default is above in component styles) */

.mobile-price-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-card-border);
  border-radius: var(--radius);
  padding: 20px;
}

.mobile-price-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--surface-card-border);
}

.mobile-price-card-header strong {
  color: var(--white);
  font-size: 1rem;
}

.mobile-price-card-header span {
  font-size: 0.8rem;
  color: var(--silver-300);
}

.mobile-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.mobile-price-row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-price-label {
  font-size: 0.85rem;
  color: var(--silver-300);
}

.mobile-price-label.best {
  color: var(--green-400);
  font-weight: 600;
}

.mobile-price-value {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--silver-100);
}

.mobile-price-value.best {
  color: var(--green-400);
}

/* ===========================
   Mobile Spacing Reduction
   =========================== */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 24px 20px;
  }

  .gallery-item {
    height: 220px;
  }

  .step-connector {
    height: 24px;
  }

  .step-card {
    padding: 0 12px;
  }

  .step-card p {
    font-size: 0.85rem;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .included-grid {
    gap: 10px;
  }

  .included-item {
    padding: 14px 16px;
    font-size: 0.85rem;
  }

  .area-content {
    gap: 36px;
  }

  .contact-methods {
    margin-top: 28px;
    gap: 18px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.9rem;
  }

  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.88rem;
  }

  .footer-content {
    gap: 24px;
    padding-bottom: 32px;
  }
}
