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

:root {
  --navy: #1A2A6B;
  --navy-dark: #101A4A;
  --navy-mid: #1E3380;
  --red: #C8102E;
  --red-dark: #A00D24;
  --red-light: #E8294A;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --green: #16A34A;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26,42,107,0.10);
  --shadow-lg: 0 12px 48px rgba(26,42,107,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 700; line-height: 1.08; }
h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.3; letter-spacing: 0.01em; }
p { font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.4); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

.btn-nav {
  background: var(--red);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(200,16,46,0.25);
}
.btn-nav:hover { background: var(--red-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200,16,46,0.35); }
.nav-links a.btn-nav-pay {
  background: var(--green);
  color: var(--white) !important;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
}
.nav-links a.btn-nav-pay:hover { background: #15803D; }

.btn-service,
.btn-service-featured {
  background: var(--red);
  color: white;
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 50px;
  margin-top: auto;
}
.btn-service:hover,
.btn-service-featured:hover { background: var(--red-light); transform: translateY(-1px); }

.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px 24px;
  font-size: 0.9rem;
  gap: 8px;
  width: fit-content;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { color: var(--navy); margin: 12px 0 16px; }
.section-header p { color: var(--gray-600); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

.section-header-light { text-align: center; margin-bottom: 60px; }
.section-header-light h2 { color: var(--white); margin: 12px 0 16px; }
.section-header-light p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.section-badge {
  display: inline-block;
  background: rgba(200,16,46,0.08);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(200,16,46,0.2);
}

.section-badge-light {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 8px 0;
  transition: var(--transition);
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 20px rgba(26,42,107,0.12);
}
.navbar.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 28px rgba(26,42,107,0.18);
}

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

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 80px;
  width: auto;
  display: block;
}
.logo-img-sm { height: 52px; }
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-visa { color: var(--red); }

.logo-footer .logo-text { color: white; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}
.nav-links a {
  color: var(--gray-600);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.btn-nav,
.nav-links a.btn-nav:hover { color: var(--white); }

/* ===== LANG SWITCHER ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 11px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Jost', sans-serif;
}
.lang-btn:hover:not(.active) {
  color: var(--navy);
  background: var(--gray-200);
}
.lang-btn.active {
  background: var(--red);
  color: white;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 999;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1E3580 100%);
  overflow: hidden;
}

/* Decorative red stripe */
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(160deg, rgba(200,16,46,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,42,107,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* Stars decoration */
.hero-overlay::after {
  content: '★ ★ ★';
  position: absolute;
  top: 32%;
  right: 8%;
  color: rgba(200,16,46,0.12);
  font-size: 5rem;
  letter-spacing: 1.5rem;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 24px 80px;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,16,46,0.2);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(200,16,46,0.4);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.highlight { color: var(--red); }

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { color: var(--white); font-size: 1.8rem; font-weight: 800; line-height: 1; }
.stat span { color: rgba(255,255,255,0.55); font-size: 0.8rem; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.stat.stat-single { flex-direction: row; align-items: center; gap: 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50px; padding: 12px 24px; }
.stat.stat-single strong { font-size: 2rem; white-space: nowrap; }
.stat.stat-single span { font-size: 0.85rem; margin-top: 0; max-width: 280px; line-height: 1.4; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease infinite;
  z-index: 2;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
}

/* ===== WORLD CUP 2026 ===== */
.worldcup {
  position: relative;
  background: linear-gradient(160deg, #080e1f 0%, #0d1b3e 40%, #0a1628 100%);
  overflow: hidden;
  padding: 0 0 70px;
}

.wc-flag-stripe {
  position: relative;
  top: 0; left: 0; right: 0;
  height: 6px;
  display: flex;
  margin-bottom: 60px;
}
.wc-stripe { flex: 1; }
.wc-stripe-red   { background: #D52B1E; }
.wc-stripe-white { background: white; }
.wc-stripe-blue  { background: #0038A8; }

/* HERO GRID */
.wc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 56px;
}

/* TEXT SIDE */
.wc-content { display: flex; flex-direction: column; gap: 22px; }

.wc-fifa-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(255,215,0,0.25));
}

.wc-top-badge {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  color: #FFD700;
  border: 1px solid rgba(255,215,0,0.35);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 7px 18px;
  border-radius: 50px;
  width: fit-content;
  text-transform: uppercase;
}

.wc-title {
  color: white;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
}
.wc-gold { color: #FFD700; text-shadow: 0 0 30px rgba(255,215,0,0.4); }

.wc-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.75;
}
.wc-sub strong { color: white; }

/* Checklist */
.wc-checklist { display: flex; flex-direction: column; gap: 10px; }
.wc-check-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.88); font-size: 0.92rem;
}
.wc-check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,215,0,0.15);
  border: 1.5px solid rgba(255,215,0,0.5);
  color: #FFD700; font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.wc-meta { display: flex; flex-direction: column; gap: 12px; }
.wc-meta-item { display: flex; align-items: center; gap: 14px; }
.wc-meta-icon { font-size: 1.2rem; width: 30px; text-align: center; flex-shrink: 0; }
.wc-meta-item strong { display: block; color: white; font-size: 0.92rem; }
.wc-meta-item span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.btn-wc {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0d1b3e;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  width: fit-content;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-wc:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.5);
}

