/* ===================================================================
   My Visa Assistance — Complete Design System
   Version 2.0 — Modern, Clean, Professional
   =================================================================== */

/* ===================================================================
   1. CSS Custom Properties
   =================================================================== */
:root {
  /* Brand Colors */
  --color-primary: #171299;
  --color-primary-light: #2a2a9e;
  --color-primary-dark: #0a0a52;
  --color-accent: #A5D549;
  --color-accent-light: #bae56a;
  --color-accent-dark: #8cba30;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* Text Colors */
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-text-muted: #9ca3af;
  --color-white: #ffffff;

  /* Background Colors */
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-warm: #fafbf5;
  --color-bg-card: #ffffff;
  --color-bg-dark: #0a0a52;
  --color-bg-gradient: linear-gradient(135deg, #0a0a52, #171299, #2a2a9e);
  --color-bg-gradient-light: linear-gradient(135deg, #f8fafc, #f0f4ff, #e8f0fe);

  /* Borders */
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;

  /* Typography */
  --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 900px;
  --max-width-text: 720px;
  --header-height: 72px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06), 0 20px 40px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.08);

  /* Transitions */
  --transition: all 0.2s ease;
  --transition-slow: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================================
   2. Reset & Base
   =================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--color-accent);
}
a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Focus styles for better accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* ===================================================================
   3. Typography
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text);
}

small, .text-sm {
  font-size: 0.875rem;
}

.text-muted {
  color: var(--color-text-light);
}

.text-white {
  color: var(--color-white);
}

.text-accent {
  color: var(--color-accent);
}

/* ===================================================================
   4. Layout
   =================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================================================
   5. Header & Navigation
   =================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--header-height);
  transition: var(--transition-slow);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: var(--color-border-light);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.logo:hover {
  color: var(--color-primary);
}

.logo span {
  color: var(--color-accent);
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list a {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-list a:hover {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.nav-list a.active {
  color: var(--color-primary);
  font-weight: 600;
  background: rgba(23, 18, 153, 0.06);
}

.nav-cta {
  display: flex;
  align-items: center;
}

.nav-cta .btn {
  padding: 9px 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--color-bg-alt);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-slow);
  border-radius: 2px;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nav-overlay.open {
  opacity: 1;
}

/* ===================================================================
   6. Hero Sections
   =================================================================== */

/* Homepage Hero */
.hero {
  padding: 140px 0 80px;
  background: var(--color-bg-gradient);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Hero with Carousel */
.hero-carousel {
  background: linear-gradient(135deg, #0a0a52 0%, #171299 40%, #1a1a7a 70%, #0a0a52 100%);
  position: relative;
}

.hero-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(165,213,73,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-carousel .container {
  position: relative;
  z-index: 1;
}

/* Carousel Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}

.hero-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

.hero-slide-flag {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.1);
}

.hero-slide-info {
  flex: 1;
  min-width: 0;
}

.hero-slide-info h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

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

.hero-slide-cta {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.hero-slide-cta:hover {
  gap: 10px;
  color: var(--color-accent-light);
}

/* Carousel Navigation */
.hero-slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 12px 0 16px;
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hero-slider-dot.active {
  background: var(--color-accent);
  width: 28px;
  border-radius: 5px;
}

.hero-slider-dot:hover {
  background: rgba(255,255,255,0.5);
}

.hero-slider-arrows {
  display: flex;
  gap: 8px;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
}

.hero-slider-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.hero-slider-arrow:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-color: var(--color-accent);
}

/* ===================================================================
   6b. Enhanced Hero Layout
   =================================================================== */
.hero-enhanced {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-enhanced-content h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.3em;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-enhanced-content .hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 500px;
}

.hero-enhanced .hero-badges {
  margin-bottom: 1.5rem;
}

.hero-enhanced .hero-buttons {
  margin-bottom: 0;
}

/* ===================================================================
   6c. Enhanced Statistics Section
   =================================================================== */
.stats-enhanced {
  background: linear-gradient(135deg, #0a0a52 0%, #171299 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(165, 213, 73, 0.06), transparent 70%);
  pointer-events: none;
}

.stats-enhanced-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.stats-enhanced-item {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.stats-enhanced-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  opacity: 0;
  transition: var(--transition);
}

.stats-enhanced-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(165,213,73,0.3);
}

.stats-enhanced-item:hover::before {
  opacity: 1;
}

.stats-enhanced-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(165,213,73,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: var(--transition);
}

.stats-enhanced-item:hover .stats-enhanced-icon {
  background: rgba(165,213,73,0.2);
  transform: scale(1.05);
}

.stats-enhanced-item h3 {
  color: var(--color-white);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.stats-enhanced-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 400;
}

/* Decorative background elements */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(165, 213, 73, 0.12), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(42, 42, 158, 0.2), transparent 70%);
  pointer-events: none;
}

