/* =====================================================
   ORVARILON GROUP — PREMIUM CORPORATE DESIGN SYSTEM
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* =====================================================
   1. CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  --primary:        #0B3D91;
  --primary-dark:   #082f72;
  --primary-light:  #1a52b5;
  --secondary:      #1D4ED8;
  --accent:         #F59E0B;
  --accent-dark:    #D97706;
  --accent-light:   #FCD34D;
  --success:        #10B981;
  --danger:         #EF4444;
  --bg:             #F8FAFC;
  --bg-card:        #FFFFFF;
  --bg-dark:        #0B1E3F;
  --text:           #1F2937;
  --text-light:     #6B7280;
  --text-muted:     #9CA3AF;
  --border:         #E5E7EB;
  --border-light:   #F3F4F6;

  /* Gradients */
  --grad-primary:   linear-gradient(135deg, #0B3D91 0%, #1D4ED8 100%);
  --grad-hero:      linear-gradient(135deg, #0B3D91 0%, #082f72 50%, #0e1a3d 100%);
  --grad-gold:      linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --grad-success:   linear-gradient(135deg, #10B981 0%, #059669 100%);

  /* Shadows */
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 16px rgba(11,61,145,0.1), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg:      0 10px 40px rgba(11,61,145,0.15), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:      0 20px 60px rgba(11,61,145,0.2), 0 8px 24px rgba(0,0,0,0.1);
  --shadow-glow:    0 0 40px rgba(11,61,145,0.25);
  --shadow-gold:    0 8px 32px rgba(245,158,11,0.3);

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Border Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Transitions */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:  0.15s var(--ease);
  --t-base:  0.3s var(--ease);
  --t-slow:  0.5s var(--ease);

  /* Z-index layers */
  --z-nav:    1000;
  --z-modal:  2000;
  --z-toast:  3000;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t-fast); }
button { font-family: var(--font-body); cursor: pointer; }
input, textarea, select { font-family: var(--font-body); }
ul { list-style: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.display-1 { font-size: clamp(2.5rem, 5vw, 4rem);   font-weight: 800; }
.display-2 { font-size: clamp(2rem,   4vw, 3rem);   font-weight: 700; }
.heading-xl { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; }
.heading-lg { font-size: clamp(1.5rem,  2.5vw, 2rem); font-weight: 600; }
.heading-md { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   4. LAYOUT UTILITIES
   ===================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(11,61,145,0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(11,61,145,0.15);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid System */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* =====================================================
   5. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-gold {
  background: var(--grad-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,158,11,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-xl { padding: 20px 44px; font-size: 1.1rem; border-radius: var(--r-lg); }

/* =====================================================
   6. NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(11,61,145,0.1);
  padding: 14px 0;
  border-bottom: 1px solid rgba(11,61,145,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  transition: var(--t-fast);
}

.navbar.scrolled .nav-logo-name { color: var(--primary); }

.nav-logo-tagline {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-link {
  padding: 8px 14px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--t-fast);
  position: relative;
}

.navbar.scrolled .nav-link { color: var(--text); }

.nav-link:hover {
  color: var(--accent);
  background: rgba(245,158,11,0.08);
}

.navbar.scrolled .nav-link:hover {
  background: rgba(11,61,145,0.06);
  color: var(--primary);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  padding: 12px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s var(--ease);
  z-index: 100;
}

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

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--t-fast);
}

.nav-dropdown-item:hover {
  background: rgba(11,61,145,0.06);
  color: var(--primary);
}

.nav-dropdown-item span.flag { font-size: 1.1rem; }

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
  transition: var(--t-base);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,158,11,0.5);
  background: var(--accent-dark);
  color: #fff;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--t-base);
}

.navbar.scrolled .nav-toggle span { background: var(--text); }

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11,29,63,0.98);
  backdrop-filter: blur(20px);
  z-index: calc(var(--z-nav) - 1);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0;
  transition: opacity var(--t-base);
}

.nav-mobile.open {
  display: flex;
  opacity: 1;
}

.nav-mobile-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--r-md);
  transition: var(--t-fast);
  text-align: center;
}

.nav-mobile-link:hover {
  color: var(--accent);
  background: rgba(245,158,11,0.08);
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* =====================================================
   7. HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

/* Animated background elements */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: heroFloat 12s ease-in-out infinite alternate;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,0.5) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation-delay: -8s;
}

@keyframes heroFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

/* World map dots overlay */
.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Animated connection lines */
.hero-globe-svg {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.12;
  animation: globeSpin 40s linear infinite;
}

@keyframes globeSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

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

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--space-2xl);
  min-height: 100vh;
  padding: 120px 0 60px;
}

@media (max-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    padding: 120px 0 80px;
    gap: var(--space-xl);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.4);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.hero-title .gold { color: var(--accent); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-countries {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-country-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}

/* Hero Visual / Card */
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  box-shadow: 0 32px 64px rgba(0,0,0,0.3);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-md);
}

.hero-form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-form-input,
.hero-form-select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  transition: var(--t-fast);
}

.hero-form-input::placeholder { color: rgba(255,255,255,0.4); }

.hero-form-input:focus,
.hero-form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}

.hero-form-select option { background: var(--primary-dark); color: #fff; }

.hero-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .hero-form-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   8. STATS / TRUST INDICATORS
   ===================================================== */
.stats-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-item {
  background: var(--bg-card);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  transition: var(--t-base);
}

.stat-item:hover {
  background: linear-gradient(135deg, rgba(11,61,145,0.03) 0%, rgba(29,78,216,0.05) 100%);
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--grad-gold);
  border-radius: var(--r-full);
  transition: width var(--t-base);
}

.stat-item:hover::after { width: 60%; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.3;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

/* =====================================================
   9. SERVICE CARDS
   ===================================================== */
.services-section {
  background: var(--bg);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(11,61,145,0.15);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

.service-card-icon.blue {
  background: linear-gradient(135deg, rgba(11,61,145,0.1) 0%, rgba(29,78,216,0.15) 100%);
}
.service-card-icon.gold {
  background: linear-gradient(135deg, rgba(245,158,11,0.1) 0%, rgba(217,119,6,0.15) 100%);
}
.service-card-icon.green {
  background: linear-gradient(135deg, rgba(16,185,129,0.1) 0%, rgba(5,150,105,0.15) 100%);
}

.service-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-md);
}

.tag-blue { background: rgba(11,61,145,0.1); color: var(--primary); }
.tag-gold { background: rgba(245,158,11,0.1); color: var(--accent-dark); }
.tag-green { background: rgba(16,185,129,0.1); color: #059669; }

.service-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  flex: 1;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-xl);
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
}

