/* ========================================
   CODINA Website - Complete Stylesheet
   ======================================== */

/* ========== GOOGLE FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Lora:wght@400;500;600&family=Inter:wght@400;500;600;700&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
  /* Brand Colors */
  --primary: #003061;
  --primary-dark: #001f40;
  --primary-light: #0067A0;
  --accent: #0067A0;
  --accent-light: #3a8fc0;

  /* Warm Cream */
  --cream: #fffade;
  --cream-dark: #f5f0c8;

  /* Text */
  --text-dark: #1a1a2e;
  --text-gray: #4a5568;
  --text-light: #718096;
  --text-on-dark: #ffffff;
  --text-on-cream: #1a1a2e;

  /* Backgrounds */
  --bg-light: #fffade;
  --bg-white: #ffffff;
  --bg-section: #f0f4fa;

  /* UI */
  --border-light: #d6e4f0;
  --shadow-sm: 0 1px 3px rgba(0, 48, 97, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 48, 97, 0.12);
  --shadow-lg: 0 12px 24px rgba(0, 48, 97, 0.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ========== RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-display);
}

p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 1rem;
  text-align: left;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ========== BACKGROUND ELEMENTS ========== */
.dot-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg-light);
  background-image: radial-gradient(circle at 1px 1px, #003061 1px, transparent 0);
  background-size: 32px 32px;
  opacity: 0.04;
  pointer-events: none;
}

.line-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: transparent;
  background-image:
    linear-gradient(rgba(0, 48, 97, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 48, 97, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.5;
  pointer-events: none;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 48, 97, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  width: 100px;
  height: 50px;
  display: block;
}

.nav-list {
  display: none;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.5rem 0;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--cream);
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-contest {
  padding: 0.625rem 1.25rem;
  background: var(--cream);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-contest:hover {
  background: var(--cream-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 250, 222, 0.3);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: var(--transition);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--primary);
  z-index: 999;
  padding: 80px 2rem 2rem;
  transition: var(--transition);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 2rem;
  cursor: pointer;
  color: var(--cream);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-list li a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 250, 222, 0.2);
  color: var(--cream);
}

.mobile-menu-list li a:hover {
  color: white;
  padding-left: 0.5rem;
}

.mobile-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-cta a,
.mobile-cta button {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 600;
  transition: var(--transition);
  width: 100%;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.btn-phone {
  background: rgba(255, 250, 222, 0.1);
  color: var(--cream);
  border: 2px solid var(--cream) !important;
}

.btn-phone:hover {
  background: var(--cream);
  color: var(--primary);
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(rgba(0, 31, 64, 0.55), rgba(0, 31, 64, 0.65)),
              url('../images/africa4.jpg') no-repeat center/cover;
  position: relative;
  margin-top: 0;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--cream);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
  max-width: 800px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 48, 97, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 48, 97, 0.4);
}

.btn-secondary {
  background: var(--cream);
  color: var(--primary);
  border: 2px solid var(--cream);
  font-weight: 700;
}

.btn-secondary:hover {
  background: var(--cream-dark);
  border-color: var(--cream-dark);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

/* ========== SECTIONS ========== */
section {
  padding: 5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 800px;
}

.section-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 48, 97, 0.08);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 48, 97, 0.15);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-top: 1rem;
}

/* ========== VEGETA SECTION ========== */
.vegeta-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 5rem 2rem;
  border: 1px solid var(--border-light);
}

.vegeta-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.vegeta-image {
  position: relative;
}

.vegeta-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.product-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.vegeta-features {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.feature-tag {
  padding: 0.5rem 1rem;
  background: var(--cream);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
}

.vegeta-details h3 {
  margin-bottom: 2rem;
  color: var(--primary);
}

.vegeta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: bold;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.benefit-text p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin: 0;
}

.vegeta-usage {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
}

.vegeta-usage h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.vegeta-usage p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-dark);
}

.vegeta-cta {
  text-align: left;
}

.cta-note {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 0.75rem;
}

/* Recipe Section */
.recipe-section {
  margin-top: 4rem;
}

.recipe-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.recipe-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  cursor: pointer;
}

.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.recipe-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.recipe-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 31, 64, 0.9), transparent);
  padding: 1.5rem;
  color: white;
}

.recipe-overlay h4 {
  color: white;
  margin-bottom: 0.25rem;
}

.recipe-overlay p {
  color: rgba(255, 250, 222, 0.9);
  font-size: 0.875rem;
  margin: 0;
}

/* ========== CONTEST SECTION ========== */
.contest-section {
  padding: 5rem 2rem;
}

.contest-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 4rem 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contest-banner-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.contest-banner-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.contest-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--cream);
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contest-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 2rem 0 3rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-text strong {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: rgba(255, 250, 222, 0.85);
  margin-bottom: 0.25rem;
}

