html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-content {
  padding: 0;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Travel Trek Theme Styles */

/* Navbar Styles */
.trek-navbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.trek-navbar .navbar-brand {
  font-size: 1.5rem;
  color: #fff !important;
}

.trek-navbar .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.trek-navbar .nav-link:hover,
.trek-navbar .nav-link.active {
  color: #ffd700 !important;
}

/* Hero Slider Section */
.hero-slider-section {
  position: relative;
  height: 600px;
  margin-top: 0;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-1 {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
}

.hero-slide-2 {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920') center/cover;
}

.hero-slide-3 {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920') center/cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(30,60,114,0.7) 0%, rgba(42,82,152,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
}

.carousel-indicators button.active {
  background-color: #fff;
}

/* Search Box Over Hero */
.search-box-container {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 10;
  overflow: visible !important;
}

.search-box {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  margin-top: 2rem;
}

.search-box-title {
  color: #1e3c72;
  font-weight: 600;
  text-align: center;
}

/* Service Tabs Styling */
.nav-pills-custom {
  gap: 0.75rem;
  flex-wrap: wrap;
}

.service-tab-btn {
  background: #f8f9fa;
  border: 2px solid #e0e0e0;
  color: #495057;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.service-tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

.service-tab-btn:hover {
  border-color: #2a5298;
  color: #2a5298;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(42, 82, 152, 0.2);
}

.service-tab-btn:hover::before {
  left: 0;
}

.service-tab-btn:hover i,
.service-tab-btn:hover .service-name {
  position: relative;
  z-index: 1;
  color: white;
}

.service-tab-btn.active {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-color: #1e3c72;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
  transform: translateY(-2px);
}

.service-tab-btn.active::before {
  left: 0;
}

.service-tab-btn.active i,
.service-tab-btn.active .service-name {
  color: white;
  position: relative;
  z-index: 1;
}

.service-tab-btn i {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.service-tab-btn.active i {
  transform: scale(1.1);
}

.service-tab-btn .service-name {
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .service-tab-btn {
    min-width: 120px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .service-tab-btn i {
    font-size: 1rem;
    margin-right: 0.5rem !important;
  }
}

/* Airport Autocomplete Styles */
.airport-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  margin-top: 2px;
}

.airport-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.airport-item:last-child {
  border-bottom: none;
}

.airport-item:hover,
.airport-item.active {
  background-color: #f8f9fa;
}

.airport-item .fw-bold {
  color: #212529;
  font-size: 0.95rem;
}

.airport-item small {
  font-size: 0.85rem;
}

.search-box .form-label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

.search-box .form-select,
.search-box .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s;
}

.search-box .form-select:focus,
.search-box .form-control:focus {
  border-color: #2a5298;
  box-shadow: 0 0 0 0.2rem rgba(42,82,152,0.1);
}

/* Button Styles */
.btn-trek-primary {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-trek-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42,82,152,0.4);
  color: white;
}

.btn-trek-outline {
  background: transparent;
  color: #2a5298;
  border: 2px solid #2a5298;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-trek-outline:hover {
  background: #2a5298;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42,82,152,0.3);
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

/* First section after hero needs extra top padding for search box */
#trek-packages {
  padding-top: 120px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
}

/* Trek Card Styles */
.trek-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trek-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.trek-card-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.trek-image-1 {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url('https://images.unsplash.com/photo-1519904981063-b0cf448d479e?w=800') center/cover;
}

.trek-image-2 {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800') center/cover;
}

.trek-image-3 {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=800') center/cover;
}

.trek-image-4 {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url('https://images.unsplash.com/photo-1526392060635-9d6019884377?w=800') center/cover;
}

.trek-image-5 {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800') center/cover;
}

.trek-image-6 {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
              url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=800') center/cover;
}

.trek-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff6b6b;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.trek-badge.new-badge {
  background: #51cf66;
}

.trek-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.95);
  color: #1e3c72;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
}

.trek-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.trek-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 0.5rem;
}

.trek-card-location {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.trek-card-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #666;
}

.trek-card-info span {
  display: flex;
  align-items: center;
}

.trek-card-description {
  color: #555;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* About Section */
.about-content {
  padding-right: 2rem;
}

.about-image-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 8rem;
  opacity: 0.8;
}

.about-stats {
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Service Card Styles */
.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  line-height: 1.6;
}

/* Testimonial Card Styles */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.testimonial-rating {
  color: #ffd700;
  font-size: 1.1rem;
}

.testimonial-text {
  color: #555;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 600;
  color: #1e3c72;
  margin: 0;
}