.service-list-item .check {
  width: 14px; height: 14px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

/* =====================================================
   10. DESTINATION CARDS
   ===================================================== */
.destinations-section {
  background: linear-gradient(180deg, #f0f4ff 0%, var(--bg) 100%);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 1024px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .dest-grid { grid-template-columns: 1fr; } }

.dest-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-md);
  transition: all var(--t-base);
  position: relative;
  cursor: pointer;
}

.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.dest-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.dest-card-image-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--t-slow);
}

.dest-card:hover .dest-card-image-bg {
  transform: scale(1.08);
}

.dest-card-flag {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.dest-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(11,29,63,0.85) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.dest-card-body {
  padding: var(--space-lg);
}

.dest-card-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.dest-card-meta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.dest-chip {
  padding: 3px 10px;
  background: rgba(11,61,145,0.08);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
}

/* Destination image gradients */
.dest-au { background: linear-gradient(135deg, #0B3D91 0%, #1D4ED8 40%, #10B981 100%); }
.dest-us { background: linear-gradient(135deg, #B22234 0%, #3C3B6E 50%, #FFFFFF22 100%); }
.dest-ca { background: linear-gradient(135deg, #FF0000 0%, #8B0000 50%, #cc4444 100%); }
.dest-uk { background: linear-gradient(135deg, #012169 0%, #C8102E 50%, #FFFFFF22 100%); }
.dest-dk { background: linear-gradient(135deg, #C60C30 0%, #003580 50%, #E8112D 100%); }
.dest-eu { background: linear-gradient(135deg, #003399 0%, #FFCC00 60%, #003399 100%); }
.dest-sa { background: linear-gradient(135deg, #006C35 0%, #004d25 50%, #2da44e 100%); }

/* =====================================================
   11. WHY CHOOSE US CARDS
   ===================================================== */
.why-section {
  background: var(--bg-card);
}

.why-card {
  padding: var(--space-xl);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-light);
  background: var(--bg);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,61,145,0.03) 0%, rgba(29,78,216,0.05) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,61,145,0.2);
}

.why-card:hover::after { opacity: 1; }

.why-icon {
  width: 60px; height: 60px;
  border-radius: var(--r-lg);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-lg);
  box-shadow: 0 8px 24px rgba(11,61,145,0.3);
  position: relative;
  z-index: 1;
  transition: var(--t-bounce);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =====================================================
   12. PROCESS TIMELINE
   ===================================================== */
.process-section {
  background: linear-gradient(135deg, #0B3D91 0%, #0e1a3d 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.process-section .section-title { color: #fff; }
.process-section .section-subtitle { color: rgba(255,255,255,0.7); }
.process-section .section-tag {
  background: rgba(245,158,11,0.2);
  color: var(--accent-light);
  border-color: rgba(245,158,11,0.3);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: var(--space-xl);
}

.process-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.15);
  margin-top: 40px;
  position: relative;
  min-width: 20px;
}

.process-connector::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}

.process-connector.animated::after { transform: scaleX(1); }

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  width: 140px;
}

.process-step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-lg);
  transition: all var(--t-bounce);
  position: relative;
  backdrop-filter: blur(10px);
}

.process-step-num::before {
  content: attr(data-num);
  position: absolute;
  top: -12px; right: -8px;
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.process-step:hover .process-step-num {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}

.process-step-icon { font-size: 1.8rem; }

.process-step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.process-step-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
  }
  .process-connector {
    width: 2px;
    height: 40px;
    min-width: unset;
    flex: 0 0 40px;
    margin-top: 0;
    margin-left: 40px;
  }
  .process-step { width: 100%; max-width: 300px; flex-direction: row; text-align: left; gap: var(--space-lg); }
  .process-step-num { flex-shrink: 0; }
}

/* =====================================================
   13. TESTIMONIALS
   ===================================================== */
.testimonials-section {
  background: var(--bg);
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform 0.5s var(--ease);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  min-width: calc(33.33% - 12px);
  flex-shrink: 0;
  position: relative;
  transition: var(--t-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(11,61,145,0.15);
  transform: translateY(-4px);
}

@media (max-width: 1024px) { .testimonial-card { min-width: calc(50% - 8px); } }
@media (max-width: 640px)  { .testimonial-card { min-width: 100%; } }

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-md);
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-flag { font-size: 1.1rem; }

.testimonial-stars {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  align-items: center;
}

.testimonials-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t-base);
  color: var(--text-light);
  font-size: 1rem;
}

.testimonials-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(11,61,145,0.05);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--t-base);
}

.testimonials-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--r-full);
}

/* =====================================================
   14. FUTURE VISION / ROADMAP
   ===================================================== */
.vision-section {
  background: linear-gradient(135deg, #f8faff 0%, #eff4ff 100%);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,61,145,0.06) 0%, transparent 70%);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) { .vision-grid { grid-template-columns: 1fr; } }

.vision-text p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.roadmap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.roadmap-phase {
  background: var(--bg-card);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.roadmap-phase.current {
  border-color: rgba(11,61,145,0.2);
  background: linear-gradient(135deg, #fff 0%, rgba(11,61,145,0.03) 100%);
}

.roadmap-phase.future {
  border-color: rgba(245,158,11,0.2);
  background: linear-gradient(135deg, #fff 0%, rgba(245,158,11,0.03) 100%);
}

.roadmap-phase-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.roadmap-phase.current .roadmap-phase-label {
  background: rgba(16,185,129,0.1);
  color: #059669;
}

.roadmap-phase.future .roadmap-phase-label {
  background: rgba(245,158,11,0.1);
  color: var(--accent-dark);
}

.roadmap-phase-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-md);
}

.roadmap-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roadmap-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

.roadmap-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.current .roadmap-dot { background: var(--success); }
.future  .roadmap-dot { background: var(--accent); }

/* =====================================================
   15. CONTACT SECTION
   ===================================================== */
.contact-section {
  background: var(--bg-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(11,61,145,0.1) 0%, rgba(29,78,216,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-info-value a {
  color: var(--primary);
  transition: var(--t-fast);
}

.contact-info-value a:hover { color: var(--secondary); }

/* Contact Form */
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.form-label .required { color: var(--danger); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: var(--t-fast);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,61,145,0.1);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

@media (max-width: 480px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* Map placeholder */
.map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, rgba(11,61,145,0.05) 0%, rgba(29,78,216,0.08) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: var(--space-lg);
  gap: var(--space-sm);
}

/* =====================================================
   16. NEWSLETTER STRIP
   ===================================================== */
.newsletter-section {
  background: var(--grad-primary);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.newsletter-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.newsletter-text p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  flex: 1;
  max-width: 480px;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.9rem;
  font-family: var(--font-body);
  outline: none;
  backdrop-filter: blur(10px);
  transition: var(--t-fast);
}

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

.newsletter-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.15);
}

/* =====================================================
   17. FOOTER
   ===================================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3xl) 0 0;
  position: relative;
  overflow: hidden;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.footer-brand-tagline {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.social-links {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: var(--t-base);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-link::before {
  content: '→';
  opacity: 0;
  transition: var(--t-fast);
  font-size: 0.75rem;
}

.footer-link:hover::before { opacity: 1; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  transition: var(--t-fast);
}

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

.footer-bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: var(--t-fast);
}

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

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: calc(var(--z-nav) + 1);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transition: var(--t-bounce);
  text-decoration: none;
  animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  color: #fff;
  box-shadow: 0 12px 40px rgba(37,211,102,0.65);
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

.whatsapp-float:hover { animation: none; }

/* WhatsApp tooltip */
.whatsapp-float::before {
  content: 'Chat with us';
  position: absolute;
  right: 70px;
  background: #fff;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--t-fast);
  pointer-events: none;
}

.whatsapp-float:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* =====================================================
   18. ANIMATIONS & SCROLL REVEAL
   ===================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

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

/* Reveal classes */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal="up"]    { transform: translateY(30px); }
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="scale"] { transform: scale(0.92); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Staggered delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* =====================================================
   19. UTILITY CLASSES
   ===================================================== */
.bg-primary { background: var(--primary); }
.bg-gradient { background: var(--grad-primary); }
.bg-light { background: var(--bg); }
.bg-white { background: var(--bg-card); }
.bg-dark { background: var(--bg-dark); }

.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.text-primary-color { color: var(--primary); }
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-light-c { color: var(--text-light); }
.text-white   { color: #fff; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.rounded-md { border-radius: var(--r-md); }
.rounded-lg { border-radius: var(--r-lg); }
.rounded-xl { border-radius: var(--r-xl); }
.rounded-full { border-radius: var(--r-full); }

.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.w-full { width: 100%; }
.hidden { display: none; }

/* =====================================================
   20. PAGE-SPECIFIC: ABOUT
   ===================================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.page-hero-content { position: relative; z-index: 1; text-align: center; }

.page-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: var(--space-md);
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: var(--accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* Value cards */
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t-base);
}

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

.value-card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.value-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.value-card-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =====================================================
   21. PAGE-SPECIFIC: BLOG
   ===================================================== */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--t-base);
}

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

.blog-card-image {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: #fff;
}

.blog-card-body { padding: var(--space-xl); }

.blog-card-date {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  transition: var(--t-fast);
}

.blog-card:hover .blog-card-title { color: var(--primary); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

/* Category filter pills */
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.filter-pill {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text-light);
  cursor: pointer;
  transition: var(--t-fast);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* =====================================================
   22. PAGE-SPECIFIC: DESTINATION
   ===================================================== */
.dest-hero {
  padding: 160px 0 80px;
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.dest-hero-flag {
  font-size: 5rem;
  margin-bottom: var(--space-lg);
  display: block;
  animation: flagFloat 3s ease-in-out infinite;
}

@keyframes flagFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}

.dest-overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 768px) { .dest-overview-grid { grid-template-columns: 1fr; } }

.dest-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.dest-sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--accent);
}

