/* ============================================
   TELEIO TOURISM - COMPLETE STYLESHEET
   ============================================ */

:root {
  --primary: #002AD1;
  --primary-dark: #001FA3;
  --secondary: #3B82F6;
  --accent: #84CC16;
  --accent-dark: #65A30D;
  --bg-light: #EEF2FF;
  --bg-page: #F4F6FF;
  --text-dark: #111827;
  --text-medium: #374151;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --green: #10B981;
  --blue: #3B82F6;
  --violet: #002AD1;
  --red: #EF4444;
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100%; }

/* ===== DARK MODE ===== */
/* data-dark on html prevents flash of light background */
html[data-dark='1'] body { background: #0f172a; }

body.dark-mode {
  --bg-page: #0f172a;
  --bg-light: #1e293b;
  --white: #1e293b;
  --text-dark: #f1f5f9;
  --text-medium: #cbd5e1;
  --text-muted: #94a3b8;
  --border: #334155;
  --shadow: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.5);
  background: #0f172a;
  color: #f1f5f9;
}
body.dark-mode nav { background: #1e293b; border-color: #334155; }
body.dark-mode .dropdown { background: #1e293b; border-color: #334155; }
body.dark-mode .dropdown-item:hover { background: #0f172a; }
body.dark-mode .card, body.dark-mode .feature-card, body.dark-mode .service-card { background: #1e293b; border-color: #334155; }
body.dark-mode .section { background: transparent; }
body.dark-mode .section-alt { background: #1e293b; }
body.dark-mode input, body.dark-mode select, body.dark-mode textarea { background: #0f172a; color: #f1f5f9; border-color: #334155; }
body.dark-mode .mobile-menu { background: #1e293b; border-color: #334155; }
body.dark-mode footer { background: #0a0f1e; }

/* ===== THEME TRANSITION ===== */
body { transition: background 0.25s, color 0.25s; }

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-page);
  line-height: 1.6;
}

/* ===== TOP ACCENT BAR ===== */
.top-accent {
  height: 4px;
  background: linear-gradient(90deg, #84CC16, #A3E635, #65A30D);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 4px; left: 0; right: 0;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 62px;
  gap: 8px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity .2s;
}
.nav-logo:hover .nav-logo-img { opacity: .85; }
body.dark-mode .nav-logo-img { filter: brightness(0) invert(1); }
@media (max-width: 768px) { .nav-logo-img { height: 26px; } }

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
  font-family: inherit;
}

.nav-link:hover, .nav-link.active { color: var(--primary); background: #EEF2FF; }

.nav-link .chevron {
  width: 14px; height: 14px;
  transition: transform 0.2s;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.nav-item.open .nav-link .chevron,
.nav-item:hover .nav-link .chevron { transform: rotate(180deg); }

/* ===== DROPDOWNS ===== */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s;
  pointer-events: none;
  transform: translateY(-4px);
}

.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* Travel dropdown - left aligned */
.dropdown-travel {
  left: 0;
  min-width: 240px;
}

/* Visa Services dropdown - centered */
.dropdown-visa {
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.nav-item:hover .dropdown-visa,
.nav-item.open .dropdown-visa {
  transform: translateX(-50%) translateY(0);
}

/* Tools dropdown */
.dropdown-tools {
  left: 0;
  min-width: 240px;
}

.dropdown-col-title {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 0 10px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-dark);
  transition: background 0.15s;
}

.dropdown-item:hover { background: var(--bg-light); }

.di-icon {
  width: 36px; height: 36px;
  background: #111;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  flex-shrink: 0;
}

.di-text strong { display: block; font-size: 13.5px; font-weight: 600; }
.di-text span { font-size: 11.5px; color: var(--text-muted); }

/* ===== NAV RIGHT ===== */
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.btn-signin {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
}
.btn-signin:hover { color: var(--primary); background: #EEF2FF; }

.btn-instant {
  padding: 8px 18px;
  background: var(--accent);
  color: #1a2e05;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all 0.18s;
  white-space: nowrap;
}
.btn-instant:hover { background: var(--accent-dark); }

/* ===== GOOGLE TRANSLATE — hide widget UI, prevent body shift ===== */
.goog-te-banner-frame, .goog-te-gadget, #google_translate_element { display: none !important; }
body { top: 0 !important; }
.skiptranslate { display: none !important; }
.goog-te-spinner-pos { display: none !important; }
font[face] { font-family: inherit !important; }  /* GT wraps text in <font> tags */

/* ===== LANG CODE BADGE ===== */
.lang-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 17px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 9px;
  font-weight: 800;
  border-radius: 3px;
  letter-spacing: 0.05em;
  padding: 0 3px;
  flex-shrink: 0;
}
.lang-item.active .lang-code { box-shadow: 0 0 0 2px var(--primary); }

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-medium);
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--bg-light); color: var(--text-dark); }

/* ===== LANGUAGE SWITCHER ===== */
.lang-item-wrap { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-medium);
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}
.lang-btn:hover { background: var(--bg-light); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s;
  transform: translateY(-4px);
  min-width: 155px;
  z-index: 1010;
}
.lang-item-wrap.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13.5px;
  color: var(--text-dark);
  transition: background 0.15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.lang-item:hover, .lang-item.active { background: var(--bg-light); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 66px; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 999;
  overflow-y: auto;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== PAGE WRAPPER ===== */
.page-wrapper { padding-top: 76px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.18s;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 4px 14px rgba(124,58,237,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,0.45); }

.btn-outline {
  background: white;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: #EEF2FF; }

.btn-dark {
  background: var(--text-dark);
  color: white;
}
.btn-dark:hover { background: #374151; }

.btn-accent {
  background: var(--accent);
  color: #1a2e05;
  font-weight: 700;
}
.btn-accent:hover { background: var(--accent-dark); }

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; }

/* ===== BACK LINK ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color 0.15s;
}
.back-link:hover { color: var(--primary); }

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #001580 0%, #001FA3 30%, #002AD1 50%, #1a4fe8 75%, #1D4ED8 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  z-index: 0;
}

/* Dark gradient overlay on top of video for text readability */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(76,29,149,0.35) 0%,
    rgba(109,40,217,0.3) 30%,
    rgba(124,58,237,0.25) 50%,
    rgba(67,56,202,0.3) 75%,
    rgba(29,78,216,0.35) 100%);
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(139,92,246,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 60%, rgba(16,185,129,0.08) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 .highlight { color: #fff; }

/* ── Hero Travel Bar ── */
.hero-travel-bar {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
  margin: 18px 0 6px;
  width: 100%;
}
.htb-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  border-radius: 50px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: all .18s;
  text-align: center;
}
.htb-item:hover { color: #fff; background: rgba(255,255,255,0.15); }
.htb-item.active { background: #fff; color: #002AD1; }
.htb-item.active svg { stroke: #002AD1; fill: #002AD1; }
.htb-item svg { flex-shrink: 0; }
@media (max-width: 860px) {
  .htb-label { display: none; }
  .htb-item { padding: 9px 10px; }
}
@media (max-width: 640px) {
  .hero-travel-bar { padding: 3px; gap: 0; }
  .htb-item { padding: 8px 9px; }
}

/* Typewriter */
.tw-cursor {
  display: inline-block;
  color: #002AD1;
  font-weight: 800;
  animation: tw-blink .65s step-end infinite;
  margin-left: 2px;
}
@keyframes tw-blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero p {
  font-size: clamp(16px, 2vw, 20px);
  opacity: 0.85;
  max-width: 580px;
  margin: 0 auto 24px;
  text-align: center;
}

.hero-search {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  box-shadow: var(--shadow-lg);
}

.hero-search-field { flex: 1; }
.hero-search-field label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-align: left; }
.hero-search-field input, .hero-search-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.hero-search-field input:focus, .hero-search-field select:focus { border-color: var(--primary); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
}

.hero-stat { text-align: center; color: white; }
.hero-stat strong { display: block; font-size: 28px; font-weight: 800; }
.hero-stat span { font-size: 13px; opacity: 0.75; }

/* ===== SECTION ===== */
.section { padding: 72px 24px; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.container { max-width: 1280px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 16px; }

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.card-hover { transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.fc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.feature-card:hover .fc-bg-img { opacity: 0.18; }
.feature-card .feature-icon,
.feature-card h3,
.feature-card p { position: relative; z-index: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-icon.purple,
.feature-icon.blue,
.feature-icon.green,
.feature-icon.yellow,
.feature-icon.red,
.feature-icon.orange { background: #002AD1; }

.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
}
.page-header-inner { max-width: 1280px; margin: 0 auto; }

.page-title-section {
  padding: 48px 24px 32px;
  text-align: center;
}
.page-title-section h1 { font-size: 36px; font-weight: 800; margin-bottom: 10px; }
.page-title-section p { color: var(--text-muted); font-size: 16px; }

/* ===== FORM STYLES ===== */
.form-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.form-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-card .form-subtitle { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--text-dark);
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: white;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.08); }
.form-control::placeholder { color: var(--text-muted); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== TABS ===== */
.tabs { display: flex; gap: 4px; background: #F3F4F6; padding: 4px; border-radius: var(--radius-sm); }
.tab-btn {
  flex: 1;
  padding: 9px 16px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  color: var(--text-muted);
  transition: all 0.18s;
  font-family: inherit;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.tab-btn.active { background: white; color: var(--text-dark); font-weight: 600; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ===== PILLS/BADGES ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
}
.pill-green { background: #DCFCE7; color: #166534; }
.pill-blue { background: #DBEAFE; color: #1E40AF; }
.pill-violet { background: #E0E8FF; color: #001FA3; }
.pill-red { background: #FEE2E2; color: #991B1B; }
.pill-gray { background: #F3F4F6; color: #374151; }

/* ===== STEP INDICATOR ===== */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 40px; }
.step-item { display: flex; align-items: center; }
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #E5E7EB;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s;
}
.step-item.active .step-circle { background: var(--primary); color: white; }
.step-item.done .step-circle { background: var(--green); color: white; }
.step-line {
  width: 80px; height: 2px;
  background: #E5E7EB;
  transition: background 0.2s;
}
.step-item.done + .step-item .step-line,
.step-item.done .step-line { background: var(--green); }
.step-label { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 6px; max-width: 70px; }
.step-with-label { display: flex; flex-direction: column; align-items: center; }

/* ===== COUNTRY GRID ===== */
.country-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.country-btn {
  padding: 12px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
  font-family: inherit;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
}
.country-btn:hover { border-color: var(--primary); color: var(--primary); background: #EEF2FF; }

/* ===== VISA CATEGORY TABS ===== */
.visa-cat-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.visa-cat-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  background: white;
  color: var(--text-medium);
  transition: all 0.15s;
  font-family: inherit;
}
.visa-cat-btn.active { border-color: var(--primary); color: var(--primary); background: #EEF2FF; }
.visa-cat-btn .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ===== PASSPORT CARD ===== */
.passport-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
}
.passport-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.passport-cover {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden;
}

.passport-rank {
  position: absolute;
  top: 10px; right: 10px;
  background: white;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.passport-card-body { padding: 16px; }
.passport-card-country { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.passport-card-region { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.passport-card-stat { display: flex; justify-content: space-between; align-items: center; }
.passport-card-stat span { font-size: 13px; color: var(--text-muted); }
.passport-card-stat strong { font-size: 15px; font-weight: 700; color: var(--text-dark); }

.passport-progress {
  height: 4px;
  background: #E5E7EB;
  border-radius: 2px;
  margin-top: 8px;
}
.passport-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* ===== STAT BOXES ===== */
.stat-box {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.stat-box .stat-icon { font-size: 20px; color: var(--text-muted); margin-bottom: 8px; }
.stat-box .stat-value { font-size: 28px; font-weight: 800; line-height: 1.2; }
.stat-box .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== MAP PLACEHOLDER ===== */
.map-container {
  background: #F8FAFC;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.world-map-svg { width: 100%; height: 340px; }

/* ===== TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 16px; }
.timeline-left { display: flex; flex-direction: column; align-items: center; }
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline-dot.done { background: var(--green); }
.timeline-dot.active { background: var(--primary); }
.timeline-connector { width: 2px; flex: 1; background: var(--border); margin: 4px 0; min-height: 32px; }
.timeline-content { padding-bottom: 24px; }
.timeline-title { font-weight: 600; font-size: 15px; }
.timeline-meta { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ===== SEARCH BOX ===== */
.search-box {
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.search-box input:focus { border-color: var(--primary); }
.search-box .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}

/* ===== RESULT CARD ===== */
.result-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}
.result-card.success { border-left-color: var(--green); }
.result-card.warning { border-left-color: #F59E0B; }
.result-card.danger { border-left-color: var(--red); }

/* ===== FOOTER ===== */
footer {
  background: #0F172A;
  color: #CBD5E1;
  padding: 56px 24px 24px;
  margin-top: 80px;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand h3 { color: white; font-size: 17px; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: #94A3B8; font-size: 14px; text-decoration: none; margin-bottom: 10px; transition: color 0.15s, text-decoration-color 0.15s; cursor: pointer; }
.footer-col a:hover { color: white; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }
.footer-bottom { border-top: 1px solid #1E293B; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: #64748B; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: #64748B; text-decoration: none; }
.footer-links a:hover { color: #94A3B8; }

/* ── Footer social icons ── */
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s, border-color .2s, transform .15s;
  flex-shrink: 0;
}
.social-icon svg { transition: fill .2s; }
.social-icon:hover { transform: translateY(-3px); border-color: transparent; }
.social-icon.si-instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon.si-tiktok:hover   { background: #010101; box-shadow: 0 0 0 1px #EE1D52; }
.social-icon.si-tiktok:hover svg path.tk-accent { fill: #EE1D52; }
.social-icon.si-youtube:hover  { background: #FF0000; }
.social-icon.si-facebook:hover { background: #1877F2; }
.social-icon.si-x:hover        { background: #000000; border-color: #333; }
.social-icon.si-linkedin:hover { background: #0A66C2; }

/* ── App store buttons ── */
.app-store-btn { display:inline-block; transition: transform .2s, opacity .2s; }
.app-store-btn:hover { transform: translateY(-3px); opacity: .85; }

/* ===== BLOG CARD ===== */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-thumb { height: 200px; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; }
.blog-body { padding: 20px; }
.blog-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 8px; }
.blog-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.blog-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 12px; }

/* ===== MODAL / OVERLAY ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}

/* ===== DEAL CARD ===== */
.deal-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.deal-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.deal-body { padding: 16px; }
.deal-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.deal-from { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.deal-price { display: flex; align-items: baseline; gap: 4px; }
.deal-price .amount { font-size: 22px; font-weight: 800; color: var(--primary); }
.deal-price .per { font-size: 13px; color: var(--text-muted); }

/* ===== ALERT ===== */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.alert-info { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }

/* ===== UPLOAD AREA ===== */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
}
.upload-area:hover { border-color: var(--primary); background: #EEF2FF; }
.upload-icon { font-size: 36px; margin-bottom: 12px; }
.upload-title { font-weight: 600; margin-bottom: 4px; }
.upload-sub { font-size: 13px; color: var(--text-muted); }

/* ===== CHECKLIST ===== */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
}
.check-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.check-content strong { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 3px; }
.check-content p { font-size: 13px; color: var(--text-muted); }
.check-status { margin-left: auto; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .passport-stats-row { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 900px) {
  .passport-hero-grid { grid-template-columns: 1fr !important; text-align: center; }
  .passport-book-wrap { display: flex; justify-content: center; }
  .passport-stats-row { grid-template-columns: repeat(3, 1fr) !important; }
  .travel-search-grid { grid-template-columns: 1fr 1fr !important; }
  .travel-search-grid .btn { grid-column: 1 / -1; }
  .blog-featured-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  /* NAV */
  .nav-links, .nav-right { display: none !important; }
  .hamburger { display: flex; }

  /* MOBILE NAV SECTIONS */
  .mobile-nav-section { margin-bottom: 24px; }
  .mobile-nav-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .mobile-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 13px 0;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #F3F4F6;
  }
  .mobile-nav-link:last-child { border-bottom: none; }

  /* HERO */
  .hero { min-height: auto; }
  .hero-content { padding: 60px 16px 50px; max-width: 100%; }
  .hero h1 { font-size: 26px; word-break: break-word; overflow-wrap: break-word; }
  .hero p { font-size: 14px; max-width: 100%; text-align: center; }
  #hero-h1 { font-size: 26px; }
  .hero-search { flex-direction: column; gap: 12px; padding: 20px; }
  .hero-search-field { width: 100%; }
  .hero-search .btn { width: 100%; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero-stat strong { font-size: 22px; }

  /* GRIDS */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* COUNTRY GRID */
  .country-grid { grid-template-columns: repeat(2, 1fr); }

  /* FORM */
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 22px 18px; }

  /* FOOTER */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* STEPS */
  .steps { overflow-x: auto; padding-bottom: 8px; justify-content: flex-start; }
  .step-line { width: 32px; flex-shrink: 0; }
  .step-label { font-size: 10px; max-width: 56px; }

  /* TABS */
  .tabs { overflow-x: auto; flex-wrap: nowrap; }
  .tab-btn { white-space: nowrap; flex-shrink: 0; font-size: 13px; padding: 8px 12px; }

  /* SECTION */
  .section { padding: 48px 16px; }
  .section-header h2 { font-size: 26px; }

  /* STAT BOXES */
  .stat-row-6 { grid-template-columns: repeat(3, 1fr) !important; }

  /* PASSPORT DETAIL */
  .passport-hero-grid { grid-template-columns: 1fr !important; gap: 32px !important; text-align: center; }
  .passport-book-wrap { display: flex; justify-content: center; margin-bottom: 8px; }
  .passport-stats-row { grid-template-columns: repeat(3, 1fr) !important; }
  .passport-info-3 { grid-template-columns: 1fr !important; }

  /* TRAVEL SEARCH */
  .travel-search-grid { grid-template-columns: 1fr !important; }
  .travel-search-grid > * { grid-column: auto !important; }

  /* PASSPORT INDEX */
  .passport-index-filter { grid-template-columns: 1fr !important; gap: 10px !important; }
  .passport-index-filter .btn { width: 100%; }

  /* BLOG FEATURED */
  .blog-featured-grid { grid-template-columns: 1fr !important; }

  /* VISA CAT TABS */
  .visa-cat-tabs { gap: 6px; }
  .visa-cat-btn { font-size: 12.5px; padding: 7px 12px; }
}

@media (max-width: 540px) {
  .grid-4 { grid-template-columns: 1fr; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 40px 14px; }
  .form-card { padding: 18px 14px; }
  .hero h1 { font-size: 24px; }
  .stat-row-6 { grid-template-columns: repeat(2, 1fr) !important; }
  .passport-stats-row { grid-template-columns: repeat(2, 1fr) !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps { gap: 0; }
  .step-line { width: 20px; }
  .visa-cat-tabs { gap: 4px; }
  .visa-cat-btn { font-size: 12px; padding: 6px 10px; }
  .back-next-row { flex-direction: column; gap: 8px !important; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.hidden { display: none !important; }

/* ===== STEP INDICATOR WRAPPER ===== */
.step-indicator-wrap {
  scrollbar-width: none;
}
.step-indicator-wrap::-webkit-scrollbar { display: none; }

/* ===== PASSPORT BOOK RESPONSIVE ===== */
@media (max-width: 768px) {
  .passport-book {
    width: 240px;
    min-height: 340px;
    padding: 28px 22px;
  }
  .passport-emblem { font-size: 56px; }
}

/* ===== SEARCH FORM GRID ===== */
.search-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: flex-end;
}
.search-form-grid .form-group { margin: 0; }
.sfg-wide { grid-column: span 1; }
.sfg-full { grid-column: span 2; }
.sfg-btn { display: flex; align-items: flex-end; }
.sfg-btn .btn { height: 44px; white-space: nowrap; }

@media (max-width: 768px) {
  .search-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sfg-full, .sfg-wide { grid-column: span 1; }
  .sfg-btn { grid-column: 1 / -1; }
  .sfg-btn .btn { width: 100%; }
}

@media (max-width: 480px) {
  .search-form-grid { grid-template-columns: 1fr; }
  .sfg-full, .sfg-wide, .sfg-btn { grid-column: span 1; }
}

/* ===== PASSPORT INDEX FILTER ===== */
.passport-filter-bar {
  display: grid;
  grid-template-columns: 1fr 180px 180px auto;
  gap: 12px;
  align-items: center;
}
@media (max-width: 900px) {
  .passport-filter-bar { grid-template-columns: 1fr 1fr; }
  .passport-filter-bar > *:nth-child(3) { grid-column: span 1; }
  .passport-filter-bar > *:last-child { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .passport-filter-bar { grid-template-columns: 1fr; }
  .passport-filter-bar > * { grid-column: span 1 !important; }
}

/* ===== INSTANT VISA FILTER BAR ===== */
.iv-filter-bar {
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  padding: 4px 6px;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 2px 16px rgba(0,0,0,0.09);
  position: relative;
}
.iv-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  cursor: pointer;
  border-radius: 50px;
  transition: background 0.15s;
  flex: 1;
  position: relative;
  min-width: 0;
}
.iv-filter:hover { background: #F9FAFB; }
.iv-filter.active-filter { background: #EEF2FF; }
.iv-filter-icon { flex-shrink: 0; line-height: 1; }
.iv-filter-label { font-size: 11px; color: var(--text-muted); line-height: 1; margin-bottom: 3px; font-family: 'Inter', sans-serif; letter-spacing: 0.01em; }
.iv-filter-val { font-size: 14px; font-weight: 600; color: var(--text-dark); white-space: nowrap; display: flex; align-items: center; gap: 4px; font-family: 'Inter', sans-serif; }
.iv-chevron { font-size: 11px; color: var(--text-muted); transition: transform 0.2s; }
.iv-filter.active-filter .iv-chevron { transform: rotate(180deg); }
.iv-divider { width: 1px; height: 38px; background: #E5E7EB; flex-shrink: 0; }

/* filter dropdowns */
.iv-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  padding: 12px 8px;
  min-width: 280px;
  z-index: 500;
  display: none;
}
.iv-dropdown.open { display: block; animation: fadeIn 0.15s ease; }
.iv-dropdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  cursor: pointer;
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-dark);
  transition: background 0.12s;
}
.iv-dropdown-item:hover { background: #EEF2FF; }
.iv-dropdown-item.selected { color: var(--primary); font-weight: 600; }
.iv-dropdown-item.selected::before { content: '●'; margin-right: 6px; font-size: 8px; color: var(--primary); }
.iv-dropdown-count { color: #9CA3AF; font-size: 14px; }

/* calendar dropdown */
.iv-calendar {
  min-width: 360px;
  left: auto;
  right: 0;
}
.iv-cal-header { font-size: 13px; color: var(--text-muted); text-align: center; padding: 4px 8px 12px; line-height: 1.5; }
.iv-cal-upcoming {
  background: #111827;
  color: white;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 8px 16px;
  font-size: 13.5px;
}
.iv-cal-upcoming .up-label { font-size: 11px; color: #9CA3AF; text-align: center; margin-bottom: 8px; letter-spacing: 0.08em; }
.iv-cal-month { text-align: center; font-size: 16px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; }
.iv-cal-nav { background: none; border: none; cursor: pointer; font-size: 18px; color: var(--text-dark); padding: 4px 8px; }
.iv-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; padding: 0 8px; }
.iv-cal-day-label { font-size: 11px; color: var(--text-muted); text-align: center; padding: 4px 0; font-weight: 600; }
.iv-cal-day {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.12s;
  margin: 1px auto;
}
.iv-cal-day:hover { background: #EEF2FF; }
.iv-cal-day.today { border: 2px solid var(--primary); color: var(--primary); font-weight: 700; }
.iv-cal-day.holiday { background: rgba(79,70,229,0.12); color: var(--primary); font-weight: 700; }
.iv-cal-day.holiday::after { content: '•'; display: block; font-size: 6px; color: var(--primary); margin-top: -8px; }
.iv-cal-day.other-month { color: #D1D5DB; }
.iv-cal-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px 4px; font-size: 13px; }
.iv-cal-footer span { color: var(--text-muted); }
.iv-cal-select { background: var(--primary); color: white; border: none; border-radius: 20px; padding: 8px 20px; font-size: 13px; font-weight: 600; cursor: pointer; opacity: 0.4; }
.iv-cal-select.ready { opacity: 1; }

/* ===== INSTANT VISA COUNTRY CARDS ===== */
.iv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.iv-card {
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  color: var(--text-dark);
}
.iv-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.iv-card-photo {
  border-radius: 0;
  height: 290px;
  position: relative;
  overflow: hidden;
}
.iv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}
.iv-card-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 22px;
  width: 40px; height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  flex-shrink: 0;
  line-height: 1;
}
.iv-card-name {
  position: absolute;
  bottom: 46px;
  left: 14px; right: 60px;
  text-align: left;
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}
.iv-card-info {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  justify-content: space-around;
  padding: 9px 10px 11px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
}
.iv-info-col { text-align: center; }
.iv-info-label { display: block; font-size: 8px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.iv-info-val { font-size: 11.5px; font-weight: 700; color: white; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }
.iv-card-footer { padding: 10px 2px 0; }
.iv-guaranteed { display: block; font-size: 11.5px; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.iv-gdate { font-size: 13px; font-weight: 700; color: var(--text-dark); font-family: 'Inter', sans-serif; }
.iv-card.hidden { display: none; }

/* ===== COUNTRY DETAIL MODAL ===== */
.country-modal {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 860px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.country-modal-hero {
  height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}
.country-modal-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 100%); }
.country-modal-title { font-size: 28px; font-weight: 800; color: white; position: relative; z-index: 2; }
.country-modal-guarantee {
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.92);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.country-modal-body { display: grid; grid-template-columns: 1fr 300px; gap: 32px; padding: 32px; }
.cmi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.cmi-item { display: flex; align-items: center; gap: 10px; }
.cmi-icon { width: 36px; height: 36px; border-radius: 8px; background: #EEF2FF; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cmi-label { font-size: 11px; color: var(--text-muted); }
.cmi-val { font-size: 14px; font-weight: 600; color: var(--primary); text-decoration: underline; cursor: pointer; }
.cm-sidebar { background: #F4F6FF; border-radius: var(--radius); padding: 20px; }
.cm-sidebar-guarantee { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.cm-sidebar-fee { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-top: 1px solid #E5E7EB; margin-bottom: 14px; }
.cm-sidebar-fee span { font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.cm-sidebar-fee strong { font-size: 18px; font-weight: 800; }
.cm-appt-box { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 16px; margin-top: 20px; }
.cm-appt-date { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.cm-appt-link { font-size: 13px; color: var(--primary); cursor: pointer; margin-top: 6px; display: flex; align-items: center; gap: 4px; }

/* Hero Instant Visa Tab */
.hero-tab-bar { display: flex; gap: 4px; background: rgba(255,255,255,0.12); border-radius: 50px; padding: 4px; margin-bottom: 20px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); }
.hero-tab { flex: 1; padding: 10px 20px; border: none; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; background: none; color: rgba(255,255,255,0.7); transition: all 0.2s; font-family: inherit; white-space: nowrap; }
.hero-tab.active { background: white; color: var(--primary); }

/* Instant visa mini cards in hero */
.iv-mini-grid { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding: 4px 0; }
.iv-mini-grid::-webkit-scrollbar { display: none; }
.iv-mini-card { flex-shrink: 0; width: 100px; border-radius: 12px; overflow: hidden; cursor: pointer; text-decoration: none; color: white; }
.iv-mini-photo { height: 130px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 8px; position: relative; }
.iv-mini-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); border-radius: 12px; }
.iv-mini-flag { position: absolute; top: 8px; right: 8px; font-size: 14px; background: white; border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.iv-mini-name { position: relative; z-index: 2; font-size: 10.5px; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: 0.05em; }
.iv-mini-fee { font-size: 11px; font-weight: 700; text-align: center; color: var(--accent); padding: 4px 0; background: rgba(0,0,0,0.6); }

@media (max-width: 768px) {
  .iv-filter-bar { flex-direction: column; border-radius: 16px; padding: 8px; max-width: 100%; margin: 0; width: 100%; }
  .iv-divider { width: 100%; height: 1px; }
  .iv-filter { padding: 8px 14px; }
  .iv-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .iv-card-photo { height: 220px; }
  .iv-info-val { font-size: 10px; white-space: nowrap; letter-spacing: 0; }
  .iv-info-label { font-size: 7px; }
  .iv-card-info { padding: 7px 6px 9px; }
  .iv-card-name-layer { bottom: 68px !important; }
  .country-modal-body { grid-template-columns: 1fr; }
  .country-modal-title { font-size: 20px; }
  .iv-calendar { min-width: 300px; }
}
@media (max-width: 480px) {
  .iv-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .iv-card-photo { height: 200px; }
  .iv-card-flag { width: 36px; height: 36px; font-size: 20px; top: 10px; right: 10px; }
  .iv-card-name { font-size: 12px; bottom: 42px; left: 10px; }
}

/* ===== UAE TOURISM DROPDOWN ===== */
.dropdown-uae {
  left: 0;
  min-width: 580px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
.nav-item:hover .dropdown-uae,
.nav-item.open .dropdown-uae {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

/* ===== ACTIVITY CARD (UAE page) ===== */
.activity-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
  color: var(--text-dark);
  display: block;
  position: relative;
}
.activity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.activity-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
  overflow: hidden;
}
.activity-thumb-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 20px 14px 10px;
}
.activity-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-dark);
}
.activity-body { padding: 16px; }
.activity-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.activity-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; margin-bottom: 12px; }
.activity-meta { display: flex; gap: 12px; font-size: 12.5px; color: var(--text-muted); margin-bottom: 12px; }
.activity-price { font-size: 18px; font-weight: 800; color: var(--primary); }
.activity-price span { font-size: 13px; font-weight: 400; color: var(--text-muted); }

/* ===== UAE HERO ===== */
.uae-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #006400 0%, #009900 20%, #FFFFFF 40%, #FFFFFF 60%, #CC0000 80%, #000000 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.uae-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,50,100,0.65) 100%);
}

/* ===== DASHBOARD ===== */
.dash-welcome {
  background: linear-gradient(135deg, #001580, #002AD1, #1D4ED8);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  color: white;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.dash-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.4);
}
.dash-welcome h2 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.dash-welcome p { font-size: 14px; opacity: 0.8; }

.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.dash-stat {
  background: white;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
}
.dash-stat-icon { font-size: 22px; margin-bottom: 8px; }
.dash-stat-val { font-size: 28px; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.dash-stat-label { font-size: 13px; color: var(--text-muted); }

.dash-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; }

.dash-section-title {
  font-size: 18px; font-weight: 700;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}

.app-table { width: 100%; border-collapse: collapse; }
.app-table th {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted);
  padding: 10px 12px; text-align: left;
  border-bottom: 1.5px solid var(--border);
}
.app-table td {
  padding: 14px 12px; font-size: 14px;
  border-bottom: 1px solid #F3F4F6;
}
.app-table tr:last-child td { border-bottom: none; }
.app-table tr:hover td { background: #FAFAFA; }

.trip-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0;
}
.trip-thumb {
  width: 110px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.trip-body { padding: 16px; flex: 1; }
.trip-dest { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.trip-dates { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.trip-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.quick-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: white;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.15s;
  margin-bottom: 10px;
}
.quick-action:hover { border-color: var(--primary); background: #EEF2FF; color: var(--primary); }
.quick-action-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.quick-action strong { display: block; font-size: 14px; font-weight: 600; }
.quick-action span { font-size: 12px; color: var(--text-muted); }

.notif-item {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13.5px;
}
.notif-item:last-child { border-bottom: none; }
.notif-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.notif-dot.unread { background: var(--primary); }
.notif-dot.read { background: var(--border); }

@media (max-width: 1024px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .dash-welcome { flex-direction: column; text-align: center; padding: 24px 20px; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .trip-card { flex-direction: column; }
  .trip-thumb { width: 100%; height: 100px; }
  .dropdown-uae { min-width: 300px; grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .dash-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.fade-in { animation: fadeIn 0.3s ease; }

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.loading { animation: pulse 1.5s infinite; }


/* ============================================
   NEW USER EXCLUSIVE + PROMO BANNERS
   ============================================ */
.promo-section {
  background: var(--white);
  padding: 36px 24px 28px;
}

/* --- New User Exclusive --- */
.nue-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.nue-cards {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.nue-card {
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nue-welcome {
  background: linear-gradient(140deg, #EFF6FF 0%, #DBEAFE 60%, #C7D2FE 100%);
  border: 1.5px solid #BFDBFE;
}

.nue-welcome-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  flex: 1;
}
.nue-welcome-content p { font-size: 0.95rem; color: var(--text-dark); line-height: 1.5; }
.nue-welcome-content strong { font-weight: 700; }
.nue-welcome-emoji { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }

.nue-offer {
  border: 1.5px dashed #FECDD3;
  background: var(--white);
}

.nue-offer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}

.nue-offer-pct {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.nue-offer-cat {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nue-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  font-size: 9px;
  color: var(--text-muted);
  cursor: help;
  font-style: normal;
  line-height: 1;
  flex-shrink: 0;
}

.nue-offer-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.btn-nue-claim {
  display: block;
  padding: 9px 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: auto;
}
.btn-nue-claim:hover { background: var(--primary-dark); }

/* --- Promo Banners --- */
.promo-banners {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 14px;
  align-items: stretch;
}

/* Left slider */
.promo-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
}

.promo-slider { width: 100%; height: 100%; position: relative; }

.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
}
.promo-slide.active { opacity: 1; }

.promo-overlay {
  position: absolute;
  inset: 0;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.22) 55%, transparent 100%);
}
.promo-overlay-pink {
  background: linear-gradient(to right, rgba(20,30,80,0.72) 0%, rgba(20,30,80,0.3) 55%, transparent 100%);
}

/* Logo: sized like nav logo — height-constrained, never stretches */
.promo-brand-logo {
  height: 34px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  display: block;
}

.promo-text { display: flex; flex-direction: column; gap: 2px; }
.promo-text h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin: 0;
}
.promo-text h3 strong { font-weight: 800; }
.promo-text p { font-size: 0.88rem; color: rgba(255,255,255,0.9); margin: 0; }

.promo-exp {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.promo-magic { font-size: 1.45rem; font-style: italic; color: #fff !important; font-weight: 400 !important; margin: 0; }
.promo-magic strong { font-style: normal; font-weight: 800 !important; }

.promo-tac { font-size: 0.68rem; color: rgba(255,255,255,0.55); display: block; margin-top: 3px; }

/* Arrows */
.promo-prev, .promo-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: none;
  color: white;
  font-size: 1.6rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
  line-height: 1;
  padding: 0;
}
.promo-prev:hover, .promo-next:hover { background: rgba(255,255,255,0.38); }
.promo-prev { left: 10px; }
.promo-next { right: 10px; }

/* Dots (shared style) */
.promo-dots, .promo-side-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.promo-dot, .promo-side-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: all 0.25s;
}
.promo-dot.active, .promo-side-dot.active { background: white; width: 18px; }

/* Right side slider */
.promo-side { display: flex; flex-direction: column; }

.promo-side-slider-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
}

.promo-side-slider { width: 100%; height: 100%; position: relative; }

.promo-side-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
}
.promo-side-slide.active { opacity: 1; }

.promo-side-head { display: flex; align-items: center; gap: 10px; }
.promo-side-logo {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  flex-shrink: 0;
}
.promo-side-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.4); flex-shrink: 0; }
.promo-side-partner { font-size: 0.78rem; color: rgba(255,255,255,0.9); font-weight: 600; }

.promo-side-h4 { font-size: 0.88rem; font-weight: 500; line-height: 1.35; color: white; margin: 0; }
.promo-side-h4 strong { font-size: 1.5rem; font-weight: 800; display: block; line-height: 1.1; }

.promo-side-tac { font-size: 0.66rem; color: rgba(255,255,255,0.55); }

.promo-side-btn {
  display: inline-block;
  background: #F59E0B;
  color: white;
  padding: 7px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.8rem;
  width: fit-content;
  transition: background 0.2s;
  margin-top: auto;
}
.promo-side-btn:hover { background: #D97706; }

.promo-side-art {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 2.4rem;
  opacity: 0.2;
  pointer-events: none;
  display: flex;
  gap: 4px;
}

/* Dark mode */
body.dark-mode .promo-section { background: #1e293b; }
body.dark-mode .nue-welcome { background: linear-gradient(140deg, #1e3a5f 0%, #172d52 100%); border-color: #2563eb55; }
body.dark-mode .nue-offer { background: #0f172a; border-color: #fb718555; }
body.dark-mode .nue-welcome-content p { color: #f1f5f9; }
body.dark-mode .nue-offer-pct { color: #f1f5f9; }

/* Responsive */
@media (max-width: 900px) {
  .nue-cards { grid-template-columns: 1fr 1fr; }
  .nue-welcome { grid-column: 1 / -1; }
  .promo-banners { grid-template-columns: 1fr; }
  .promo-side-slider-wrap { height: 160px; }
}

@media (max-width: 600px) {
  .promo-slider-wrap { height: 175px; }
  .promo-brand-logo { height: 26px; }
  .promo-side-logo { height: 22px; }
  .promo-text h3 { font-size: 1.25rem; }
  .promo-side-h4 strong { font-size: 1.2rem; }
  .nue-offer-pct { font-size: 1.2rem; }
}

@media (max-width: 420px) {
  .nue-cards { grid-template-columns: 1fr; }
  .nue-welcome { grid-column: auto; }
}