.author-location {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

/* Footer Styles */
.trek-footer {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  margin-top: 80px;
}

.trek-footer h5,
.trek-footer h6 {
  color: white;
  font-weight: 600;
}

.trek-footer a {
  transition: color 0.3s;
}

.trek-footer a:hover {
  color: #ffd700 !important;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.text-white-50 {
  color: rgba(255,255,255,0.7) !important;
}

.bg-white-50 {
  background-color: rgba(255,255,255,0.1) !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-slider-section,
  .hero-slide {
    height: 400px;
  }
  
  .search-box-container {
    bottom: -30px;
  }
  
  .search-box {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  #trek-packages {
    padding-top: 80px;
  }
  
  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .about-image-placeholder {
    height: 300px;
    font-size: 5rem;
  }
}

/* Page Header Styles */
.page-header {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 100px 0 60px;
  color: white;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
}

/* Feature Box Styles */
.feature-box {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 1rem;
}

.feature-description {
  color: #666;
  line-height: 1.6;
}

/* Stat Card Styles */
.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
}

/* Mission Vision Card Styles */
.mission-vision-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  text-align: center;
}

.mission-vision-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.mission-vision-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 1rem;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #2a5298;
}

/* Additional Service Card Styles */
.additional-service-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.additional-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.additional-service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.additional-service-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 0.5rem;
}

.additional-service-content p {
  color: #666;
  margin: 0;
}

/* Process Step Styles */
.process-step {
  padding: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 1rem;
}

.process-description {
  color: #666;
  line-height: 1.6;
}

/* Video Testimonial Card Styles */
.video-testimonial-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-placeholder {
  height: 250px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
}

.video-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.video-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.video-placeholder small {
  margin-top: 0.5rem;
  opacity: 0.8;
}

.video-testimonial-info {
  padding: 1.5rem;
}

.video-testimonial-info h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 0.5rem;
}

.video-testimonial-info p {
  color: #666;
  margin: 0;
}

/* Rating Summary Card Styles */
.rating-summary-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.rating-summary-card:hover {
  transform: translateY(-5px);
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2a5298;
  margin-bottom: 0.5rem;
}

.rating-stars {
  color: #ffd700;
  font-size: 1.2rem;
}

.rating-summary-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e3c72;
  margin-bottom: 0.5rem;
}

/* Author Trek Info */
.author-trek {
  font-size: 0.85rem;
  color: #2a5298;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* Contact Form Card Styles */
.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
  color: #1e3c72;
  font-weight: 700;
}

.contact-form-card .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: #2a5298;
  box-shadow: 0 0 0 0.2rem rgba(42,82,152,0.1);
}

/* Contact Info Card Styles */
.contact-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-info-card h3 {
  color: #1e3c72;
  font-weight: 700;
}

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

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.social-links-contact {
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.social-links-contact h5 {
  color: #1e3c72;
  font-weight: 700;
  margin-bottom: 1rem;
}

.social-link-contact {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  margin-right: 0.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.social-link-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42,82,152,0.4);
  color: white;
}

/* Map Container Styles */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.map-placeholder p {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.map-placeholder small {
  margin-top: 0.5rem;
  opacity: 0.8;
}

/* FAQ Accordion Styles */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-button {
  background: white;
  color: #1e3c72;
  font-weight: 600;
  border: none;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  background: #f8f9fa;
  color: #666;
  line-height: 1.8;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  
  .page-subtitle {
    font-size: 1rem;
  }
  
  .page-header {
    padding: 60px 0 40px;
  }
  
  .additional-service-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .map-placeholder {
    height: 300px;
  }
}

/* Airport Autocomplete Styles */
.search-box {
  position: relative;
  overflow: visible !important;
}

.search-box .row {
  position: relative;
  overflow: visible !important;
}

.search-box .col-md-3 {
  position: relative;
  overflow: visible !important;
}

.tab-content {
  position: relative;
  overflow: visible !important;
}

.tab-pane {
  position: relative;
  overflow: visible !important;
}

.position-relative {
  overflow: visible !important;
  z-index: 1;
}

.airport-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  background: white !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 0.375rem !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  max-height: 300px !important;
  overflow-y: auto !important;
  z-index: 9999 !important;
  display: none;
  margin-top: 2px !important;
  min-height: 50px;
}

.airport-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.airport-item:last-child {
  border-bottom: none;
}

.airport-item:hover,
.airport-item.active {
  background-color: #f8f9fa;
}

.airport-item .fw-bold {
  color: #212529;
  font-size: 0.95rem;
}

.airport-item small {
  font-size: 0.85rem;
}
/* Flight Search Form Styles */
.flight-search-form {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

