/* CitizenshipTestPro - Cinematic Landing Page */

/* ===== PREMIUM NAVIGATION ===== */
.nav-premium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
  /* Override base nav styles from main.css */
  width: 100%;
  max-width: 100%;
  transform: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.nav-premium:hover {
  box-shadow: none;
}

.nav-premium.scrolled {
  background: rgba(10, 74, 110, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 217, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 0.5rem 2rem;
}

.nav-premium.scrolled:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-right: auto;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  background: linear-gradient(135deg, #fff 0%, #00d9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-link svg {
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.nav-premium .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(10, 55, 85, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 217, 255, 0.1);
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-premium .dropdown-menu li {
  list-style: none;
  border-bottom: none;
  width: auto;
}

.nav-premium .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.nav-premium .dropdown-menu a:hover {
  background: rgba(0, 217, 255, 0.12);
  color: #fff;
}

.menu-flag {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 217, 255, 0.3);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, #00d9ff, #4dd0e1);
  color: #0a3a55;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
  flex-shrink: 0;
  margin-left: auto;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

/* ===== CINEMATIC HERO ===== */
.hero-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.3);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 74, 110, 0.6) 0%, rgba(10, 74, 110, 0.3) 40%, rgba(10, 74, 110, 0.85) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.25rem;
  background: rgba(0, 217, 255, 0.12);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 50px;
  color: #4dd0e1;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.gradient-text {
  background: linear-gradient(135deg, #00d9ff 0%, #4dd0e1 50%, #00b8d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #00d9ff, #4dd0e1);
  color: #0a3a55;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 217, 255, 0.6);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(0, 217, 255, 0.4);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #00d9ff;
  display: inline;
}

.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.25rem;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.scroll-indicator {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #00d9ff;
  border-radius: 4px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section-countries,
.section-tests,
.section-resources,
.section-why,
.section-testimonials,
.section-faq,
.section-cta {
  padding: 6rem 2rem;
  position: relative;
}

.section-tests {
  background: rgba(0, 217, 255, 0.03);
}

.section-why {
  background: rgba(0, 0, 0, 0.15);
}

.section-testimonials {
  background: rgba(0, 217, 255, 0.03);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.25);
  border-radius: 50px;
  color: #4dd0e1;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #e0f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== COUNTRY CARDS ===== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.country-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: block;
}

.country-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 217, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 217, 255, 0.2);
}

.country-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.country-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.country-card:hover .country-img img {
  transform: scale(1.1);
}

.country-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 55, 85, 0.9) 100%);
}

.country-info {
  padding: 1.25rem 1.5rem 1.5rem;
  position: relative;
}

.country-flag {
  font-size: 2.5rem;
  position: absolute;
  top: -1.75rem;
  left: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.country-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
}

.country-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.country-stats-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(0, 217, 255, 0.7);
  margin-bottom: 1rem;
}

.country-cta {
  color: #00d9ff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.country-card:hover .country-cta {
  letter-spacing: 1px;
}

/* ===== TEST CARDS ===== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.test-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.test-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 217, 255, 0.15);
}

.test-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.test-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.test-card:hover .test-card-img img {
  transform: scale(1.08);
}

.test-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 55, 85, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.test-badge {
  background: rgba(0, 217, 255, 0.2);
  border: 1px solid rgba(0, 217, 255, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4dd0e1;
}

.test-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.test-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.test-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.test-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.btn-test {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, #00d9ff, #4dd0e1);
  color: #0a3a55;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.btn-test:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
}

/* ===== RESOURCE CARDS ===== */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  transition: all 0.35s ease;
}

.resource-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 217, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 217, 255, 0.1);
}

.resource-img {
  height: 180px;
  overflow: hidden;
}

.resource-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-card:hover .resource-img img {
  transform: scale(1.05);
}

.resource-body {
  padding: 1.25rem;
  flex: 1;
}

.resource-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(0, 217, 255, 0.12);
  border-radius: 4px;
  color: #4dd0e1;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.resource-body h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.resource-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.resource-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 217, 255, 0.06);
  border: 2px dashed rgba(0, 217, 255, 0.25);
}

.resource-cta-inner {
  text-align: center;
  padding: 2rem;
}

.resource-cta-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.resource-cta-btn {
  display: inline-block;
  margin-top: 1rem;
  color: #00d9ff;
  font-weight: 600;
}

/* ===== WHY SECTION ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.why-image-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0, 217, 255, 0.25) 0%, transparent 70%);
  filter: blur(20px);
}

.why-content .section-tag {
  display: inline-block;
}

.why-content .section-title {
  text-align: left;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
}

.why-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.why-feature p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(0, 217, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00d9ff, #4dd0e1);
  color: #0a3a55;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.section-faq .faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-faq .faq-item:hover {
  border-color: rgba(0, 217, 255, 0.2);
}

.section-faq .faq-question {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-faq .faq-question span:first-child {
  font-weight: 600;
  font-size: 1rem;
}

.section-faq .faq-toggle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 50%;
  color: #4dd0e1;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.section-faq .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: rgba(0, 217, 255, 0.2);
}

.section-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.section-faq .faq-item.active .faq-answer {
  max-height: 200px;
}

.section-faq .faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  padding: 4rem 2rem;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) saturate(1.2);
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15) 0%, rgba(10, 74, 110, 0.7) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 450px;
  margin: 0 auto 1rem;
}

.cta-form input[type="email"] {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.cta-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-form input[type="email"]:focus {
  border-color: #00d9ff;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.25);
}

.btn-cta-submit {
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #00d9ff, #4dd0e1);
  color: #0a3a55;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.5);
}

.cta-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== PREMIUM FOOTER ===== */
.footer-premium {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links-grid h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-grid li {
  margin-bottom: 0.5rem;
}

.footer-links-grid a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links-grid a:hover {
  color: #00d9ff;
}

.footer-premium .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
}

.footer-premium .footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .country-grid,
  .test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-content .section-title {
    text-align: center;
  }

  .why-content .section-tag {
    text-align: center;
    display: block;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-premium {
    padding: 0.5rem 1rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 55, 85, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links .nav-link {
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
  }

  .nav-premium .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-top: 0;
    display: none;
    padding: 0;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-premium .dropdown-menu a {
    justify-content: center;
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex !important;
    z-index: 1001;
  }

  .country-grid,
  .test-grid,
  .resources-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    min-width: 80px;
  }

  .hero-scroll {
    display: none;
  }

  .section-countries,
  .section-tests,
  .section-resources,
  .section-why,
  .section-testimonials,
  .section-faq,
  .section-cta {
    padding: 3rem 1rem;
  }

  .cta-form {
    flex-direction: column;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== COUNTRY HERO ===== */
.country-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}

.country-hero-bg {
  position: absolute;
  inset: 0;
}

.country-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.2);
}

.country-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 74, 110, 0.5) 0%, rgba(10, 74, 110, 0.85) 100%);
}

.country-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 2rem 3rem;
}

.country-hero-flag {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.country-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff, #e0f7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.country-hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0, 217, 255, 0.5);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