.info-text span {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

/* Contest Steps */
.contest-steps {
  margin-top: 4rem;
}

.contest-steps h3 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.step-card h4 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.step-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
  background: var(--bg-section);
  padding: 5rem 2rem;
}

.social-proof {
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.proof-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-light);
}

.social-icon {
  width: 60px;
  height: 60px;
}

.proof-stats h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.stats-row {
  display: flex;
  gap: 3rem;
}

.stats-row .stat-item {
  display: flex;
  flex-direction: column;
}

.stats-row .stat-item strong {
  font-family: var(--font-ui);
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 700;
}

.stats-row .stat-item span {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--text-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--accent);
}

.testimonial-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.user-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.location {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--text-gray);
  display: block;
  margin-bottom: 0.5rem;
}

.social-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-icon {
  width: 16px;
  height: 16px;
}

.social-meta span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--text-light);
}

.testimonial-body {
  margin-bottom: 1rem;
}

.rating {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-dark);
}

.testimonial-engagement {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Video Testimonials */
.video-testimonials {
  margin-top: 4rem;
}

.video-testimonials h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.video-card {
  text-align: center;
}

.video-thumbnail {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.video-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.video-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 250, 222, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.video-thumbnail:hover .play-button {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-card p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ========== DISTRIBUTION SECTION ========== */
.distribution-section {
  padding: 5rem 2rem;
}

.distribution-carousel {
  margin: 3rem 0;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 1rem 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track img {
  flex-shrink: 0;
  width: 350px;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  scroll-snap-align: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.carousel-track img:hover {
  transform: scale(1.03);
}

.distribution-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-box {
  background: var(--primary);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.stat-number {
  font-family: var(--font-ui);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: rgba(255, 250, 222, 0.85);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 5rem 2rem;
  border: 1px solid var(--border-light);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
  color: var(--primary);
  transition: var(--transition);
}

.faq-question:hover h3 {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-answer {
  margin-top: 1rem;
  padding-left: 0;
}

.faq-answer p {
  margin: 0;
  color: var(--text-gray);
  line-height: 1.7;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 5rem 2rem;
  background: var(--bg-section);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  background: var(--primary);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  height: fit-content;
}

.contact-info h3 {
  margin-bottom: 2rem;
  color: white;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-text strong {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--cream);
}

.contact-text p {
  margin: 0;
  color: rgba(255, 250, 222, 0.8);
  font-size: 0.95rem;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 48, 97, 0.1);
  background: var(--cream);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ========== FOOTER ========== */
footer {
  background: var(--primary-dark);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--cream);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-family: var(--font-ui);
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-ui);
  transition: var(--transition);
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-ui);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

/* ========== MODAL ========== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 31, 64, 0.75);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 31, 64, 0.4);
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.modal-header h2 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: rgba(255, 250, 222, 0.9);
  font-size: 1rem;
  margin: 0;
}

.modal-body {
  padding: 2rem;
  background: var(--bg-light);
}

.contest-form-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Success View */
.success-view {
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: white;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.success-view h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.success-view > p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.player-id-display {
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  border: 2px dashed var(--primary);
}

.player-id-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.player-id-code {
  font-family: 'Courier New', monospace;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 3px;
}

.tirage-date {
  background: white;
  border: 2px solid var(--primary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.tirage-date-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.tirage-date-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.contest-steps-modal {
  text-align: left;
  background: var(--cream);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
  border: 1px solid var(--border-light);
}

.contest-steps-modal h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.contest-steps-modal ol {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contest-steps-modal li {
  line-height: 1.6;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.referral-bonus {
  background: linear-gradient(135deg, rgba(0, 48, 97, 0.08), rgba(0, 103, 160, 0.05));
  padding: 1rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
  margin: 1.5rem 0;
}

.referral-bonus p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-dark);
  line-height: 1.6;
  text-align: left;
}

.referral-bonus strong {
  color: var(--primary);
  font-weight: 700;
}

.hidden {
  display: none;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (min-width: 768px) {
  .nav-list {
    display: flex;
  }
  .hamburger {
    display: none;
  }
  .vegeta-showcase {
    grid-template-columns: 1fr 1fr;
  }
  .contact-container {
    grid-template-columns: 1fr 2fr;
  }
}

@media (max-width: 767px) {
  .nav-container {
    padding: 1rem;
  }
  .logo img {
    width: 80px;
    height: 40px;
  }
  .hero {
    padding: 6rem 1.5rem 3rem;
  }
  section {
    padding: 3rem 1.5rem;
  }
  .vegeta-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contest-banner {
    padding: 2rem 1.5rem;
  }
  .contest-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .proof-header {
    flex-direction: column;
    text-align: center;
  }
  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .carousel-track img {
    width: 280px;
    height: 340px;
  }
  .distribution-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .recipe-grid {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .distribution-stats {
    grid-template-columns: 1fr;
  }
}