/**
 * GEOSPATIAL SOLUTIONS - Modern Professional Theme
 * ==================================================
 * Color palette derived from brand logo: Teal + Gold/Amber
 * Built on Bootstrap 5.
 */

/* =============================================================================
   CSS CUSTOM PROPERTIES
   ============================================================================= */
:root {
  /* Brand Teal */
  --gs-teal-50:  #e6f5f5;
  --gs-teal-100: #b3e0e0;
  --gs-teal-200: #80cccc;
  --gs-teal-300: #4db8b8;
  --gs-teal-400: #1aa3a3;
  --gs-teal-500: #0d8e8e;
  --gs-teal-600: #0b7a7a;
  --gs-teal-700: #096666;
  --gs-teal-800: #074d4d;
  --gs-teal-900: #053939;

  /* Brand Gold / Amber */
  --gs-gold-50:  #fdf6e3;
  --gs-gold-100: #faeab3;
  --gs-gold-200: #f5d97a;
  --gs-gold-300: #edc94d;
  --gs-gold-400: #e4b832;
  --gs-gold-500: #d4a843;
  --gs-gold-600: #c49530;
  --gs-gold-700: #a87b24;
  --gs-gold-800: #8b6319;
  --gs-gold-900: #6e4e12;

  /* Neutral / Slate */
  --gs-dark-900: #0f2027;
  --gs-dark-800: #162a33;
  --gs-dark-700: #1e3a45;
  --gs-dark-600: #2c4f5c;
  --gs-dark-500: #4a6b78;
  --gs-neutral-600: #475569;
  --gs-neutral-500: #64748b;
  --gs-neutral-400: #94a3b8;
  --gs-neutral-300: #cbd5e1;
  --gs-neutral-200: #e2e8f0;
  --gs-neutral-100: #f1f5f9;
  --gs-neutral-50:  #f8fafc;

  /* Bootstrap Overrides */
  --bs-primary: #0b7a7a;
  --bs-primary-rgb: 11, 122, 122;
  --bs-body-font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --bs-heading-font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --bs-link-color: #0b7a7a;
  --bs-link-hover-color: #096666;
}

/* =============================================================================
   GLOBAL RESET & BASE
   ============================================================================= */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: var(--gs-neutral-600);
  background-color: var(--gs-neutral-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bs-heading-font-family);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gs-dark-900);
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
  color: var(--gs-teal-600);
}
a:hover {
  color: var(--gs-teal-700);
}

img { max-width: 100%; }

::selection {
  background: var(--gs-teal-200);
  color: var(--gs-dark-900);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gs-neutral-100); }
::-webkit-scrollbar-thumb { background: var(--gs-neutral-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gs-neutral-400); }

/* =============================================================================
   LOGO
   ============================================================================= */
.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  border: 2px solid var(--gs-gold-400);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
  flex-shrink: 0;
}

.logo-circle-lg {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 35%;
  border: 2px solid rgba(212, 168, 67, 0.4);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.1);
  flex-shrink: 0;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.btn {
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
  font-size: 0.9375rem;
}

.btn-lg {
  padding: 0.8rem 1.75rem;
  font-size: 1.05rem;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0b7a7a;
  --bs-btn-border-color: #0b7a7a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #096666;
  --bs-btn-hover-border-color: #096666;
  --bs-btn-focus-shadow-rgb: 11, 122, 122;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #074d4d;
  --bs-btn-active-border-color: #074d4d;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0b7a7a;
  --bs-btn-disabled-border-color: #0b7a7a;
  background-color: #0b7a7a !important;
  border-color: #0b7a7a !important;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #096666 !important;
  border-color: #096666 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 122, 122, 0.3);
}

.btn-outline-primary {
  --bs-btn-color: #0b7a7a;
  --bs-btn-border-color: #0b7a7a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b7a7a;
  --bs-btn-hover-border-color: #0b7a7a;
  --bs-btn-focus-shadow-rgb: 11, 122, 122;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #096666;
  --bs-btn-active-border-color: #096666;
  color: #0b7a7a;
  border-color: #0b7a7a;
}
.btn-outline-primary:hover {
  background-color: #0b7a7a !important;
  border-color: #0b7a7a !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gs-gold-500), var(--gs-gold-600));
  color: #fff;
  border: none;
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gs-gold-600), var(--gs-gold-700));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196, 149, 48, 0.35);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

