/* Sahco Travels - Orange & Black Theme */

/* Header Enhancement */
.header {
  background: linear-gradient(135deg, #1a3a52 0%, #1a1a1a 100%);
}

.slider-bg {
  background: url('../images/slider-bg-newest.jpg') no-repeat center/cover;
  background-attachment: fixed;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.slider-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

/* Navigation Styling */
.navbarLinks .navbar-nav li > a::after {
  background-color: #FF8C00;
}

.navbarLinks .navbar-nav li:hover > a::after {
  background-color: #FF8C00;
}

.navbarLinks .navbar-nav li a {
  color: #fff;
  transition: color 0.3s ease;
}

.navbarLinks .navbar-nav li a:hover {
  color: #FF8C00;
}

/* Tab Buttons */
.tab-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  color: #FF8C00;
  border-bottom-color: rgba(255, 140, 0, 0.5);
}

.tab-btn.active {
  color: #FF8C00;
  border-bottom-color: #FF8C00;
  font-weight: 600;
}

/* Search Engine Section */
.searchEngine {
  position: relative;
  z-index: 2;
  padding-top: 45px;
  padding-bottom: 50px;
}

.searchEngine > h3 {
  font-size: 32px;
  font-family: GothamMedium;
  color: #fff;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.searchEngine > h3 span {
  color: #FF8C00;
}

.service-tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 15px;
  width: 100%;
}

/* Form Styling */
.form-wrapper {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-options-bar {
  background: #f9f9f9;
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.trip-type-selector {
  display: flex;
  gap: 15px;
  align-items: center;
}

.radio-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  background-color: transparent;
  border: none;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
  margin: 0;
}

.radio-option label:hover {
  background-color: rgba(255, 140, 0, 0.05);
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  background-color: transparent;
  border: none;
  padding: 5px 10px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.radio-option:hover {
  background-color: rgba(255, 140, 0, 0.05);
}

.radio-option input[type="radio"] {
  cursor: pointer;
  accent-color: #0d5187;
  width: 16px;
  height: 16px;
}

.radio-option input[type="radio"]:checked + span {
  color: #FF8C00;
  font-weight: 700;
}

.radio-option.checked-state {
  background-color: rgba(255, 140, 0, 0.15);
  color: #FF8C00;
}

.radio-option.checked-state span {
  color: #FF8C00;
  font-weight: 700;
}

/* Class Selector */
.class-selector {
  display: flex;
  align-items: center;
  gap: 8px;
}

.class-select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 13px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  min-width: 120px;
  transition: border-color 0.3s ease;
}

.class-select:focus {
  outline: none;
  border-color: #0d5187;
}

/* Budget Buttons */
.budget-selector-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.budget-label-inline {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

.budget-mini-btn {
  background-color: transparent;
  color: #0d5187;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: auto;
}

.budget-mini-btn:hover {
  background-color: rgba(13, 81, 135, 0.1);
  transform: scale(1.05);
}

.budget-mini-btn.active {
  background-color: #ffd40c;
  border: 2px solid #ffd40c;
  color: #1a1a1a;
  font-weight: 700;
}

/* Main Form Fields */
.form-fields-main {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) 56px minmax(220px, 1.25fr) minmax(160px, 1fr) minmax(160px, 1fr) minmax(180px, 1fr);
  gap: 16px;
  padding: 25px;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
  justify-items: stretch;
  position: relative;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.field-label {
  color: #666;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.form-field-group .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 14px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #fbfbfb;
  min-height: 56px;
  width: 100%;
}

.form-field-group .form-control:focus {
  outline: none;
  border-color: #0d5187;
  box-shadow: 0 0 0 3px rgba(13, 81, 135, 0.1);
  background-color: #fff;
}

.form-field-group .form-control::placeholder {
  color: #999;
}

/* Swap Icon */
.swap-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border: 2px solid #0d5187;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #0d5187;
  font-size: 20px;
  margin-top: 20px;
}

.swap-icon:hover {
  background-color: #0d5187;
  color: #fff;
  transform: scale(1.05);
}

/* Budget Section */
.budget-section-full {
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  background: #fafafa;
}

.budget-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.budget-label i {
  color: #FF8C00;
  font-size: 16px;
}

.per-passenger {
  font-size: 12px;
  font-weight: 400;
  color: #999;
}

.budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.budget-btn {
  background-color: transparent;
  color: #0d5187;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.budget-btn:hover {
  background-color: rgba(13, 81, 135, 0.1);
  transform: scale(1.05);
}

.budget-btn.active {
  background-color: #ffd40c;
  border: 2px solid #ffd40c;
  color: #1a1a1a;
  font-weight: 700;
}

.custom-budget-input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  min-width: 150px;
}

