:root {
  --red: #ef4444;
  --red-dark: #dc2626;
  --red-gradient: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  --blue: #1e3c72;
  --blue-dark: #1e293b;
  --blue-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  --gold: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --text: #0f172a;
  --muted: #64748b;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
}

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

body { 
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
  color: var(--text); 
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.inner { 
  max-width: 1024px; 
  margin: 0 auto; 
  padding: 0 2rem; 
}

/* Hero Section */
.hero {
  background: var(--blue-gradient);
  color: #fff;
  text-align: center;
  padding: 7rem 1.5rem 6rem;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.08), transparent 60%);
  pointer-events: none;
}

.flag-emoji { 
  font-size: 5rem; 
  margin-bottom: 1.5rem; 
  display: inline-block;
  animation: wave 3s ease-in-out infinite;
  transform-origin: 50% 80%;
}

.hero h1 { 
  font-size: clamp(2.5rem, 6vw, 4rem); 
  font-weight: 800; 
  letter-spacing: -0.04em; 
  line-height: 1.1;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tagline { 
  font-size: 1.25rem; 
  color: rgba(255, 255, 255, 0.85); 
  margin: 1.5rem auto 2.5rem; 
  max-width: 580px; 
  font-weight: 500;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red-gradient);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);
  gap: 0.5rem;
}

.cta-btn:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 30px rgba(239, 68, 68, 0.5); 
}

.cta-btn:active {
  transform: translateY(-1px);
}

.cta-btn-dark { 
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}
.cta-btn-dark:hover {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Sections */
.section { 
  padding: 6rem 0; 
}

.section-alt { 
  background: var(--bg-alt); 
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section h2 { 
  text-align: center; 
  font-size: 2.25rem; 
  font-weight: 800; 
  margin-bottom: 3.5rem; 
  color: var(--blue); 
  letter-spacing: -0.03em;
}

/* Steps */
.steps { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 3rem; 
}

.step { 
  text-align: center; 
  padding: 2rem 1.5rem; 
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.step:hover {
  transform: translateY(-6px);
}

.step-num {
  width: 60px; 
  height: 60px; 
  border-radius: 50%;
  background: var(--blue-gradient); 
  color: #fff;
  font-size: 1.5rem; 
  font-weight: 800;
  display: flex; 
  align-items: center; 
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.2);
}

.step h3 { 
  font-size: 1.25rem; 
  font-weight: 700;
  margin-bottom: 0.75rem; 
  color: var(--text);
}

.step p { 
  color: var(--muted); 
  font-size: 0.95rem; 
  line-height: 1.6; 
}

/* Holidays */
.holiday-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

.holiday {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  color: var(--blue);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.holiday:hover {
  transform: scale(1.03);
  border-color: var(--blue);
}

/* Pricing Section */
.pricing { 
  text-align: center; 
}
.holiday-emoji { font-size: 2rem; margin-bottom: .5rem; }
.holiday-name { font-weight: 700; font-size: .95rem; margin-bottom: .35rem; }
.holiday-dates { font-size: .85rem; color: var(--muted); font-weight: 500; }

.price-card {
  display: inline-block;
  background: var(--blue-gradient);
  color: #fff;
  border-radius: 24px;
  padding: 3.5rem 3rem;
  max-width: 440px;
  box-shadow: 0 15px 40px rgba(30, 60, 114, 0.25);
  border-bottom: 6px solid var(--red);
  transition: var(--transition);
  position: relative;
}
.price-card:hover {
  transform: translateY(-4px);
}

.price { 
  font-size: 4rem; 
  font-weight: 900; 
  color: var(--gold); 
  line-height: 1; 
  margin-bottom: 1rem; 
  letter-spacing: -0.02em;
}

.price span { 
  font-size: 1.25rem; 
  font-weight: 500; 
  color: rgba(255, 255, 255, 0.7); 
}

.price-card p { 
  font-size: 1.05rem; 
  color: rgba(255, 255, 255, 0.9); 
  line-height: 1.6; 
  margin-top: 0.75rem; 
  font-weight: 500;
}

.price-card .small { 
  font-size: 0.85rem; 
  color: rgba(255, 255, 255, 0.6); 
  margin-top: 1rem; 
  line-height: 1.4;
}

/* Contact */
.contact { 
  text-align: center; 
}

.contact p { 
  font-size: 1.15rem; 
  color: var(--muted); 
  max-width: 580px; 
  margin: 0 auto 2.5rem; 
  line-height: 1.7; 
}

.contact .cta-btn {
  background: var(--blue-gradient);
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
}
.contact .cta-btn:hover {
  box-shadow: 0 12px 30px rgba(30, 60, 114, 0.4);
}

.small { 
  font-size: 0.9rem; 
  color: var(--muted); 
}

/* Footer */
.footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 3rem 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 500;
}

.footer a { 
  color: #fff; 
  text-decoration: none; 
  transition: var(--transition);
}
.footer a:hover { 
  color: var(--red); 
}

/* Animations */
@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .steps { 
    grid-template-columns: 1fr; 
    gap: 2rem;
  }
  .price-card { 
    padding: 2.5rem 1.5rem; 
  }
  .hero {
    padding: 5rem 1.5rem 4rem;
  }
}
