/* ==========================================================================
   NYAMOITA ABUGA & CO. ADVOCATES - BRAND DESIGN SYSTEM
   Official Palette: Deep Emerald Green (#040D09, #0A1C13), Regal Gold (#D4AF37)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette - Deep Forest Emerald & Regal Metallic Gold */
  --bg-dark: #030a07;
  --bg-surface: #091710;
  --bg-card: rgba(10, 28, 19, 0.85);
  --bg-card-hover: rgba(16, 42, 29, 0.95);
  --bg-light: #f8fafc;
  
  --primary-gold: #d4af37;
  --primary-gold-bright: #f5cf47;
  --primary-gold-dim: #997b19;
  --gold-gradient: linear-gradient(135deg, #f5cf47 0%, #d4af37 50%, #aa820a 100%);
  
  --emerald-deep: #05140c;
  --emerald-accent: #0f3d25;
  --emerald-glow: rgba(15, 61, 37, 0.5);
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dark: #06120b;
  --text-gold: #e2c044;
  
  --border-gold: rgba(212, 175, 55, 0.3);
  --border-light: rgba(255, 255, 255, 0.08);
  
  /* Status Colors */
  --open-green: #10b981;
  --closed-red: #ef4444;
  
  /* Fonts */
  --font-heading: 'Cinzel', serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Shadows & Glass */
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.3);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  color: var(--text-main);
}

.text-gold {
  color: var(--primary-gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted {
  color: var(--text-muted);
}

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

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #030a07;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #fce072 0%, #e5be42 100%);
}

.btn-outline {
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--primary-gold-bright);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* Live Office Hours Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--open-green);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--open-green);
  box-shadow: 0 0 8px var(--open-green);
  animation: pulse-green 2s infinite;
}

.status-badge.closed {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: var(--closed-red);
}

.status-badge.closed .status-dot {
  background-color: var(--closed-red);
  box-shadow: 0 0 8px var(--closed-red);
  animation: none;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* ==========================================================================
   TOP CONTACT BAR & NAVIGATION WITH OFFICIAL LOGO
   ========================================================================== */
.top-bar {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-gold);
  font-size: 0.825rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  position: relative;
  z-index: 1002;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-contacts a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.top-bar-contacts a:hover {
  color: var(--primary-gold);
}

.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(3, 10, 7, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}

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

.brand-logo-img {
  height: 62px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  transition: var(--transition);
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  padding-top: 60px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(3, 10, 7, 0.95) 45%, rgba(3, 10, 7, 0.75) 100%),
              url('assets/hero.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary-gold);
  margin-bottom: 0.2rem;
}

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

/* Quick Card in Hero */
.hero-card {
  padding: 2.2rem;
  border: 1px solid var(--border-gold);
  position: relative;
  z-index: 2;
}

.hero-logo-banner {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dashed var(--border-gold);
}

.hero-logo-banner img {
  max-width: 210px;
  height: auto;
  border-radius: 6px;
}

.hero-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.quick-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quick-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.925rem;
  color: var(--text-muted);
}

.quick-info-item i {
  color: var(--primary-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.quick-info-item strong {
  color: var(--text-main);
  display: block;
}

/* ==========================================================================
   PRACTICE SERVICES GRID
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--primary-gold);
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

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

.practice-card {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.practice-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  box-shadow: var(--gold-glow);
}

.practice-icon {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.practice-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.practice-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.card-link:hover {
  gap: 0.8rem;
  color: var(--primary-gold-bright);
}

/* Filter Buttons */
.active-filter {
  background: rgba(212, 175, 55, 0.2) !important;
  border-color: var(--primary-gold) !important;
  color: var(--primary-gold-bright) !important;
}

/* ==========================================================================
   ABOUT ADVOCATE & FIRM
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--glass-shadow);
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: var(--transition);
}

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

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 1.2rem;
  background: rgba(3, 10, 7, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
}

.about-badge h4 {
  font-size: 1.1rem;
  color: var(--primary-gold);
}

.about-badge p {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.about-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.value-item i {
  color: var(--primary-gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.value-item p {
  font-size: 0.825rem;
  margin: 0;
}

/* ==========================================================================
   CONSULTATION BOOKING & FEE ESTIMATOR WIZARD
   ========================================================================== */
.wizard-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

.wizard-card {
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.wizard-steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.wizard-steps-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
  transform: translateY(-50%);
}

.step-node {
  position: relative;
  z-index: 2;
  background: var(--bg-surface);
  border: 2px solid var(--border-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
}

.step-node.active {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
  color: var(--text-dark);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.step-node.completed {
  border-color: var(--primary-gold);
  background: var(--bg-surface);
  color: var(--primary-gold);
}

.wizard-step-content {
  display: none;
}

.wizard-step-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-heading {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.step-subheading {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.option-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.tile-option {
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.tile-option:hover {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.05);
}

.tile-option.selected {
  border-color: var(--primary-gold);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.tile-option i {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
  display: block;
}

.tile-option h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

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

.form-group.full-width {
  grid-column: span 2;
}

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

.form-control {
  padding: 0.85rem 1.1rem;
  background: rgba(3, 10, 7, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.summary-box {
  padding: 1.5rem;
  background: rgba(3, 10, 7, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 0.925rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row strong {
  color: var(--primary-gold);
}

/* ==========================================================================
   LOCATION & CONTACT HUB
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-card {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-item i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-item div h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contact-detail-item div p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  min-height: 420px;
  box-shadow: var(--glass-shadow);
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: var(--bg-surface);
}

.leaflet-popup-content-wrapper {
  background: var(--bg-surface) !important;
  color: var(--text-main) !important;
  border: 1px solid var(--primary-gold) !important;
  border-radius: var(--radius-md) !important;
}

.leaflet-popup-tip {
  background: var(--bg-surface) !important;
}

/* ==========================================================================
   CLIENT REVIEWS / TESTIMONIALS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  position: relative;
}

.stars {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-main);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #030a07;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
}

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

/* ==========================================================================
   FOOTER WITH OFFICIAL LOGO
   ========================================================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-gold);
  padding: 70px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-logo-img {
  height: 68px;
  width: auto;
  margin-bottom: 1.2rem;
  border-radius: 6px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer-column h4 {
  font-size: 1rem;
  color: var(--primary-gold);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 7, 0.88);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 650px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--glass-shadow);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary-gold);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    padding: 2rem;
    border-bottom: 1px solid var(--border-gold);
  }
}

@media (max-width: 600px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .wizard-card {
    padding: 1.5rem;
  }
}