/* Geometric pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 0.3em;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-content .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 540px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-badge i,
.hero-badge svg {
  font-size: 0.9rem;
  color: var(--color-accent);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero Form */
.hero-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-xl);
}

.hero-form h3 {
  color: var(--color-primary);
  margin-bottom: 0.2em;
  font-size: 1.25rem;
}

.hero-form p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

/* Hero Trust Bar */
.hero-trust {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-item {
  text-align: center;
}

.hero-trust-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-trust-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

/* Country Guide Hero */
.country-hero {
  padding: 130px 0 50px;
  background: var(--color-bg-gradient);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.country-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(165, 213, 73, 0.08), transparent);
  pointer-events: none;
}

.country-hero h1 {
  color: var(--color-white);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 0.25em;
  letter-spacing: -0.02em;
}

.country-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Breadcrumbs inside country-hero */
.country-hero .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.country-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.country-hero .breadcrumb a:hover {
  color: var(--color-accent);
}

/* Page Header (generic inner pages) */
.page-header {
  padding: 130px 0 50px;
  background: var(--color-bg-gradient);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(165, 213, 73, 0.08), transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 0.3em;
  letter-spacing: -0.02em;
  position: relative;
}

.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ===================================================================
   7. Breadcrumbs
   =================================================================== */
.breadcrumbs {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
}

.breadcrumbs a {
  color: var(--color-primary-light);
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs .separator {
  margin: 0 8px;
  color: var(--color-text-muted);
}

/* ===================================================================
   8. Buttons
   =================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-slow);
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(165, 213, 73, 0.35);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(165, 213, 73, 0.45);
}

.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(23, 18, 153, 0.3);
}

.btn-secondary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(23, 18, 153, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-white:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn-link {
  background: none;
  border: none;
  color: var(--color-primary-light);
  font-weight: 600;
  padding: 0;
  gap: 4px;
}

.btn-link:hover {
  color: var(--color-accent);
  transform: translateX(4px);
  background: none;
  box-shadow: none;
}

/* ===================================================================
   9. Cards
   =================================================================== */

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border: 1px solid var(--color-border-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  opacity: 0;
  transition: var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-bg-alt), rgba(165, 213, 73, 0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--color-primary);
  transition: var(--transition-slow);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  color: var(--color-primary-dark);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Country Cards */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.country-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition-slow);
  text-decoration: none;
  color: var(--color-text);
  position: relative;
}

.country-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 12px rgba(165, 213, 73, 0.15);
  transform: translateY(-3px);
  color: var(--color-text);
}

.country-flag {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.country-card .country-name {
  flex: 1;
  font-weight: 600;
  font-size: 0.95rem;
}

.country-card .arrow {
  color: var(--color-accent);
  font-size: 1.1rem;
  transition: var(--transition);
  opacity: 0.6;
}

.country-card:hover .arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-slow);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-bg-alt), rgba(165, 213, 73, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-primary-light);
  position: relative;
  overflow: hidden;
}

