/* ===== CSS RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --scrollbar: transparent;
  --primary-blue: #0b2e4e;
  --dark-blue: #0a2642;
  --light-blue: #1e4a6e;
  --accent-red: #b71c3a;
  --dark-red: #9a1630;
  --light-red: #d32f4e;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #e9ecef;
  --dark-gray: #6c757d;
  --text-dark: #2d3748;
  --text-light: #718096;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ===== GLOBAL CUSTOM SCROLLBAR ===== */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-red) var(--primary-blue);
}

body {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-red) var(--primary-blue);
}

::-webkit-scrollbar {
  width: 14px;
  background: var(--primary-blue);
}

::-webkit-scrollbar-track {
  background: var(--primary-blue);
  border-radius: 0px;
  border: 2px solid var(--primary-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 4px;
  border: 2px solid var(--primary-blue);
  min-height: 40px;
  transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-red);
  border: 2px solid var(--primary-blue);
}

::-webkit-scrollbar-thumb:active {
  background: var(--light-red);
}

::-webkit-scrollbar-corner {
  background: var(--primary-blue);
}

::-webkit-scrollbar-button {
  display: none;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-red) var(--primary-blue);
}

/* Smooth scrolling for the whole page */
html {
  scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR STYLES FOR MULTI-CITY SECTIONS ===== */
.multi-city-container,
.multi-city-travelers,
.multi-city-preferences,
.multi-city-flight-preferences {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-red) rgba(255, 255, 255, 0.1);
}

.multi-city-container::-webkit-scrollbar,
.multi-city-travelers::-webkit-scrollbar,
.multi-city-preferences::-webkit-scrollbar,
.multi-city-flight-preferences::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.multi-city-container::-webkit-scrollbar-track,
.multi-city-travelers::-webkit-scrollbar-track,
.multi-city-preferences::-webkit-scrollbar-track,
.multi-city-flight-preferences::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.multi-city-container::-webkit-scrollbar-thumb,
.multi-city-travelers::-webkit-scrollbar-thumb,
.multi-city-preferences::-webkit-scrollbar-thumb,
.multi-city-flight-preferences::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.multi-city-container::-webkit-scrollbar-thumb:hover,
.multi-city-travelers::-webkit-scrollbar-thumb:hover,
.multi-city-preferences::-webkit-scrollbar-thumb:hover,
.multi-city-flight-preferences::-webkit-scrollbar-thumb:hover {
  background: var(--dark-red);
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO CAROUSEL STYLES ===== */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(11, 46, 78, 0.8) 0%,
    rgba(183, 28, 58, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-description {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  line-height: 1.6;
}

.slide-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-red), var(--dark-red));
  color: var(--white);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  border: 2px solid transparent;
}

.slide-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: transparent;
  border-color: var(--white);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: none;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--accent-red);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

.carousel-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--white);
  transform: scale(1.2);
}

/* ===== FEATURES BANNER ===== */
.features-banner {
  background: var(--primary-blue);
  padding: 60px 0;
  position: relative;
}

.features-banner::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(135deg, transparent 30%, var(--accent-red) 50%, transparent 70%);
  opacity: 0.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-red);
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.feature-content p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* ===== Fixed Group Packages Carousel ===== */
.packages-carousel {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.packages-carousel .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.packages-carousel .section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b2e4e;
  margin-bottom: 15px;
}

.packages-carousel .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.packages-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.packages-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.packages-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #b71c3a 0%, #9a1630 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-content {
  padding: 25px;
}

.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b2e4e;
  margin-bottom: 15px;
}

.package-dates,
.package-places {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #666;
}

.package-dates i,
.package-places i {
  color: #b71c3a;
  width: 16px;
}

.package-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.package-price {
  text-align: left;
}

.package-price .from {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-price .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b2e4e;
}

.package-price .per-person {
  display: block;
  font-size: 0.8rem;
  color: #666;
}

.package-btn {
  background: linear-gradient(135deg, #0b2e4e 0%, #0d355a 100%);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(11, 46, 78, 0.3);
}

.package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 46, 78, 0.4);
  background: linear-gradient(135deg, #0d355a 0%, #0b2e4e 100%);
  color: white;
}

/* Packages Carousel Navigation */
.packages-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(183, 28, 58, 0.9);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(183, 28, 58, 0.3);
}

