/* ═══════════════════════════════════════════════════════════════════════════════
   style.css — [COMPANY NAME] | Premium Europe Consultancy Design System
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── 1. Design Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Core palette — brand blue #02274e */
  --navy:         #02274E;
  --navy-deep:    #02274E;
  --navy-mid:     #0B4A8A;
  --navy-card:    #1565A8;
  --navy-surface: #1B75C4;

  /* Accent — brand green #157163 */
  --orange:       #157163;
  --orange-dark:  #0E5A50;
  --orange-glow:  rgba(21, 113, 99, 0.18);
  --orange-gold:  #157163;

  /* Neutrals — warm tones, not sterile white */
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --gray-bg:      #F1F5F9;
  --gray-light:   #E2E8F0;
  --border:       #CBD5E1;
  --border-dark:  rgba(255,255,255,0.09);

  /* Text */
  --slate:        #02274E;
  --slate-mid:    #475569;
  --slate-light:  #94A3B8;

  /* Semantic */
  --green:        #157163;
  --green-bg:     rgba(21,113,99,0.10);

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(2,39,78,0.08), 0 1px 2px rgba(2,39,78,0.06);
  --shadow:       0 4px 24px rgba(2,39,78,0.10), 0 2px 8px rgba(2,39,78,0.06);
  --shadow-lg:    0 20px 60px rgba(2,39,78,0.16), 0 8px 20px rgba(2,39,78,0.08);
  --shadow-card:  0 8px 32px rgba(2,39,78,0.12);
  --shadow-glass: 0 20px 60px rgba(0,0,0,0.50), inset 0 1px 0 rgba(255,255,255,0.07);

  /* Structure */
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    22px;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --container:    1200px;
  --nav-h:        72px;
  --transition:   0.24s 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; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 3. Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.18;
  color: var(--slate);
  letter-spacing: -0.025em;
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.875rem;
  padding: 0.3rem 0.875rem;
  background: rgba(21,113,99,0.09);
  border: 1px solid rgba(21,113,99,0.22);
  border-radius: 20px;
}