.blog-card-body {
  padding: 28px;
}

.blog-card-meta {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

.blog-card h3 a {
  color: var(--color-primary);
  transition: var(--transition);
}

.blog-card h3 a:hover {
  color: var(--color-accent-dark);
}

.blog-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-card .read-more {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary-light);
}

.blog-card:hover .read-more {
  color: var(--color-accent);
  gap: 10px;
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-slow);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-card .stars {
  color: var(--color-warning);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: 1rem;
}

.testimonial-card .author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-text);
}

.testimonial-card .author-info span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Expertise Cards */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.expertise-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-slow);
}

.expertise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.expertise-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.expertise-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
}

.stat-item {
  padding: 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.15em;
  letter-spacing: -0.03em;
}

.stat-item p {
  color: var(--color-text-light);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ===================================================================
   10. Sections & Content Layout
   =================================================================== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-warm {
  background: var(--color-bg-warm);
}

.section-gradient {
  background: var(--color-bg-gradient-light);
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  margin-bottom: 0.3em;
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-heading p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0;
  border: none;
}

/* ===================================================================
   11. Country Content Layout (Guide Pages)
   =================================================================== */
.country-content {
  padding: 60px 0;
}

.country-content .content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

.country-content .main-content {
  min-width: 0;
}

.country-content .main-content h2 {
  margin-top: 2em;
  padding-bottom: 0.4em;
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
}

.country-content .main-content h2:first-child {
  margin-top: 0;
}

.country-content .main-content h3 {
  margin-top: 1.5em;
  color: var(--color-primary-dark);
}

.country-content .main-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.country-content .main-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.25rem;
}

.country-content .main-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  line-height: 1.6;
}

.country-content .main-content ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  opacity: 0.7;
}

.country-content .main-content ol {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
  margin-bottom: 1.25rem;
}

.country-content .main-content ol li {
  counter-increment: step-counter;
  padding: 8px 0 8px 36px;
  position: relative;
  line-height: 1.6;
}

.country-content .main-content ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 8px;
  width: 26px;
  height: 26px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Info/Callout Box */
.country-content .main-content .info-box {
  background: linear-gradient(135deg, var(--color-bg-alt), rgba(165, 213, 73, 0.05));
  border-left: 4px solid var(--color-accent);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
}

.country-content .main-content .info-box h4 {
  margin-bottom: 0.3em;
  color: var(--color-primary);
  font-size: 1.05rem;
}

.country-content .main-content .info-box p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

/* Alert/Warning Box */
.country-content .main-content .alert-box {
  background: linear-gradient(135deg, #fffbeb, rgba(245, 158, 11, 0.05));
  border-left: 4px solid var(--color-warning);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.5rem;
}

/* ===================================================================
   12. Tables
   =================================================================== */
.country-content .main-content .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.country-content .main-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.925rem;
}

.country-content .main-content th,
.country-content .main-content td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
}

.country-content .main-content th {
  background: var(--color-bg-alt);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid var(--color-accent);
}

.country-content .main-content td {
  background: var(--color-white);
}

.country-content .main-content tr:last-child td {
  border-bottom: none;
}

.country-content .main-content tr:nth-child(even) td {
  background: rgba(248, 250, 252, 0.8);
}

.country-content .main-content tr:hover td {
  background: rgba(165, 213, 73, 0.04);
}

/* ===================================================================
   13. Forms
   =================================================================== */
.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--color-bg);
  color: var(--color-text);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(23, 18, 153, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group .input-icon {
  position: relative;
}

.form-group .input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted);
}

.form-group .input-icon input {
  padding-left: 40px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 3rem;
  color: var(--color-success);
  margin-bottom: 12px;
}

.form-success h4 {
  color: var(--color-success);
  font-size: 1.2rem;
}

.form-success p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Search Input */
.search-filter {
  margin-bottom: 30px;
}

