/* ============================================
   Gold Cleaning Jacksonville LLC — Styles
   Font Pairing: Cormorant Garamond (display) + Inter (body)
   Palette: Gold (#d4a843), White (#ffffff), Soft cream (#faf8f4)
   Aesthetic: Clean, sparkling, premium
   ============================================ */

/* --- Variables --- */
:root {
  --bg: #ffffff;
  --bg-soft: #faf8f4;
  --bg-warm: #f5f0e8;
  --bg-card: #ffffff;
  --bg-card-hover: #fffdf9;
  --bg-dark: #1a1714;
  --bg-dark-soft: #2a2520;
  --border: #e8e2d9;
  --border-light: #f0ebe3;
  --border-gold: rgba(212, 168, 67, 0.25);
  --gold: #d4a843;
  --gold-light: #e0be6a;
  --gold-dark: #b8923a;
  --gold-bg: rgba(212, 168, 67, 0.08);
  --gold-bg-hover: rgba(212, 168, 67, 0.12);
  --text: #2c2824;
  --text-mid: #5a5550;
  --text-light: #8a8480;
  --text-faint: #b0aaa5;
  --white: #ffffff;
  --cream: #faf8f4;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-gold: 0 8px 32px rgba(212,168,67,0.15);
  --transition: 0.3s ease;
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--text); }
h1 { font-size: clamp(2.75rem, 6vw, 4.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 2rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
}
.gold-text { color: var(--gold); font-style: italic; }

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

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(212,168,67,0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: var(--bg-soft);
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 0.95rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.75rem 0;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.nav-logo { flex-shrink: 0; line-height: 0; }
.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.25rem !important;
  font-size: 0.8rem !important;
}
.nav-links a.nav-cta {
  color: var(--white) !important;
}
.nav-links a.nav-cta:hover {
  color: var(--white) !important;
}
.nav-links a.nav-cta::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 32px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .btn-primary { font-size: 1rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(170deg, var(--bg) 0%, var(--bg-soft) 40%, var(--bg-warm) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,67,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(212,168,67,0.05) 0%, transparent 40%),
    radial-gradient(ellipse at 60% 80%, rgba(212,168,67,0.04) 0%, transparent 40%);
  pointer-events: none;
}

/* Sparkle Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: sparkleFloat 6s ease-in-out infinite;
}
.p1 { top: 20%; left: 15%; animation-delay: 0s; }
.p2 { top: 35%; left: 85%; animation-delay: 1s; }
.p3 { top: 60%; left: 25%; animation-delay: 2s; width: 3px; height: 3px; }
.p4 { top: 15%; left: 70%; animation-delay: 3s; width: 5px; height: 5px; }
.p5 { top: 75%; left: 60%; animation-delay: 0.5s; width: 3px; height: 3px; }
.p6 { top: 45%; left: 45%; animation-delay: 4s; }
.p7 { top: 80%; left: 80%; animation-delay: 2.5s; width: 5px; height: 5px; }
.p8 { top: 10%; left: 50%; animation-delay: 1.5s; width: 3px; height: 3px; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--gold-bg);
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.2s;
}
.hero h1 {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.4s;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.6s;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 0.8s;
}
.hero-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease forwards;
  animation-delay: 1s;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: gentleBounce 2s ease infinite;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 7rem 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.about-left h2 { margin-bottom: 1.5rem; }
.about-lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about-left p {
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual svg {
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* SVG Sparkle Animations */
.sparkle-dot {
  animation: sparklePulse 3s ease-in-out infinite;
}
.sparkle-dot:nth-child(2) { animation-delay: 0.5s; }
.sparkle-dot:nth-child(3) { animation-delay: 1s; }
.sparkle-dot:nth-child(4) { animation-delay: 1.5s; }
.sparkle-dot:nth-child(5) { animation-delay: 2s; }
.sparkle-star {
  animation: sparkleRotate 6s linear infinite;
  transform-origin: center;
}
.sparkle-star:nth-child(7) { animation-delay: 3s; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.stat-block { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 7rem 0;
  background: var(--bg-soft);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-label { padding-left: 0; }
.section-header .section-label::before { display: none; }
.section-subtitle {
  color: var(--text-mid);
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}
.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,168,67,0.04) 0%, var(--white) 100%);
}
.service-card.featured:hover {
  box-shadow: var(--shadow-gold);
}
.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
}
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: var(--gold-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-dark);
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}
.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.service-card > p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-features {
  margin-bottom: 1.5rem;
}
.service-features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all var(--transition);
}
.card-link:hover {
  color: var(--gold);
  gap: 0.5rem;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us {
  padding: 7rem 0;
  background: var(--bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.why-item {
  position: relative;
  padding-left: 0;
}
.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-bg);
  line-height: 1;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, rgba(212,168,67,0.15) 0%, rgba(212,168,67,0.03) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.why-item p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 7rem 0;
  background: var(--bg-soft);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,168,67,0.04) 0%, var(--white) 100%);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.pricing-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}
.pricing-price {
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.price-unit {
  font-size: 0.85rem;
  color: var(--text-light);
}
.pricing-features {
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.pricing-features li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.pricing-note svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-note strong {
  color: var(--gold-dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 7rem 0;
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 7rem 0;
  background: var(--bg-soft);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-side h2 { margin-bottom: 1rem; }
.contact-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-row svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.contact-row strong {
  display: block;
  color: var(--text);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}
.contact-row span {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.75rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.required { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.1);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.btn-submit {
  margin-top: 0.5rem;
  cursor: pointer;
  font-family: var(--font-body);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
}
.site-footer a { color: rgba(255,255,255,0.6); }
.site-footer a:hover { color: var(--gold); }
.footer-brand .brand-text { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-desc {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a,
.footer-links span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes gentleBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes sparkleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.8; transform: translateY(-10px) scale(1); }
  40% { opacity: 0.4; transform: translateY(-25px) scale(0.8); }
  60% { opacity: 0.7; transform: translateY(-40px) scale(1.1); }
  80% { opacity: 0.3; transform: translateY(-55px) scale(0.6); }
  100% { opacity: 0; transform: translateY(-70px) scale(0); }
}
@keyframes sparklePulse {
  0%, 100% { opacity: 0.3; r: 1.5; }
  50% { opacity: 0.8; r: 3; }
}
@keyframes sparkleRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-badge, .hero h1, .hero-desc, .hero-buttons, .hero-trust { opacity: 1; }
  .particle { display: none; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet (<=1024px) */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-right { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { grid-column: span 2; max-width: 500px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (<=768px) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  h1 { font-size: 2.25rem; }
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero-scroll-hint { display: none; }
  .hero-trust { flex-direction: column; align-items: center; gap: 0.75rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { grid-column: span 1; max-width: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* Small (<=480px) */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero { padding: 6rem 0 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost { width: 100%; }
  .contact-form { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 1rem; }
  .stat-block { display: flex; align-items: center; gap: 1rem; text-align: left; }
}