.custom-budget-input::placeholder {
  color: #999;
}

.custom-budget-input:focus {
  outline: none;
  border-color: #0d5187;
  box-shadow: 0 0 0 2px rgba(13, 81, 135, 0.1);
}

/* Form Actions */
.form-actions {
  display: flex;
  gap: 12px;
  padding: 25px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.btn-search {
  background: linear-gradient(135deg, #1e5a96, #0d3b6b);
  color: #fff;
  border: none;
  padding: 14px 44px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-search:hover {
  background: linear-gradient(135deg, #0d3b6b, #082451);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(30, 90, 150, 0.3);
}

.btn-email {
  background-color: #1b7d3e;
  color: #fff;
  border: none;
  padding: 14px 44px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-email:hover {
  background-color: #145a30;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(27, 125, 62, 0.3);
}

.btn-reset {
  background-color: transparent;
  color: #0d3b6b;
  border: 2px solid #0d3b6b;
  padding: 12px 44px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-reset:hover {
  background-color: #0d3b6b;
  color: #fff;
  transform: translateY(-2px);
}

/* Travelers Selector */
.travelers-selector {
  display: flex;
  align-items: center;
}

.travelers-select {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 14px 14px;
  font-size: 14px;
  background-color: #fbfbfb;
  min-height: 56px;
  color: #333;
  cursor: pointer;
}

.travelers-select:focus {
  outline: none;
  border-color: #FF8C00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
  background-color: #fff;
}

/* Hotel Section */
.hero-hotel-section {
  background: rgba(255, 255, 255, 0.96);
  padding: 52px 0 40px;
  position: relative;
  z-index: 2;
}

.hero-hotel-section .hotel-section-heading .subheading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FF8C00;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-hotel-section .hotel-section-heading h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1a1a1a;
  line-height: 1.4;
}

/* Hotel Cards */
.hotel-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 140, 0, 0.08);
  box-shadow: 0 20px 45px rgba(255, 140, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 390px;
}

.hotel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 58, 82, 0.12), rgba(26, 26, 26, 0.37));
}

.hotel-rating {
  background: #ffffffdd;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #FF8C00;
  font-size: 13px;
}

.hotel-card h3 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #1a1a1a;
  line-height: 1.25;
}

.hotel-price-current {
  color: #FF8C00;
  font-size: 22px;
  font-weight: 800;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .form-fields-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .swap-icon {
    display: none;
  }
}

@media (max-width: 768px) {
  .form-options-bar {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .form-fields-main {
    padding: 15px;
  }

  .form-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-search,
  .btn-email,
  .btn-reset {
    width: 100%;
  }

  .budget-selector-inline {
    width: 100%;
    justify-content: space-between;
  }
}

/* Features Section */
.features-section {
  background: #f8f8f8;
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.15);
}

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.feature-icon svg {
  width: 60px;
  height: 60px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 40px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  .feature-card h3 {
    font-size: 15px;
  }

  .feature-card p {
    font-size: 13px;
  }
}

/* Trending Section */
.trending-section {
  background: linear-gradient(to bottom, #f5f5f5, #e8e8e8);
  padding: 60px 0;
}

.trending-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: left;
}

.trending-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.trending-image-wrapper {
  width: 100%;
  max-width: 600px;
}

.trending-image {
  position: relative;
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.trending-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
  z-index: 1;
}

.trending-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
  z-index: 2;
}

.trending-text {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  max-width: 400px;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.85), rgba(30, 144, 255, 0.85));
  padding: 24px 28px;
  border-radius: 12px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.trending-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-explore {
  background: linear-gradient(135deg, #FF8C00, #FF9E1F);
  color: #fff;
  border: none;
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
  background: linear-gradient(135deg, #FF9E1F, #FFB84D);
}

@media (max-width: 1024px) {
  .trending-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trending-actions {
    justify-content: flex-start;
  }

  .trending-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .trending-section {
    padding: 40px 0;
  }

  .trending-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .trending-image {
    height: 280px;
  }

  .trending-text {
    font-size: 20px;
    padding: 16px 20px;
  }

  .btn-explore {
    padding: 14px 36px;
    font-size: 15px;
  }
}