.dest-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.875rem;
}

.dest-fact:last-child { border-bottom: none; }

.dest-fact-label { color: var(--text-light); }
.dest-fact-value { font-weight: 600; color: var(--text); }

/* FAQ */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--t-fast);
}

.faq-item:hover { border-color: rgba(11,61,145,0.2); }

.faq-question {
  padding: var(--space-lg);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  user-select: none;
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(11,61,145,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--t-base);
}

.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* =====================================================
   23. CTA SECTION
   ===================================================== */
.cta-section {
  background: var(--grad-primary);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cta-orb-1 {
  width: 300px; height: 300px;
  background: rgba(245,158,11,0.25);
  top: -100px; right: -60px;
}

.cta-orb-2 {
  width: 250px; height: 250px;
  background: rgba(16,185,129,0.15);
  bottom: -80px; left: -40px;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   24. BOOKING / CONSULTATION PAGE
   ===================================================== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 768px) { .booking-grid { grid-template-columns: 1fr; } }

.booking-info-card {
  background: var(--grad-primary);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  color: #fff;
  position: sticky;
  top: 100px;
}

.booking-info-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.booking-info-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.booking-benefit {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.booking-benefit-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(245,158,11,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* =====================================================
   25. RESPONSIVE HELPERS
   ===================================================== */
@media (max-width: 1200px) { .container { max-width: 960px; } }
@media (max-width: 768px)  { 
  .container { padding: 0 var(--space-md); }
  .section   { padding: var(--space-2xl) 0; }
}
@media (max-width: 480px)  {
  .container { padding: 0 var(--space-md); }
  .section   { padding: var(--space-xl) 0; }
  .btn       { padding: 12px 22px; font-size: 0.9rem; }
}

.show-mobile { display: none; }
@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* =====================================================
   26. MAJOR VISUAL ENHANCEMENTS v2.0
   ===================================================== */

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: calc(var(--z-nav) + 10);
  transition: width 0.05s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Enhanced Logo with gradient ── */
.nav-logo-name {
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar.scrolled .nav-logo-name {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Richer hero background ── */
.hero {
  background: linear-gradient(135deg, #060e2b 0%, #0B3D91 40%, #0e1d4a 70%, #051030 100%);
}

/* ── Hero particle shimmer overlay ── */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(29,78,216,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(16,185,129,0.08) 0%, transparent 40%);
  pointer-events: none;
}

/* ── Globe more visible ── */
.hero-globe-svg {
  opacity: 0.18;
  right: -80px;
}

/* ── Hero badge shimmer effect ── */
.hero-badge {
  background: linear-gradient(90deg,
    rgba(245,158,11,0.12) 0%,
    rgba(245,158,11,0.22) 50%,
    rgba(245,158,11,0.12) 100%);
  background-size: 200% 100%;
  animation: shimmerBadge 3s ease-in-out infinite;
  border: 1px solid rgba(245,158,11,0.45);
}

@keyframes shimmerBadge {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── Hero title stronger text shadow ── */
.hero-title {
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

/* ── Hero card — enhanced glass ── */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* Gold line accent on hero card top */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 0 0 4px 4px;
}

/* ── STATS section — premium redesign ── */
.stats-section {
  background: #fff;
  padding: 0;
  border: none;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,61,145,0.1), var(--accent), rgba(11,61,145,0.1), transparent);
}

.stats-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,61,145,0.08), transparent);
}

.stats-grid {
  background: none;
  border-radius: 0;
  box-shadow: none;
  gap: 0;
}

.stat-item {
  padding: var(--space-2xl) var(--space-xl);
  border-right: 1px solid var(--border-light);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: linear-gradient(135deg, rgba(11,61,145,0.02) 0%, rgba(245,158,11,0.03) 100%);
}

/* Animated underline on stat hover */
.stat-item::after {
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  transform: none;
  border-radius: 0;
  transition: width 0.4s var(--ease);
}
.stat-item:hover::after { width: 100%; }

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  transition: transform 0.3s var(--ease-bounce);
}
.stat-item:hover .stat-icon {
  transform: scale(1.2) rotate(-5deg);
}