.section-title {
  font-size: clamp(1.875rem, 3.75vw, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--slate);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-title.on-dark { color: var(--white); }

.section-sub {
  font-size: 1.0625rem;
  color: var(--slate-mid);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 400;
}
.section-sub.on-dark { color: rgba(255,255,255,0.62); }

/* ── 4. Layout ─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad    { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── 5. Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.875rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(21,113,99,0.30);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21,113,99,0.38);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.30);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.70);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-mid);
  color: var(--white);
  border-color: var(--navy-mid);
}
.btn-navy:hover {
  background: var(--navy-card);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; letter-spacing: -0.01em; }

/* ── 6. Cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

/* ── 7. Top Bar ────────────────────────────────────────────────────────────── */
.top-bar {
  background: #FFFFFF;
  color: var(--navy);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.top-bar a { color: inherit; transition: color var(--transition); }
.top-bar a:hover { color: var(--orange); }
.top-bar .flex-between { flex-wrap: wrap; gap: 0.5rem; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 0.35rem; }
.google-badge {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.2rem 0.75rem;
}
.stars { color: var(--orange); font-size: 0.75rem; letter-spacing: 1.5px; }

/* ── 8. Navigation ─────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(2,39,78,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(2,39,78,0.10);
}
.navbar .container { height: 100%; }
.navbar .flex-between { height: 100%; }

.nav-logo {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}
.footer .nav-logo-img {
  height: 46px;
}

.nav-links { display: flex; align-items: center; gap: 0.125rem; }
.nav-links a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 7px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--orange);
  background: rgba(2,39,78,0.06);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-cta { margin-left: 0.75rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: 7px; transition: var(--transition);
}
.hamburger:hover { background: rgba(2,39,78,0.06); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 9. Announcement Ticker ────────────────────────────────────────────────── */
.ticker-bar {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-dark));
  color: var(--white);
  padding: 0.625rem 0;
  overflow: hidden;
  position: relative;
}
.ticker-bar::before,
.ticker-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.ticker-bar::before { left: 0;  background: linear-gradient(90deg, var(--orange-dark), transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(270deg, var(--orange-dark), transparent); }

.ticker-label {
  background: rgba(0,0,0,0.22);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.875rem;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 3;
  position: relative;
}
.ticker-track { display: flex; overflow: hidden; flex: 1; }
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  animation: ticker-scroll 42s linear infinite;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-sep { color: rgba(255,255,255,0.45); font-size: 0.875rem; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 10. Hero Section ──────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(145deg, #02274E 0%, #0B4A8A 52%, #1B75C4 100%);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4.5rem;
  min-height: calc(100vh - var(--nav-h) - 42px);
  display: flex;
  align-items: center;
}

/* Soft light wash so the blue reads clearly, not black */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 0%, rgba(125, 211, 252, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 60% 50% at 90% 90%, rgba(255,255,255,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(21,113,99,0.12);
  border: 1px solid rgba(21,113,99,0.30);
  color: #A8E4D8;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.375rem;
  letter-spacing: 0.01em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1.375rem;
}
.hero-title span {
  color: #FFFFFF;
  background: none;
  -webkit-text-fill-color: #FFFFFF;
}

.hero-sub {
  font-size: 1.075rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.75rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.09);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.62);
  font-size: 0.875rem;
  font-weight: 500;
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

/* ── Hero Form Card — clean elevated white ───────────────────────────────── */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.125rem 2rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.32), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), #A8E4D8);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ── Glassmorphism variant for dark backgrounds ──────────────────────────── */
.hero-form-card.glass-form {
  background: rgba(15, 23, 42, 0.60);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.11);
  box-shadow: var(--shadow-glass);
}
.hero-form-card.glass-form::before {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), #A8E4D8);
}
.hero-form-card.glass-form .form-card-title { color: var(--white); }
.hero-form-card.glass-form .form-card-sub   { color: rgba(255,255,255,0.58); }
.hero-form-card.glass-form .form-label      { color: rgba(255,255,255,0.82); }
.hero-form-card.glass-form .form-control {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.hero-form-card.glass-form .form-control::placeholder { color: rgba(255,255,255,0.35); }
.hero-form-card.glass-form .form-control:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,0.13);
  box-shadow: 0 0 0 3px rgba(21,113,99,0.18);
}
.hero-form-card.glass-form select.form-control option { background: var(--navy-mid); color: var(--white); }
.hero-form-card.glass-form .form-disclaimer { color: rgba(255,255,255,0.40); }
.hero-form-card.glass-form .alert-error {
  background: rgba(239,68,68,0.15);
  color: #FCA5A5;
  border-color: rgba(239,68,68,0.30);
}

.form-card-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.form-card-sub { font-size: 0.8125rem; color: var(--slate-mid); margin-bottom: 1.375rem; }

/* ── 11. Stats Bar ─────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange), var(--orange-dark));
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; position: relative; }
.stat-item { padding: 0.75rem 1rem; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.25); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.01em; }

/* ── 12. Section Headers ───────────────────────────────────────────────────── */
.section-header { margin-bottom: 3.5rem; }
.section-header.text-center .section-sub { margin: 0 auto; }

/* ── 13. How It Works — Staggered Timeline ─────────────────────────────────── */
.htw-outer { overflow-x: auto; padding-bottom: 1.25rem; }
.htw-outer::-webkit-scrollbar { height: 4px; }
.htw-outer::-webkit-scrollbar-track { background: var(--gray-light); border-radius: 2px; }
.htw-outer::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

.htw-row {
  display: flex;
  align-items: flex-start;
  min-width: 900px;
  position: relative;
  padding: 0 1rem;
  gap: 0;
}

/* Gradient connecting line through the badge centers */
.htw-row::before {
  content: '';
  position: absolute;
  top: 32px; /* half of badge height (64px / 2) */
  left: calc(1rem + 32px);
  right: calc(1rem + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, rgba(21,113,99,0.20) 80%, transparent 100%);
  z-index: 0;
}

.htw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.625rem;
  position: relative;
}

.htw-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 1.375rem;
  box-shadow: 0 0 0 6px rgba(21,113,99,0.08), 0 4px 14px rgba(21,113,99,0.22);
  letter-spacing: 0.01em;
  transition: var(--transition);
  flex-shrink: 0;
}
.htw-step:hover .htw-badge {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(21,113,99,0.14), 0 8px 22px rgba(21,113,99,0.35);
}

