﻿/* ==========================================================================
   XboxVault Premium Theme - Dark Gaming Aesthetic
   ========================================================================== */

:root {
  --bg-main: #0a0d14;
  --bg-card: #121824;
  --bg-card-hover: #192233;
  --bg-glass: rgba(18, 24, 36, 0.85);
  
  --xbox-green: #107c10;
  --xbox-neon: #00e65b;
  --xbox-glow: rgba(16, 124, 16, 0.45);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #6b7280;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 230, 91, 0.3);
  
  --gold: #f59e0b;
  --radius: 12px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo span {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #0e5e0e, #107c10, #0a460a);
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.region-badge {
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
}

.logo i {
  color: var(--xbox-neon);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px var(--xbox-glow));
}

.logo .highlight {
  color: var(--xbox-neon);
}

.nav-links {
  display: flex;
  gap: 25px;
}

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

.nav-links a:hover {
  color: var(--xbox-neon);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, #107c10 0%, #00b047 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 124, 16, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0e6e0e 0%, #00c853 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 230, 91, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  border-color: var(--xbox-neon);
  color: var(--xbox-neon);
  background: rgba(0, 230, 91, 0.05);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
}

.full-width {
  width: 100%;
}

.pulse {
  animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 91, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0, 230, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 91, 0); }
}

.whatsapp-btn {
  background: #25d366 !important;
  color: #fff !important;
}

.whatsapp-btn:hover {
  background: #20ba5a !important;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 90px 0 60px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, var(--xbox-glow) 0%, rgba(10, 13, 20, 0) 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(16, 124, 16, 0.15);
  border: 1px solid var(--border-accent);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--xbox-neon);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 3.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.price-highlight {
  color: var(--xbox-neon);
  text-shadow: 0 0 25px rgba(0, 230, 91, 0.5);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 30px;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 35px;
}

.h-badge {
  background: var(--bg-card);
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.h-badge i {
  color: var(--xbox-neon);
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

/* Trust Stats */
.trust-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  max-width: 650px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(18, 24, 36, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 35px;
  background: var(--border-color);
}

/* Common Section Styles */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
}

.sub-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--xbox-neon);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

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

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 35px 25px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
}

.step-card.featured {
  border-color: var(--xbox-neon);
  box-shadow: 0 0 20px rgba(0, 230, 91, 0.15);
}

.step-badge {
  position: absolute;
  top: -12px;
  right: 25px;
  background: var(--xbox-neon);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.step-icon {
  font-size: 2rem;
  color: var(--xbox-neon);
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Games Catalog Controls */
.catalog-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dark);
}

.search-box input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.search-box input:focus {
  border-color: var(--xbox-neon);
  box-shadow: 0 0 15px rgba(0, 230, 91, 0.2);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--xbox-green);
  color: #fff;
  border-color: var(--xbox-green);
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 45px;
}

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

.game-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.game-poster-wrap {
  position: relative;
  height: 220px;
  background-color: #1a2233;
  overflow: hidden;
}

.game-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-poster {
  transform: scale(1.05);
}

.tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.tag-badge.hot {
  background: #dc2626;
  color: #fff;
}

.game-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.game-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-meta {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.game-meta span i {
  color: var(--xbox-neon);
  margin-right: 4px;
}

.game-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--xbox-neon);
}

.game-price del {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-right: 5px;
}

/* Custom Request Box */
.custom-request-box {
  background: linear-gradient(135deg, #131d2e 0%, #172439 100%);
  border: 1px dashed var(--border-accent);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cr-content h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.cr-content p {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 0.95rem;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.popular {
  border-color: var(--xbox-neon);
  background: linear-gradient(180deg, #152233 0%, var(--bg-card) 100%);
  box-shadow: 0 0 30px rgba(0, 230, 91, 0.15);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--xbox-neon);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  letter-spacing: 1px;
}

.p-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
}

.p-header h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.p-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price .currency {
  font-size: 1.8rem;
  vertical-align: super;
  color: var(--xbox-neon);
}

.price .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-gbp {
  font-size: 0.85rem;
  color: var(--xbox-neon);
  margin-top: 8px;
}

.p-features {
  list-style: none;
  margin-bottom: 30px;
  flex-grow: 1;
}

.p-features li {
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-features li i {
  color: var(--xbox-neon);
  font-size: 0.85rem;
}

.p-features li strong {
  color: #fff;
}

/* Payment Strip */
.payment-methods-strip {
  text-align: center;
  padding: 25px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.payment-methods-strip span {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 15px;
}

.pay-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.pay-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.pay-tag i {
  color: var(--xbox-neon);
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: var(--transition);
}

.feature-box:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.f-icon {
  font-size: 2.2rem;
  color: var(--xbox-neon);
  margin-bottom: 18px;
}

.feature-box h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--xbox-green), var(--xbox-neon));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.reviewer-info strong {
  display: block;
  font-size: 0.95rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header i {
  color: var(--xbox-neon);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-body {
  padding: 0 24px 20px;
  max-height: 250px;
}

.accordion-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #0e5e0e 0%, #107c10 50%, #083808 100%);
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: #06090e;
  padding: 60px 0 20px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #fff;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--xbox-neon);
  margin-top: 10px;
}

.status-indicator .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--xbox-neon);
  box-shadow: 0 0 10px var(--xbox-neon);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dark);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  padding: 35px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-icon {
  font-size: 2.2rem;
  color: var(--xbox-neon);
  margin-bottom: 8px;
}

.modal-header h3 {
  font-size: 1.6rem;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--xbox-neon);
  font-weight: 500;
}

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

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

.form-group input, .form-group select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--xbox-neon);
}

.modal-guarantee-note {
  background: rgba(16, 124, 16, 0.15);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--xbox-neon);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

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

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
}

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-wa:hover .wa-tooltip {
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 1rem; }
  .trust-stats { flex-direction: column; gap: 15px; }
  .stat-divider { display: none; }
  .footer-content { grid-template-columns: 1fr; }
  .custom-request-box { text-align: center; justify-content: center; }
  .floating-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 26px; }
}