.stat-number {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

/* ── Service cards — gradient border glow on hover ── */
.service-card {
  background: #fff;
  box-shadow: 0 2px 16px rgba(11,61,145,0.06);
  border: 1px solid rgba(11,61,145,0.08);
  transition: all 0.35s var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(11,61,145,0.18);
  border-color: transparent;
}
.service-card:hover::after { opacity: 1; }

/* Service icon — enhanced size */
.service-card-icon {
  width: 72px;
  height: 72px;
  font-size: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(11,61,145,0.12);
}
.service-card-icon.blue {
  background: linear-gradient(135deg, rgba(11,61,145,0.08) 0%, rgba(29,78,216,0.15) 100%);
  box-shadow: 0 4px 16px rgba(11,61,145,0.15);
}
.service-card-icon.gold {
  background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, rgba(217,119,6,0.15) 100%);
  box-shadow: 0 4px 16px rgba(245,158,11,0.2);
}
.service-card-icon.green {
  background: linear-gradient(135deg, rgba(16,185,129,0.08) 0%, rgba(5,150,105,0.15) 100%);
  box-shadow: 0 4px 16px rgba(16,185,129,0.2);
}

/* ── Destination section background ── */
.destinations-section {
  background: linear-gradient(180deg, #EDF2FF 0%, #f8fafc 60%, #fff 100%);
  position: relative;
}

/* ── Destination cards — more dramatic hover ── */
.dest-card {
  box-shadow: 0 4px 20px rgba(11,61,145,0.08);
  border: 1px solid rgba(11,61,145,0.06);
  transition: all 0.4s var(--ease);
}

.dest-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 70px rgba(11,61,145,0.2);
  border-color: rgba(11,61,145,0.12);
}

/* Destination image height increase */
.dest-card-image {
  height: 220px;
}

/* More vibrant country gradients */
.dest-au {
  background: linear-gradient(145deg, #0B3D91 0%, #1565C0 35%, #1B8A5A 70%, #10B981 100%);
}
.dest-us {
  background: linear-gradient(145deg, #1a1a6e 0%, #B22234 40%, #c0392b 70%, #e74c3c 100%);
}
.dest-ca {
  background: linear-gradient(145deg, #8B0000 0%, #CC0000 40%, #FF4444 70%, #FF6B6B 100%);
}
.dest-uk {
  background: linear-gradient(145deg, #012169 0%, #8B0000 40%, #C8102E 70%, #D94040 100%);
}
.dest-dk {
  background: linear-gradient(145deg, #8B0019 0%, #C60C30 40%, #003580 70%, #0052A5 100%);
}
.dest-eu {
  background: linear-gradient(145deg, #00227A 0%, #003399 40%, #1E5BB5 70%, #FFCC00 100%);
}
.dest-sa {
  background: linear-gradient(145deg, #004d25 0%, #006C35 40%, #00A550 70%, #2ECC71 100%);
}

/* ── Why Choose Us — enhanced ── */
.why-section {
  background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 100%);
}

.why-card {
  background: #fff;
  box-shadow: 0 2px 20px rgba(11,61,145,0.06);
  border: 1px solid rgba(11,61,145,0.07);
  position: relative;
  overflow: hidden;
}

/* Decorative corner accent */
.why-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(11,61,145,0.04), rgba(245,158,11,0.04));
  transition: var(--t-base);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,61,145,0.14);
  border-color: rgba(11,61,145,0.15);
}
.why-card:hover::before {
  transform: scale(2);
}

/* Why icon — animated bounce */
.why-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 28px rgba(11,61,145,0.35);
  border-radius: 20px;
  transition: all 0.4s var(--ease-bounce);
}
.why-card:hover .why-icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 12px 36px rgba(11,61,145,0.45);
}

/* ── Process section — richer depth ── */
.process-section {
  background: linear-gradient(135deg, #060e2b 0%, #0B3D91 45%, #0c1d52 80%, #050d25 100%);
}

.process-section::before {
  background-image:
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    radial-gradient(rgba(245,158,11,0.02) 1px, transparent 1px);
  background-size: 40px 40px, 80px 80px;
}

/* Step circle — stronger glow on hover */
.process-step-num {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.process-step:hover .process-step-num {
  background: var(--grad-gold);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(245,158,11,0.5), 0 0 0 4px rgba(245,158,11,0.2);
  transform: scale(1.12);
}

/* ── Testimonials — elevated cards ── */
.testimonials-section {
  background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
}

.testimonial-card {
  background: #fff;
  box-shadow: 0 4px 24px rgba(11,61,145,0.07);
  border: 1px solid rgba(11,61,145,0.06);
  position: relative;
  overflow: hidden;
}

/* Card accent top border on hover */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.testimonial-card:hover::before { transform: scaleX(1); }

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11,61,145,0.14);
  border-color: rgba(11,61,145,0.1);
}

.testimonial-quote {
  font-size: 4rem;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.6;
  font-family: Georgia, 'Times New Roman', serif;
  margin-bottom: var(--space-md);
  display: block;
}

/* Avatar — richer gradient */
.testimonial-avatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
  box-shadow: 0 4px 16px rgba(11,61,145,0.3);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Slider buttons — premium */
.testimonials-btn {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(11,61,145,0.15);
  background: #fff;
  box-shadow: 0 4px 16px rgba(11,61,145,0.1);
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.25s var(--ease);
}
.testimonials-btn:hover {
  background: var(--grad-primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(11,61,145,0.3);
}

/* Dots — wider active */
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(11,61,145,0.2);
  border: none;
  transition: all 0.35s var(--ease);
}
.testimonials-dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
}

