/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary-500: #1a2e5e;
  --primary-600: #152650;
  --primary-100: #e8edf5;
  --accent: #00a651;
  --accent-light: #00c060;
  --sky-blue: #f0f7ff;
  --sky-blue-2: #e6f0fd;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-bg: #d4ffe4;
  --blue-bg: #d0e8ff;
  --gold: #fbbf24;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: .25s ease;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: rgba(219,234,254,.4);
  border-top: 1px solid var(--gray-200);
  padding: 4px 0;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.top-bar-left { display: flex; align-items: center; gap: 6px; }
.top-bar-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  color: var(--primary-500); transition: background var(--transition);
}
.top-bar-icon:hover { background: rgba(26,46,94,.08); }
.top-bar-icon svg { width: 16px; height: 16px; fill: currentColor; }
.top-bar-right { display: flex; align-items: center; gap: 8px; }
.country-select {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); padding: 6px 12px;
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  cursor: pointer; min-width: 160px;
}
.country-select img { width: 28px; height: 20px; border-radius: 2px; object-fit: cover; }
.country-select svg { width: 14px; height: 14px; fill: var(--gray-400); margin-left: auto; }
.search-box {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm); overflow: hidden;
}
.search-box input {
  border: none; outline: none; padding: 7px 12px; font-size: 13px;
  width: 140px; background: var(--white); color: var(--gray-600);
}
.search-box button {
  background: var(--primary-500); border: none; padding: 7px 12px;
  cursor: pointer; display: flex; align-items: center;
}
.search-box button svg { width: 16px; height: 16px; fill: var(--white); }

/* ===== NAVIGATION ===== */
.main-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.main-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { display: flex; align-items: center; gap: 0; }
.logo-text {
  font-size: 26px; font-weight: 800; color: var(--primary-500);
  letter-spacing: -1px; line-height: 1;
}
.logo-text .tm { font-size: 10px; vertical-align: super; font-weight: 600; }
.nav-center { display: flex; align-items: center; gap: 28px; }
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 4px;
  font-size: 15px; font-weight: 500; color: var(--gray-600);
  cursor: pointer; padding: 8px 0; background: none; border: none;
  transition: color var(--transition);
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.active { color: var(--primary-500); }
.nav-dropdown-btn svg { width: 12px; height: 12px; fill: currentColor; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: -20px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 240px; padding: 8px 0; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 14px; color: var(--gray-700);
  transition: background var(--transition);
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--primary-500); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 20px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 14px; cursor: pointer; border: none; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary-500); color: var(--white); }
.btn-primary:hover { background: var(--primary-600); }
.btn-outline-nav { color: var(--primary-500); font-weight: 500; font-size: 15px; }
.btn-outline-nav:hover { color: var(--primary-600); }
.btn-outline {
  background: transparent; color: var(--primary-500);
  border: 1px solid var(--primary-500);
}
.btn-outline:hover { background: var(--primary-500); color: var(--white); }
.btn-green { background: var(--accent); color: var(--white); border-radius: var(--radius-sm); }
.btn-green:hover { background: var(--accent-light); }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-md); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle svg { width: 24px; height: 24px; fill: var(--gray-700); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, var(--sky-blue) 0%, var(--sky-blue-2) 100%);
  padding: 48px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content { padding-bottom: 48px; }
.hero h1 {
  font-size: 40px; font-weight: 800; color: var(--primary-500);
  line-height: 1.2; margin-bottom: 16px; letter-spacing: -.5px;
}
.hero-desc {
  font-size: 15px; color: var(--gray-600); line-height: 1.7;
  margin-bottom: 24px; max-width: 520px;
}
.hero-desc strong { color: var(--gray-800); font-weight: 700; }
.hero-actions { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 8px; }
.hero-trust-stars { display: flex; gap: 2px; }
.hero-trust-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.hero-trust-text { font-size: 13px; color: var(--gray-600); }
.hero-trust-text strong { color: var(--gray-800); }

