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

/* ===== CSS VARIABLES ===== */
:root {
  --primary-dark: #0A1628;
  --primary: #0F2B4A;
  --primary-light: #1A3F5C;
  --gold: #D4A017;
  --gold-light: #E8B830;
  --gold-dark: #B8860B;
  --accent: #0EA5E9;
  --accent-dark: #0284C7;
  --success: #10B981;
  --white: #FFFFFF;
  --light-gray: #F1F5F9;
  --mid-gray: #CBD5E1;
  --dark-gray: #475569;
  --text-dark: #0F172A;
  --text-light: #64748B;
  --shadow: 0 10px 40px rgba(15, 43, 74, 0.1);
  --shadow-hover: 0 20px 60px rgba(15, 43, 74, 0.15);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-shadow: 0 8px 32px rgba(15, 43, 74, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s, visibility 0.6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-spinner {
  width: 60px; height: 60px;
  border: 4px solid rgba(212, 160, 23, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 160, 23, 0.3); }
  50% { box-shadow: 0 0 40px rgba(212, 160, 23, 0.6); }
}
@keyframes slideInDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
@keyframes worldMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s ease; }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s ease; }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.8s ease; }
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ===== SECTION TITLE ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
}
.section-subtitle::before,
.section-subtitle::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary-dark);
}
.section-title span { color: var(--gold); }
.section-desc {
  font-size: 18px;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.5px;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn:hover::before { left: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(212, 160, 23, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 160, 23, 0.5);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
}
.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}
.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-sm { padding: 12px 24px; font-size: 14px; }

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}
.header.scrolled {
  background: rgba(11, 31, 58, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  font-weight: 800;
}
.logo h1 {
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
}
.logo h1 span { color: var(--gold); }
.logo small {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
  display: block;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s;
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  margin-left: 16px;
}
.nav-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
  padding: 160px 0 100px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(15,43,74,0.7) 50%, rgba(10,22,40,0.92) 100%);
  z-index: 1;
}
.hero-particles {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 6s infinite;
}
.hero .container { position: relative; z-index: 2; }
.hero-content {
  max-width: 750px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(14, 165, 233, 0.08));
  border: 1px solid rgba(212, 160, 23, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}
.hero-badge i { font-size: 16px; }
.hero-title {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 19px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s ease 0.4s both;
}
.hero-stat h3 {
  font-size: 36px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.hero-stat p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 400;
}

/* Hero Image */
.hero-image {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 550px;
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

/* World Map Animation */
.world-map-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1589519160732-576250c5e5fe?w=1920&q=80') center/cover;
  opacity: 0.08;
  animation: worldMove 30s ease infinite;
  z-index: 1;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
  padding: 160px 0 80px;
}
.page-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.page-hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(15,43,74,0.6) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero-title span { color: var(--gold); }
.page-hero-breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb a:hover { text-decoration: underline; }

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: var(--light-gray);
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.choose-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.choose-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.choose-card:hover::before { transform: scaleX(1); }
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.choose-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--gold);
  transition: var(--transition);
}
.choose-card:hover .choose-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: rotateY(180deg);
}
.choose-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.choose-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== VISA CATEGORIES ===== */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.visa-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.visa-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.visa-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.visa-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.visa-card:hover .visa-card-image img { transform: scale(1.1); }
.visa-card-image .overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10,22,40,0.85));
}
.visa-card-image .overlay span {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.visa-card-body {
  padding: 28px;
}
.visa-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.visa-card-body p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.visa-card-body .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* ===== COUNTRIES SLIDER ===== */
.countries {
  background: var(--light-gray);
  overflow: hidden;
}
.countries-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.countries-slider::-webkit-scrollbar { display: none; }
.country-item {
  flex: 0 0 250px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: var(--transition);
  cursor: pointer;
}
.country-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.country-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.country-item .country-info {
  padding: 20px;
  text-align: center;
}
.country-item .country-info h4 {
  font-size: 18px;
  margin-bottom: 4px;
}
.country-item .country-info p {
  color: var(--text-light);
  font-size: 13px;
}
.country-flag {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin: -20px auto 10px;
  border: 3px solid var(--white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

/* ===== PROCESS TIMELINE ===== */
.process {
  background: var(--white);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent), var(--primary-dark));
  z-index: 0;
}
.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-dark), #0F2B4A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  border: 4px solid var(--gold);
  transition: var(--transition);
  position: relative;
}
.timeline-step:hover .step-number {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: scale(1.1);
}
.timeline-step h4 {
  font-size: 18px;
  margin-bottom: 8px;
}
.timeline-step p {
  color: var(--text-light);
  font-size: 14px;
}