/* ── Vision section — premium ── */
.vision-section {
  background: linear-gradient(135deg, #f5f8ff 0%, #edf2ff 50%, #f8fafc 100%);
}

.roadmap-phase.current {
  border-color: rgba(11,61,145,0.2);
  background: linear-gradient(135deg, #fff 0%, rgba(11,61,145,0.04) 100%);
  box-shadow: 0 8px 32px rgba(11,61,145,0.1);
}
.roadmap-phase.future {
  border-color: rgba(245,158,11,0.2);
  background: linear-gradient(135deg, #fff 0%, rgba(245,158,11,0.04) 100%);
  box-shadow: 0 8px 32px rgba(245,158,11,0.1);
}

/* ── Contact section — richer card ── */
.contact-form {
  background: linear-gradient(135deg, #fff 0%, rgba(11,61,145,0.02) 100%);
  border: 1px solid rgba(11,61,145,0.1);
  box-shadow: 0 8px 40px rgba(11,61,145,0.1);
}

.contact-icon {
  background: linear-gradient(135deg, rgba(11,61,145,0.08), rgba(29,78,216,0.14));
  box-shadow: 0 4px 12px rgba(11,61,145,0.1);
  border-radius: 16px;
  transition: var(--t-base);
}
.contact-info-item:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(11,61,145,0.2);
}

/* Form control — cleaner focus */
.form-control {
  background: #fafbff;
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  transition: all 0.2s var(--ease);
}
.form-control:focus {
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11,61,145,0.08);
}
.form-control:hover:not(:focus) {
  border-color: rgba(11,61,145,0.2);
}

/* ── Newsletter — richer ── */
.newsletter-section {
  background: linear-gradient(135deg, #0B3D91 0%, #082f72 40%, #060e25 100%);
}
.newsletter-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(29,78,216,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(245,158,11,0.12) 0%, transparent 50%);
  pointer-events: none;
}
.newsletter-content { position: relative; z-index: 1; }

/* Newsletter input ── glassier */
.newsletter-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
}
.newsletter-input:focus {
  background: rgba(255,255,255,0.14);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
}

/* ── Footer top border — rainbow gradient ── */
.footer::before {
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 30%, var(--accent) 60%, var(--success) 100%);
}

/* ── Section wave dividers ── */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -2px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ── Improved buttons ── */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  box-shadow: 0 4px 20px rgba(11,61,145,0.3);
  border-radius: 14px;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(11,61,145,0.4);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 60%, #b45309 100%);
  border-radius: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(245,158,11,0.55);
}

.btn-outline {
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-outline-white {
  border-radius: 14px;
  font-weight: 600;
}

/* ── Section tag — improved ── */
.section-tag {
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  background: linear-gradient(135deg, rgba(11,61,145,0.08) 0%, rgba(29,78,216,0.1) 100%);
}

/* ── Section title — wider gradient ── */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Social links — larger ── */
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  transition: all 0.3s var(--ease-bounce);
}
.social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}

/* ── WhatsApp float — pulse ring ── */
.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── Filter pills — better ── */
.filter-pill {
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.2s var(--ease);
}
.filter-pill:hover,
.filter-pill.active {
  box-shadow: 0 4px 16px rgba(11,61,145,0.25);
  transform: translateY(-1px);
}

/* ── Destination page sidebar sticky — enhanced ── */
.dest-sidebar {
  border-left: 4px solid var(--accent);
  box-shadow: 0 8px 32px rgba(11,61,145,0.1);
}