.packages-carousel-btn:hover {
  background: #b71c3a;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(183, 28, 58, 0.4);
}

.packages-prev-btn {
  left: 20px;
}

.packages-next-btn {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .packages-carousel {
    padding: 60px 0;
  }
  
  .packages-carousel .section-header h2 {
    font-size: 2rem;
  }
  
  .package-card {
    max-width: 100%;
    margin: 0 20px;
  }
  
  .packages-carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .packages-prev-btn {
    left: 10px;
  }
  
  .packages-next-btn {
    right: 10px;
  }
  
  .package-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .package-price {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .packages-carousel {
    padding: 40px 0;
  }
  
  .package-content {
    padding: 20px;
  }
  
  .package-title {
    font-size: 1.3rem;
  }
}

/* ===== MODERN FLIGHT BOOKING ===== */
.modern-flight-booking {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.modern-flight-booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--primary-blue), var(--accent-red));
}

.booking-header {
  text-align: center;
  margin-bottom: 50px;
  color: var(--white);
}

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-red), var(--dark-red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
}

.booking-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.booking-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Trip Type Toggle */
.trip-toggle {
  margin-bottom: 40px;
}

.toggle-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 8px;
  max-width: 500px;
  margin: 0 auto;
  backdrop-filter: blur(10px);
}

.toggle-group input {
  display: none;
}

.toggle-btn {
  flex: 1;
  padding: 15px 25px;
  text-align: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}

.toggle-group input:checked + .toggle-btn {
  background: var(--accent-red);
  color: var(--white);
  box-shadow: var(--shadow);
}

/* Enhanced Form Grid */
.modern-flight-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 35px;
}

.form-group.enhanced {
  display: flex;
  flex-direction: column;
}

.form-group.enhanced label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.form-group.enhanced label i {
  color: var(--accent-red);
  font-size: 1rem;
}

.input-with-icon {
  position: relative;
}

.input-with-icon input {
  width: 100%;
  padding: 18px 50px 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(183, 28, 58, 0.1);
}

.input-with-icon input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-red);
  font-size: 1.1rem;
}

/* Travelers Selector */
.traveler-group {
  grid-column: 1 / -1;
}

.travelers-selector {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: 25px;
}

.traveler-input {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.traveler-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-red);
  background: transparent;
  color: var(--accent-red);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  transition: var(--transition);
}

.traveler-btn:hover {
  background: var(--accent-red);
  color: var(--white);
  transform: scale(1.1);
}

.traveler-count {
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
  min-width: 30px;
  text-align: center;
}

.traveler-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Select Styles */
.select-with-icon {
  position: relative;
}

.select-with-icon select {
  width: 100%;
  padding: 18px 50px 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.select-with-icon select:focus {
  outline: none;
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.08);
}

.select-with-icon select option {
  background: var(--primary-blue);
  color: var(--white);
  padding: 12px;
}

.select-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-red);
  pointer-events: none;
  font-size: 1rem;
}

/* ===== MULTI-CITY STYLES (KEPT FOR BACKWARD COMPATIBILITY) ===== */
.multi-city-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.multi-city-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.multi-city-header h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