/* =============================================================================
   HEADER / NAVIGATION
   ============================================================================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--gs-neutral-200);
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.site-header .nav-link {
  color: var(--gs-neutral-600);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 1rem !important;
  border-radius: 0.375rem;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.site-header .nav-link:hover,
.site-header .nav-link.nav-link-active {
  color: var(--gs-teal-600);
  background: var(--gs-teal-50);
}
.site-header .nav-link.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--gs-teal-500);
  border-radius: 1px;
}

.brand-text {
  font-family: var(--bs-heading-font-family);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gs-dark-900);
  line-height: 1.2;
}
.brand-text span {
  color: var(--gs-teal-600);
}

/* =============================================================================
   HERO SECTIONS
   ============================================================================= */
.hero-section {
  background: linear-gradient(160deg, var(--gs-dark-900) 0%, var(--gs-teal-800) 50%, var(--gs-teal-700) 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-section .lead {
  color: rgba(255,255,255,0.75);
}

.page-hero {
  padding: 5rem 0 4rem;
}
.page-hero h1 {
  color: #fff;
}

/* Gold gradient text */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gs-gold-300), var(--gs-gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================================
   SECTION LAYOUT
   ============================================================================= */
.section {
  padding: 5rem 0;
}
.section-sm {
  padding: 3.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--gs-neutral-500);
  font-size: 1.05rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35em 1em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.section-badge-teal {
  background: var(--gs-teal-50);
  color: var(--gs-teal-600);
  border: 1px solid var(--gs-teal-100);
}
.section-badge-gold {
  background: var(--gs-gold-50);
  color: var(--gs-gold-700);
  border: 1px solid var(--gs-gold-100);
}
.section-badge-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.bg-section-alt {
  background: var(--gs-neutral-100);
}

/* =============================================================================
   CARDS
   ============================================================================= */
.card-clean {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--gs-neutral-200);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card-clean:hover {
  border-color: var(--gs-teal-200);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}

/* Accent bar that animates in on hover */
.card-clean .card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gs-teal-500), var(--gs-gold-400));
  transition: width 0.4s ease;
}
.card-clean:hover .card-accent {
  width: 100%;
}

/* Icon wrappers */
.icon-box {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.icon-box-teal {
  background: var(--gs-teal-50);
  color: var(--gs-teal-600);
}
.icon-box-gold {
  background: var(--gs-gold-50);
  color: var(--gs-gold-600);
}
.icon-box-dark {
  background: var(--gs-dark-800);
  color: var(--gs-gold-400);
}

.card-clean:hover .icon-box-teal {
  background: var(--gs-teal-600);
  color: #fff;
}
.card-clean:hover .icon-box-gold {
  background: var(--gs-gold-500);
  color: #fff;
}

/* =============================================================================
   COURSE CARDS
   ============================================================================= */
.course-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid var(--gs-neutral-200);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  border-color: var(--gs-teal-200);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  transform: translateY(-5px);
}

.course-thumb {
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.course-thumb-teal {
  background: linear-gradient(135deg, var(--gs-teal-50), var(--gs-teal-100));
}
.course-thumb-gold {
  background: linear-gradient(135deg, var(--gs-gold-50), var(--gs-gold-100));
}
.course-thumb-dark {
  background: linear-gradient(135deg, var(--gs-dark-800), var(--gs-dark-700));
}

.course-thumb i {
  font-size: 3rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}
.course-card:hover .course-thumb i {
  transform: scale(1.12);
}

.course-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* =============================================================================
   STATS BAR
   ============================================================================= */
.stats-bar {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--gs-neutral-200);
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 10;
  margin-top: -3rem;
}
.stat-item {
  text-align: center;
  padding: 0.5rem;
}
.stat-number {
  font-family: var(--bs-heading-font-family);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gs-neutral-500);
  font-weight: 600;
}

/* =============================================================================
   FEATURE ROWS
   ============================================================================= */
.feature-row {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  transition: all 0.25s ease;
  background: #fff;
  border: 1px solid var(--gs-neutral-200);
}
.feature-row:hover {
  border-color: var(--gs-teal-200);
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

/* =============================================================================
   PROCESS STEPS
   ============================================================================= */
.step-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.7);
}
.process-connector {
  position: absolute;
  top: 1.75rem;
  left: 14%;
  right: 14%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gs-neutral-300) 0, var(--gs-neutral-300) 8px, transparent 8px, transparent 16px);
  z-index: 1;
}

/* =============================================================================
   PROGRESS BARS
   ============================================================================= */
.progress-bar-custom {
  height: 8px;
  border-radius: 4px;
  background: var(--gs-neutral-200);
  overflow: hidden;
}
.progress-bar-custom .bar {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}
.bar-teal { background: linear-gradient(90deg, var(--gs-teal-500), var(--gs-teal-400)); }
.bar-gold  { background: linear-gradient(90deg, var(--gs-gold-500), var(--gs-gold-400)); }

