/* Nexchange-style Dark Theme for AibaExpress */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Dark Mode Colors (Default) */
  --bg-body: #0f172a;
  --bg-card: #1e293b;
  --bg-card-header: linear-gradient(135deg, #334155, #1e293b);
  --bg-sidebar: #020617;
  --bg-sidebar-gradient: linear-gradient(180deg, #020617 0%, #000000 100%);
  --bg-topbar: #1e293b;
  --bg-modal: #1e293b;
  
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --text-dark: #f1f5f9;
  
  --border-color: #334155;
  --border-light: #1e293b;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 5px 20px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
  
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --primary-gradient: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  --secondary: #06b6d4;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  
  --success: #22c55e;
  --danger: #ef4444;
  --warning: #f59e0b;
  --info: #06b6d4;
  
  --input-bg: #1e293b;
  --input-border: #475569;
  --input-focus-border: #10b981;
  --input-focus-shadow: rgba(16, 185, 129, 0.25);
  
  --overlay-bg: rgba(0, 0, 0, 0.7);
  
  --scrollbar-bg: #334155;
  --scrollbar-thumb: #64748b;
  
  --dropdown-bg: #1e293b;
  --dropdown-border: #334155;
  --dropdown-hover: #334155;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.hero-logo-img {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.9)), 
              url('../images/rise.JPG') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-globe {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 65%;
  height: 140%;
  transform: translateY(-50%);
  z-index: 0;
  overflow: hidden;
  border-radius: 50%;
  background: url('../images/rise.JPG') center center no-repeat;
  background-size: cover;
  box-shadow: 
    0 0 80px rgba(0, 0, 0, 0.6),
    inset 0 0 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(16, 185, 129, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.globe-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-globe iframe {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: none;
  background: transparent;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 600px;
}

.globe-spinner {
  width: 100%;
  height: 100%;
  position: relative;
  animation: rotate-globe 20s linear infinite;
}

.globe-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.1) 50%, transparent 100%);
  box-shadow: 
    inset -30px -30px 60px rgba(0, 0, 0, 0.4),
    inset 30px 30px 60px rgba(16, 185, 129, 0.2),
    0 0 80px rgba(16, 185, 129, 0.2),
    0 0 150px rgba(6, 182, 212, 0.15);
}

.globe-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(16, 185, 129, 0.25) 24px, rgba(16, 185, 129, 0.25) 26px),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(16, 185, 129, 0.25) 24px, rgba(16, 185, 129, 0.25) 26px),
    repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(6, 182, 212, 0.15) 30px, rgba(6, 182, 212, 0.15) 32px);
  animation: rotate-globe-reverse 30s linear infinite;
}

@keyframes rotate-globe {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-globe-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 8px 20px;
  border-radius: 50px;
  color: #34d399;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-logo-img {
  max-width: 350px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hero-countries {
  display: flex;
  gap: 1rem;
  margin-bottom: 25px;
}

.country-badge {
  font-size: 2rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.country-badge:hover {
  transform: scale(1.15);
}

.search-container {
  margin-bottom: 25px;
}

.search-box {
  position: relative;
  display: flex;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-box:focus-within {
  border-color: rgba(16, 185, 129, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

.search-input {
  flex: 1;
  padding: 16px 20px;
  font-size: 1rem;
  background: transparent;
  border: none;
  color: white;
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.search-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, #10b981, #059669);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 3px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #34d399, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive - Keep same layout on all screens */
@media (max-width: 1200px) {
  .hero-globe {
    width: 55%;
    right: 0;
  }
}

@media (min-width: 993px) {
  .hero-globe {
    display: block;
  }
}

@media (max-width: 992px) {
  .hero {
    background: linear-gradient(rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.9)), 
                url('../images/rise.JPG') center/cover no-repeat;
  }
  
  .hero-globe {
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    transform: none;
    z-index: 0;
    display: block;
    border-radius: 0;
    background: url('../images/rise.JPG') center center no-repeat;
    background-size: cover;
  }
  
  .globe-bg-img {
    display: none;
  }
  
  .hero-content {
    max-width: 100%;
    position: relative;
    z-index: 3;
  }
  
  .hero-logo-img {
    max-width: 280px;
  }
  
  .hero-stat-number {
    font-size: 1.5rem;
  }
  
  .hero-stat-label {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding-top: 100px;
  }
  
  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
  
  .hero-logo-img {
    max-width: 220px;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .country-badge {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-stat-number {
    font-size: 1.3rem;
  }
}

.search-box {
  position: relative;
  display: inline-block;
  max-width: 500px;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.search-btn {
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
}

/* ============ CTA BUTTONS ============ */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* ============ SECTIONS ============ */
.section {
  padding: 5rem 0;
  background: var(--bg-body);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ DESTINATION CARDS ============ */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: all 0.4s ease;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.destination-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 50%
  );
  z-index: 1;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: white;
}

.destination-flag {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.destination-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.destination-desc {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Glow effect */
.destination-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* ============ SERVICES SECTION ============ */
.services-section {
  background: var(--bg-card);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

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

.service-card {
  padding: 2rem;
  border-radius: 20px;
  background: var(--bg-body);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--primary-gradient);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ============ WHY CHOOSE US ============ */
.why-section {
  background: var(--primary-gradient);
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem;
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.why-desc {
  opacity: 0.9;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.testimonial-info h4 {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-info span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-sidebar);
  color: var(--text-primary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
  text-align: center;
}

.footer-brand .logo-img {
  height: 50px !important;
  width: auto;
  display: block;
  margin: 0 auto;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
}
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
  border-color: var(--primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-secondary);
}

/* ============ PAGE HERO ============ */
.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9)), 
              url('../images/emanu (1).jpg') center/cover no-repeat;
  color: white;
  text-align: center;
}

.page-hero-hotel {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9)), 
              url('../images/637176_3.jpg') center/cover no-repeat;
}

.page-hero-visas {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9)), 
              url('../images/visaassistance.jpg') center/cover no-repeat;
}

.page-hero-services {
  background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9)), 
              url('../images/agency.jpg') center/cover no-repeat;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* ============ FORMS ============ */
.form-section {
  padding: 4rem 0;
}

.form-container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--input-bg);
  color: var(--text-primary);
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ============ SEARCH RESULTS PAGE ============ */
.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.result-card {
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.result-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.result-content {
  padding: 1.5rem;
}

.result-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.result-price {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ============ VISA CARDS ============ */
.visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
}

.visa-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.visa-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.visa-flag {
  font-size: 3rem;
}

.visa-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.visa-country {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.visa-types {
  margin-bottom: 1.5rem;
}

.visa-type {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

.visa-type:last-child {
  border-bottom: none;
}

.visa-info {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.visa-info-item {
  text-align: center;
}

.visa-info-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
}

.visa-info-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info-card {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-details p {
  color: var(--text-secondary);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-logo {
    font-size: 3rem;
  }
  
  .nav-menu {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
  }
  
  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }
  
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .logo-img {
    height: 35px;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hero-logo {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-countries {
    gap: 0.75rem;
  }
  
  .country-badge {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    order: -1 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .footer-brand > a {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .footer-brand .logo-img {
    height: 60px !important;
    width: auto !important;
    display: block !important;
    margin: 0 auto 0.5rem auto !important;
  }
  
  .footer-brand p {
    text-align: center;
    width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .form-container {
    padding: 1.5rem;
  }
}

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

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}