.add-city-btn {
  background: var(--accent-red);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.add-city-btn:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.multi-city-routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.city-route {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 15px;
  align-items: end;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

/* MULTI-CITY INPUT STYLES */
.multi-city-container .form-group.enhanced {
  margin-bottom: 0;
}

.multi-city-container .form-group.enhanced label {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.multi-city-container .form-group.enhanced input,
.multi-city-container .form-group.enhanced select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.multi-city-container .form-group.enhanced input:focus,
.multi-city-container .form-group.enhanced select:focus {
  outline: none;
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(183, 28, 58, 0.1);
}

.multi-city-container .form-group.enhanced input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.multi-city-container .select-with-icon select {
  padding: 14px 40px 14px 16px;
  font-size: 0.95rem;
}

.multi-city-container .select-icon {
  right: 16px;
  font-size: 0.9rem;
}

.remove-city-btn {
  background: rgba(183, 28, 58, 0.3);
  color: var(--white);
  border: 1px solid var(--accent-red);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-bottom: 12px;
}

.remove-city-btn:hover {
  background: var(--accent-red);
  transform: scale(1.1);
}

/* MULTI-CITY TRAVELERS SECTION */
.multi-city-travelers {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.multi-city-travelers h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.multi-city-travelers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.multi-city-travelers .travelers-selector {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  margin: 0;
}

.multi-city-travelers .traveler-input {
  justify-content: center;
}

/* ===== MULTI-COUNTRY STYLES (NEW - REPLACES MULTI-CITY FUNCTIONALLY) ===== */
.multi-country-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.multi-country-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.multi-country-header h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0;
}

.add-country-btn {
  background: var(--accent-red);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.add-country-btn:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.multi-country-routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.country-route {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 15px;
  align-items: end;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

/* MULTI-COUNTRY INPUT STYLES */
.multi-country-container .form-group.enhanced {
  margin-bottom: 0;
}

.multi-country-container .form-group.enhanced label {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.multi-country-container .form-group.enhanced input,
.multi-country-container .form-group.enhanced select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.multi-country-container .form-group.enhanced input:focus,
.multi-country-container .form-group.enhanced select:focus {
  outline: none;
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(183, 28, 58, 0.1);
}

.multi-country-container .form-group.enhanced input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.multi-country-container .select-with-icon select {
  padding: 14px 40px 14px 16px;
  font-size: 0.95rem;
}

.multi-country-container .select-icon {
  right: 16px;
  font-size: 0.9rem;
}

.remove-country-btn {
  background: rgba(183, 28, 58, 0.3);
  color: var(--white);
  border: 1px solid var(--accent-red);
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  margin-bottom: 12px;
}

.remove-country-btn:hover {
  background: var(--accent-red);
  transform: scale(1.1);
}

/* MULTI-COUNTRY TRAVELERS SECTION */
.multi-country-travelers {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: none;
}

.multi-country-travelers h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.multi-country-travelers .travelers-selector {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  margin: 0;
}

/* MULTI-COUNTRY PREFERENCES */
.multi-country-preferences {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: none;
}

/* ===== MULTI-CITY FLIGHT PREFERENCES ===== */
.multi-city-flight-preferences {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 25px;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.multi-city-flight-preferences .preferences-group {
  background: transparent;
  padding: 0;
  margin: 0;
}

.multi-city-flight-preferences .preferences-group label {
  font-size: 1.2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.multi-city-flight-preferences .preferences-group label i {
  color: var(--accent-red);
}

.multi-city-flight-preferences .preferences-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* Enhanced Traveler Controls */
.traveler-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.multi-city-travelers .traveler-btn {
  width: 35px;
  height: 35px;
  border: 2px solid var(--accent-red);
  background: transparent;
  color: var(--accent-red);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
  transition: var(--transition);
}

.multi-city-travelers .traveler-btn:hover {
  background: var(--accent-red);
  color: var(--white);
  transform: scale(1.1);
}

.multi-city-travelers .traveler-count {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 25px;
  text-align: center;
}

/* Responsive adjustments for multi-city sections */
@media (max-width: 768px) {
  .multi-city-flight-preferences .preferences-grid {
    grid-template-columns: 1fr;
  }
  
  .traveler-controls {
    gap: 8px;
  }
  
  .multi-city-travelers .traveler-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

/* Preferences */
.preferences-group {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 35px;
}

.preferences-group label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.preferences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.preference-option {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: var(--transition);
  padding: 15px;
  border-radius: 8px;
}

.preference-option:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.preference-option input {
  display: none;
}

.checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--accent-red);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.preference-option input:checked + .checkmark {
  background: var(--accent-red);
}

.preference-option input:checked + .checkmark::after {
  content: 'Checkmark';
  position: absolute;
  color: var(--white);
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preference-option i {
  color: var(--accent-red);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Contact Section Form */
.contact-section-form {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 35px;
  margin-bottom: 40px;
}

.contact-section-form h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Contact Information Inputs */
.contact-section-form .form-group.enhanced input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.contact-section-form .form-group.enhanced input:focus {
  outline: none;
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.08);
}

.contact-section-form .form-group.enhanced input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* FIXED: Phone Input - Full Width */
.phone-enhanced {
  grid-column: 1 / -1;
}

.phone-input-group {
  display: flex;
  gap: 15px;
  width: 100%;
}

.country-code {
  flex: 0 0 140px;
  padding: 18px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.country-code option {
  background: var(--primary-blue);
  color: var(--white);
}

.phone-input-group input {
  flex: 1;
  padding: 18px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  min-width: 0;
}

.phone-input-group input:focus {
  outline: none;
  border-color: var(--accent-red);
}

/* Submit Button */
.submit-btn-enhanced {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-red), var(--dark-red));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  padding: 22px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: var(--shadow-lg);
  font-family: 'Poppins', sans-serif;
}

.submit-btn-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
}

.submit-btn-enhanced:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* NEW: Hide return date on One-Way */
#return-wrapper.oneway-hidden {
  display: none !important;
}

/* Responsive for multi-country */
@media (max-width: 768px) {
  .country-route {
    grid-template-columns: 1fr;
  }
  .remove-country-btn {
    margin-top: 10px;
  }
}

/* ===== SPIRITUAL PACKAGES ===== */
.spiritual-packages {
  padding: 100px 0;
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.package-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.05);
}

.package-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.package-badge {
  background: var(--accent-red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-content {
  padding: 30px;
}

.package-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.package-features {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-red);
  font-size: 0.9rem;
  font-weight: 500;
}

.feature i {
  font-size: 1rem;
}

.package-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.package-price {
  text-align: left;
}

.from {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-red);
}

.package-btn {
  background: var(--primary-blue);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.package-btn:hover {
  background: var(--accent-red);
  transform: translateX(5px);
}

/* ===== ZIYARAT PACKAGES ===== */
.ziyarat-packages {
  padding: 100px 0;
  background: var(--white);
}

.ziyarat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
}

.ziyarat-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--medium-gray);
}

.ziyarat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.ziyarat-header {
  background: var(--primary-blue);
  color: var(--white);
  padding: 25px;
  position: relative;
}

.ziyarat-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.ziyarat-header p {
  opacity: 0.9;
  margin-bottom: 15px;
}

.duration-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
}

.ziyarat-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.ziyarat-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: var(--white);
}

.tour-highlight {
  font-size: 0.9rem;
  opacity: 0.9;
}

.ziyarat-content {
  padding: 30px;
}

.ziyarat-features {
  list-style: none;
  margin-bottom: 20px;
}

.ziyarat-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.ziyarat-features li i {
  color: var(--accent-red);
  font-size: 0.9rem;
}

.ziyarat-description {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.ziyarat-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-section {
  text-align: left;
}

.price-from {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-red);
}

.ziyarat-cta {
  background: var(--primary-blue);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.ziyarat-cta:hover {
  background: var(--accent-red);
  transform: translateX(5px);
}

/* ===== SERVICES SHOWCASE ===== */
.services-showcase {
  position: relative;
}

.services-hero {
  background: url('../media/photos/home/services/airport-bg.png') center/cover no-repeat;
  background-attachment: fixed;
  height: 500px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 46, 78, 0.85);
  display: flex;
  align-items: center;
}

.services-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}