/* Stagger: even steps push content DOWN to create zigzag rhythm */
.htw-step:nth-child(even) .htw-card {
  margin-top: 2.75rem;
}

.htw-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 0.875rem;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.htw-step:hover .htw-card {
  border-color: rgba(21,113,99,0.30);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.htw-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}
.htw-desc { font-size: 0.8125rem; color: var(--slate-mid); line-height: 1.55; }

/* ── 14. Destinations Grid ─────────────────────────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.125rem;
}

.dest-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(2,39,78,0.18);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1), box-shadow 0.38s ease;
  cursor: pointer;
}
.dest-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(2,39,78,0.28);
}

.dest-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  opacity: 0.88;
}
.dest-card:hover .dest-img { transform: scale(1.08); opacity: 1; }

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(2,39,78,0.88) 0%,
    rgba(2,39,78,0.40) 42%,
    rgba(2,39,78,0.08) 68%,
    transparent 100%);
}
.dest-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.375rem 1rem 1.125rem;
}
.dest-country {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.dest-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.dest-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  background: rgba(21,113,99,0.80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--white);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ── 15. Why Choose Us ─────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.125rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow-card); transform: translateY(-5px); border-color: rgba(21,113,99,0.18); }

.why-icon {
  width: 52px; height: 52px;
  background: rgba(21,113,99,0.09);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--orange); }
.why-icon svg { color: var(--orange); transition: color var(--transition); }
.why-card:hover .why-icon svg { color: var(--white); }
.why-title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 0.625rem; }
.why-desc  { font-size: 0.9rem; color: var(--slate-mid); line-height: 1.70; }

/* ── 16. Services Grid ─────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.125rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--orange), var(--orange-dark));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover::after { transform: scaleY(1); }
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }

.service-icon {
  width: 48px; height: 48px;
  background: var(--navy-mid);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.125rem;
}
.service-icon svg { color: var(--orange); }
.service-title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; margin-bottom: 1rem; }
.service-list { display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: var(--slate-mid); line-height: 1.55;
}
.service-list li::before {
  content: '';
  display: block; width: 16px; height: 16px; min-width: 16px;
  margin-top: 1px;
  background: var(--orange);
  border-radius: 50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  mask-size: cover;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
}

/* ── 17. Testimonials ──────────────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.125rem;
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.testi-quote {
  font-size: 4rem; line-height: 1;
  color: var(--orange); opacity: 0.15;
  font-family: Georgia, serif;
  position: absolute; top: 1rem; right: 1.5rem;
}
.visa-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(16,185,129,0.09);
  color: var(--green);
  border: 1px solid rgba(16,185,129,0.22);
  font-size: 0.6875rem; font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.testi-text { font-size: 0.9375rem; color: var(--slate-mid); line-height: 1.75; margin-bottom: 1.375rem; }
.testi-stars { color: #157163; font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 1.125rem; }
.testi-author { display: flex; align-items: center; gap: 0.875rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--orange-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 800;
  color: var(--white); flex-shrink: 0;
}
.testi-name  { font-family: var(--font-heading); font-weight: 700; font-size: 0.9375rem; color: var(--navy); letter-spacing: -0.01em; }
.testi-meta  { font-size: 0.8125rem; color: var(--slate-mid); margin-top: 0.1rem; }

/* ── 18. FAQ Accordion ─────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.faq-item.open { border-color: var(--orange); box-shadow: 0 4px 16px rgba(21,113,99,0.10); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9375rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--navy); text-align: left; cursor: pointer;
  transition: background var(--transition); gap: 1rem;
}
.faq-question:hover { background: var(--gray-bg); }
.faq-item.open .faq-question { background: var(--gray-bg); }

.faq-chevron {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--slate-mid);
}
.faq-item.open .faq-chevron { background: var(--orange); color: var(--white); transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 1.5rem; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.5rem 1.375rem; }
.faq-answer p { font-size: 0.9375rem; color: var(--slate-mid); line-height: 1.78; }

/* ── 19. CTA Section ───────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(145deg, #02274E 0%, #0B4A8A 55%, #1565A8 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(125, 211, 252, 0.22) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-title { color: var(--white); }
.cta-section .section-sub   { color: rgba(255,255,255,0.65); margin: 0 auto 2.25rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.70); font-size: 0.9375rem; margin-top: 1.75rem; justify-content: center; }
.cta-phone a { color: #A8E4D8; font-weight: 700; }

/* ── 20. Lead Form (shared) ────────────────────────────────────────────────── */
.form-group { margin-bottom: 0.9375rem; }
.form-label { display: block; font-size: 0.8125rem; font-weight: 600; color: var(--navy); margin-bottom: 0.375rem; letter-spacing: 0.005em; }
.form-label span { color: var(--orange); }