.search-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-primary);
  background: var(--color-white);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(23, 18, 153, 0.08);
}

.search-input::placeholder {
  color: var(--color-text-muted);
}

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

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--color-primary-light);
}

.faq-item.active {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px rgba(165, 213, 73, 0.1);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  font-family: var(--font-primary);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
  background: rgba(165, 213, 73, 0.05);
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  transition: var(--transition-slow);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-bg-alt);
  color: var(--color-primary-light);
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer ul {
  padding-left: 20px;
  margin-top: 8px;
  list-style: disc;
}

.faq-answer ul li {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

/* ===================================================================
   15. Sidebar
   =================================================================== */
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.sidebar-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--color-border-light);
}

.sidebar-card h3 {
  font-size: 1.05rem;
  margin-bottom: 1em;
  padding-bottom: 0.6em;
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-primary-dark);
}

.sidebar-card ul li {
  padding: 9px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.sidebar-card ul li:last-child {
  border-bottom: none;
}

.sidebar-card ul li a {
  font-size: 0.925rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  transition: var(--transition);
}

.sidebar-card ul li a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.sidebar-card ul li a i {
  color: var(--color-accent);
  font-size: 0.8rem;
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--color-bg-card), var(--color-bg-alt));
  text-align: center;
  border: 2px solid var(--color-accent);
}

.sidebar-cta h3 {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-accent);
}

.sidebar-cta p {
  color: var(--color-text-light);
  font-size: 0.925rem;
  margin-bottom: 1rem;
}

.sidebar-cta .btn {
  width: 100%;
}

/* ===================================================================
   16. About / Contact Pages
   =================================================================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-bg-alt), rgba(165, 213, 73, 0.08));
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-primary-light);
}

.about-intro ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.about-intro ul li {
  padding: 6px 0 6px 28px;
  position: relative;
}

.about-intro ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border-light);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact-info-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}

.contact-info-card .icon {
  font-size: 1.4rem;
  color: var(--color-accent);
}

.contact-info-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin: 8px 0 0;
}

.contact-form-wrapper {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
}

/* ===================================================================
   17. Blog Content
   =================================================================== */
.blog-content {
  padding: 40px 0;
  font-size: 1rem;
}

.blog-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.blog-content h2 {
  margin-top: 2em;
  padding-bottom: 0.3em;
  border-bottom: 2px solid var(--color-accent);
}

.blog-content h3 {
  margin-top: 1.5em;
}

.blog-content p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.blog-content .blog-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-light);
}

.blog-content .blog-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-content .infographic {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 2rem 0;
  border: 1px solid var(--color-border-light);
  text-align: center;
}

.blog-content .author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 2rem 0;
  border: 1px solid var(--color-border-light);
}

.blog-content .author-box .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.blog-content .author-box .info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.blog-content .author-box .info span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.blog-content .share-buttons {
  display: flex;
  gap: 10px;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.blog-content .share-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition);
}

.blog-content .share-buttons a:hover {
  transform: translateY(-2px);
}

.blog-content .share-buttons .share-facebook { background: #1877f2; }
.blog-content .share-buttons .share-twitter { background: #1da1f2; }
.blog-content .share-buttons .share-linkedin { background: #0a66c2; }
.blog-content .share-buttons .share-whatsapp { background: #25d366; }

.blog-content .cta-section {
  background: var(--color-bg-gradient);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 2rem 0;
}

.blog-content .cta-section h3 {
  color: var(--color-white);
  font-size: 1.4rem;
}

.blog-content .cta-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

/* ===================================================================
   18. Footer
   =================================================================== */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light), var(--color-accent));
}

/* ===================================================================
   19. Country Logos Scrolling Strip
   =================================================================== */
.country-logos-strip {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.country-logos-track {
  display: flex;
  gap: 0;
  animation: scroll-logos 40s linear infinite;
  width: max-content;
}

.country-logos-track:hover {
  animation-play-state: paused;
}

.country-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  white-space: nowrap;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
  border-right: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
}

.country-logo-item:hover {
  color: var(--color-accent);
}

.country-logo-item .flag {
  font-size: 1.4rem;
  line-height: 1;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary-dark);
}