.services-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.services-content p {
  font-size: 1.3rem;
  line-height: 1.6;
  opacity: 0.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: var(--accent-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-info {
  padding: 30px;
}

.service-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-info p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-dark);
  position: relative;
  padding-left: 20px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: bold;
}

/* REMOVED: Service link buttons as requested */
.service-link {
  display: none;
}

/* ===== ABOUT SECTION ===== */
.about-showcase {
  padding: 100px 0;
  background: var(--light-gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-badge {
  margin-bottom: 20px;
}

.section-badge span {
  background: var(--accent-red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.lead {
  font-size: 1.3rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-features {
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature i {
  font-size: 2rem;
  color: var(--accent-red);
  margin-top: 5px;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-weight: 600;
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.about-cta:hover {
  background: var(--accent-red);
  transform: translateX(8px);
}

/* About Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(11, 46, 78, 0.8));
  color: var(--white);
  padding: 20px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.main-item {
  grid-row: 1 / 3;
}

/* ===== AIRLINE SERVICES ===== */
.airline-services {
  padding: 100px 0;
  background: var(--white);
}

.service-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.service-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-showcase:hover .service-image img {
  transform: scale(1.05);
}

.service-badge {
  margin-bottom: 20px;
}

.service-badge span {
  background: var(--accent-red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.service-details h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
}

.service-intro {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.service-features-list {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.service-highlights {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--light-gray);
  padding: 12px 20px;
  border-radius: 25px;
  color: var(--primary-blue);
  font-weight: 500;
}

.highlight-card i {
  color: var(--accent-red);
}

/* ===== AIRLINES PARTNERS ===== */
.airlines-partners {
  padding: 80px 0;
  background: var(--light-gray);
}

.partners-header {
  text-align: center;
  margin-bottom: 60px;
}

.partners-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.partners-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.airlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.airline-partner {
  background: var(--white);
  padding: 30px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
}

.airline-partner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-red);
}

.airline-partner img {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 15px;
  filter: grayscale(100%);
  transition: var(--transition);
}

.airline-partner:hover img {
  filter: grayscale(0%);
}

.airline-name {
  display: block;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-header p {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--light-gray);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateX(10px);
  background: var(--primary-blue);
  color: var(--white);
}

.contact-method:hover h4,
.contact-method:hover p {
  color: var(--white);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.method-info h4 {
  font-size: 1.3rem;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.method-info p {
  color: var(--text-light);
  margin-bottom: 5px;
  transition: var(--transition);
}

.method-note {
  font-size: 0.85rem;
  color: var(--dark-gray);
  font-style: italic;
  transition: var(--transition);
}

.contact-method:hover .method-note {
  color: rgba(255, 255, 255, 0.8);
}

/* REMOVED: Business hours as requested */
.business-hours {
  display: none;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--light-gray);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.form-header p {
  color: var(--text-light);
}

.modern-contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.modern-contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.modern-contact-form .form-group.full-width {
  grid-column: 1 / -1;
}

.modern-contact-form label {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
  padding: 15px 20px;
  border: 2px solid var(--medium-gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  background: var(--white);
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(183, 28, 58, 0.1);
}

.modern-contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-red), var(--dark-red));
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  padding: 18px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: var(--shadow);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--dark-red), var(--accent-red));
}

/* ===== FOOTER STYLES ===== */
.site-footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul,
.footer-services ul {
  list-style: none;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--accent-red);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent-red);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .slide-title {
    font-size: 3.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
  
  .about-content,
  .service-showcase,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    margin-top: -50px;
  }
  
  .gallery-grid {
    height: 400px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 15px;
  }
  
  .hero-carousel {
    height: 70vh;
    min-height: 500px;
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-description {
    font-size: 1.1rem;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
  }
  
  .prev-btn {
    left: 15px;
  }
  
  .next-btn {
    right: 15px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .modern-flight-form {
    padding: 30px 20px;
  }
  
  .form-grid-enhanced {
    grid-template-columns: 1fr;
  }
  
  .travelers-selector {
    flex-direction: column;
    gap: 15px;
  }
  
  .preferences-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid-form {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .ziyarat-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .main-item {
    grid-row: auto;
  }
  
  .airlines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modern-contact-form .form-grid {
    grid-template-columns: 1fr;
  }
  
  /* Multi-City Responsive */
  .city-route {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .remove-city-btn {
    width: 100%;
    height: 45px;
    margin-bottom: 0;
  }
  
  .multi-city-header {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .add-city-btn {
    justify-content: center;
  }
  
  .phone-input-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .country-code {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0 10px;
  }
  
  .hero-carousel {
    height: 60vh;
    min-height: 400px;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-description {
    font-size: 1rem;
  }
  
  .booking-header h2 {
    font-size: 2.2rem;
  }
  
  .toggle-group {
    flex-direction: column;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .package-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .ziyarat-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .airlines-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Fix for Font Awesome icons */
.fa-solid.a-star:before { content: "\f005"; }
.fa-solid.a-headset:before { content: "\f590"; }
.fa-solid.a-check:before { content: "\f00c"; }
.fa-solid.a-gem:before { content: "\f3a5"; }
.fa-solid.a-heart:before { content: "\f004"; }
.fa-solid.a-shield:before { content: "\f132"; }
.fa-solid.a-bolt:before { content: "\f0e7"; }

/* ===== PACKAGES HERO SECTION ===== */
.packages-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
}

.packages-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--primary-blue), var(--accent-red));
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PACKAGES GRID ===== */
.packages-grid-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.package-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.1);
}

.package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-red);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-content {
  padding: 25px;
}

.package-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.package-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.package-duration i {
  color: var(--accent-red);
}

.package-features {
  list-style: none;
  margin-bottom: 20px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-dark);
}

.package-features li i {
  color: var(--accent-red);
  font-size: 0.8rem;
}

.package-price {
  text-align: center;
  margin-bottom: 20px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 10px;
}

.price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-red);
}

.per-person {
  font-size: 0.9rem;
  color: var(--text-light);
}

.package-btn {
  display: block;
  text-align: center;
  background: var(--primary-blue);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.package-btn:hover {
  background: var(--accent-red);
}

/* ===== NO PACKAGES STYLES ===== */
.no-packages {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.no-packages-icon {
  font-size: 4rem;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.no-packages h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.no-packages p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-blue);
  font-weight: 500;
}

.contact-item i {
  color: var(--accent-red);
}

.cta-button {
  display: inline-block;
  background: var(--accent-red);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: var(--dark-red);
}

/* ===== PACKAGE INQUIRY ===== */
.package-inquiry {
  background: var(--primary-blue);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.inquiry-content h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.inquiry-content p {
  opacity: 0.9;
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.inquiry-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-red);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.inquiry-btn:hover {
  background: var(--dark-red);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== FLIGHT OFFERS HERO ===== */
.flight-offers-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
}

.flight-offers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--primary-blue), var(--accent-red));
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
}

/* ===== FLIGHT OFFERS SECTION ===== */
.flight-offers-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Destination Groups */
.destination-group {
  margin-bottom: 50px;
}

.group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-red);
}

