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

/* ===== CSS Custom Properties ===== */
:root {
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --gold-dark: #b8922e;
  --gold-glow: rgba(212, 168, 83, 0.3);
  --gold-gradient: linear-gradient(135deg, #d4a853 0%, #f0d48a 40%, #d4a853 60%, #b8922e 100%);
  --gold-text-gradient: linear-gradient(135deg, #f0d48a, #d4a853, #b8922e);
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border: #222222;
  --dark-surface: #1a1a1a;
  --dark-surface-hover: #242424;
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --green-whatsapp: #25d366;
  --green-whatsapp-dark: #128c40;
  --red-accent: #e74c3c;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(212, 168, 83, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  background-color: var(--black);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ===== Gold shimmer text ===== */
.gold-text {
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.1);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 12px 40px;
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: rgba(212, 168, 83, 0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.navbar-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  font-family: 'Playfair Display', serif;
}

.navbar-brand .brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

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

.navbar-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-normal);
  border-radius: 1px;
}

.navbar-links a:hover {
  color: var(--gold-light);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--green-whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition-normal);
}

.navbar-whatsapp:hover {
  background: var(--green-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* ===== HERO / LANDING SECTION ===== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 20px 40px;
}

/* Animated background particles */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* Radial gold gradient bg */
.hero-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 28px;
  background: rgba(212, 168, 83, 0.05);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* ===== CHOICE CIRCLES ===== */
.choice-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

.choice-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  background: var(--black-card);
  border: 2px solid rgba(212, 168, 83, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  padding: 30px;
}

/* Rotating gold ring */
.choice-circle::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0%, var(--gold) 25%, transparent 50%, var(--gold-dark) 75%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: rotate-ring 4s linear infinite paused;
}

.choice-circle:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@keyframes rotate-ring {
  to { transform: rotate(360deg); }
}

/* Outer glow */
.choice-circle::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -2;
}

.choice-circle:hover::after {
  opacity: 1;
}

.choice-circle:hover {
  transform: scale(1.08);
  border-color: var(--gold);
  background: rgba(212, 168, 83, 0.06);
  box-shadow: var(--shadow-gold);
}

.choice-circle .choice-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  transition: var(--transition-normal);
  filter: drop-shadow(0 0 8px rgba(212,168,83,0.3));
}

.choice-circle:hover .choice-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 16px rgba(212,168,83,0.5));
}

.choice-circle .choice-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  transition: var(--transition-normal);
}

.choice-circle:hover .choice-label {
  color: var(--gold-light);
}

.choice-circle .choice-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 400;
  transition: var(--transition-normal);
}

.choice-circle:hover .choice-sublabel {
  color: var(--text-secondary);
}

/* Divider between circles */
.choice-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.choice-divider .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark), transparent);
}

/* ===== VIP MOTIVATION CARDS ===== */
.vip-reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.vip-reason-card {
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.9), rgba(15, 15, 15, 0.95));
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vip-reason-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.1), transparent);
  transition: left 0.6s ease;
}

.vip-reason-card:hover::before {
  left: 100%;
}

.vip-reason-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.15);
}

.vip-reason-card .reason-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(212, 168, 83, 0.3));
}

.vip-reason-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.vip-reason-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: rgba(212, 168, 83, 0.04);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== CATEGORY FILTERS ===== */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border: 1px solid var(--black-border);
  background: var(--black-card);
  color: var(--text-secondary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
  border-color: var(--gold-dark);
  color: var(--gold-light);
  background: rgba(212, 168, 83, 0.06);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: transparent;
  font-weight: 600;
}

/* ===== SEARCH BOX ===== */
.search-box {
  display: flex;
  align-items: center;
  max-width: 500px;
  margin: 0 auto 40px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 50px;
  padding: 4px 6px 4px 24px;
  transition: var(--transition-normal);
}

.search-box:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212,168,83,0.1);
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  padding: 12px 0;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.search-box button {
  padding: 10px 24px;
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: 'Inter', sans-serif;
}

.search-box button:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 15px var(--gold-glow);
}

/* ===== NUMBER CARDS ===== */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.number-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.number-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.number-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.number-card:hover::before {
  opacity: 1;
}

.number-card .card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.number-card .card-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-vip {
  background: linear-gradient(135deg, rgba(212,168,83,0.2), rgba(212,168,83,0.05));
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.3);
}

.badge-gold {
  background: linear-gradient(135deg, rgba(240,212,138,0.2), rgba(240,212,138,0.05));
  color: var(--gold-light);
  border: 1px solid rgba(240,212,138,0.3);
}

.badge-silver {
  background: linear-gradient(135deg, rgba(192,192,192,0.15), rgba(192,192,192,0.05));
  color: #c0c0c0;
  border: 1px solid rgba(192,192,192,0.25);
}

.badge-platinum {
  background: linear-gradient(135deg, rgba(200,200,220,0.15), rgba(200,200,220,0.05));
  color: #d4d4e8;
  border: 1px solid rgba(200,200,220,0.3);
}

.number-card .card-operator {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.number-card .phone-number {
  font-family: 'Outfit', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.number-card .number-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.number-card .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.number-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.number-card .price .currency {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 2px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--green-whatsapp);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: var(--green-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* ===== COUNTRY CARDS (Foreign SIMs) ===== */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.country-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.country-card:hover {
  border-color: rgba(212, 168, 83, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.country-card .country-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.country-card .country-flag {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.country-card .country-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

.country-card .sim-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.country-card .feature-tag {
  padding: 4px 10px;
  background: rgba(212, 168, 83, 0.06);
  border: 1px solid rgba(212, 168, 83, 0.15);
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 500;
}

.country-card .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.country-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.country-card .price span {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* ===== FEATURES / WHY US ===== */
.features-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--black-soft) 50%, var(--black) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.feature-card .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.8rem;
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid rgba(212, 168, 83, 0.15);
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 10px 0 30px;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 360px;
  max-width: 400px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(212, 168, 83, 0.2);
  box-shadow: var(--shadow-gold);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
}

.testimonial-card .author-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

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

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 40px;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}

.stat-item {
  text-align: center;
  min-width: 140px;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 40px 30px;
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

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

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 34px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--dark-surface);
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 1.2rem;
  transition: var(--transition-normal);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 14px 20px;
  }

  .navbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(212,168,83,0.1);
  }

  .navbar-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .choice-container {
    gap: 30px;
  }

  .choice-circle {
    width: 200px;
    height: 200px;
    padding: 20px;
  }

  .choice-circle .choice-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .choice-circle .choice-label {
    font-size: 0.9rem;
  }

  .choice-divider {
    display: none;
  }

  .section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .numbers-grid,
  .countries-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    gap: 24px;
    padding: 40px 20px;
  }

  .stat-item .stat-number {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card {
    min-width: 280px;
  }

  .number-card .phone-number {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .choice-circle {
    width: 170px;
    height: 170px;
    padding: 18px;
  }

  .choice-circle .choice-icon {
    font-size: 1.8rem;
  }

  .choice-circle .choice-label {
    font-size: 0.82rem;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 82px;
    right: 24px;
    width: 38px;
    height: 38px;
  }
}
