/* ==========================================================================
   GEOSHINE ABIDJAN - INTERACTIVE PARTICLES & SHINE ANIMATION ENGINE
   ========================================================================== */

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

:root {
  /* Dominant Pure Blue & Secondary Sky Blue Palette */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: rgba(37, 99, 235, 0.06);
  --primary-glow: rgba(37, 99, 235, 0.3);
  
  --secondary: #38bdf8;
  --secondary-dark: #0284c7;
  --secondary-light: rgba(56, 189, 248, 0.1);
  
  --blue: #2563eb;
  --cyan: #06b6d4;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --violet: #8b5cf6;
  --emerald: #10b981;
  
  --dark-slate: #0f172a;
  --navy: #090d16;
  
  /* Surface & Base */
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-subtle: #f1f5f9;
  --card-bg: #ffffff;
  
  --border-light: #e2e8f0;
  --border-subtle: #cbd5e1;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-main: 0 16px 32px -8px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
  --shadow-hover: 0 24px 48px -12px rgba(37, 99, 235, 0.22), 0 8px 24px -4px rgba(15, 23, 42, 0.06);
  
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background-color: var(--bg-main);
  color: var(--text-body);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

body.has-mobile-bar {
  padding-bottom: 72px;
}

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

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

/* Interactive Particle Canvas Overlay */
#geoshine-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Senior Enterprise Typography Scale */
h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text-main);
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text-main);
}

/* Gradient & Shimmer Effects */
.text-gradient {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  background-size: 200% auto;
  animation: shineGradient 4s linear infinite;
}

@keyframes shineGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Logo Image Styling */
.logo-img {
  max-height: 42px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.06) rotate(-2deg);
}

/* Badges & Live Indicators */
.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}

.highlight-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  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); }
}

/* Dynamic Floating Keyframes */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.floating-badge.badge-top { animation: floatBadge 4.5s ease-in-out infinite; }
.floating-badge.badge-bottom { animation: floatBadge 5.5s ease-in-out infinite 1.2s; }

/* Scroll Reveal Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: clamp(54px, 6vw, 76px) 0;
}

.section-title {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px auto;
}

.section-title h2 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Enterprise Buttons with Light Sweep Shimmer */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transform: rotate(30deg);
  transition: all 0.6s ease;
}

.btn:hover::after {
  left: 130%;
}

.btn-primary {
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px -4px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.42);
}

/* Sticky Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

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

.nav-links a {
  font-weight: 600;
  color: var(--text-body);
  padding: 6px 0;
  font-size: 0.9rem;
  position: relative;
  display: inline-block;
}

.mobile-nav-action {
  display: none;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 2050;
}

/* Split Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  padding-top: 140px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 85% 15%, rgba(37, 99, 235, 0.08) 0%, transparent 55%),
              radial-gradient(circle at 15% 85%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
              var(--bg-main);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.hero-content p {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 30px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

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

.stat-item h3 {
  font-size: 1.7rem;
  color: var(--primary-dark);
  font-weight: 800;
}

.stat-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 600;
}

.hero-visual { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-light);
}

.hero-image-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.floating-badge {
  position: absolute;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-main);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.floating-badge.badge-top { top: 24px; left: -24px; }
.floating-badge.badge-bottom { bottom: 24px; right: -24px; }

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.badge-text strong { display: block; font-size: 0.88rem; color: var(--text-main); }
.badge-text span { font-size: 0.76rem; color: var(--text-muted); }

/* Editorial Zones Gallery */
.zones-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 4px;
  background: var(--dark-slate);
}

.zone-item {
  height: 260px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: var(--transition);
}

.zone-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
  transition: var(--transition);
}

.zone-item:hover::before {
  background: linear-gradient(to top, rgba(37, 99, 235, 0.85) 0%, transparent 70%);
}

.zone-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px 12px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.zone-item:hover .zone-label {
  transform: translateY(-6px);
}

/* Payment Gallery */
.payment-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 4px;
  background: var(--dark-slate);
}

