/* ============================================================
   VISIT UK – MAIN STYLESHEET
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary:     #1a3c6b;
  --primary-light: #2457a0;
  --secondary:   #c8102e;  /* UK red */
  --accent:      #f5a623;
  --green:       #1e7e4b;
  --green-light: #28a862;
  --gold:        #b8860b;
  --gold-light:  #d4a017;
  --white:       #ffffff;
  --light:       #f4f7fc;
  --mid:         #e8ecf4;
  --dark:        #111827;
  --text:        #374151;
  --muted:       #6b7280;
  --border:      #d1d5db;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.18);
  --transition:  all 0.3s ease;
  --font-body:   'Inter', sans-serif;
  --font-head:   'Playfair Display', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-primary:hover { background: #a00d24; border-color: #a00d24; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,0.35); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: white; }

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

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

.btn-outline-blue {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-outline-blue:hover { background: var(--primary); color: white; }

.btn-outline-green {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-outline-green:hover { background: var(--green); color: white; }

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-outline-gold:hover { background: var(--gold); color: white; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 60, 107, 0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}
.logo-flag { font-size: 1.8rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: white; }

.btn-nav {
  background: var(--secondary);
  color: white !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.btn-nav:hover { background: #a00d24; transform: translateY(-1px); }
.btn-nav::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

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

.hero-slideshow {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,60,107,0.82) 0%,
    rgba(17,24,39,0.55) 60%,
    rgba(26,60,107,0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 780px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.25);
  border: 1px solid rgba(245,166,35,0.6);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-highlight {
  color: var(--accent);
  position: relative;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.stat { text-align: center; }
.stat-number { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.7); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   NATIONS BANNER
   ============================================================ */
.nations-banner {
  background: var(--primary);
  padding: 32px 0;
}
.nations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.nation-card {
  text-align: center;
  padding: 24px 16px;
  color: white;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
  cursor: default;
}
.nation-card:last-child { border-right: none; }
.nation-card:hover { background: rgba(255,255,255,0.08); }
.nation-icon { font-size: 2.2rem; margin-bottom: 8px; }
.nation-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 4px; }
.nation-card p { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: 90px 0; }
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(26,60,107,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header p { color: var(--muted); font-size: 1.05rem; }

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations { background: var(--light); }

.filter-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dest-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card.hidden { display: none; }

.dest-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.dest-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 60%);
}
.dest-tag, .dest-rating {
  position: absolute;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
}
.dest-tag {
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--dark);
}
.dest-rating {
  top: 14px; right: 14px;
  background: var(--accent);
  color: white;
}
.dest-rating i { font-size: 0.7rem; }

.dest-info { padding: 22px; }
.dest-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 8px;
}
.dest-info p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; line-height: 1.6; }

.dest-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dest-highlights span {
  background: var(--light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.dest-highlights i { font-size: 0.7rem; }

/* ============================================================
   VISA SECTION
   ============================================================ */
.visa-section { background: white; }

.visa-checker-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  margin-bottom: 52px;
}
.visa-checker-content {
  display: flex;
  align-items: center;
  gap: 24px;
}
.visa-checker-content > i {
  font-size: 3rem;
  color: var(--accent);
  flex-shrink: 0;
}
.visa-checker-content h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 4px;
}
.visa-checker-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.visa-checker-content .btn { margin-left: auto; flex-shrink: 0; }

.visa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.visa-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.visa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.visa-card-header {
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.visa-card-header i { font-size: 2.5rem; }
.visa-card-header h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: white;
}

.visa-blue { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.visa-blue i { color: rgba(255,255,255,0.85); }
.visa-green { background: linear-gradient(135deg, var(--green), var(--green-light)); }
.visa-green i { color: rgba(255,255,255,0.85); }
.visa-gold { background: linear-gradient(135deg, #8b6500, var(--gold-light)); }
.visa-gold i { color: rgba(255,255,255,0.85); }

.visa-card-body {
  background: white;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visa-intro {
  color: var(--muted);
  font-size: 0.92rem;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mid);
}

.visa-list { display: flex; flex-direction: column; gap: 10px; }
.visa-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.visa-list li i { color: #22c55e; margin-top: 3px; flex-shrink: 0; font-size: 0.8rem; }
.visa-list strong { color: var(--dark); }

.visa-fees-table h4,
.eta-apps h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.visa-fees-table h4 i,
.eta-apps h4 i { color: var(--primary); }

.visa-fees-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.visa-fees-table th {
  background: var(--light);
  color: var(--dark);
  font-weight: 700;
  padding: 8px 10px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}
.visa-fees-table td {
  padding: 7px 10px;
  border-bottom: 1px solid var(--mid);
  color: var(--text);
}
.visa-fees-table tr:last-child td { border-bottom: none; }
.visa-fees-table tr:hover td { background: var(--light); }

.app-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dark);
  color: white;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}
.app-btn:hover { background: var(--primary); transform: translateY(-1px); }
.app-btn i { font-size: 1rem; }

.info-box {
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.info-box i { color: #f59e0b; margin-top: 2px; flex-shrink: 0; }
.info-box p { font-size: 0.85rem; color: #92400e; }

/* Activities Grid */
.activities-section {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.activities-section h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.activity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: var(--radius);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.activity-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.activity-item i {
  font-size: 1.5rem;
  color: var(--primary);
}
.activity-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   ENTRY SECTION
   ============================================================ */
.entry-section { background: var(--light); }

.entry-steps { display: flex; flex-direction: column; gap: 28px; margin-bottom: 52px; }

.entry-step {
  display: flex;
  gap: 28px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  align-items: flex-start;
}
.entry-step:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }

.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  min-width: 80px;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-content h3 i { color: var(--primary); font-size: 1rem; }
.step-content ul { display: flex; flex-direction: column; gap: 10px; }
.step-content li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.step-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.87rem;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
}
.step-link:hover { color: var(--secondary); border-color: var(--secondary); }

/* Documents Box */
.docs-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}
.docs-box h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.docs-box h3 i { color: var(--primary); }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.doc-item {
  background: var(--light);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--mid);
  transition: var(--transition);
}
.doc-item:hover { background: var(--primary); color: white; border-color: var(--primary); }
.doc-item i { font-size: 1.6rem; color: var(--primary); }
.doc-item:hover i { color: var(--accent); }
.doc-item span { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.doc-item:hover span { color: white; }

/* ============================================================
   TIPS SECTION
   ============================================================ */
.tips-section { background: white; }
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tip-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.tip-card:hover {
  border-color: var(--primary);
  background: white;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tip-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.tip-icon i { font-size: 1.5rem; color: white; }
.tip-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.tip-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.tip-card strong { color: var(--dark); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background-image: url('https://sspark.genspark.ai/cfimages?u1=3%2BV60hG7DTs%2Bk1rmqcGoDJ69Tc6ZLFC0f53uuMJ05Ql2t6McCHqMxF1jmcSU1zglrFeGtBaQbl5HjWrBHra6suQAP2AjahwfRTJv8YETNCnQh7mRi5%2BcMOb4%2B0uMWzdIZRdFxyJtsOzq9ao%3D&u2=4Tw7UIyvWUZYn4WA&width=2560');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,60,107,0.88), rgba(200,16,46,0.6));
}
.cta-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo {
  color: white;
  margin-bottom: 16px;
  display: inline-flex;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
}
.footer-links-col h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--secondary);
  display: inline-block;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links-col a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.footer-bottom a { color: var(--accent); }
.footer-disclaimer { font-style: italic; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 46px; height: 46px;
  background: var(--secondary);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--primary); transform: translateY(-2px); }

/* ============================================================
   IMAGE LOAD TRANSITION
   ============================================================ */
.dest-img {
  filter: brightness(0.92);
  transition: filter 0.6s ease, transform 0.4s ease;
}
.dest-img.img-loaded { filter: brightness(1); }
.dest-card:hover .dest-img { transform: scale(1.04); }

/* FadeIn animation for filter */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .visa-grid { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
  .activities-grid { grid-template-columns: repeat(4, 1fr); }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px 32px;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: block; z-index: 1000; }
  .nav-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }

  .hero-stats { gap: 16px; }
  .stat-number { font-size: 1.5rem; }

  .nations-grid { grid-template-columns: repeat(2, 1fr); }
  .nation-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .nation-card:nth-child(2n) { border-right: none; }

  .destinations-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }

  .visa-checker-content { flex-direction: column; text-align: center; }
  .visa-checker-content .btn { margin-left: 0; width: 100%; justify-content: center; }

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

  .entry-step { flex-direction: column; gap: 0; }
  .step-number { font-size: 2rem; opacity: 0.2; }

  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
}
