/* ==========================================================================
   GOLDEN PRESTIGE DESIGN SYSTEM - style.css
   Author: Antigravity Coding Assistant
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  /* Color Palette */
  --bg-dark: #0D0E12;
  --bg-card: rgba(22, 24, 30, 0.7);
  --bg-card-hover: rgba(30, 33, 41, 0.9);
  
  --primary-gold: #D4AF37;       /* Metallic Gold */
  --primary-gold-rgb: 212, 175, 55;
  --secondary-gold: #F4E0A5;     /* Champagne Gold */
  --accent-gold: #AA7C11;        /* Deep Gold */
  
  --text-primary: #FFFFFF;
  --text-secondary: #9B9EAC;
  --text-muted: #626575;
  
  --border-color: rgba(212, 175, 55, 0.15);
  --border-hover: rgba(212, 175, 55, 0.35);
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows & Blur */
  --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  --gold-glow: 0 0 15px rgba(212, 175, 55, 0.2);
  --gold-glow-hover: 0 0 25px rgba(212, 175, 55, 0.45);
  --glass-blur: blur(12px);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --container-max: 1200px;
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(170, 124, 17, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
}

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

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
  font-size: 1.1rem;
}

/* --- Layout Components --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: clamp(4rem, 8vw, 7.5rem);
  padding-bottom: clamp(4rem, 8vw, 7.5rem);
}

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 14, 18, 0.75);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(13, 14, 18, 0.95);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--bg-dark);
  font-size: 1.4rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition-fast);
}

.hamburger span:nth-child(1) { top: 0px; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.open span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.open span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

/* --- Hero Section (Above the Fold) --- */
.hero {
  padding-top: 180px;
  padding-bottom: clamp(4rem, 10vw, 8rem);
  position: relative;
  display: flex;
  align-items: center;
  min-height: 90vh;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--gold-glow);
}

.hero-tag svg {
  fill: var(--primary-gold);
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

/* The Single CTA Above the Fold */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 50%, var(--accent-gold) 100%);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.125rem 2.25rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--gold-glow-hover);
  position: relative;
  overflow: hidden;
  width: fit-content;
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.cta-button:active {
  transform: translateY(-1px);
}

.cta-ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.8s ease-out;
}

@keyframes ripple {
  to {
    transform: scale(30);
    opacity: 0;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Premium Golden Graphic Shield / Emblem (Pure CSS code) */
.premium-shield {
  position: relative;
  width: 340px;
  height: 380px;
  border: 2px solid var(--border-color);
  border-radius: 40px 40px 170px 170px;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: var(--card-shadow), inset 0 0 40px rgba(212, 175, 55, 0.05);
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
}

.premium-shield::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  top: -10%;
  left: -10%;
  pointer-events: none;
}

.shield-content {
  text-align: center;
  z-index: 2;
}

.shield-icon {
  font-size: 3.5rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
  animation: pulse-icon 3s ease-in-out infinite;
}

.shield-title {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.shield-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 200px;
  margin: 0 auto;
}

.decor-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

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

@keyframes pulse-icon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.9; }
}
/* --- Hero Form Card (Above the Fold) --- */
.hero-form-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--card-shadow), inset 0 0 30px rgba(212, 175, 55, 0.03);
  z-index: 2;
}

.hero-form-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.hero-form-header h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0;
}

.hero-form-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.hero-form .form-group {
  gap: 0.35rem;
}

.hero-form .form-control {
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
}

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

.hero-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  padding: 0.95rem 1.5rem;
  border-radius: 12px;
  margin-top: 0.25rem;
  position: relative;
  overflow: hidden;
}

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

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

@media (max-width: 576px) {
  .hero-form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-form-card {
    max-width: 100%;
    padding: 1.5rem;
  }
}

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

.service-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--card-shadow), var(--gold-glow);
  background: var(--bg-card-hover);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--primary-gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-learn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-gold);
  width: fit-content;
}

.service-learn svg {
  transition: var(--transition-fast);
}