/* TROPHY PHOTO SIDE */
.wc-trophy-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
  justify-content: center;
}

/* PROMO PRICING BOX */
.wc-promo-box {
  background: linear-gradient(135deg, rgba(255,215,0,0.12) 0%, rgba(255,165,0,0.08) 100%);
  border: 1.5px solid rgba(255,215,0,0.45);
  border-radius: 20px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wc-promo-header {
  color: #FFD700;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}
.wc-promo-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wc-promo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px;
  position: relative;
}
.wc-promo-item.wc-promo-featured {
  background: rgba(255,215,0,0.07);
  border-radius: 12px;
  padding: 14px 12px;
  margin: 2px 0;
}
.wc-promo-badge-hot {
  position: absolute;
  top: -10px; left: 12px;
  background: #D52B1E;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.wc-promo-label {
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}
.wc-promo-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  margin-top: 2px;
}
.wc-promo-price {
  color: #FFD700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(255,215,0,0.4);
  flex-shrink: 0;
}
.wc-promo-divider {
  height: 1px;
  background: rgba(255,215,0,0.15);
  margin: 0 4px;
}
.wc-promo-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0d1b3e;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
}
.wc-promo-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,0.45); }
.wc-trophy-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.wc-trophy-photo {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,215,0,0.15);
  display: block;
}
.wc-trophy-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0d1b3e;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 22px;
  border-radius: 50px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(255,165,0,0.4);
}

/* DRAW PHOTO STRIP */
.wc-draw-strip {
  margin: 60px 0 48px;
  padding: 0 0;
}
/* Wide draw photo (landscape — Final Draw) */
.wc-draw-photo-wrap--wide {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}
.wc-draw-photo--wide {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.wc-draw-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,14,31,0.82) 0%, rgba(8,14,31,0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;
  gap: 18px;
}
.wc-draw-text {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 520px;
  margin: 0;
}

/* Qualified + Sedes grid */
.wc-qualified-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 0;
}
.wc-qualified-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,215,0,0.12);
}
.wc-qualified-img {
  width: 100%;
  display: block;
}
/* Cover Aramco sponsor logo at top-right of qualified image */
.wc-aramco-cover {
  position: absolute;
  top: 0; right: 0;
  width: 44%;
  height: 8%;
  background: #2BB5E8;
  z-index: 2;
  border-radius: 0 20px 0 8px;
}
.wc-sedes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wc-sedes-title {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
}
.wc-sede-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wc-sede-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  transition: var(--transition);
}
.wc-sede-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,215,0,0.3); }
.wc-sede-flag { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.wc-sede-card strong { display: block; color: white; font-size: 0.95rem; margin-bottom: 3px; }
.wc-sede-card span { color: rgba(255,255,255,0.55); font-size: 0.8rem; line-height: 1.4; }

.wc-draw-label {
  color: #FFD700;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.wc-draw-text {
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 520px;
  margin: 0;
}
.btn-wc-sm {
  display: inline-block;
  background: #FFD700;
  color: #0d1b3e;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  width: fit-content;
  transition: var(--transition);
}
.btn-wc-sm:hover { background: #ffe44d; transform: translateY(-2px); }

/* BOTTOM: FACTS + TEAMS */
.wc-bottom { display: flex; flex-direction: column; gap: 28px; }

.wc-facts-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,215,0,0.07);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 14px;
  padding: 18px 28px;
  gap: 8px;
}
.wc-fact { display: flex; flex-direction: column; align-items: center; gap: 2px; flex: 1; }
.wc-fact-icon { font-size: 1.2rem; line-height: 1; }
.wc-fact strong { color: #FFD700; font-size: 1.4rem; font-weight: 800; line-height: 1.1; }
.wc-fact span { color: rgba(255,255,255,0.6); font-size: 0.7rem; font-weight: 500; text-align: center; }
.wc-fact-sep { width: 1px; height: 36px; background: rgba(255,215,0,0.18); flex-shrink: 0; }

.wc-teams-header {
  color: #FFD700;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,215,0,0.2);
}
.wc-teams-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.wc-team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: var(--transition); cursor: default;
}
.wc-team-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.wc-team-card.wc-team-featured { border-color: rgba(255,215,0,0.5); background: rgba(255,215,0,0.08); }
.wc-team-flag { font-size: 2rem; line-height: 1; }
.wc-team-name { color: rgba(255,255,255,0.85); font-size: 0.7rem; font-weight: 600; text-align: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .wc-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .wc-trophy-side { display: flex; flex-direction: column; gap: 24px; }
  .wc-teams-grid { grid-template-columns: repeat(6, 1fr); }
  .wc-trophy-wrap { max-width: 100%; }
  .wc-trophy-photo { border-radius: 16px; }
}
@media (max-width: 768px) {
  .wc-hero-grid { padding: 0 0 40px; }
  .wc-teams-grid { grid-template-columns: repeat(4, 1fr); }
  .wc-draw-overlay-side { padding: 20px 22px; gap: 12px; }
  .wc-draw-photo--wide { max-height: 240px; }
  .wc-draw-text { font-size: 1.1rem; }
  .wc-flag-stripe { margin-bottom: 32px; }
  .wc-promo-box { padding: 18px 18px; }
  .wc-promo-price { font-size: 1.3rem; }
  .wc-promo-label { font-size: 0.85rem; }
  .wc-promo-desc { font-size: 0.7rem; }
  .wc-facts-strip { padding: 14px 16px; gap: 4px; }
  .wc-fact strong { font-size: 1.1rem; }
  .wc-fact span { font-size: 0.62rem; }
  .wc-fact-sep { height: 28px; }
  .wc-trophy-badge { font-size: 0.72rem; padding: 8px 16px; bottom: -14px; }
  .wc-bottom { padding: 0 0 8px; }
}

