/* Shared styles for country-specific landing pages */

* { font-family: 'Inter', sans-serif; }
h1, h2, h3, .font-display { font-family: 'Funnel Display', sans-serif; }

/* Smooth animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #005c9a 0%, #5ddbf5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero gradient */
.hero-gradient {
  background: linear-gradient(135deg, #003d69 0%, #005c9a 40%, #07887B 100%);
}

/* Hero photo background + tinted overlay for readability */
.hero-photo {
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
}
.hero-overlay {
  background: linear-gradient(135deg, rgba(0,61,105,0.62) 0%, rgba(0,92,154,0.42) 45%, rgba(7,136,123,0.28) 100%);
}

/* Waving hand greeting: rests, then a short burst of waves each cycle. */
@keyframes wave {
  0%, 55%, 100% { transform: rotate(0deg); }
  60% { transform: rotate(-4deg); }
  65% { transform: rotate(6deg); }
  70% { transform: rotate(-4deg); }
  75% { transform: rotate(6deg); }
  80% { transform: rotate(-3deg); }
  85% { transform: rotate(0deg); }
}
.wave {
  transform-origin: bottom center;
  animation: wave 4s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .wave, .float { animation: none; }
}

/* Pricing card glow */
.pricing-recommended {
  box-shadow: 0 0 40px rgba(93, 219, 245, 0.3);
}

/* Modal backdrop */
.modal-backdrop {
  background: rgba(30, 38, 42, 0.7);
  backdrop-filter: blur(4px);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.float { animation: float 3s ease-in-out infinite; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #005c9a; border-radius: 4px; }

/* Step indicator */
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
  transition: all 0.3s ease;
}
.step-circle.active { background: #005c9a; color: white; }
.step-circle.completed { background: #07887B; color: white; }
.step-circle.pending { background: #e5e7eb; color: #9ca3af; }
.step-line { height: 2px; flex: 1; transition: background 0.3s ease; }
.step-line.active { background: #005c9a; }
.step-line.pending { background: #e5e7eb; }

/* Feature icon boxes */
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1); }

/* Input focus */
input:focus, select:focus {
  outline: none;
  border-color: #005c9a !important;
  box-shadow: 0 0 0 3px rgba(0, 92, 154, 0.1);
}

/* Country flag bubble */
.country-flag-bubble {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
  font-weight: 500;
}
.country-flag-bubble .flag {
  font-size: 22px;
  line-height: 1;
}

/* YouTube testimonial card */
.video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1E262A;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #003d69 0%, #005c9a 40%, #07887B 100%);
}
.video-card-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.8;
}