.service-card:hover .service-learn svg {
  transform: translateX(5px);
}

/* --- Local Authority Section (Fresno Focus) --- */
.local-section {
  position: relative;
  background: radial-gradient(100% 100% at 50% 0%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
}

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

.local-content h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.local-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.local-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.highlight-icon {
  margin-top: 0.2rem;
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.highlight-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.map-card {
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.map-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  background: rgba(22, 24, 30, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-header-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.map-badge {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.map-container {
  height: 300px;
  width: 100%;
  position: relative;
  background: #15171d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Custom styled maps placeholder or interactive SVGs */
.fresno-vector-map {
  width: 100%;
  height: 100%;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  stroke: var(--primary-gold);
  stroke-width: 1.5;
  fill: none;
}

.map-marker {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.marker-pin {
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
  position: relative;
  transform: rotate(-45deg);
  margin: 0 auto;
  box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.marker-pin::after {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--bg-dark);
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 12px;
}

.marker-label {
  margin-top: 10px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--card-shadow);
}

.map-details {
  padding: 1.5rem;
  background: rgba(22, 24, 30, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.map-detail-item {
  display: flex;
  gap: 0.75rem;
  color: var(--text-secondary);
}

.map-detail-item strong {
  color: var(--text-primary);
}

/* --- Why Choose Us Section --- */
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.why-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateX(5px);
}

.why-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
  transition: var(--transition-fast);
}

.why-card:hover .why-number {
  color: var(--primary-gold);
}

.why-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.stat-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gold);
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--primary-gold);
}

.stat-lbl {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Process Section --- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 2rem;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(212, 175, 55, 0.05) 0%, 
    rgba(212, 175, 55, 0.3) 50%, 
    rgba(212, 175, 55, 0.05) 100%
  );
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-badge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
  box-shadow: var(--card-shadow);
}

.process-step:hover .step-badge {
  border-color: var(--primary-gold);
  box-shadow: var(--gold-glow);
  transform: scale(1.1);
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--card-shadow);
}

.quote-icon {
  font-size: 4rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(212, 175, 55, 0.1);
  position: absolute;
  top: 10px;
  right: 24px;
}

.testimonial-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-gold);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- FAQs Accordion --- */
.faq-max-width {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
}

.faq-icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  transition: var(--transition-fast);
}

.faq-icon-wrapper svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon-wrapper svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
}

/* --- Contact & Final Section --- */
.contact-section {
  position: relative;
  background: radial-gradient(100% 100% at 50% 100%, rgba(212, 175, 55, 0.04) 0%, transparent 60%);
}

.contact-card-main {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--card-shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
}

.contact-info-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-info-block p {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.method-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
}

.method-details h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.method-details p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  background: rgba(13, 14, 18, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

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

.submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 50%, var(--accent-gold) 100%);
  color: var(--bg-dark);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-hover);
}

.submit-btn:active {
  transform: translateY(0);
}

/* --- Footer --- */
footer {
  background: #07080A;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 320px;
}

.footer-title {
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gold);
}

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

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--primary-gold);
  transform: translateX(3px);
}

.legal-compliance-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.25rem;
}

.legal-compliance-card h4 {
  font-size: 0.9rem;
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
}

.legal-compliance-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.legal-compliance-card p:last-child {
  margin-bottom: 0;
  font-style: italic;
}

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

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta-links a:hover {
  color: var(--primary-gold);
}

/* --- Mobile Menu Drawer --- */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 14, 18, 0.6);
  backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-color);
  z-index: 999;
  padding: 100px 2rem 2rem 2rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.mobile-nav .nav-link {
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

/* --- Responsiveness & Media Queries --- */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .local-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .local-content h2 {
    text-align: center;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .why-features {
    order: 2;
  }
  
  .stat-showcase {
    order: 1;
  }
  
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  
  .process-timeline::before {
    display: none;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .process-timeline {
    grid-template-columns: 1fr;
  }
  
  .highlight-item {
    grid-column: span 2;
  }
}