.group-title i {
  color: var(--accent-red);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* Flight Offer Cards */
.flight-offer-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.flight-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-red);
}

.hot-offer {
  border: 2px solid var(--accent-red);
  position: relative;
  overflow: hidden;
}

.hot-offer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent var(--accent-red) transparent transparent;
}

.offer-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.destination-flag {
  font-size: 1.8rem;
}

.offer-header h4 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  margin: 0;
  flex: 1;
}

.hot-badge {
  background: var(--accent-red);
  color: white;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.offer-details {
  margin-bottom: 20px;
}

.route {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.route i {
  color: var(--accent-red);
}

.price {
  text-align: center;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--light-gray);
  border-radius: 10px;
}

.amount {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-red);
  margin-bottom: 5px;
}

.tax {
  font-size: 0.9rem;
  color: var(--text-light);
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature {
  font-size: 0.9rem;
  color: var(--text-light);
}

.book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary-blue);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: var(--accent-red);
}

/* Call to Action */
.flight-cta {
  background: white;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.cta-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.cta-content p {
  color: var(--text-light);
  margin-bottom: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: var(--accent-red);
  color: white;
}

.cta-btn.primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: var(--primary-blue);
  color: white;
}

.cta-btn.secondary:hover {
  background: var(--dark-blue);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 200px;
    justify-content: center;
  }
  
  .flight-cta {
    padding: 30px 20px;
  }
}