/* ===== COUNTRIES BAR ===== */
.countries-bar {
  background: var(--navy);
  padding: 16px 0;
  border-bottom: 3px solid var(--red);
}
.countries-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.countries-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.countries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}
.countries-list span {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
}
.trust-item svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gray-200);
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(200,16,46,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { background: var(--red); }

.service-card.featured {
  border-color: var(--navy);
  background: linear-gradient(160deg, #EEF1FB 0%, #ffffff 100%);
}
.service-card.featured::before { background: var(--navy); }

.featured-label {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.service-icon { width: 56px; height: 56px; }
.service-icon svg { width: 100%; height: 100%; }

.service-tag {
  display: inline-block;
  background: rgba(200,16,46,0.08);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(200,16,46,0.2);
  width: fit-content;
}

.service-card h3 { color: var(--navy); }
.service-card p { color: var(--gray-600); font-size: 0.9rem; line-height: 1.65; }

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.service-list li {
  color: var(--gray-600);
  font-size: 0.87rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ===== PROCESS ===== */
.proceso {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.proceso::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  gap: 14px;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: rgba(200,16,46,0.35);
  flex-shrink: 0;
  margin-top: 42px;
}

.step-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
}

.step-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
}
.step-icon svg { width: 26px; height: 26px; }

.step h3 { color: var(--white); font-size: 1.05rem; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.65; }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: var(--gray-50);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text { display: flex; flex-direction: column; gap: 20px; }
.why-text h2 { color: var(--navy); }
.why-text > p { color: var(--gray-600); line-height: 1.75; }

.why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 28px; height: 28px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature strong { color: var(--navy); display: block; margin-bottom: 3px; font-size: 0.95rem; }
.why-feature p { color: var(--gray-600); font-size: 0.88rem; margin: 0; }

/* WHY CREDENTIAL */
.why-credential {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--navy);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 8px;
}
.why-credential-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.why-credential strong { color: var(--navy); display: block; margin-bottom: 6px; font-size: 0.97rem; line-height: 1.4; }
.why-credential p { color: var(--gray-600); font-size: 0.88rem; margin: 0; line-height: 1.6; }

/* WHY IMAGE */
.why-image { position: relative; }
.why-image-card {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.why-image-bg {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  border-left: 4px solid var(--red);
}
.stat-card strong { font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-card span { font-size: 0.76rem; color: var(--gray-600); font-weight: 500; }
.stat-card-1 { top: 20px; left: -28px; }
.stat-card-2 { bottom: 20px; right: -28px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: rgba(200,16,46,0.25); }

.testimonial-card.featured-testimonial {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.testimonial-card.featured-testimonial .stars { color: #FBBF24; }
.testimonial-card.featured-testimonial p { color: rgba(255,255,255,0.88); }
.testimonial-card.featured-testimonial strong { color: white; }
.testimonial-card.featured-testimonial span { color: rgba(255,255,255,0.5); }

.stars { color: #FBBF24; font-size: 1rem; letter-spacing: 2px; }

.testimonial-card p { color: var(--gray-600); font-size: 0.93rem; line-height: 1.75; flex: 1; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.93rem; }
.testimonial-author span { color: var(--gray-400); font-size: 0.8rem; }

/* ===== MEDIA TESTIMONIALS ===== */
.media-testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.media-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(200,16,46,0.25);
}

/* Photo card */
.media-photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.media-photo-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.media-photo-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--gray-400);
}
.media-photo-placeholder span {
  color: var(--gray-400);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.media-card-body strong {
  color: var(--navy);
  font-size: 0.95rem;
}
.media-card-body p {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.55;
  font-style: italic;
}
.media-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.media-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.media-card-meta span {
  color: var(--gray-400);
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .media-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .media-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contacto {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.contacto::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 70%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  position: relative;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h2 { color: var(--white); }
.contact-info > p { color: rgba(255,255,255,0.72); line-height: 1.75; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
  cursor: default;
}
.whatsapp-link { cursor: pointer; }
.whatsapp-link:hover { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.3); }

.contact-method-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; }
.whatsapp-link .contact-method-icon { background: #25D366; color: white; }
.email-icon { background: var(--navy-mid); color: white; }
.phone-icon { background: var(--red); color: white; }

.contact-method strong { display: block; color: white; font-size: 0.88rem; font-weight: 600; }
.contact-method span { color: rgba(255,255,255,0.55); font-size: 0.83rem; }

/* FORM */
.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: 'Jost', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}
.form-group select { cursor: pointer; }

.form-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
}
.form-feedback {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}
.form-success { background: #ECFDF5; color: #166534; border: 1px solid #BBF7D0; }
.form-error   { background: #FFF1F2; color: #9F1239; border: 1px solid #FECDD3; }
#formSubmitBtn:disabled { opacity: 0.65; cursor: not-allowed; }

/* ===== FOOTER ===== */
.footer {
  background: #0D1535;
  padding-top: 72px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.87rem; line-height: 1.75; }

.footer-links h4 { color: white; font-size: 0.88rem; margin-bottom: 16px; font-weight: 600; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a, .footer-links li span {
  color: rgba(255,255,255,0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--red); }

.footer-bottom { padding: 24px 0; }
.footer-bottom .container { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.disclaimer { font-size: 0.73rem !important; max-width: 720px; line-height: 1.6; }

/* ===== WORLD CUP FLOAT ===== */
.wc-float {
  position: fixed;
  bottom: 28px;
  right: 100px;
  z-index: 999;
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(255,215,0,0.7);
  animation: wc-glow-pulse 2.2s ease-in-out infinite;
  cursor: pointer;
}

.wc-float-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: wc-shimmer 2.5s linear infinite;
  border-radius: 50px;
  pointer-events: none;
  z-index: 2;
}

.wc-float-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 60%, #FFD700 100%);
  padding: 11px 18px 11px 14px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
}

.wc-float-ball { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }

.wc-float-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.wc-float-text strong {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.wc-float-text span {
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
}

.wc-float:hover { animation-play-state: paused; transform: scale(1.04); }

@keyframes wc-glow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,215,0,0.75), 0 6px 24px rgba(255,165,0,0.5); }
  50%  { box-shadow: 0 0 0 10px rgba(255,215,0,0), 0 6px 32px rgba(255,165,0,0.7); }
  100% { box-shadow: 0 0 0 0 rgba(255,215,0,0), 0 6px 24px rgba(255,165,0,0.5); }
}
@keyframes wc-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; color: white; position: relative; z-index: 1; }
.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-pulse {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: pulse 2.5s ease-out infinite;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== KEYFRAMES ===== */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.9); opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50% { transform: translateX(-50%) translateY(7px); opacity: 0.9; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    font-size: 1.15rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 998;
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .lang-switcher { order: -1; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured-testimonial { transform: none; }

  .steps-grid { flex-direction: column; align-items: center; gap: 0; }
  .step-connector { width: 2px; height: 36px; margin: 0; }

  .why-inner { grid-template-columns: 1fr; }
  .why-image { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }

  .form-row { grid-template-columns: 1fr; }

  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 20px; }

  .trust-bar-inner { gap: 20px; justify-content: flex-start; }

  .countries-bar .container { flex-direction: column; align-items: flex-start; gap: 12px; }

  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .wc-float { bottom: 20px; right: 80px; }
  .wc-float-inner { padding: 9px 14px 9px 11px; gap: 8px; }
  .wc-float-ball { font-size: 1.2rem; }
  .wc-float-text strong { font-size: 0.7rem; }
  .wc-float-text span { font-size: 0.63rem; }
}

@media (max-width: 540px) {
  .contact-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .logo-text { display: none; }
}