/* ── Blog cards — enhanced ── */
.blog-card {
  box-shadow: 0 4px 20px rgba(11,61,145,0.06);
  border: 1px solid rgba(11,61,145,0.06);
  overflow: hidden;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(11,61,145,0.16);
}
.blog-card-image {
  height: 200px;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-card-image {
  transform: scale(1.03);
}

/* ── Scroll reveal — smoother ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal="up"]    { transform: translateY(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(0.9); }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── Improved delay steps ── */
[data-delay="50"]  { transition-delay: 0.05s; }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="250"] { transition-delay: 0.25s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="350"] { transition-delay: 0.35s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="450"] { transition-delay: 0.45s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ── Map placeholder — more beautiful ── */
.map-placeholder {
  height: 220px;
  background: linear-gradient(135deg, #edf2ff 0%, #e0e8ff 50%, #f0f5ff 100%);
  border: 2px dashed rgba(11,61,145,0.2);
  border-radius: 20px;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
  gap: 12px;
  transition: var(--t-base);
}
.map-placeholder:hover {
  background: linear-gradient(135deg, #dde7ff 0%, #d0daff 50%, #e5edff 100%);
  border-color: rgba(11,61,145,0.35);
}

/* ── FAQ — cleaner open state ── */
.faq-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(11,61,145,0.08);
  box-shadow: 0 2px 12px rgba(11,61,145,0.05);
  transition: all 0.25s var(--ease);
}
.faq-item.open {
  border-color: rgba(11,61,145,0.2);
  box-shadow: 0 8px 28px rgba(11,61,145,0.12);
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(11,61,145,0.1);
}
.faq-question {
  font-size: 0.98rem;
  padding: 20px 24px;
}
.faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid rgba(11,61,145,0.06);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── CTA section — more dramatic ── */
.cta-section {
  background: linear-gradient(135deg, #060e2b 0%, #0B3D91 40%, #0e1d4a 75%, #051030 100%);
}

/* ── Nav CTA button ── */
.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 12px;
  padding: 10px 22px;
  box-shadow: 0 4px 16px rgba(245,158,11,0.4);
  font-size: 0.875rem;
}

/* ── Booking info card ── */
.booking-info-card {
  background: linear-gradient(135deg, #060e2b 0%, #0B3D91 50%, #0e1d4a 100%);
  box-shadow: 0 16px 60px rgba(11,61,145,0.35);
}

/* ── Page hero — more layered ── */
.page-hero {
  background: linear-gradient(135deg, #060e2b 0%, #0B3D91 40%, #0e1d4a 70%, #051030 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(29,78,216,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Contact page quick cards hover ── */
a[style*="25D366"]:hover {
  filter: brightness(1.05);
  transform: translateY(-3px);
}

/* ── Section borders (alternating) ── */
.section + .section {
  border-top: 1px solid rgba(11,61,145,0.04);
}

/* ── Better scrollbar ── */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: var(--r-full);
}

/* ── Value cards (about page) — enhanced ── */
.value-card {
  border: 1px solid rgba(11,61,145,0.07);
  box-shadow: 0 4px 20px rgba(11,61,145,0.06);
  background: linear-gradient(135deg, #fff 0%, rgba(11,61,145,0.02) 100%);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(11,61,145,0.14);
  border-color: rgba(11,61,145,0.12);
}

/* ── Destination hero flag animation ── */
.dest-hero-flag {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
  animation: flagFloat 4s ease-in-out infinite;
}

/* ── Print-safe ── */
@media print {
  .navbar, .whatsapp-float, .scroll-progress { display: none !important; }
}


/* ── Adding real destination imagery ── */
.dest-card-image.dest-au {
  background: url('images/au.png') center/cover no-repeat;
}
.dest-card-image.dest-us {
  background: url('images/us.png') center/cover no-repeat;
}
.dest-card-image.dest-ca {
  background: url('images/ca.png') center/cover no-repeat;
}
.dest-card-image.dest-uk {
  background: url('images/uk.png') center/cover no-repeat;
}
.dest-card-image.dest-dk {
  background: url('images/dk.png') center/cover no-repeat;
}
.dest-card-image.dest-eu {
  background: url('images/eu.png') center/cover no-repeat;
}
.dest-card-image.dest-sa {
  background: url('images/sa.png') center/cover no-repeat;
}

/* Add a subtle overlay so text stands out if needed */
.dest-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
}


/* =====================================================
   NEW FEATURES — 8 ENHANCEMENTS
   ===================================================== */

/* ── Feature 1: WhatsApp Chat Popup ── */
.wa-popup-wrap {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.wa-popup-box {
  background: #fff;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  padding: 20px;
  width: 300px;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative;
}
.wa-popup-box.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.wa-popup-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  position: relative;
}
.wa-popup-online {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: waPulse 2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(37,211,102,0); }
}
.wa-popup-name { font-weight: 700; font-size: 0.9rem; color: var(--text); line-height: 1.2; }
.wa-popup-status { font-size: 0.72rem; color: #25D366; font-weight: 600; }
.wa-popup-message {
  background: #f0f9f3;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 12px;
}
.wa-popup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.2s;
}
.wa-popup-cta:hover { background: #20ba5a; }
.wa-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 2px;
}

/* ── Feature 2: Success Ticker ── */
.ticker-wrap {
  background: linear-gradient(135deg, #0B3D91, #1D4ED8);
  overflow: hidden;
  padding: 11px 0;
  border-bottom: 2px solid rgba(245,158,11,0.4);
}
.ticker-container {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.ticker-label {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px 4px 20px;
  border-radius: 0 var(--r-full) var(--r-full) 0;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
}
.ticker-inner {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Feature 3: Visa Eligibility Checker ── */
.eligibility-section {
  background: linear-gradient(135deg, #EDF2FF 0%, #f8faff 100%);
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.eligibility-card {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2xl);
  max-width: 740px;
  margin: 0 auto;
  border: 1px solid var(--border-light);
}
.eligibility-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
@media (max-width: 540px) {
  .eligibility-steps { grid-template-columns: 1fr; }
}
.eligibility-result {
  display: none;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #86efac;
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  margin-top: var(--space-lg);
  animation: fadeInUp 0.4s var(--ease);
}
.eligibility-result.show { display: block; }
.eligibility-result-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #15803d;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eligibility-result-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--space-lg);
}
.eligibility-result-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.5;
}
.eligibility-result-list li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Feature 4: FAQ Accordion ── */
.faq-section {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
  border-color: rgba(11,61,145,0.25);
  box-shadow: 0 4px 20px rgba(11,61,145,0.08);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--primary); }
.faq-item.open .faq-question { color: var(--primary); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s;
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ── Feature 6: Sticky Mobile CTA Bar ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 8px 12px;
  gap: 6px;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
}
.mobile-cta-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-size: 0.63rem;
  font-weight: 700;
  color: var(--text-light);
  transition: all 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.mobile-cta-btn:hover { color: var(--primary); background: var(--bg); }
.mobile-cta-btn.primary-cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-md);
  flex: 1.4;
}
.mobile-cta-btn.primary-cta:hover { background: var(--primary-dark); color: #fff; }
.mobile-cta-btn.wa-cta { background: #25D366; color: #fff; border-radius: var(--r-md); }
.mobile-cta-btn.wa-cta:hover { background: #20ba5a; color: #fff; }
.mobile-cta-icon { font-size: 1.15rem; line-height: 1; }

/* ── Feature 7: Google Map embed ── */
.gmap-embed {
  width: 100%;
  height: 240px;
  border-radius: var(--r-lg);
  border: none;
  margin-top: var(--space-lg);
  box-shadow: var(--shadow-md);
}

/* ── Hero Slider Styles ── */
.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 8s ease-out;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 0.35;
  transform: scale(1);
}
.hero-slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.hero-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-slider-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 10px;
}

/* =====================================================
   PREMIUM UPGRADE LAYER v2.0
   Orvarilon Group — Enhanced Visual Design
   ===================================================== */

/* ── Google Font upgrade: add DM Sans for ultra-clean feel ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── Enhanced root tokens ── */
:root {
  --grad-hero-v2:    linear-gradient(135deg, #050d25 0%, #0B3D91 45%, #082f72 75%, #04091a 100%);
  --grad-shimmer:    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  --grad-card-hover: linear-gradient(145deg, rgba(11,61,145,0.06) 0%, rgba(29,78,216,0.04) 100%);
  --glow-blue:       0 0 60px rgba(11,61,145,0.35), 0 0 120px rgba(11,61,145,0.15);
  --glow-gold:       0 0 40px rgba(245,158,11,0.4), 0 0 80px rgba(245,158,11,0.15);
  --glow-green:      0 0 40px rgba(16,185,129,0.3);
  --glass-bg:        rgba(255,255,255,0.06);
  --glass-border:    rgba(255,255,255,0.14);
  --glass-blur:      backdrop-filter: blur(20px);
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #F87171, var(--accent));
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  z-index: 9999;
  transition: width 0.1s linear;
}
@keyframes progressShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── NAVBAR Premium Upgrades ── */
.navbar {
  background: transparent;
}
.navbar.scrolled {
  background: rgba(5, 13, 37, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.navbar.scrolled .nav-logo-name { color: #fff; }
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.85); }
.navbar.scrolled .nav-link:hover { color: var(--accent); background: rgba(245,158,11,0.1); }

.nav-logo-name {
  background: linear-gradient(135deg, #fff 0%, #c7d8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
}

/* ── HERO Premium Upgrades ── */
.hero {
  background: var(--grad-hero-v2);
}

/* Particle shimmer over hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(29,78,216,0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  background: radial-gradient(circle, rgba(29,78,216,0.6) 0%, rgba(11,61,145,0.3) 40%, transparent 70%);
  animation: heroFloat 10s ease-in-out infinite alternate;
}
.hero-orb-2 {
  background: radial-gradient(circle, rgba(245,158,11,0.35) 0%, rgba(217,119,6,0.15) 40%, transparent 70%);
  animation: heroFloat 14s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  background: radial-gradient(circle, rgba(16,185,129,0.25) 0%, transparent 70%);
  animation: heroFloat 18s ease-in-out infinite alternate;
}

/* Floating particles */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px),
    radial-gradient(circle, rgba(245,158,11,0.1) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
  background-position: 0 0, 30px 30px;
  animation: particleDrift 25s linear infinite;
  opacity: 0.6;
}
@keyframes particleDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-60px); }
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.hero-title .gold {
  background: linear-gradient(135deg, #F59E0B 0%, #FCD34D 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

/* Hero trust badges row */
.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}
.hero-trust-badge:hover {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.4);
  color: var(--accent-light);
}
.hero-trust-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px rgba(16,185,129,0.8);
  animation: pulse 2s infinite;
}

/* Hero Card (Glassmorphism) */
.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: var(--grad-shimmer);
  animation: cardShimmer 4s ease-in-out infinite;
}
@keyframes cardShimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-form-input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-md);
  color: #fff;
  transition: all 0.3s;
}
.hero-form-input:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
  outline: none;
}
.hero-form-input::placeholder { color: rgba(255,255,255,0.4); }
.hero-form-label { color: rgba(255,255,255,0.7); font-size: 0.8rem; font-weight: 600; }