/* ===== VISA HERO SECTION ===== */
.visa-hero {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
}

.visa-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-red), var(--primary-blue), var(--accent-red));
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* ===== FEATURED VISA SERVICES ===== */
.featured-visa-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.visa-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.visa-service-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.visa-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-red);
}

.visa-flag {
  font-size: 3rem;
  margin-bottom: 15px;
}

.visa-service-card h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.visa-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.detail-item i {
  color: var(--accent-red);
  width: 16px;
}

.visa-features {
  list-style: none;
  text-align: left;
}

.visa-features li {
  padding: 5px 0;
  color: var(--text-dark);
}

/* ===== ALL COUNTRIES SECTION ===== */
.all-countries-section {
  padding: 80px 0;
  background: white;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.country-group h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 5px;
}

.country-flags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.country-flag {
  padding: 8px 12px;
  background: var(--light-gray);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.country-flag:hover {
  background: #e9ecef;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--accent-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
}

.feature-card h3 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.visa-cta-section {
  background: var(--primary-blue);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.cta-content p {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: var(--accent-red);
  color: white;
}

.cta-btn.primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  background: white;
  color: var(--primary-blue);
}

.cta-btn.secondary:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .visa-services-grid {
    grid-template-columns: 1fr;
  }
  
  .countries-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 250px;
    justify-content: center;
  }
}

/* ===== Journey Enquiry Form ===== */
.journey-enquiry-form {
  padding: 80px 0;
  background: #0b2e4e;
  font-family: 'Poppins', sans-serif;
}