.form-control {
  width: 100%;
  padding: 0.6875rem 0.9375rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.875rem;
  color: var(--slate); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(21,113,99,0.12);
}
.form-control::placeholder { color: var(--slate-light); }
.form-control.error { border-color: #EF4444; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9375rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
textarea.form-control { resize: vertical; min-height: 88px; }
.hp-field { display: none !important; }
.form-error { font-size: 0.75rem; color: #EF4444; margin-top: 0.25rem; }
.form-submit-btn { width: 100%; padding: 0.9375rem; font-size: 0.9375rem; margin-top: 0.375rem; }
.form-disclaimer { font-size: 0.75rem; color: var(--slate-light); text-align: center; margin-top: 0.75rem; line-height: 1.55; }

.alert { padding: 0.875rem 1.125rem; border-radius: var(--radius-sm); font-size: 0.875rem; margin-bottom: 1.25rem; display: flex; align-items: flex-start; gap: 0.625rem; }
.alert-error   { background: #FEF2F2; color: #B91C1C; border: 1px solid #FECACA; }
.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }

/* ── 21. Footer ────────────────────────────────────────────────────────────── */
.footer { background: #FFFFFF; color: var(--slate-mid); padding: 5rem 0 0; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.75rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: 0.875rem; line-height: 1.75; margin: 1rem 0 1.75rem; max-width: 280px; color: var(--slate-mid); }
.social-links { display: flex; gap: 0.625rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(21,113,99,0.30); }

.footer-heading { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--navy); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: var(--slate-mid); transition: color var(--transition); display: flex; align-items: center; gap: 0.4rem; }
.footer-links a:hover { color: var(--orange); }
.footer-links a::before { content: '›'; font-size: 1rem; color: var(--orange); opacity: 0.55; }

.footer-contact { display: flex; flex-direction: column; gap: 0.9375rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.875rem; line-height: 1.6; color: var(--slate-mid); }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-item a { color: var(--navy); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom { padding: 1.375rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.8125rem; color: var(--slate-mid); }
.footer-bottom a { color: var(--orange); }

/* ── 22. WhatsApp Float ────────────────────────────────────────────────────── */
.wa-float { position: fixed; bottom: 1.875rem; right: 1.875rem; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.wa-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: wa-pulse 2.8s infinite;
}
.wa-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,0.60); }
.wa-label { background: var(--navy-mid); color: var(--white); font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 20px; white-space: nowrap; box-shadow: var(--shadow-sm); }

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.70), 0 0 0 10px rgba(37,211,102,0.09); }
}