/* ── STATS SECTION Premium ── */
.stats-section {
  background: linear-gradient(180deg, #fff 0%, #f0f5ff 100%);
  padding: var(--space-2xl) 0;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(11,61,145,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  padding: var(--space-xl);
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid rgba(11,61,145,0.08);
  box-shadow: 0 8px 32px rgba(11,61,145,0.08);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.stat-item:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,61,145,0.14); }
.stat-item:hover::before { transform: scaleX(1); }

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(11,61,145,0.1), rgba(29,78,216,0.06));
  border-radius: var(--r-lg);
  border: 1px solid rgba(11,61,145,0.1);
}
.stat-number {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #0B3D91, #1D4ED8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

/* ── SERVICES SECTION Premium ── */
.services-section {
  background: linear-gradient(180deg, #f0f5ff 0%, #fff 100%);
  position: relative;
}

.service-card {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid rgba(11,61,145,0.08);
  box-shadow: 0 8px 32px rgba(11,61,145,0.07);
  padding: var(--space-xl);
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  background-size: 200% 100%;
  animation: gradientSlide 3s linear infinite;
}
@keyframes gradientSlide {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 72px rgba(11,61,145,0.16), 0 0 0 1px rgba(11,61,145,0.1);
}
.service-card-icon {
  font-size: 2.4rem;
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-lg);
  position: relative;
}
.service-card-icon.blue {
  background: linear-gradient(135deg, rgba(11,61,145,0.12), rgba(29,78,216,0.08));
  border: 1px solid rgba(11,61,145,0.15);
  box-shadow: 0 4px 20px rgba(11,61,145,0.1);
}
.service-card-icon.gold {
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(217,119,6,0.08));
  border: 1px solid rgba(245,158,11,0.2);
  box-shadow: 0 4px 20px rgba(245,158,11,0.1);
}
.service-card-icon.green {
  background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(5,150,105,0.08));
  border: 1px solid rgba(16,185,129,0.2);
  box-shadow: 0 4px 20px rgba(16,185,129,0.1);
}
.service-card-icon.purple {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(79, 70, 229, 0.08));
  border: 1px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.service-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}
.tag-blue { background: rgba(11,61,145,0.1); color: var(--primary); border: 1px solid rgba(11,61,145,0.2); }
.tag-gold { background: rgba(245,158,11,0.12); color: var(--accent-dark); border: 1px solid rgba(245,158,11,0.25); }
.tag-green { background: rgba(16,185,129,0.12); color: #047857; border: 1px solid rgba(16,185,129,0.25); }
.tag-purple { background: rgba(124, 58, 237, 0.12); color: #6D28D9; border: 1px solid rgba(124, 58, 237, 0.25); }

.service-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
}

.service-card-desc {
  color: var(--text-light);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── DESTINATIONS SECTION Premium ── */
.destinations-section {
  background: linear-gradient(180deg, #fff 0%, #eef3ff 100%);
}

.dest-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(11,61,145,0.08);
  box-shadow: 0 8px 32px rgba(11,61,145,0.07);
  transition: all 0.45s var(--ease);
}
.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(11,61,145,0.18);
  border-color: rgba(11,61,145,0.2);
}
.dest-card-image {
  position: relative;
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.dest-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
  transition: opacity 0.4s;
}
.dest-card:hover .dest-card-image::after { opacity: 1.4; }
.dest-card-flag {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 2.2rem;
  z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.dest-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 16px;
  z-index: 2;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}
.dest-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.dest-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.dest-card-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.dest-chip {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(11,61,145,0.07);
  color: var(--primary);
  border: 1px solid rgba(11,61,145,0.12);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── WHY CHOOSE US Premium ── */
.why-section {
  background: linear-gradient(180deg, #f0f5ff 0%, #fff 100%);
}

.why-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(11,61,145,0.07);
  box-shadow: 0 8px 32px rgba(11,61,145,0.06);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,61,145,0.04), rgba(29,78,216,0.02));
  opacity: 0;
  transition: opacity 0.4s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(11,61,145,0.13); }
.why-card:hover::after { opacity: 1; }

.why-icon {
  font-size: 2.2rem;
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,61,145,0.1), rgba(29,78,216,0.05));
  border: 1px solid rgba(11,61,145,0.12);
  border-radius: var(--r-lg);
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 16px rgba(11,61,145,0.08);
  transition: all 0.4s var(--ease);
  position: relative;
  z-index: 1;
}
.why-card:hover .why-icon {
  background: var(--grad-primary);
  border-color: transparent;
  box-shadow: var(--glow-blue);
  transform: scale(1.08) rotate(-3deg);
  filter: brightness(1.1);
}

.why-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-sm);
  position: relative; z-index: 1;
}
.why-desc {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.75;
  position: relative; z-index: 1;
}