.journey-enquiry-form .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.journey-enquiry-form .booking-header {
  text-align: center;
  margin-bottom: 50px;
}

.journey-enquiry-form .header-icon {
  font-size: 3rem;
  color: #fff !important;
  margin-bottom: 20px;
}

.journey-enquiry-form .booking-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}

.journey-enquiry-form .booking-header p {
  font-size: 1.1rem;
  color: #9bb5d3;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Enquiry Type Toggle */
.enquiry-toggle {
  margin-bottom: 40px;
}

.enquiry-toggle .toggle-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.enquiry-toggle input[type="radio"] {
  display: none;
}

.enquiry-toggle .toggle-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #9bb5d3;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  flex: 1;
  justify-content: center;
  min-width: 200px;
}

.enquiry-toggle .toggle-btn:hover {
  border-color: #b71c3a;
  color: white;
  background: rgba(183, 28, 58, 0.2);
  transform: translateY(-2px);
}

.enquiry-toggle input[type="radio"]:checked + .toggle-btn {
  background: linear-gradient(135deg, #b71c3a 0%, #9a1630 100%);
  border-color: #b71c3a;
  color: white;
  box-shadow: 0 5px 20px rgba(183, 28, 58, 0.4);
  transform: translateY(-2px);
}

.enquiry-toggle .toggle-btn i {
  font-size: 1.2rem;
}

/* Main Form */
.modern-journey-form {
  max-width: 1000px;
  margin: 0 auto;
}

/* Form Grid */
.form-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.form-group.enhanced.full-width {
  grid-column: 1 / -1;
}

.form-group.enhanced {
  position: relative;
}

.form-group.enhanced label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

.form-group.enhanced label i {
  color: #b71c3a;
  width: 16px;
  font-size: 0.9rem;
}

/* Input and Select Styles */
.input-with-icon,
.select-with-icon {
  position: relative;
}

.input-with-icon input,
.select-with-icon select,
.form-group.enhanced textarea {
  width: 100%;
  padding: 15px 45px 15px 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  backdrop-filter: blur(10px);
}

.input-with-icon input::placeholder,
.form-group.enhanced textarea::placeholder {
  color: #9bb5d3;
  font-weight: 400;
  opacity: 1;
}

.input-with-icon input:focus,
.select-with-icon select:focus,
.form-group.enhanced textarea:focus {
  outline: none;
  border-color: #b71c3a;
  box-shadow: 0 0 0 3px rgba(183, 28, 58, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

/* Icons */
.input-icon,
.select-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9bb5d3;
  font-size: 0.9rem;
}

.select-icon {
  pointer-events: none;
}

/* Select Dropdown Styling */
.select-with-icon select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.select-with-icon select option {
  background: #0b2e4e;
  color: white;
  padding: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  border: none;
}

/* Textarea Styling */
.form-group.enhanced textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
}

/* Traveler Selector */
.traveler-group {
  grid-column: 1 / -1;
}

.travelers-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.traveler-input {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.traveler-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #b71c3a;
  background: rgba(255, 255, 255, 0.1);
  color: #b71c3a;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
}

.traveler-btn:hover {
  background: #b71c3a;
  color: white;
  transform: scale(1.1);
}

.traveler-count {
  font-weight: 700;
  color: white;
  min-width: 35px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}

.traveler-label {
  color: #9bb5d3;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  min-width: 70px;
}

/* Contact Section */
.contact-section-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 35px;
  border-radius: 15px;
  margin: 40px 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.contact-section-form h4 {
  color: white;
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  border-bottom: 2px solid #b71c3a;
  padding-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Phone Input Group */
.phone-input-group {
  display: flex;
  gap: 12px;
}

.phone-input-group .country-code {
  flex: 0 0 130px;
  padding: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.phone-input-group .country-code:focus {
  outline: none;
  border-color: #b71c3a;
}

.phone-input-group .country-code option {
  background: #0b2e4e;
  color: white;
  font-family: 'Poppins', sans-serif;
  padding: 10px;
}

.phone-input-group input {
  flex: 1;
}

/* Submit Button */
.submit-btn-enhanced {
  width: 100%;
  background: linear-gradient(135deg, #b71c3a 0%, #9a1630 100%);
  color: white;
  padding: 20px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(183, 28, 58, 0.4);
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.submit-btn-enhanced::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.5s;
}

.submit-btn-enhanced:hover::before {
  left: 100%;
}

.submit-btn-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(183, 28, 58, 0.6);
  background: linear-gradient(135deg, #9a1630 0%, #b71c3a 100%);
}

.submit-btn-enhanced:active {
  transform: translateY(-1px);
}

.submit-btn-enhanced i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.submit-btn-enhanced:hover i:last-child {
  transform: translateX(5px);
}

/* Custom Journey Fields */
.custom-journey-fields {
  transition: all 0.3s ease;
}

/* Animation for form elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.journey-enquiry-form .booking-header,
.modern-journey-form {
  animation: fadeInUp 0.6s ease-out;
}

.form-group.enhanced {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

/* Stagger animation for form groups */
.form-grid-enhanced .form-group.enhanced:nth-child(1) { animation-delay: 0.1s; }
.form-grid-enhanced .form-group.enhanced:nth-child(2) { animation-delay: 0.2s; }
.form-grid-enhanced .form-group.enhanced:nth-child(3) { animation-delay: 0.3s; }
.form-grid-enhanced .form-group.enhanced:nth-child(4) { animation-delay: 0.4s; }
.form-grid-enhanced .form-group.enhanced:nth-child(5) { animation-delay: 0.5s; }
.form-grid-enhanced .form-group.enhanced:nth-child(6) { animation-delay: 0.6s; }
.form-grid-enhanced .form-group.enhanced:nth-child(7) { animation-delay: 0.7s; }

/* Responsive Design */
@media (max-width: 768px) {
  .journey-enquiry-form {
    padding: 50px 0;
  }
  
  .journey-enquiry-form .container {
    padding: 0 15px;
  }
  
  .journey-enquiry-form .booking-header h2 {
    font-size: 2rem;
  }
  
  .journey-enquiry-form .booking-header p {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .enquiry-toggle .toggle-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    gap: 15px;
  }
  
  .enquiry-toggle .toggle-btn {
    min-width: auto;
    padding: 16px 25px;
    font-size: 0.95rem;
  }
  
  .form-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .travelers-selector {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }
  
  .traveler-input {
    justify-content: flex-start;
  }
  
  .contact-section-form {
    padding: 25px 20px;
    margin: 30px 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .phone-input-group {
    flex-direction: column;
    gap: 10px;
  }
  
  .phone-input-group .country-code {
    flex: 1;
    width: 100%;
  }
  
  .submit-btn-enhanced {
    font-size: 1rem;
    padding: 18px 25px;
    margin-top: 25px;
  }
  
  .input-with-icon input,
  .select-with-icon select,
  .form-group.enhanced textarea {
    padding: 14px 40px 14px 14px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .journey-enquiry-form {
    padding: 40px 0;
  }
  
  .journey-enquiry-form .booking-header h2 {
    font-size: 1.8rem;
  }
  
  .journey-enquiry-form .header-icon {
    font-size: 2.5rem;
  }
  
  .enquiry-toggle .toggle-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
  }
  
  .travelers-selector {
    padding: 15px;
  }
  
  .traveler-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .traveler-count {
    font-size: 1.1rem;
    min-width: 30px;
  }
  
  .contact-section-form {
    padding: 20px 15px;
  }
  
  .contact-section-form h4 {
    font-size: 1.2rem;
  }
  
  .submit-btn-enhanced {
    padding: 16px 20px;
    font-size: 0.95rem;
  }
}

/* Focus states for accessibility */
.input-with-icon input:focus-visible,
.select-with-icon select:focus-visible,
.form-group.enhanced textarea:focus-visible {
  outline: 2px solid #b71c3a;
  outline-offset: 2px;
}

/* Loading state for submit button */
.submit-btn-enhanced.loading {
  pointer-events: none;
  opacity: 0.8;
}

.submit-btn-enhanced.loading i.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.form-group.enhanced.error input,
.form-group.enhanced.error select,
.form-group.enhanced.error textarea {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-group.enhanced .error-message {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
  font-weight: 500;
}

/* Success state */
.form-group.enhanced.success input,
.form-group.enhanced.success select,
.form-group.enhanced.success textarea {
  border-color: #51cf66;
  box-shadow: 0 0 0 3px rgba(81, 207, 102, 0.2);
}