.footer-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.footer-brand-text span {
  color: var(--color-accent);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.2em;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact li i {
  color: var(--color-accent);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-contact li a:hover {
  color: var(--color-accent);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0;
}

.footer-disclaimer {
  padding: 20px 0 18px;
}

.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  max-width: 1000px;
  margin: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* Footer Timeline Checker */
.footer-timeline {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.06);
}

.footer-timeline h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 12px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-timeline .form-group {
  margin-bottom: 10px;
}

.footer-timeline select,
.footer-timeline input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.footer-timeline select option {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.footer-timeline select:focus,
.footer-timeline input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.1);
}

.footer-timeline .btn-sm {
  width: 100%;
  padding: 10px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

.footer-timeline .result {
  display: none;
  margin-top: 12px;
  padding: 12px;
  background: rgba(165,213,73,0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(165,213,73,0.2);
  text-align: center;
}

.footer-timeline .result.show {
  display: block;
}

.footer-timeline .result .days {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.2;
}

.footer-timeline .result .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  font-family: var(--font-primary);
  font-size: 0.875rem;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form .btn {
  flex-shrink: 0;
}

/* ===================================================================
   20. WhatsApp Float
   =================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: var(--color-white);
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 65px;
  background: var(--color-white);
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.whatsapp-float .whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid var(--color-white);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0;
  animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.whatsapp-float i,
.whatsapp-float svg {
  position: relative;
  z-index: 1;
}

/* ===================================================================
   21. Scroll to Top
   =================================================================== */
.scroll-top {
  position: fixed;
  bottom: calc(36px + env(safe-area-inset-bottom, 0px));
  right: calc(28px + env(safe-area-inset-right, 0px));
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
  box-shadow: 0 4px 12px rgba(23, 18, 153, 0.3);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(165, 213, 73, 0.4);
}

/* If whatsapp-float is on the same page, push scroll-top up */
.whatsapp-float ~ .scroll-top {
  bottom: calc(100px + 64px + env(safe-area-inset-bottom, 0px));
}

/* ===================================================================
   22. Cookie Consent Banner
   =================================================================== */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 16px 24px;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.9rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

#cookie-consent-banner span {
  text-align: center;
}

#cookie-consent-banner a {
  color: var(--color-accent);
  text-decoration: underline;
}

#cookie-consent-banner button {
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
}

#cookie-consent-banner button:hover {
  background: var(--color-accent-dark);
  color: var(--color-white);
}

/* ===================================================================
   23. Utility Classes
   =================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skeleton Loader for country cards */
.skeleton {
  background: linear-gradient(90deg, var(--color-bg-alt) 25%, var(--color-border-light) 50%, var(--color-bg-alt) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Fade-in animation for page load */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fade-in-up 0.6s ease forwards;
}

.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }
.animate-in-delay-4 { animation-delay: 0.4s; }

/* ===================================================================
   24. Print Styles
   =================================================================== */
@media print {
  .header,
  .footer,
  .whatsapp-float,
  .scroll-top,
  .breadcrumbs,
  .cta-section,
  .share-buttons,
  .author-box,
  #cookie-consent-banner,
  .sidebar {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
  }

  a {
    color: #000 !important;
    text-decoration: underline;
  }

  .hero,
  .country-hero,
  .page-header {
    padding: 20px 0;
    background: none !important;
    color: #000 !important;
  }

  h1, h2, h3, h4 {
    color: #000 !important;
  }

  .hero::before,
  .hero::after,
  .hero-pattern {
    display: none !important;
  }

  .container,
  .container-narrow {
    max-width: 100%;
    padding: 0;
  }

  .content-grid {
    display: block !important;
  }

  .country-content .main-content {
    max-width: 100%;
  }
}