/* ===== CONSULTATION FORM ===== */
.consultation {
  background: linear-gradient(135deg, var(--primary-dark), #0F2B4A);
  position: relative;
  overflow: hidden;
}
.consultation::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.consultation .container { position: relative; z-index: 1; }
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.consultation-content h2 {
  font-size: 38px;
  color: var(--white);
  margin-bottom: 16px;
}
.consultation-content h2 span { color: var(--gold); }
.consultation-content p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.consultation-features {
  display: grid;
  gap: 16px;
}
.consultation-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}
.consultation-features li i {
  color: var(--success);
  font-size: 18px;
}
.consultation-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.consultation-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.consultation-form p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
  background: var(--light-gray);
  color: var(--text-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14,165,233,0.12);
  background: var(--white);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--light-gray);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  color: rgba(212,160,23,0.1);
  font-family: serif;
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 16px;
}
.testimonial-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author h4 {
  font-size: 16px;
  margin-bottom: 2px;
}
.testimonial-author span {
  color: var(--text-light);
  font-size: 13px;
}

/* ===== STATS COUNTER ===== */
.stats {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover;
  opacity: 0.05;
}
.stats .container { position: relative; z-index: 1; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item { padding: 20px; }
.stat-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}
.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ===== TEAM MEMBERS ===== */
.team {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.team-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.team-card:hover .team-card-image img { transform: scale(1.08); }
.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 16px;
  transition: var(--transition);
}
.team-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.team-card-body {
  padding: 24px;
}
.team-card-body h4 {
  font-size: 18px;
  margin-bottom: 4px;
}
.team-card-body span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
}

/* ===== BLOG ===== */
.blog {
  background: var(--light-gray);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.blog-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}
.blog-card-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
}
.blog-card-body {
  padding: 24px;
}
.blog-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body h3 a { color: var(--primary-dark); }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}
.blog-card-meta i { margin-right: 4px; }

/* ===== FAQ ACCORDION ===== */
.faq {
  background: var(--white);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(14,165,233,0.1);
}
.faq-question {
  width: 100%;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i {
  font-size: 14px;
  transition: var(--transition);
  color: var(--gold);
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 28px 24px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), #0F2B4A);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-banner::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1464037866556-6812c9d1c72e?w=800&q=80') center/cover;
  opacity: 0.1;
}
.cta-banner .container { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 {
  font-size: 42px;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner h2 span { color: var(--gold); }
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SUB-FOOTER ===== */
.sub-footer {
  background: #050E1A;
  padding: 20px 0;
  text-align: center;
}
.sub-footer p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.sub-footer a { color: var(--gold); }

/* ===== PREMIUM FOOTER ===== */
.footer {
  background: var(--primary-dark);
  padding: 80px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo h1 { font-size: 24px; }
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
  margin: 20px 0;
  max-width: 350px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 3px;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}
.footer-links a i { font-size: 12px; color: var(--gold); }
.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
}
.footer-contact li i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 4px;
  min-width: 20px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulseGlow 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
}
.service-detail-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(15,43,74,0.5));
}
.service-detail-hero .hero-content { max-width: 650px; }
.service-detail-hero .hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 500px;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.service-detail-hero .hero-image img { width: 100%; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--light-gray);
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}
.benefit-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}
.benefit-card h4 { font-size: 18px; margin-bottom: 8px; }
.benefit-card p { color: var(--text-light); font-size: 14px; }