.payment-item {
  height: 170px;
  background-size: contain;
  background-position: center;
  position: relative;
  transition: var(--transition);
}

.payment-item:hover {
  filter: brightness(1.1);
  transform: scale(1.01);
}

/* SECTION THEME SYSTEM */
.theme-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #090d16 100%);
  color: #e2e8f0;
}
.theme-dark h2, .theme-dark h3, .theme-dark h4, .theme-dark strong { color: #ffffff !important; }
.theme-dark p, .theme-dark li, .theme-dark small { color: #cbd5e1; }
.theme-dark .highlight-badge { background: rgba(56,189,248,0.15); color: #38bdf8; border-color: rgba(56,189,248,0.3); }

.theme-surface {
  background: var(--bg-surface);
}

/* Cards & Grid Components with Shimmer & 3D Lift */
.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-glow);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.18);
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.pricing-features {
  list-style: none;
  margin: 16px 0;
}

.pricing-features li {
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-main);
  border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(4deg);
}

.icon-bg-blue { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.icon-bg-amber { background: rgba(245, 158, 11, 0.1); color: var(--amber); }
.icon-bg-rose { background: rgba(244, 63, 94, 0.1); color: var(--rose); }
.icon-bg-violet { background: rgba(139, 92, 246, 0.1); color: var(--violet); }

/* Official Services Column Table */
.services-table-wrapper {
  overflow-x: auto;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
  margin-bottom: 40px;
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.services-table th {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 18px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.services-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-body);
  vertical-align: middle;
  transition: background 0.2s ease;
}

.services-table tr:hover td {
  background: rgba(37, 99, 235, 0.05);
}

.services-table tr.flagship-row {
  background: rgba(37, 99, 235, 0.04);
}

.services-table td.service-name-cell {
  font-weight: 700;
  color: var(--text-main);
  font-size: 0.98rem;
  min-width: 220px;
}

.services-table td.price-cell {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.08rem;
  white-space: nowrap;
  font-family: var(--font-heading);
}

/* Subscription Grid */
.subscription-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.subscription-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.subscription-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.subscription-card.popular {
  border: 2px solid var(--primary);
}

.price-tag {
  margin: 16px 0;
}

.price-tag .amount {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--primary-dark);
}

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

/* Interactive Booking Wizard */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-light);
  transform: translateY(-50%);
  z-index: 1;
  border-radius: var(--radius-full);
}

.progress-bar-fill {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  background: var(--primary);
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.3s ease;
  border-radius: var(--radius-full);
}

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

.wizard-step-node.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 0 0 6px var(--primary-light);
}

.wizard-step-node.completed {
  border-color: var(--primary);
  background: var(--primary);
  color: #ffffff;
}

.calculator-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-main);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-main);
  background: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light);
}

.addon-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-surface);
  cursor: pointer;
  transition: var(--transition);
}

.addon-card:hover, .addon-card.selected {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

/* Footer Component */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding-top: 60px;
  padding-bottom: 30px;
  margin-top: auto;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 0.88rem;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 0.82rem;
}

/* Floating WhatsApp Widget */
.floating-wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
  background: #25d366;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-wa-widget:hover {
  transform: translateY(-4px) scale(1.04);
  background: #1eb956;
}

/* Mobile Responsive Adjustments */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .zones-gallery { grid-template-columns: repeat(3, 1fr); }
  .payment-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-container { padding: 0 16px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 82%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 30px 24px;
    gap: 16px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
  }

  .nav-links.active, .nav-links.open { right: 0 !important; display: flex !important; }
  .mobile-toggle { display: block !important; position: relative; z-index: 2050; }
  .desktop-nav-btn { display: none !important; }
  .mobile-nav-action { display: block !important; width: 100%; margin-top: 10px; }
  .zones-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .floating-wa-widget span { display: none; }
  .floating-wa-widget { padding: 14px; border-radius: 50%; }
}
