﻿body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #0a1f44;
}

header {
  background-color: #0a1f44;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-img {
  height: 50px;
  animation: fadeLogo 2s ease-in-out;
}

.slogan {
  font-size: 0.9rem;
  color: #f4c430;
  animation: pulse 3s infinite;
  margin-top: 0.3rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(to right, #0a1f44, #1e3c72);
  color: white;
  animation: fadeIn 1s ease forwards;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #f4c430;
  color: #0a1f44;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta:hover {
  background-color: #fff;
  color: #0a1f44;
}

section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.packs-preview h2,
.steps-preview h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.pack-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  animation: fadeIn 1s ease;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  background-color: #f4c430;
  color: #0a1f44;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.steps-preview ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.steps-preview li {
  background-color: #f4c430;
  color: #0a1f44;
  padding: 0.8rem 1.2rem;
  border-radius: 20px;
  font-weight: bold;
}

.testimonials {
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 3rem 2rem;
  position: relative;
}

.testimonial-list {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  min-width: max-content;
  animation: scrollTestimonials 90s linear infinite;
}

.testimonial {
  background-color: white;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-style: italic;
  min-width: 300px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.03);
}

.testimonial span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  color: #0a1f44;
}

footer {
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  padding: 1rem;
  background-color: #eee;
}

footer a {
  color: #777;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLogo {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  nav ul { flex-direction: column; gap: 0.5rem; }
}

.text-small {
  font-size: 0.9rem;
}
.text-center {
  text-align: center;
  margin-top: 1rem;
}

.packs-preview {
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.packs-preview h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.packs-preview p {
  color: #444;
  margin-bottom: 2rem;
}

.pack-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-image {
  width: 100%;
  height: 140px;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.badge {
  display: inline-block;
  background: #0078ff;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 1rem;
}

.currency-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* Section Promo */
.promo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a1f44, #1c3b70);
}

.promo-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  padding: 2rem 3rem;
  text-align: center;
  max-width: 500px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.promo-card h2 {
  color: #0a1f44;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.promo-card p {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.promo-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background-color: #f4c430;
  color: #0a1f44;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.promo-btn:hover {
  background-color: #0a1f44;
  color: #fff;
}