.hero-illustration { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-illustration-img {
  width: 100%; max-width: 500px; height: auto;
}

/* ===== VISA FORM CARD ===== */
.visa-form-card {
  background: var(--white);
  border: 1.5px solid var(--primary-500);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: -20px auto 0;
  position: relative;
  z-index: 10;
  max-width: 900px;
  box-shadow: var(--shadow-md);
}
.visa-form-inner { display: flex; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.visa-form-group { flex: 1; min-width: 150px; }
.visa-form-group label {
  display: block; font-size: 12px; font-weight: 600; color: var(--gray-600);
  margin-bottom: 6px;
}
.visa-form-group label .req { color: #ef4444; }
.visa-form-group select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px; color: var(--gray-700);
  background: var(--gray-50); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%239ca3af' d='M256 294.1L383 167c9.4-9.4 24.6-9.4 33.9 0s9.3 24.6 0 34L273 345c-9.1 9.1-23.7 9.3-33.1.7L95 201.1c-4.7-4.7-7-10.9-7-17s2.3-12.3 7-17c9.4-9.4 24.6-9.4 33.9 0l127.1 127z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}
.visa-form-group select:focus { outline: none; border-color: var(--primary-500); }
.visa-form-group .btn { width: 100%; padding: 11px 20px; }

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  text-align: center; padding: 20px 0 32px;
}
.scroll-indicator svg { width: 28px; height: 28px; fill: var(--primary-500); opacity: .5; }

/* ===== FEATURE CARDS ===== */
.feature-cards {
  padding: 48px 0 64px;
}
.feature-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card {
  border-radius: var(--radius-xl); padding: 32px 28px;
  position: relative; overflow: hidden; min-height: 180px;
  display: flex; flex-direction: column; justify-content: center;
  cursor: pointer; transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card-green { background: var(--green-bg); }
.feature-card-blue { background: var(--blue-bg); }
.feature-card h3 {
  font-size: 22px; font-weight: 700; line-height: 1.3;
  color: var(--gray-900); position: relative; z-index: 1;
}
.feature-card h3 .highlight-green { color: var(--accent); }
.feature-card h3 .highlight-blue { color: #2563eb; }
.feature-card-wave {
  position: absolute; top: 0; right: 0; bottom: 0; width: 60%;
  opacity: .3; pointer-events: none;
}
.feature-card-img {
  position: absolute; bottom: -10px; right: -10px; width: 180px; height: auto;
  opacity: .8; pointer-events: none;
}

/* ===== AI TOOLS SECTION ===== */
.ai-tools-section { padding: 64px 0; background: var(--gray-50); }
.ai-tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ai-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: all var(--transition);
}
.ai-card:hover { box-shadow: var(--shadow-md); border-color: var(--gray-300); }
.ai-card-icon {
  width: 52px; height: 52px; flex-shrink: 0; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.ai-card-icon svg { width: 28px; height: 28px; }
.ai-card-icon-green { background: rgba(0,166,81,.1); }
.ai-card-icon-green svg { fill: var(--accent); }
.ai-card-icon-blue { background: rgba(37,99,235,.1); }
.ai-card-icon-blue svg { fill: #2563eb; }
.ai-card-text h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; line-height: 1.4; }
.ai-card-text p { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; line-height: 1.6; }
.ai-card-text a { font-size: 14px; font-weight: 600; color: var(--primary-500); display: inline-flex; align-items: center; gap: 4px; }
.ai-card-text a:hover { color: var(--accent); }

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 64px 0;
  background: var(--white);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-image { width: 100%; max-width: 420px; }
.why-image img { width: 100%; }
.why-content h2 {
  font-size: 28px; font-weight: 800; color: var(--primary-500);
  margin-bottom: 16px; line-height: 1.3;
}
.why-content h2 span { color: var(--accent); }
.why-content p { font-size: 14px; color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; }

/* ===== DISCOVER COUNTRIES ===== */
.countries-section { padding: 64px 0; background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-label {
  font-size: 13px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.section-title {
  font-size: 28px; font-weight: 800; color: var(--primary-500);
  line-height: 1.3; margin-bottom: 12px;
}
.section-desc { font-size: 14px; color: var(--gray-500); max-width: 560px; margin: 0 auto; }

.visa-filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.visa-filter {
  display: flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 50px;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: all var(--transition);
  color: var(--gray-600);
}
.visa-filter:hover, .visa-filter.active {
  background: var(--primary-500); color: var(--white); border-color: var(--primary-500);
}
.visa-filter .count {
  background: rgba(0,0,0,.06); padding: 2px 8px; border-radius: 20px; font-size: 11px;
}
.visa-filter.active .count { background: rgba(255,255,255,.2); }
.visa-filter img { width: 20px; height: 20px; border-radius: 50%; }

.alpha-filter { display: flex; justify-content: center; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; }
.alpha-btn {
  padding: 5px 10px; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; cursor: pointer;
  color: var(--gray-500); transition: all var(--transition);
}
.alpha-btn:hover, .alpha-btn.active { background: var(--primary-500); color: var(--white); border-color: var(--primary-500); }

.countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.country-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  padding: 14px 10px; text-align: center; transition: all var(--transition); cursor: pointer;
}
.country-card:hover { border-color: var(--primary-500); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.country-flag { width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 8px; overflow: hidden; border: 2px solid var(--gray-100); }
.country-flag img { width: 100%; height: 100%; object-fit: cover; }
.country-name { font-size: 12px; font-weight: 600; color: var(--gray-700); }

/* ===== SERVICES ===== */
.services-section { padding: 64px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all var(--transition); position: relative;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary-500); }
.service-num {
  font-size: 36px; font-weight: 800; color: var(--gray-100);
  line-height: 1; margin-bottom: 12px;
}
.service-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--sky-blue); display: flex; align-items: center;
  justify-content: center; margin-bottom: 14px;
}
.service-icon svg { width: 24px; height: 24px; fill: var(--primary-500); }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--primary-500); margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.service-link {
  font-size: 13px; font-weight: 600; color: var(--primary-500);
  display: inline-flex; align-items: center; gap: 4px;
}
.service-link:hover { color: var(--accent); gap: 8px; }

/* ===== E-VISA BANNER ===== */
.evisa-banner {
  background: linear-gradient(135deg, var(--primary-500) 0%, #264080 100%);
  padding: 48px 0;
}
.evisa-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.evisa-text h2 { font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.evisa-text p { color: rgba(255,255,255,.75); font-size: 14px; max-width: 480px; }
.evisa-actions { display: flex; gap: 12px; }
.btn-white { background: var(--white); color: var(--primary-500); font-weight: 600; }
.btn-white:hover { background: var(--gray-50); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 64px 0; background: var(--gray-50); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-500); display: flex; align-items: center;
  justify-content: center; color: var(--white); font-weight: 700; font-size: 15px;
}
.testimonial-name { font-weight: 600; color: var(--gray-800); font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--gray-500); }

/* ===== FOOTER ===== */
.footer { background: var(--primary-500); color: rgba(255,255,255,.7); padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand { max-width: 300px; }
.footer-brand .logo-text { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.footer-brand .logo-text .tm { font-size: 9px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-disclaimer {
  font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.6;
  padding: 14px; background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.06);
}
.footer h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 13px; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer ul a:hover { color: var(--white); }

.footer-social { display: flex; gap: 8px; margin-top: 12px; }
.footer-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer-social a:hover { background: rgba(255,255,255,.2); }
.footer-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,.7); }

.footer-offices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.footer-office {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-md); padding: 16px;
}
.footer-office h5 { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.footer-office p { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
}
.chat-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary-500); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(26,46,94,.3);
  transition: transform var(--transition);
}
.chat-btn:hover { transform: scale(1.08); }
.chat-btn svg { width: 24px; height: 24px; fill: var(--white); }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(180deg, var(--sky-blue) 0%, var(--sky-blue-2) 100%);
  padding: 48px 0 64px; text-align: center;
}
.page-header h1 { font-size: 32px; font-weight: 800; color: var(--primary-500); margin-bottom: 12px; }
.page-header p { font-size: 15px; color: var(--gray-600); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; }
.breadcrumb a, .breadcrumb span { font-size: 13px; color: var(--gray-400); }
.breadcrumb a:hover { color: var(--primary-500); }
.breadcrumb .sep { color: var(--gray-300); }

/* ===== CONTACT ===== */
.contact-section { padding: 64px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--primary-500); margin-bottom: 16px; }
.contact-info > p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-item-icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius-md);
  background: var(--sky-blue); display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--primary-500); }
.contact-item-text h4 { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 3px; }
.contact-item-text p { font-size: 13px; color: var(--gray-500); margin: 0; }
.contact-item-text a { color: var(--primary-500); font-weight: 500; }
.contact-form {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 32px;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px; transition: border var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--primary-500); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.animate-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 24px; }
  .hero-actions { justify-content: center; }
  .hero-illustration { display: none; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-offices { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-center { display: none; }
  .mobile-toggle { display: block; }
  .top-bar-right { display: none; }
  .hero h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .ai-tools-grid { grid-template-columns: 1fr; }
  .countries-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-offices { grid-template-columns: 1fr; }
  .visa-form-inner { flex-direction: column; }
  .evisa-inner { flex-direction: column; text-align: center; }
  .evisa-actions { justify-content: center; }
}
@media (max-width: 480px) {
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
}