/* =============================================================================
   FAQ
   ============================================================================= */
.faq-item {
  background: #fff;
  border: 1px solid var(--gs-neutral-200);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--gs-teal-200);
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.site-footer {
  background: var(--gs-dark-900);
  color: rgba(255,255,255,0.65);
}
.site-footer a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--gs-gold-400);
}
.site-footer h5 {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-brand-text {
  font-family: var(--bs-heading-font-family);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
.footer-brand-text span {
  color: var(--gs-gold-400);
}

.footer-top-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--gs-teal-500), var(--gs-gold-400), var(--gs-teal-500));
}

.footer-newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  font-size: 0.9rem;
}
.footer-social-btn:hover {
  background: var(--gs-teal-600);
  border-color: var(--gs-teal-500);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* =============================================================================
   FLOATING ELEMENTS (hero)
   ============================================================================= */
.float-card {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 0.75rem;
  padding: 0.85rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(255,255,255,0.5);
}

/* =============================================================================
   ANIMATIONS
   ============================================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 24px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes bounce-gentle {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.anim-delay-1 { animation-delay: 0.15s; }
.anim-delay-2 { animation-delay: 0.3s; }
.anim-delay-3 { animation-delay: 0.45s; }

.anim-float {
  animation: float 5s ease-in-out infinite;
}
.anim-float-delay {
  animation: float 5s ease-in-out 1.5s infinite;
}
.anim-bounce {
  animation: bounce-gentle 2.5s infinite;
}

/* Scroll reveal */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal        { transform: translateY(20px); }
.reveal-left   { transform: translateX(-20px); }
.reveal-right  { transform: translateX(20px); }
.reveal-scale  { transform: scale(0.96); }

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* =============================================================================
   UTILITY HELPERS
   ============================================================================= */
.text-teal   { color: var(--gs-teal-600) !important; }
.text-gold   { color: var(--gs-gold-500) !important; }
.text-muted-light { color: var(--gs-neutral-500) !important; }

.bg-teal-soft  { background: var(--gs-teal-50) !important; }
.bg-gold-soft  { background: var(--gs-gold-50) !important; }
.bg-dark-deep  { background: var(--gs-dark-900) !important; }

.text-white-75 { color: rgba(255,255,255,0.75) !important; }
.text-white-60 { color: rgba(255,255,255,0.60) !important; }
.text-white-45 { color: rgba(255,255,255,0.45) !important; }

/* Glass card in hero visual */
.hero-visual-frame {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.25rem;
  padding: 1.5rem;
}
.hero-map-area {
  border-radius: 1rem;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--gs-dark-800), var(--gs-teal-900));
  position: relative;
  overflow: hidden;
}
.hero-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Map marker pings */
.marker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
}
.marker-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.4;
  animation: ping 2s ease-out infinite;
}
@keyframes ping {
  0%   { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Checklist items in service cards */
.check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gs-neutral-500);
}
.check-item i {
  color: var(--gs-teal-500);
  font-size: 0.875rem;
}

/* Tech stack mini-cards */
.tech-chip {
  background: #fff;
  border: 1px solid var(--gs-neutral-200);
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.25s ease;
  height: 100%;
}
.tech-chip:hover {
  border-color: var(--gs-teal-200);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}
.tech-chip .tech-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.625rem;
  margin: 0 auto 0.5rem;
  font-size: 1.4rem;
}

/* CTA sections */
.cta-section {
  background: linear-gradient(160deg, var(--gs-dark-900) 0%, var(--gs-teal-800) 100%);
  position: relative;
  overflow: hidden;
}

/* Info tiles in "why choose us" */
.info-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.08);
}
.info-tile-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  font-size: 1.25rem;
}

/* Form styling */
.form-control, .form-select {
  border-radius: 0.5rem;
  border: 1px solid var(--gs-neutral-300);
  padding: 0.65rem 0.875rem;
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gs-teal-400);
  box-shadow: 0 0 0 3px rgba(11, 122, 122, 0.12);
}

/* Badge on hero pages */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4em 1em;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}
.hero-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gs-gold-400);
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 991.98px) {
  .hero-section { padding: 4rem 0 3rem; }
  .page-hero { padding: 3.5rem 0 3rem; }
  .section { padding: 3.5rem 0; }
  .section-header h2 { font-size: 1.6rem; }
}

@media (max-width: 767.98px) {
  .section { padding: 3rem 0; }
  .stats-bar { margin-top: -2rem; padding: 1.5rem 1rem; }
  .stat-number { font-size: 1.75rem; }
  .footer-newsletter { padding: 1.5rem; }
}