/* ── PROCESS SECTION Premium ── */
.process-section {
  background: linear-gradient(135deg, #05102a 0%, #0B3D91 50%, #05102a 100%);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.process-step-num {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  transition: all 0.4s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.process-step:hover .process-step-num {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.1);
  box-shadow: var(--glow-gold);
}
.process-step-num::before {
  content: attr(data-num);
  position: absolute;
  top: -10px; right: -10px;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.process-step-icon { font-size: 2rem; }

.process-step-title {
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
}
.process-step-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

.process-connector {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, rgba(245,158,11,0.6), rgba(245,158,11,0.2));
  align-self: center;
  flex-shrink: 0;
  border-radius: 2px;
}

/* ── TESTIMONIALS Premium ── */
.testimonials-section {
  background: linear-gradient(180deg, #f8faff 0%, #eef3ff 100%);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(11,61,145,0.08);
  box-shadow: 0 8px 32px rgba(11,61,145,0.07);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(11,61,145,0.14);
}

.testimonial-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-quote {
  font-size: 4rem;
  line-height: 0.8;
  color: rgba(11,61,145,0.12);
  font-family: Georgia, serif;
  margin-bottom: -16px;
  font-weight: 900;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--space-lg);
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(11,61,145,0.3);
}
.testimonial-name { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.testimonial-location { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

.testimonials-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(11,61,145,0.15);
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(11,61,145,0.1);
}
.testimonials-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: var(--glow-blue);
}

/* ── FAQ SECTION Premium ── */
.faq-section {
  background: linear-gradient(180deg, #fff 0%, #f0f5ff 100%);
}

.faq-item {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(11,61,145,0.08);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(11,61,145,0.05);
}
.faq-item:hover {
  border-color: rgba(11,61,145,0.2);
  box-shadow: 0 8px 32px rgba(11,61,145,0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-heading);
}
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(11,61,145,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.35s var(--ease);
  color: var(--primary);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.8;
  transition: max-height 0.45s var(--ease), padding 0.35s var(--ease);
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 24px;
  border-top: 1px solid rgba(11,61,145,0.06);
}

/* ── CONTACT SECTION Premium ── */
.contact-section {
  background: linear-gradient(180deg, #f0f5ff 0%, #fff 100%);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: var(--space-lg);
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid rgba(11,61,145,0.08);
  margin-bottom: 12px;
  box-shadow: 0 4px 16px rgba(11,61,145,0.05);
  transition: all 0.3s;
}
.contact-info-item:hover {
  border-color: rgba(11,61,145,0.2);
  transform: translateX(4px);
  box-shadow: 0 8px 32px rgba(11,61,145,0.1);
}
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(11,61,145,0.1), rgba(29,78,216,0.05));
  border: 1px solid rgba(11,61,145,0.12);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Contact Form Premium */
.form-control {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 0.95rem;
  width: 100%;
  transition: all 0.3s;
  color: var(--text);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11,61,145,0.08);
  outline: none;
}

/* ── SECTION HEADERS Premium ── */
.section-tag {
  background: linear-gradient(135deg, rgba(11,61,145,0.1), rgba(29,78,216,0.06));
  color: var(--primary);
  border: 1px solid rgba(11,61,145,0.18);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 7px 18px;
  letter-spacing: 0.12em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Gradient underline for section headings */
.section-header::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  margin: var(--space-md) auto 0;
}

/* ── BUTTONS Premium Upgrades ── */
.btn-primary {
  background: linear-gradient(135deg, #0B3D91 0%, #1D4ED8 60%, #0B3D91 100%);
  background-size: 200% 100%;
  transition: all 0.4s var(--ease);
}
.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 12px 40px rgba(11,61,145,0.4);
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #D97706 100%);
  background-size: 200% 100%;
  transition: all 0.4s var(--ease);
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 12px 40px rgba(245,158,11,0.5);
  transform: translateY(-3px);
}

/* ── FOOTER Premium ── */
footer {
  background: linear-gradient(135deg, #04081a 0%, #0B1E3F 40%, #060e2b 100%);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── WAVE DIVIDERS Premium ── */
.wave-divider {
  line-height: 0;
  position: relative;
  z-index: 1;
}
.wave-divider svg { display: block; }

/* ── GLASSMORPHISM UTILITY ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

/* ── TICKER PREMIUM ── */
.ticker-wrap {
  background: linear-gradient(135deg, #060e2b, #0B3D91, #060e2b);
  border-bottom: 1px solid rgba(245,158,11,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.ticker-label {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 800;
  padding: 10px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0 6px 6px 0;
}
.ticker-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 8px rgba(245,158,11,0.6);
  animation: pulse 2s infinite;
}

/* ── ELIGIBILITY SECTION PREMIUM ── */
.eligibility-section {
  background: linear-gradient(135deg, #050d25 0%, #0B3D91 50%, #050d25 100%);
  position: relative;
}
.eligibility-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.eligibility-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: var(--space-2xl);
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.eligibility-section .section-title { color: #fff; }
.eligibility-section .section-subtitle { color: rgba(255,255,255,0.7); }
.eligibility-section .section-tag {
  background: rgba(245,158,11,0.15);
  color: var(--accent-light);
  border-color: rgba(245,158,11,0.3);
}
.eligibility-section .section-header::after { display: none; }
.eligibility-section .form-label { color: rgba(255,255,255,0.8); }
.eligibility-section .form-control {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.eligibility-section .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,158,11,0.15);
}
.eligibility-section .form-control option { background: #0B3D91; color: #fff; }

/* ── VISION SECTION PREMIUM ── */
.vision-section {
  background: linear-gradient(180deg, #fff 0%, #f0f5ff 100%);
}
.roadmap-phase {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(11,61,145,0.1);
  box-shadow: 0 8px 32px rgba(11,61,145,0.07);
  margin-bottom: var(--space-lg);
  transition: all 0.4s;
}
.roadmap-phase:hover { transform: translateX(6px); box-shadow: 0 16px 48px rgba(11,61,145,0.12); }
.roadmap-phase.current { border-left: 4px solid var(--primary); }
.roadmap-phase.future  { border-left: 4px solid var(--accent); }
.roadmap-phase-label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.roadmap-phase.current .roadmap-phase-label { background: rgba(11,61,145,0.1); color: var(--primary); }
.roadmap-phase.future  .roadmap-phase-label { background: rgba(245,158,11,0.12); color: var(--accent-dark); }
.roadmap-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 8px;
  vertical-align: middle;
}
.roadmap-phase.future .roadmap-dot { background: var(--accent); }

/* ── HERO BG IMAGE ── */
.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('images/hero_bg.jpg');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(4, 9, 26, 0.82) 0%,
    rgba(11, 61, 145, 0.6) 45%,
    rgba(4, 9, 26, 0.75) 100%
  );
}
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.07); }
}

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Hero content z-index fix — above overlay */
.hero .container { position: relative; z-index: 2; }
.hero-content, .hero-card, .hero-grid-layout { position: relative; z-index: 2; }

/* ── SCHOLARSHIP DIRECTORY TABLE ── */
.scholarship-table-wrapper {
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid rgba(11,61,145,0.09);
  box-shadow: 0 10px 40px rgba(11,61,145,0.06);
  overflow-x: auto;
  margin-top: var(--space-2xl);
}
.scholarship-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}
.scholarship-table th {
  background: #f8fafc;
  color: var(--primary);
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 16px 20px;
  border-bottom: 2px solid rgba(11,61,145,0.1);
  white-space: nowrap;
}
.scholarship-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  color: var(--text);
}
.scholarship-table tr:last-child td {
  border-bottom: none;
}
.scholarship-table tr:hover td {
  background: #f8faff;
}
.scholarship-country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
}
.scholarship-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.badge-full { background: #dcfce7; color: #166534; }
.badge-partial { background: #fef3c7; color: #92400e; }
.badge-excellence { background: #ede9fe; color: #5b21b6; }
.badge-recommend { background: #fee2e2; color: #991b1b; }

