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

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* Top bar with language selector and social icons (for search/results/hotel pages) */
.top-bar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 15px;
}

.instagram-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px;
  transition: all 0.3s ease;
}

.instagram-link:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transform: scale(1.1);
}

.instagram-icon {
  width: 24px;
  height: 24px;
}

header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 20px 80px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Header top bar - flags left, title center, lang right */
.header-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flag-item {
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.85;
}

.flag-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.flag-item img {
  width: 40px;
  height: 27px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.header-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.brand-title {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: white;
  white-space: nowrap;
  text-shadow: 
    -1px -1px 0 #4a3a8a,
     1px -1px 0 #4a3a8a,
    -1px  1px 0 #4a3a8a,
     1px  1px 0 #4a3a8a,
     0px 4px 10px rgba(0,0,0,0.3);
}

/* Mobile responsiveness for header top bar */
@media (max-width: 768px) {
  .header-top-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .brand-section {
    margin-top: 10px;
  }

  .header-logo {
    width: 45px;
    height: 45px;
  }

  .brand-title {
    font-size: 1.6rem;
    letter-spacing: 3px;
  }

  .header-top-left {
    gap: 8px;
  }

  .header-top-right {
    gap: 8px;
  }

  .brand-title {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .header-logo {
    width: 30px;
    height: 30px;
  }

  .flag-item img {
    width: 30px;
    height: 20px;
  }

  header {
    padding-top: 120px;
  }
}

@media (max-width: 400px) {
  .brand-title {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
}

.header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
}

.hero-motto {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 10px;
  opacity: 0.95;
  letter-spacing: 1px;
}

header h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 300;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-top: 15px;
  margin-bottom: 40px;
  opacity: 0.85;
  font-weight: 500;
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: #fff;
  color: #667eea;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  color: #667eea;
  margin-bottom: 30px;
  font-size: 2.2rem;
}

.why-us {
  padding: 80px 20px;
  background: white;
  text-align: center;
  border-radius: 20px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}

.why-us-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
  line-height: 2;
  font-size: 1.2rem;
  color: #444;
  white-space: pre-line;
}

.search-bg {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('@assets/search-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.search-container {
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  backdrop-filter: blur(15px);
}

.search-header h2 {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 20px;
}

.filter-item select, .filter-item input {
  padding: 15px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-size: 1.1rem;
  background-color: #fcfcfc;
  transition: all 0.3s ease;
}

.filter-item select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background-color: white;
}

.btn-search {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 18px;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
}

#results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.result-card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.result-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.result-card h4 {
  font-size: 1.6rem;
  color: #4a3a8a;
  margin-bottom: 15px;
  font-weight: 700;
}

.result-card .badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.portal-card {
  background: white;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid #eee;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.portal-card:hover {
  border-color: #764ba2;
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(118, 75, 162, 0.12);
}

.salary-info {
  background: rgba(102, 126, 234, 0.05);
  padding: 10px;
  border-radius: 12px;
  margin: 15px 0;
  border-left: 4px solid #667eea;
}

.portal-card .btn {
  padding: 8px 15px;
  font-size: 0.9rem;
  width: 100%;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}

.modal-content {
  background-color: #fff;
  margin: 2vh auto;
  padding: 40px;
  border-radius: 20px;
  width: 95%;
  max-width: 850px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  max-height: 96vh;
  overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
  width: 10px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f8f9fa;
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 10px;
}

#modal-experience {
  min-height: 350px;
  font-size: 1.1rem;
}


.lang-btn {
  background: #3a4a9f;
  border: 2px solid #2d3a7d;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background: #4a5abf;
  border-color: #3a4a9f;
}

.lang-btn.active {
  background: #5a2d82;
  border-color: #4a1d72;
  color: white;
}

.lang-selector {
  display: flex;
  gap: 5px;
}

.country-banner {
  width: 100%;
  max-height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.country-banner img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.country-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

footer {
  background-color: #1a1a1a;
  color: #aaa;
  padding: 40px 20px;
  text-align: center;
}

.legal-toggle-btn {
  color: #667eea;
  justify-content: center;
}

.selection-summary-box {
  background: #f8fbff;
  border: 2px solid #e1efff;
  border-radius: 15px;
  padding: 25px;
}

/* Deluxe Service Popup Styles */
.deluxe-header {
  text-align: center;
  margin-bottom: 20px;
}

.deluxe-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.deluxe-subtitle {
  color: #4a5568;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.deluxe-description {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 2px solid #f59e0b;
  border-radius: 15px;
  padding: 25px;
  white-space: pre-line;
  line-height: 1.8;
  margin-bottom: 20px;
}

.deluxe-price {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d97706;
  margin: 20px 0;
}

.deluxe-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-deluxe {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-deluxe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-skip {
  background: transparent;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  padding: 12px 25px;
  font-size: 0.95rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-skip:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.deluxe-badge-inline {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 10px;
}

/* Deluxe Info Section - Homepage */
.deluxe-info-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.deluxe-info-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  position: relative;
}

.deluxe-info-container .deluxe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.deluxe-star-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.deluxe-info-container h2 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.deluxe-info-content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 25px;
}

.deluxe-info-content strong {
  color: #f59e0b;
}

.deluxe-price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .deluxe-info-section {
    padding: 40px 15px;
  }
  
  .deluxe-info-container {
    padding: 25px 20px;
  }
  
  .deluxe-info-container h2 {
    font-size: 1.4rem;
  }
  
  .deluxe-info-content {
    font-size: 0.95rem;
  }
}

/* Hotel Navigation Link */
.hotel-nav-link {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hotel-nav-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.home-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px;
  transition: all 0.3s ease;
}

.home-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.home-icon {
  width: 24px;
  height: 24px;
}

/* Hotel Page Styles */
.hotel-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px 40px;
}

.hotel-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.hotel-header h1 {
  color: white;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.hotel-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.8;
}

.hotel-countries {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hotel-country-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hotel-country-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.country-flag {
  margin-bottom: 15px;
}

.country-flag img {
  width: 60px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hotel-country-card h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hotel-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hotel-link {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.hotel-link-north {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
}

.hotel-link-south {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.hotel-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hotel-header h1 {
    font-size: 2rem;
  }
  
  .hotel-description {
    font-size: 1rem;
  }
  
  .hotel-countries {
    grid-template-columns: 1fr;
  }
  
  .hotel-country-card {
    padding: 20px;
  }
}