/* ── 23. Thank-You Page ────────────────────────────────────────────────────── */
.thankyou-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; background: var(--gray-bg); padding: 3rem 1.5rem; }
.thankyou-card { background: var(--white); border-radius: var(--radius-lg); padding: 3rem 2.5rem; max-width: 560px; width: 100%; text-align: center; box-shadow: var(--shadow-lg); }
.thankyou-icon { width: 80px; height: 80px; background: rgba(16,185,129,0.10); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.thankyou-icon svg { color: var(--green); }
.thankyou-card h1 { font-size: 1.875rem; color: var(--navy); margin-bottom: 0.75rem; letter-spacing: -0.03em; }
.thankyou-card p  { color: var(--slate-mid); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.thankyou-steps  { background: var(--gray-bg); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; text-align: left; margin: 1.5rem 0; }
.thankyou-steps li { font-size: 0.9rem; color: var(--slate-mid); padding: 0.45rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.625rem; }
.thankyou-steps li:last-child { border-bottom: none; }
.thankyou-steps li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.thankyou-actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.75rem; flex-wrap: wrap; }

/* ── 24. Page Hero (inner pages) ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, #02274E 0%, #0B4A8A 55%, #1565A8 100%);
  padding: 4.5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(21,113,99,0.12) 0%, transparent 65%);
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 0.875rem; position: relative; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.0625rem; max-width: 580px; margin: 0 auto; position: relative; }

/* Destination page */
.country-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.country-section:nth-child(even) { background: var(--gray-bg); }
.country-grid { display: grid; grid-template-columns: 340px 1fr; gap: 3.5rem; align-items: start; }
.country-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.country-name { font-size: clamp(1.5rem, 2.5vw, 2.125rem); font-family: var(--font-heading); font-weight: 800; color: var(--navy); letter-spacing: -0.03em; margin-bottom: 0.625rem; display: flex; align-items: center; gap: 0.625rem; }
.country-name .flag { font-size: 1.5rem; }
.country-desc { color: var(--slate-mid); line-height: 1.78; margin-bottom: 1.625rem; font-size: 0.9375rem; }
.country-meta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.625rem; }
.meta-item { background: var(--gray-bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 0.875rem 1rem; }
.meta-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.10em; color: var(--slate-light); margin-bottom: 0.3rem; font-weight: 700; }
.meta-value { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.req-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.req-tag { font-size: 0.8125rem; background: rgba(2,39,78,0.06); color: var(--navy); border-radius: 5px; padding: 0.3rem 0.75rem; font-weight: 500; border: 1px solid rgba(2,39,78,0.10); }

/* About page */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.125rem; text-align: center; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-card); transform: translateY(-5px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-mid), var(--orange-dark)); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--white); }
.team-name { font-family: var(--font-heading); font-weight: 700; color: var(--navy); font-size: 1.0625rem; letter-spacing: -0.01em; }
.team-role { font-size: 0.875rem; color: var(--orange); font-weight: 600; margin: 0.2rem 0 0.625rem; }
.team-bio  { font-size: 0.875rem; color: var(--slate-mid); line-height: 1.65; }