.requirements-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.requirements-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: var(--transition);
}
.requirements-list li:hover {
  background: var(--gold);
  color: var(--white);
}
.requirements-list li i { color: var(--gold); font-size: 16px; }
.requirements-list li:hover i { color: var(--white); }

/* ===== COUNTRIES PAGE ===== */
.country-grid-page {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.country-card-lg {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: var(--transition);
}
.country-card-lg:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.country-card-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.country-card-lg:hover img { transform: scale(1.08); }
.country-card-lg .overlay {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent 0%, rgba(10,22,40,0.95) 100%);
}
.country-card-lg .overlay h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 4px;
}
.country-card-lg .overlay p {
  color: var(--gold);
  font-size: 14px;
}

/* ===== SUCCESS STORIES ===== */
.story-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
}
.story-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
}
.story-image {
  height: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.story-card:hover .story-image img { transform: scale(1.05); }
.story-flag {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
}
.story-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-body .testimonial-stars { margin-bottom: 8px; }
.story-body h3 {
  font-size: 20px;
  margin-bottom: 4px;
}
.story-body .story-meta {
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
}
.story-body p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
}

/* ===== BLOG SINGLE PAGE ===== */
.blog-article {
  max-width: 800px;
  margin: 0 auto;
}
.blog-article img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 30px 0;
}
.blog-article h2 {
  font-size: 28px;
  margin: 40px 0 16px;
}
.blog-article h3 {
  font-size: 22px;
  margin: 30px 0 12px;
}
.blog-article p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}
.blog-article ul, .blog-article ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: var(--text-light);
}
.blog-article li { margin-bottom: 8px; }
.blog-article blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 30px 0;
  background: var(--light-gray);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 18px;
  color: var(--primary-dark);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}
.contact-info-cards {
  display: grid;
  gap: 20px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: default;
}
.contact-info-item:hover {
  background: var(--primary-dark);
  color: var(--white);
}
.contact-info-item:hover h4,
.contact-info-item:hover p { color: var(--white); }
.contact-info-item i {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 16px; margin-bottom: 4px; transition: var(--transition); }
.contact-info-item p { color: var(--text-light); font-size: 14px; transition: var(--transition); }

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 50px;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ===== GLASSMORPHISM ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-title { font-size: 46px; }
  .choose-grid { grid-template-columns: repeat(2, 1fr); }
  .visa-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .timeline::before { display: none; }
  .country-grid-page { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  section { padding: 70px 0; }
  .hero { padding: 140px 0 80px; }
  .hero-title { font-size: 38px; }
  .hero-image { display: none; }
  .hero-stats { gap: 24px; }
  .hero-stat h3 { font-size: 28px; }
  .section-title { font-size: 32px; }
  .consultation-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .story-card { grid-template-columns: 1fr; }
  .story-image { min-height: 240px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 36px; }
  .service-detail-hero .hero-image { display: none; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 100px 30px 30px;
    transition: right 0.4s;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    gap: 0;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }
  .nav-menu a::after { display: none; }
  .nav-cta { margin-left: 0; margin-top: 16px; }
  .hamburger { display: flex; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 50px 0; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-title { font-size: 30px; }
  .hero-desc { font-size: 16px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hero-stat { flex: 1 1 40%; }
  .hero-stat h3 { font-size: 24px; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 15px; }
  .choose-grid { grid-template-columns: 1fr; }
  .visa-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 36px; }
  .team-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .requirements-list { grid-template-columns: 1fr; }
  .country-grid-page { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 28px; }
  .page-hero { min-height: 35vh; padding: 120px 0 50px; }
  .consultation-form { padding: 24px; }
  .cta-banner h2 { font-size: 28px; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 16px; right: 16px; }
  .container { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .logo h1 { font-size: 18px; }
  .logo-icon { width: 40px; height: 40px; font-size: 18px; }
  .section-title { font-size: 22px; }
  .btn { padding: 14px 24px; font-size: 14px; }
  .country-card-lg { height: 220px; }
}