/* ===================================================================
   25. Responsive — Desktop (≤1199px)
   =================================================================== */
@media (max-width: 1199px) {
  .country-content .content-grid {
    gap: 32px;
  }

  .country-content .content-grid {
    grid-template-columns: 1fr 280px;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
}

/* ===================================================================
   26. Responsive — Tablet (≤991px)
   =================================================================== */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-badges {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    gap: 24px;
  }

  /* Enhanced hero on tablet */
  .hero-enhanced {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-enhanced-content .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-enhanced-content .hero-badges {
    justify-content: center;
  }

  .hero-enhanced-content .hero-buttons {
    justify-content: center;
  }

  .hero-slide {
    padding: 28px 24px;
    gap: 16px;
  }

  .hero-slide-flag {
    width: 52px;
    height: 52px;
    font-size: 2rem;
  }

  .hero-slide-info h3 {
    font-size: 1.1rem;
  }

  .hero-slider-arrows {
    top: 10px;
    right: 10px;
  }

  .stats-enhanced-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-enhanced-item {
    padding: 24px 16px;
  }

  .stats-enhanced-item h3 {
    font-size: 1.8rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .country-content .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .page-header {
    padding: 110px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .country-hero {
    padding: 110px 0 45px;
  }

  .country-hero h1 {
    font-size: 1.8rem;
  }
}

/* ===================================================================
   27. Responsive — Mobile (≤767px)
   =================================================================== */
@media (max-width: 767px) {
  /* Nav */
  .menu-toggle {
    display: flex;
  }

  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.open {
    pointer-events: auto;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    padding: calc(var(--header-height) + 20px) 24px 30px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    gap: 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-list.open {
    transform: translateX(0);
  }

  .nav-list a {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-light);
    width: 100%;
    font-size: 1rem;
  }

  .nav-list a:last-child {
    border-bottom: none;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-cta {
    display: block;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border-light);
  }

  .nav-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .menu-toggle {
    z-index: 1001;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Hero */
  .hero {
    padding: 100px 0 50px;
  }

  .hero-content h1 {
    font-size: clamp(1.6rem, 5vw, 2rem);
  }

  .hero-content .hero-subtitle {
    font-size: 1rem;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .hero-buttons .btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .hero-form {
    padding: 24px;
  }

  .hero-trust {
    gap: 16px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero-trust-item {
    flex: 0 1 auto;
  }

  .hero-trust-num {
    font-size: 1.5rem;
  }

  .hero-trust-label {
    font-size: 0.8rem;
  }

  /* Sections */
  .section {
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  /* Cards */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 28px 24px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .country-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .country-card {
    padding: 14px 16px;
  }

  .country-card .country-name {
    font-size: 0.9rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card-body {
    padding: 20px;
  }

  .blog-card-image {
    height: 160px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-item {
    padding: 18px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }

  .stat-item p {
    font-size: 0.85rem;
  }

  .stats-enhanced-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .stats-enhanced-item {
    padding: 20px 14px;
  }

  .stats-enhanced-item h3 {
    font-size: 1.5rem;
  }

  .stats-enhanced-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .hero-carousel {
    padding: 100px 0 50px;
  }

  .hero-slide {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .hero-slide-flag {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }

  .hero-slide-cta {
    margin-top: 4px;
  }

  .hero-slider-arrows {
    position: static;
    justify-content: center;
    padding: 0 0 8px;
  }

  /* Page Header */
  .page-header {
    padding: 100px 0 35px;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .page-header p {
    font-size: 0.95rem;
  }

  .country-hero {
    padding: 100px 0 35px;
  }

  .country-hero h1 {
    font-size: 1.4rem;
  }

  .country-hero p {
    font-size: 0.95rem;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    font-size: 0.8rem;
    padding: 12px 0;
  }

  /* Content */
  .country-content {
    padding: 40px 0;
  }

  .country-content .main-content h2 {
    font-size: 1.35rem;
  }

  .country-content .main-content table,
  .country-content .main-content .table-wrapper {
    font-size: 0.85rem;
  }

  .country-content .main-content th,
  .country-content .main-content td {
    padding: 10px 12px;
  }

  /* Sidebar */
  .sidebar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sidebar-card {
    padding: 20px;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 16px;
  }

  /* Search */
  .search-input {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col h4 {
    font-size: 0.85rem;
  }

  .footer-col ul li a {
    font-size: 0.875rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-disclaimer p {
    font-size: 0.75rem;
  }

  /* Utilities */
  .container {
    padding: 0 18px;
  }

  /* Hero buttons stack */
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .newsletter-form input {
    width: 100%;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .about-image {
    font-size: 3rem;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .contact-info-card {
    padding: 20px;
  }

  .contact-grid {
    gap: 24px;
  }

  .blog-content {
    padding: 32px 0;
  }

  .blog-content h1 {
    font-size: 1.5rem;
  }

  .blog-content h2 {
    font-size: 1.3rem;
  }

  .blog-content .blog-meta {
    font-size: 0.85rem;
    gap: 12px;
    flex-wrap: wrap;
  }

  .blog-content .infographic {
    padding: 20px;
  }

  .blog-content .author-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .blog-content .author-box .avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .blog-content .share-buttons {
    justify-content: center;
  }

  .blog-content .share-buttons a {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .blog-content .cta-section {
    padding: 24px;
  }

  .blog-content .cta-section .btn {
    display: block;
    width: 100%;
  }

  .about-intro ul {
    padding-left: 0;
  }

  .expertise-card {
    padding: 24px;
  }

  .expertise-card .num {
    font-size: 1.8rem;
  }

  /* WhatsApp and Scroll */
  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    bottom: 80px;
    right: 16px;
  }

  .whatsapp-float .whatsapp-tooltip {
    display: none;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 20px;
    right: 16px;
  }

  .whatsapp-float ~ .scroll-top {
    bottom: calc(80px + 56px);
  }

  #cookie-consent-banner {
    padding: 14px 16px;
    font-size: 0.85rem;
    flex-direction: column;
    text-align: center;
  }

  #cookie-consent-banner button {
    width: 100%;
  }
}

/* ===================================================================
   28. Responsive — Small Mobile (≤420px)
   =================================================================== */
@media (max-width: 420px) {
  .container {
    padding: 0 14px;
  }

  :root {
    --header-height: 64px;
  }

  .header {
    height: 64px;
  }

  .header-inner {
    padding: 0 14px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 90px 0 40px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-trust-item {
    flex: 1 1 40%;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .country-grid {
    gap: 10px;
  }

  .features-grid {
    gap: 14px;
  }

  .blog-grid {
    gap: 14px;
  }

  .blog-card-image {
    height: 130px;
  }

  .section {
    padding: 36px 0;
  }

  .section-heading h2 {
    font-size: 1.3rem;
  }

  .page-header {
    padding: 90px 0 30px;
  }

  .page-header h1 {
    font-size: 1.3rem;
  }

  .page-header p {
    font-size: 0.85rem;
  }

  .country-hero h1 {
    font-size: 1.25rem;
  }

  .country-hero p {
    font-size: 0.88rem;
  }

  .country-content .main-content h2 {
    font-size: 1.2rem;
  }

  .country-content .main-content th,
  .country-content .main-content td {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .feature-card {
    padding: 24px 18px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .nav-list {
    width: 100%;
  }

  .footer {
    padding: 36px 0 0;
  }
}

/* ===================================================================
   29. High DPI / Retina
   =================================================================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* Smoother borders */
  .header {
    border-bottom-width: 0.5px;
  }
}