/* ── 25. Admin Panel ───────────────────────────────────────────────────────── */
.admin-body { background: var(--gray-bg); min-height: 100vh; font-family: var(--font-body); }
.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 240px; background: var(--navy); display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 100; overflow-y: auto;
}
.admin-sidebar-brand { padding: 1.5rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.admin-sidebar-brand .nav-logo { font-size: 1.0625rem; }
.admin-nav { padding: 1rem 0; flex: 1; }
.admin-nav-item { display: flex; align-items: center; gap: 0.625rem; padding: 0.75rem 1.25rem; color: rgba(255,255,255,0.60); font-size: 0.875rem; font-weight: 500; transition: var(--transition); }
.admin-nav-item:hover { background: rgba(255,255,255,0.05); color: var(--white); }
.admin-nav-item.active { background: rgba(21,113,99,0.14); color: var(--orange); border-right: 3px solid var(--orange); }
.admin-nav-item svg { flex-shrink: 0; }
.admin-nav-section { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); padding: 1rem 1.25rem 0.375rem; }
.admin-logout { padding: 1rem 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); }
.admin-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; }
.admin-topbar { background: var(--white); border-bottom: 1px solid var(--border); padding: 0 1.75rem; height: 60px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; box-shadow: var(--shadow-sm); }
.admin-topbar h1 { font-size: 1.125rem; font-weight: 700; color: var(--navy); letter-spacing: -0.02em; }
.admin-user-info { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--slate-mid); }
.admin-avatar-sm { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--navy-mid), var(--orange-dark)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 0.8125rem; font-family: var(--font-heading); }
.admin-content { padding: 2rem 1.75rem; flex: 1; }
.admin-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.admin-stat-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1.375rem 1.5rem; display: flex; align-items: center; gap: 1rem; box-shadow: var(--shadow-sm); }
.admin-stat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.admin-stat-icon.orange { background: rgba(21,113,99,0.09); color: var(--orange); }
.admin-stat-icon.navy   { background: rgba(2,39,78,0.07); color: var(--navy); }
.admin-stat-icon.green  { background: rgba(16,185,129,0.09); color: var(--green); }
.admin-stat-icon.blue   { background: rgba(59,130,246,0.09); color: #3B82F6; }
.admin-stat-num { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.04em; }
.admin-stat-lbl { font-size: 0.8125rem; color: var(--slate-mid); margin-top: 0.15rem; }

.admin-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-card-header { padding: 1.125rem 1.5rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.admin-card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.admin-filters { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.admin-filters input, .admin-filters select { padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 0.8125rem; font-family: var(--font-body); color: var(--slate); background: var(--white); outline: none; }
.admin-filters input:focus, .admin-filters select:focus { border-color: var(--orange); }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.data-table th { background: var(--gray-bg); color: var(--slate-mid); font-weight: 600; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); white-space: nowrap; }
.data-table td { padding: 0.9375rem 1rem; border-bottom: 1px solid var(--border); color: var(--slate); vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }

.status-badge { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.25rem 0.7rem; border-radius: 20px; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }
.status-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.badge-new         { background: rgba(59,130,246,0.09); color: #2563EB; }
.badge-new::before { background: #2563EB; }
.badge-contacted         { background: rgba(21,113,99,0.09); color: var(--orange-dark); }
.badge-contacted::before { background: var(--orange); }
.badge-in_progress         { background: rgba(234,179,8,0.09); color: #B45309; }
.badge-in_progress::before { background: #EAB308; }
.badge-closed         { background: rgba(16,185,129,0.09); color: #065F46; }
.badge-closed::before { background: var(--green); }

.action-btns { display: flex; gap: 0.375rem; }
.action-btn { padding: 0.35rem 0.75rem; border-radius: 5px; font-size: 0.75rem; font-weight: 600; transition: var(--transition); border: 1px solid transparent; }
.action-btn-view   { background: rgba(2,39,78,0.06); color: var(--navy); border-color: rgba(2,39,78,0.12); }
.action-btn-view:hover { background: var(--navy); color: var(--white); }
.action-btn-delete { background: rgba(239,68,68,0.07); color: #DC2626; border-color: rgba(239,68,68,0.18); }
.action-btn-delete:hover { background: #EF4444; color: var(--white); }

.admin-login-wrap { min-height: 100vh; background: linear-gradient(160deg, var(--navy-deep), var(--navy)); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.admin-login-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.75rem 2.25rem; width: 100%; max-width: 420px; box-shadow: 0 32px 80px rgba(0,0,0,0.35); }
.admin-login-card h1 { font-size: 1.625rem; color: var(--navy); margin-bottom: 0.25rem; letter-spacing: -0.03em; }
.admin-login-card p  { font-size: 0.875rem; color: var(--slate-mid); margin-bottom: 1.875rem; }

/* ── 26. Scroll Reveal ─────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── 27. Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
  .country-grid { grid-template-columns: 280px 1fr; gap: 2.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .admin-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; margin: 0 auto; }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.25); }
  .country-grid { grid-template-columns: 1fr; }
  .country-img { max-width: 440px; }
  .country-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { width: 210px; }
  .admin-main { margin-left: 210px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 4rem 0; }

  .nav-links, .nav-cta {
    display: none;
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: #FFFFFF;
    backdrop-filter: none;
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(2,39,78,0.10);
  }
  .nav-links.open, .nav-cta.open { display: flex; }
  .nav-links a { padding: 0.8rem 1rem; border-radius: 7px; }
  .nav-links a.active::after { display: none; }
  .nav-cta { padding: 0.5rem 1rem 1rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }

  .hero { padding: 3.25rem 0; min-height: auto; }
  .hero-actions { gap: 0.75rem; }
  .hero-trust { gap: 1rem; }

  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid  { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .admin-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.22); }
  .stat-item:nth-child(odd) { border-right: none; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .country-meta-grid { grid-template-columns: 1fr; }
  .thankyou-card { padding: 2rem 1.25rem; }
  .admin-content { padding: 1.25rem 1rem; }
  .admin-stats-row { grid-template-columns: 1fr; }
  .top-bar-right { display: none; }
}

@media print {
  .navbar, .top-bar, .ticker-bar, .wa-float, .footer { display: none; }
  body { font-size: 12pt; }
}
