@charset "UTF-8";
/* SCSS Variables */
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #FFFFFF;
  /* Default background */
  /* Specific header style for homepage */
}

body header {
  background: transparent;
  color: white;
  position: absolute;
  /* Changed to absolute to overlay on hero */
  width: 100%;
  padding: 40px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  color: #031723;
}

h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #CEA456;
  margin: 15px auto 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a.search-btn {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

a.whatsapp-btn {
  background-color: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  height: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a.whatsapp-btn:hover {
  background-color: #1da851;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* Header Styles */
header {
  /* Default header style for non-tours pages */
  background-color: #031723;
  color: #FFFFFF;
  padding: 10px 0;
  /* Reduced padding */
  position: relative;
  z-index: 1000;
  -webkit-transition: background-color 0.3s ease, padding 0.3s ease;
  transition: background-color 0.3s ease, padding 0.3s ease;
  /* Special header for pages with transparent initial state */
}

body:not(.scrolled) header {
  /* Check if specific pages need transparent header initially */
  /* Example: .homepage, .tours-page */
}

body:not(.scrolled) header.transparent-header {
  background: transparent;
  position: absolute;
  padding: 20px 0;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
}

.logo a img {
  height: 40px;
  display: block;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.main-nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 0;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.nav-link:hover, .nav-link.active {
  color: #CEA456;
}

.nav-link i {
  font-size: 0.7em;
}

/* Dropdown Menu Styles */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #031723;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  min-width: 220px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.dropdown-menu .nav-item {
  padding: 0 20px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
  background-color: #0A283A;
  color: #CEA456;
}

/* Language Selector Dropdown */
.language-selector {
  position: relative;
}

.language-dropdown-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 5px;
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.language-dropdown-btn:hover {
  opacity: 1;
}

.language-dropdown-btn img {
  display: block;
}

.language-dropdown-btn i {
  font-size: 0.7em;
}

.language-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #031723;
  padding: 10px 0;
  margin-top: 5px;
  min-width: 150px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.language-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 15px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.language-menu a img {
  display: block;
}

.language-menu a:hover, .language-menu a.active {
  background-color: #0A283A;
  opacity: 1;
}

.language-menu a.active {
  font-weight: 600;
}

.language-selector.open .language-menu {
  display: block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Styles for Header */
@media (max-width: 992px) {
  .main-nav {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #031723;
    padding: 10px 0;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .nav-links {
    gap: 15px;
    /* On mobile, allow nav links container itself to be toggled */
  }
  .nav-links.active .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    padding: 15px 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    background-color: #0A283A;
    padding-left: 30px;
    display: none;
  }
  .dropdown:hover .dropdown-menu {
    display: none;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown .nav-link i {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .dropdown.open .nav-link i {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .language-selector {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .language-menu {
    right: auto;
    left: 0;
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section Styling for Homepage and Tours Page */
.hero-section-wrapper {
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  /* Default height */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6))), url("images/bg-header.jpg");
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("images/bg-header.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

@media (max-width: 768px) {
  .hero-background {
    height: 600px;
  }
}

@media (max-width: 480px) {
  .hero-background {
    height: 550px;
  }
}

.tours-hero {
  text-align: center;
  padding: 200px 0 100px;
  /* Default padding */
  color: #fff;
  position: relative;
  min-height: 500px;
  /* Default min height */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tours-hero.hero-reservation {
  padding: 160px 0 70px;
  min-height: inherit;
}

.tours-hero h1 {
  font-size: 2.8rem;
  /* Default size (used by homepage) */
  margin: auto auto 20px;
  max-width: 900px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .tours-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .tours-hero h1 {
    font-size: 1.8rem;
  }
}

.tours-hero p {
  font-size: 1.5rem;
  /* Default size (used by homepage) */
  margin: 0 auto 20px;
  max-width: 900px;
  line-height: 1.8;
  color: #CEA456;
  font-weight: 500;
}

@media (max-width: 768px) {
  .tours-hero p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .tours-hero p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.tours-hero .price-container {
  margin-top: 2em;
}

.tours-hero .price-container .price-tag,
.tours-hero .price-container .extra-info {
  font-size: 1.8rem;
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  margin: 0 5px;
  color: #031723;
}

@media (max-width: 480px) {
  .tours-hero .price-container .price-tag,
  .tours-hero .price-container .extra-info {
    font-size: 1.2rem;
  }
}

.tours-hero .price-container .price-tag {
  background-color: greenyellow;
  position: relative;
}

.tours-hero .price-container .price-tag:before {
  content: "65€";
  text-decoration: line-through;
  position: absolute;
  top: -20px;
  right: -10px;
  background-color: #ff5252;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 10px;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}

.tours-hero .price-container .extra-info {
  background-color: #CEA456;
}

@media (max-width: 768px) {
  .tours-hero {
    padding: 120px 0 80px;
  }
}

@media (max-width: 480px) {
  .tours-hero {
    padding: 140px 0 60px;
  }
}

/* Search Box Specific Styles (Homepage Only) */
.search-box {
  background-color: #FFFFFF;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0 auto;
  width: 100%;
  color: #333;
  margin-top: 60px;
}

.search-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.tab {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 18px 10px;
  cursor: pointer;
  font-weight: 600;
  color: #777;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #f9f9f9;
  border-bottom: 3px solid transparent;
}

.tab.active {
  color: #031723;
  background-color: white;
  border-bottom: 3px solid #CEA456;
}

.tab i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.search-form {
  padding: 30px;
}

.search-form#tours-tab p {
  margin: 0;
  font-size: 1.2rem;
}

@media (max-width: 480px) {
  .search-form {
    padding: 20px;
  }
}

.search-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(180px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.search-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.search-item label {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.search-item input,
.search-item select {
  padding: 14px 14px 14px 45px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #333;
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 50px;
}

.search-item input:hover, .search-item input:focus,
.search-item select:hover,
.search-item select:focus {
  border-color: #CEA456;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  outline: none;
  background-color: #fff;
}

.search-item input.active-input,
.search-item select.active-input {
  border-color: #CEA456;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  outline: none;
  background-color: #fff;
}

@media (max-width: 480px) {
  .search-item input,
  .search-item select {
    height: 50px;
    padding-left: 40px;
  }
}

.search-item input[type="date"].date-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8.825L1.175 4 2.237 2.938 6 6.7 9.763 2.937 10.825 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.search-item input[type="date"].date-select::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.search-item.round-trip-item {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 768px) {
  .search-item.round-trip-item {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

/* These seem like independent classes, keeping them top-level for now */
.location-select,
.duration-select,
.passenger-select,
.date-select {
  padding: 14px 14px 14px 45px;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: #333;
  background-color: #f9f9f9;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 50px;
}

.location-select:hover, .location-select:focus,
.duration-select:hover,
.duration-select:focus,
.passenger-select:hover,
.passenger-select:focus,
.date-select:hover,
.date-select:focus {
  border-color: #CEA456;
  -webkit-box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  outline: none;
  background-color: #fff;
}

.input-with-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  font-size: 1.1rem;
  color: #999;
}

.green-marker {
  color: #4CAF50 !important;
}

.blue-marker {
  color: #2196F3 !important;
}

.toggle-switch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  padding-left: 5px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 22px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch input:checked + .slider {
  background-color: #CEA456;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(22px);
          transform: translateX(22px);
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.search-btn-wrapper {
  grid-column: 1 / -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 10px;
  gap: 15px;
}

@media (max-width: 1200px) {
  .search-btn-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 768px) {
  .search-btn-wrapper {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .search-btn-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .search-btn-wrapper .search-btn, .search-btn-wrapper .whatsapp-btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1rem;
    padding: 10px 20px;
  }
}

.search-btn {
  background-color: #CEA456;
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -webkit-box-shadow: 0 3px 10px rgba(206, 164, 86, 0.2);
          box-shadow: 0 3px 10px rgba(206, 164, 86, 0.2);
  height: 50px;
}

.search-btn:hover {
  background-color: #B08D48;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(206, 164, 86, 0.3);
          box-shadow: 0 5px 15px rgba(206, 164, 86, 0.3);
}

.search-btn i {
  font-size: 1.1rem;
}

@media (max-width: 1200px) {
  .search-btn {
    width: auto;
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .search-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .search-btn {
    height: 45px;
    font-size: 1rem;
  }
}

/* Services Section */
.services {
  background-color: #FFFFFF;
  padding: 0 0 80px;
  position: relative;
  margin-top: 0;
  /* Reset margin potentially added by hero */
}

.section-header {
  text-align: left;
  max-width: 600px;
  margin-bottom: 40px;
}

.section-header h2 {
  text-align: left;
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #031723;
}

.section-header h2:after {
  content: none;
}

@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
}

.section-subtitle {
  text-align: left;
  max-width: 100%;
  margin: 0;
  color: #666;
  font-size: 1.1rem;
  line-height: 1.5;
  /* Check if this was intended for .locations .section-subtitle */
}

.section-subtitle.locations-subtitle {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

@media (max-width: 576px) {
  .section-subtitle {
    font-size: 1rem;
  }
}

.slider-container {
  position: relative;
  margin-bottom: 40px;
}

.services-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.services-slider:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.services-slider * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.services-slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  /* Maintain the original service-card width within the slider */
  min-width: 340px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-card-link:hover {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 992px) {
  .service-card-link {
    min-width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .service-card-link {
    min-width: 300px;
    max-width: 300px;
  }
}

.service-card {
  min-width: 100%;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

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

.service-card:hover .service-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.service-content {
  padding: 20px;
  position: relative;
}

.service-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #031723;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-content p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #031723;
  border-top: 1px solid #eee;
  padding-top: 12px;
  margin-top: 5px;
}

.detail-btn {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #CEA456;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 20px;
  right: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.service-card:hover .detail-btn {
  background-color: #031723;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.slider-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}

.slider-prev,
.slider-next {
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #031723;
  font-size: 1.2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: auto;
}

.slider-prev:hover,
.slider-next:hover {
  background-color: #CEA456;
  color: white;
}

@media (max-width: 576px) {
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }
}

.text-center {
  text-align: center;
}

.more-btn {
  display: inline-block;
  background-color: #031723;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.more-btn:hover {
  background-color: #CEA456;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

/* Locations Section */
.locations {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.locations .text-center {
  text-align: center;
}

.locations .section-subtitle {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .locations .route-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.route-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 768px) {
  .route-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.route-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

@media (max-width: 768px) {
  .route-column {
    width: 100%;
  }
}

.route-card {
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px 20px;
  margin-bottom: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  min-height: 70px;
  height: auto;
}

.route-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .route-card {
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .route-card {
    padding: 15px 12px;
  }
}

@media (max-width: 480px) {
  .route-card {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.route-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: visible;
}

@media (max-width: 480px) {
  .route-info {
    width: 100%;
    margin-bottom: 12px;
  }
}

.route-from,
.route-to {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.route-from {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.route-from span {
  display: inline-block;
}

@media (max-width: 768px) {
  .route-from {
    min-width: 100px;
    width: 30%;
  }
}

@media (max-width: 576px) {
  .route-from {
    min-width: 80px;
    width: 30%;
  }
}

@media (max-width: 480px) {
  .route-from {
    width: 40%;
    min-width: auto;
  }
}

.route-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 10px;
  color: #888;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
}

@media (max-width: 768px) {
  .route-arrow {
    margin: 0 8px;
  }
}

@media (max-width: 576px) {
  .route-arrow {
    margin: 0 6px;
  }
}

.route-to {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.route-to span {
  display: inline-block;
}

@media (max-width: 480px) {
  .route-to {
    width: 50%;
  }
}

.route-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 15px 0 auto;
  min-width: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: right;
}

@media (max-width: 576px) {
  .route-price {
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  .route-price {
    margin-left: auto;
  }
}

.price-amount {
  font-size: 22px;
  font-weight: 700;
  color: #1A354F;
  white-space: nowrap;
}

.price-note {
  font-size: 12px;
  color: #888;
  white-space: nowrap;
}

.route-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 5px;
}

.route-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: #CEA456;
  border-radius: 50%;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.route-btn:hover {
  background-color: #B08D48;
}

/* Why Choose Us Section */
.why-us {
  background-color: #EFECDD;
  padding: 100px 0;
}

.features {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 480px) {
  .features {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.feature-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature i {
  font-size: 1.5rem;
  color: #CEA456;
  background-color: #EFECDD;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.feature h3 {
  margin-bottom: 5px;
  color: #031723;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 480px) {
  .feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.car-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.car-image img {
  max-width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #CEA456;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.stars.testimonial-stars {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 15px;
  color: #333;
}

.quote.testimonial-quote {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 600;
  color: #031723;
}

.author.testimonial-author {
  font-size: 14px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-item.active .accordion-content {
  padding: 20px;
  max-height: 1000px;
}

.accordion-item.active .icon i {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.accordion-header {
  padding: 20px;
  background-color: #FFFFFF;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.accordion-header h3 {
  font-size: 1.1rem;
  color: #031723;
}

.icon {
  color: #CEA456;
}

.accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  background-color: #f9f9f9;
}

/* Footer */
footer {
  background-color: #031723;
  color: #FFFFFF;
  padding: 80px 0 20px;
}

.footer-content {
  margin-bottom: 50px;
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.contact-info {
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.contact-info i {
  color: #CEA456;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #0A283A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.social-links a:hover {
  background-color: #CEA456;
}

.social-links i {
  font-size: 1.2rem;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #0A283A;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Whatsapp Float Button */
.float-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.float-whatsapp:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  /* Grouped media queries */
}

@media (max-width: 768px) {
  /* Grouped media queries */
  .service-item,
  .location-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .services-grid,
  .locations-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  /* Grouped media queries */
}

@media (max-width: 576px) {
  /* Grouped media queries */
}

.tour-info {
  width: 100%;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eaeaea;
}

.tour-info p {
  text-align: center;
  color: #031723;
  font-weight: 500;
}

.tours-row {
  display: block;
}

/* Calendar Dropdown Styles - Removed as marked unused */
/*
.calendar-dropdown,
.calendar-header,
.calendar-nav-btn,
.calendar-nav-btn:hover,
.calendar-weekdays,
.calendar-weekday,
.calendar-grid,
.calendar-day,
.calendar-day:hover,
.calendar-day.empty,
.calendar-day.today,
.calendar-day.selected {
    display: none;
} 
*/
/* Testimonial Section */
.testimonial-section {
  margin-top: 60px;
  background-color: #f9f9f9;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section:before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: rgba(206, 164, 86, 0.05);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  z-index: 0;
}

.testimonial-section:after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(26, 53, 79, 0.03);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  z-index: 0;
}

.testimonial-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #031723;
  position: relative;
  z-index: 1;
}

.testimonial-section h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #CEA456;
  margin: 15px auto 0;
}

.testimonial-carousel {
  position: relative;
  padding: 20px 0;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
}

.testimonial-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-bottom: 5px;
}

.testimonial-container:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.testimonial-container * {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.testimonial-container::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.testimonial-card {
  min-width: calc(33.333% - 17px);
  width: calc(33.333% - 17px);
  background-color: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-height: 250px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

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

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 80px;
  color: rgba(206, 164, 86, 0.1);
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

@media (max-width: 992px) {
  .testimonial-card {
    min-width: calc(50% - 13px);
    width: calc(50% - 13px);
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 280px;
    width: 280px;
    padding: 20px;
    min-height: 240px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    min-width: 260px;
    min-height: 260px;
  }
}

.platform-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.platform-logo {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}

.platform-logo:after {
  content: "✓ Verified";
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0;
  font-size: 11px;
  color: #888;
  font-weight: 400;
}

.platform-logo.google-logo {
  color: #4285F4;
}

.platform-logo.google-logo:before {
  content: "Google Review";
}

.platform-logo.trustpilot-logo {
  color: #00B67A;
}

.platform-logo.trustpilot-logo:before {
  content: "Trustpilot";
}

.platform-logo.yandex-logo {
  color: #FF0000;
}

.platform-logo.yandex-logo:before {
  content: "Yandex Maps";
}

.platform-logo.tripadvisor-logo {
  color: #00AA6C;
}

.platform-logo.tripadvisor-logo:before {
  content: "TripAdvisor";
}

.platform-logo.provenexpert-logo {
  color: #0077B5;
}

.platform-logo.provenexpert-logo:before {
  content: "ProvenExpert";
}

.testimonial-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
  position: relative;
  z-index: 1;
}

.date {
  font-size: 12px;
  color: #888;
}

.testimonial-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}

.testimonial-prev,
.testimonial-next {
  pointer-events: auto;
}

.review-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .review-summary {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .review-summary {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .review-summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}

.summary-stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #031723;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-value span {
  font-size: 18px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .stat-value {
    font-size: 30px;
  }
}

.stat-label {
  font-size: 14px;
  color: #555;
}

/* Tours Page Specific Styles (Only on turlar.html) */
/* Featured Tour Section */
.featured-tour {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  /* Nested highlight styles specific to featured tour */
}

.featured-tour::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: #004aad;
  opacity: 0.1;
  border-radius: 50%;
}

.featured-tour .highlight-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.featured-tour .highlight-item i {
  color: #004aad;
  font-size: 20px;
}

.featured-tour .highlight-item span {
  color: #444;
  font-weight: 500;
}

.featured-tour-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-tour-link:hover {
  text-decoration: none;
  color: inherit;
}

.featured-tour-link:hover .featured-tour-content {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
          box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.featured-tour-link:hover .featured-cta {
  background-color: #031723;
}

.featured-tour-link:hover .featured-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.featured-tour-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.2fr 1fr;
      grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .featured-tour-content {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 30px;
  }
}

.featured-tour-info {
  padding-right: 50px;
}

.featured-tour-info h2 {
  text-align: left;
  /* Override general h2 center alignment */
  font-size: 42px;
  margin-bottom: 25px;
  color: #222;
  line-height: 1.2;
}

.featured-tour-info h2:after {
  content: none;
  /* Remove underline from general h2 */
}

@media (max-width: 768px) {
  .featured-tour-info h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .featured-tour-info h2 {
    font-size: 28px;
  }
}

.featured-tour-info p {
  text-align: left;
  /* Override potential center alignment */
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .featured-tour-info p {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .featured-tour-info {
    padding-right: 0;
  }
}

.featured-label {
  display: inline-block;
  background-color: #004aad;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-highlights {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-image img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

@media (max-width: 992px) {
  .featured-image img {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .featured-image img {
    height: 300px;
  }
}

.featured-image:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.featured-price-tag {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background-color: #004aad;
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  -webkit-box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
          box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

.featured-price-tag small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .featured-price-tag {
    font-size: 20px;
    padding: 10px 20px;
  }
}

.featured-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  background-color: #004aad;
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.featured-cta:hover {
  background-color: #003a8a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.featured-cta i {
  font-size: 20px;
}

@media (max-width: 576px) {
  .featured-cta {
    font-size: 16px;
    padding: 14px 28px;
  }
}

/* Tour Categories */
.tour-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px 0 40px;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 576px) {
  .tour-categories {
    gap: 10px;
  }
}

.tour-category {
  padding: 14px 28px;
  background-color: #f5f5f5;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tour-category.active {
  background-color: #004aad;
  color: white;
}

.tour-category:hover:not(.active) {
  border-color: #004aad;
  color: #004aad;
}

@media (max-width: 576px) {
  .tour-category {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Tours Grid */
.tours-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(380px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

@media (max-width: 768px) {
  .tours-grid {
    -ms-grid-columns: (minmax(320px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 480px) {
  .tours-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    /* Single column on smallest screens */
    margin: 40px 0;
  }
}

.tour-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 20px);
          flex: 0 0 calc(33.333% - 20px);
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 992px) {
  .tour-card-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .tour-card-link {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.tour-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.tour-card-link:hover .tour-card {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tour-card-link:hover .book-btn {
  background-color: #031723;
}

.tour-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tour-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.tour-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

@media (max-width: 480px) {
  .tour-image {
    height: 200px;
  }
}

.tour-duration {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(0, 74, 173, 0.9);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.tour-category-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #004aad;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.tour-body {
  padding: 30px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tour-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
  font-weight: 600;
  line-height: 1.3;
}

.tour-description {
  color: #666;
  margin-bottom: 25px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.6;
}

.tour-features {
  margin-bottom: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 768px) {
  .tour-features {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.tour-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #555;
}

.tour-feature i {
  color: #004aad;
  font-size: 18px;
  width: auto;
}

.tour-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.tour-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.tour-price .price-amount {
  /* Scoped */
  font-size: 28px;
  font-weight: 700;
  color: #004aad;
}

.tour-price .price-type {
  /* Scoped */
  font-size: 14px;
  color: #888;
  margin-top: 4px;
}

.book-btn {
  background-color: #004aad;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.book-btn:hover {
  background-color: #003a8a;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Additional Tour Page Sections */
.section-info {
  margin: 60px 0;
  text-align: center;
}

.section-info h2 {
  margin-bottom: 20px;
}

.contact-cta {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  margin-bottom: 60px;
}

.contact-cta h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.contact-cta p {
  margin-bottom: 25px;
  color: #666;
}

.whatsapp-cta {
  background-color: #25D366;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.whatsapp-cta i {
  margin-right: 10px;
  font-size: 20px;
}

.whatsapp-cta:hover {
  background-color: #1fba57;
}

/* Benefits Section */
.benefits-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.benefits-section h2 {
  /* Keep general h2 styles */
}

.benefits-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.benefit-card {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
  .benefit-card {
    padding: 25px;
  }
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: #004aad;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 32px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

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

/* Enhanced CTA Section */
.enhanced-cta {
  background: linear-gradient(135deg, #004aad, #0066ff);
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.enhanced-cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  color: white;
  /* Override default h2 color */
}

.enhanced-cta h2:after {
  background: white;
  /* Override default h2 underline color */
}

@media (max-width: 576px) {
  .enhanced-cta h2 {
    font-size: 28px;
  }
}

.enhanced-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (max-width: 576px) {
  .enhanced-cta p {
    font-size: 16px;
  }
}

.cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

@media (max-width: 768px) {
  .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cta-primary {
  background: white;
  color: #004aad;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.cta-primary:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cta-primary {
    width: 80%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-primary {
    width: 90%;
  }
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-secondary {
    width: 80%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-secondary {
    width: 90%;
  }
}

/* Reviews Section */
.reviews-section {
  padding: 80px 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.reviews-section:before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: rgba(206, 164, 86, 0.05);
  border-radius: 50%;
  top: -150px;
  left: -150px;
}

.reviews-section:after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background-color: rgba(26, 53, 79, 0.03);
  border-radius: 50%;
  bottom: -200px;
  right: -200px;
}

.reviews-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.platform-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

@media (max-width: 768px) {
  .platform-logos {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .platform-logos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.platform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  color: #555;
  font-size: 16px;
  opacity: 0.85;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.platform i {
  margin-right: 8px;
  font-size: 18px;
}

.platform:hover {
  opacity: 1;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media (max-width: 768px) {
  .platform {
    font-size: 14px;
  }
}

.reviews-container {
  position: relative;
  margin-bottom: 50px;
}

.reviews-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 15px 0 35px;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  cursor: -webkit-grab;
  cursor: grab;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.review-card {
  min-width: 350px;
  max-width: 350px;
  background-color: #FFFFFF;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.review-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .review-card {
    min-width: 300px;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .review-card {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .review-card {
    min-width: 260px;
    max-width: 260px;
  }
}

.review-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
}

.reviewer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f0f0f0;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 16px;
  margin-right: 15px;
}

@media (max-width: 480px) {
  .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

.reviewer-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reviewer-name {
  font-weight: 600;
  color: #031723;
  font-size: 16px;
  margin-bottom: 3px;
}

.review-date {
  font-size: 13px;
  color: #888;
}

.platform-badge {
  font-size: 18px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.platform-badge.google {
  color: #4285F4;
}

.platform-badge.trustpilot {
  color: #00B67A;
}

.platform-badge.tripadvisor {
  color: #00AA6C;
}

.platform-badge.yandex {
  color: #FF0000;
}

.review-rating {
  color: #CEA456;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
  min-height: 90px;
}

@media (max-width: 768px) {
  .review-text {
    min-height: 110px;
  }
}

.review-verified {
  font-size: 13px;
  color: #00B67A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review-verified i {
  margin-right: 5px;
}

.reviews-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.reviews-prev,
.reviews-next {
  pointer-events: auto;
}

.review-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .review-summary {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .review-summary {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .review-summary {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}

.summary-stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.stat-value {
  font-size: 36px;
  font-weight: 700;
  color: #031723;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-value span {
  font-size: 18px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .stat-value {
    font-size: 30px;
  }
}

.stat-label {
  font-size: 14px;
  color: #555;
}

.tour-detail {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
}

.tour-detail::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/sapanca-bg.jpg");
  background-size: cover;
  background-position: center;
  -webkit-filter: brightness(0.3);
          filter: brightness(0.3);
  z-index: -1;
}

.tour-detail header {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 100;
  padding: 15px 0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.tour-hero {
  height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-top: 60px;
}

.tour-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.tour-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.tour-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.tour-highlights {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #fff;
  border-radius: 30px;
  padding: 15px 0;
}

.tour-highlights .highlight-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px;
  color: #fff;
}

.tour-highlights .highlight-item span {
  font-size: 14px;
  color: black;
  font-weight: 600;
}

.tour-highlights .highlight-item i {
  margin-right: 10px;
  color: #004aad;
}

.tour-price-tag {
  background: #004aad;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 20px;
}

.content-section {
  background: #fff;
  padding: 60px 0;
}

.content-section .tour-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section .tour-content .tour-overview {
  margin-bottom: 50px;
}

.content-section .tour-content .section-title {
  color: #004aad;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.content-section .tour-content .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: #004aad;
}

.content-section .tour-content .tour-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  margin: 40px 0;
}

.content-section .tour-content .tour-images .tour-image {
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.content-section .tour-content .tour-images .tour-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.content-section .tour-content .tour-images .tour-image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.content-section .tour-content .tour-program {
  margin-bottom: 50px;
}

.content-section .tour-content .tour-program .program-timeline {
  position: relative;
  margin-left: 30px;
  padding-left: 30px;
  border-left: 2px solid #e1e1e1;
}

.content-section .tour-content .tour-program .program-timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.content-section .tour-content .tour-program .program-timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.content-section .tour-content .tour-program .program-timeline .timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #004aad;
  border: 4px solid #fff;
  -webkit-box-shadow: 0 0 0 2px #004aad;
          box-shadow: 0 0 0 2px #004aad;
}

.content-section .tour-content .tour-program .program-timeline .timeline-item .timeline-time {
  font-weight: 600;
  color: #004aad;
  margin-bottom: 10px;
}

.content-section .tour-content .tour-details-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 50px;
  margin-bottom: 50px;
}

.content-section .tour-content .tour-details-grid .detail-list {
  list-style: none;
  padding: 0;
}

.content-section .tour-content .tour-details-grid .detail-list li {
  padding: 10px 0;
  border-bottom: 1px solid #f1f1f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-section .tour-content .tour-details-grid .detail-list li i {
  color: #004aad;
  margin-right: 15px;
  margin-top: 5px;
}

.content-section .tour-content .tour-details-grid .detail-list .included i {
  color: #4CAF50;
}

.content-section .tour-content .tour-details-grid .detail-list .excluded i {
  color: #F44336;
}

.tour-booking {
  background: #f9f9f9;
  padding: 60px 0;
  text-align: center;
}

.tour-booking .booking-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.tour-booking .booking-container .booking-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 20px;
}

.tour-booking .booking-container .price-note {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
}

.tour-booking .booking-container .booking-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tour-booking .booking-container .booking-cta .booking-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.tour-booking .booking-container .booking-cta .booking-button.booking-primary {
  background: #004aad;
  color: #fff;
}

.tour-booking .booking-container .booking-cta .booking-button.booking-primary:hover {
  background: #003c8a;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 74, 173, 0.2);
          box-shadow: 0 10px 20px rgba(0, 74, 173, 0.2);
}

.tour-booking .booking-container .booking-cta .booking-button.booking-secondary {
  background: #fff;
  color: #004aad;
  border: 2px solid #004aad;
}

.tour-booking .booking-container .booking-cta .booking-button.booking-secondary:hover {
  background: #f1f7ff;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tour-booking .booking-container .booking-cta .booking-button i {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .tour-hero-content h1 {
    font-size: 2.2rem;
  }
  .tour-highlights .highlight-item {
    margin: 10px;
  }
  .tour-details-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .booking-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .booking-button {
    width: 100%;
  }
}

/* Contact Page Styles */
.content-section {
  padding: 80px 0;
  background-color: #fff;
  /* Contact Cards */
  /* WhatsApp CTA */
  /* Office Info */
  /* FAQ Section */
}

.content-section .contact-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .content-section .contact-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.content-section .contact-cards .contact-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

@media (max-width: 992px) {
  .content-section .contact-cards .contact-card {
    max-width: 100%;
    width: 100%;
  }
}

.content-section .contact-cards .contact-card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.content-section .contact-cards .contact-card.highlight {
  background: #004aad;
  color: white;
}

.content-section .contact-cards .contact-card.highlight h3,
.content-section .contact-cards .contact-card.highlight a {
  color: white;
}

.content-section .contact-cards .contact-card.highlight .card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.content-section .contact-cards .contact-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: #004aad;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.content-section .contact-cards .contact-card h3 {
  margin-bottom: 10px;
  color: #004aad;
}

.content-section .contact-cards .contact-card p {
  margin-bottom: 15px;
  color: inherit;
  opacity: 0.8;
}

.content-section .contact-cards .contact-card a {
  display: block;
  font-weight: 600;
  color: #004aad;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.content-section .contact-cards .contact-card a:hover {
  color: #0066cc;
}

.content-section .whatsapp-cta {
  padding: 0;
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 80px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.content-section .whatsapp-cta .cta-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (max-width: 992px) {
  .content-section .whatsapp-cta .cta-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content-section .whatsapp-cta .cta-content .cta-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 500px;
  min-height: 400px;
}

.content-section .whatsapp-cta .cta-content .cta-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.content-section .whatsapp-cta .cta-content .cta-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .content-section .whatsapp-cta .cta-content .cta-text {
    padding: 30px;
  }
}

.content-section .whatsapp-cta .cta-content .cta-text h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #004aad;
}

.content-section .whatsapp-cta .cta-content .cta-text p {
  margin-bottom: 25px;
  line-height: 1.8;
  color: #000000;
}

.content-section .whatsapp-cta .cta-content .cta-text .whatsapp-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  gap: 15px;
}

@media (max-width: 992px) {
  .content-section .whatsapp-cta .cta-content .cta-text .whatsapp-benefits {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.content-section .whatsapp-cta .cta-content .cta-text .whatsapp-benefits li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  font-weight: 600;
}

.content-section .whatsapp-cta .cta-content .cta-text .whatsapp-benefits li i {
  color: #25D366;
  margin-right: 10px;
}

.content-section .whatsapp-cta .cta-content .cta-text .whatsapp-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.content-section .whatsapp-cta .cta-content .cta-text .whatsapp-button:hover {
  background: #128C7E;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.content-section .whatsapp-cta .cta-content .cta-text .whatsapp-button i {
  font-size: 20px;
  margin-right: 10px;
}

.content-section .office-info {
  margin-bottom: 80px;
}

.content-section .office-info .info-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 50px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .content-section .office-info .info-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content-section .office-info .info-content .map-container {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  min-height: 450px;
}

.content-section .office-info .info-content .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  .content-section .office-info .info-content .map-container {
    min-height: 350px;
  }
}

.content-section .office-info .info-content .office-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f8f9fa;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .content-section .office-info .info-content .office-details {
    padding: 30px;
  }
}

.content-section .office-info .info-content .office-details h2 {
  margin-bottom: 30px;
  color: #004aad;
}

.content-section .office-info .info-content .office-details .detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.content-section .office-info .info-content .office-details .detail-item i {
  font-size: 24px;
  color: #004aad;
  margin-right: 20px;
  width: 24px;
  text-align: center;
}

.content-section .office-info .info-content .office-details .detail-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.content-section .office-info .info-content .office-details .detail-item p {
  line-height: 1.6;
  color: #555;
}

.content-section .faq-section {
  margin-bottom: 80px;
}

.content-section .faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #004aad;
}

.content-section .faq-section .faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.content-section .faq-section .faq-container .faq-item {
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.content-section .faq-section .faq-container .faq-item.active .faq-question i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.content-section .faq-section .faq-container .faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 30px;
}

.content-section .faq-section .faq-container .faq-item .faq-question {
  padding: 20px 30px;
  background: #f8f9fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.content-section .faq-section .faq-container .faq-item .faq-question:hover {
  background: #e9ecef;
}

.content-section .faq-section .faq-container .faq-item .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.content-section .faq-section .faq-container .faq-item .faq-question i {
  color: #004aad;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.content-section .faq-section .faq-container .faq-item .faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease, padding 0.3s ease;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .content-section {
    padding: 60px 0;
  }
}

/* About Page Styles */
.content-section {
  padding: 80px 0;
  background-color: #fff;
  /* Mission Vision */
  /* Features Grid */
  /* Values */
  /* Testimonials */
  /* CTA */
}

@media (max-width: 768px) {
  .content-section {
    padding: 60px 0;
  }
}

.content-section .about-section {
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .content-section .about-section {
    margin-bottom: 60px;
  }
}

.content-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.content-section .section-header .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-top: -15px;
}

.content-section .about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

@media (max-width: 992px) {
  .content-section .about-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content-section .about-content .about-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.content-section .about-content .about-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #444;
}

.content-section .about-content .about-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section .about-content .about-image img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.content-section .about-content .about-image img:hover {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.content-section .mission-vision {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .content-section .mission-vision {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.content-section .mission-vision .mission-box,
.content-section .mission-vision .vision-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.content-section .mission-vision .mission-box:hover,
.content-section .mission-vision .vision-box:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.content-section .mission-vision .mission-box .icon-container,
.content-section .mission-vision .vision-box .icon-container {
  width: 80px;
  height: 80px;
  background: #004aad;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
}

.content-section .mission-vision .mission-box .icon-container i,
.content-section .mission-vision .vision-box .icon-container i {
  color: white;
  font-size: 30px;
}

.content-section .mission-vision .mission-box h3,
.content-section .mission-vision .vision-box h3 {
  margin-bottom: 15px;
  color: #004aad;
}

.content-section .features-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .content-section .features-grid {
    -ms-grid-columns: (minmax(100%, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

.content-section .features-grid .feature-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.content-section .features-grid .feature-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.content-section .features-grid .feature-item .feature-icon {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 20px;
}

.content-section .features-grid .feature-item .feature-icon i {
  color: #004aad;
  font-size: 28px;
}

.content-section .features-grid .feature-item h3 {
  margin-bottom: 15px;
  color: #333;
}

.content-section .values-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .content-section .values-container {
    -ms-grid-columns: (minmax(100%, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  }
}

.content-section .values-container .value-item {
  position: relative;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.content-section .values-container .value-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.content-section .values-container .value-item .value-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 74, 173, 0.1);
}

.content-section .values-container .value-item h3 {
  margin-bottom: 15px;
  color: #004aad;
  position: relative;
  z-index: 1;
}

.content-section .testimonials-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .content-section .testimonials-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.content-section .testimonials-container .testimonial {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.content-section .testimonials-container .testimonial:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.content-section .testimonials-container .testimonial .testimonial-content {
  padding: 30px;
  position: relative;
}

.content-section .testimonials-container .testimonial .testimonial-content::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(0, 74, 173, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.content-section .testimonials-container .testimonial .testimonial-content p {
  position: relative;
  z-index: 1;
}

.content-section .testimonials-container .testimonial .testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  background: #f8f9fa;
}

.content-section .testimonials-container .testimonial .testimonial-info .testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.content-section .testimonials-container .testimonial .testimonial-info .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-section .testimonials-container .testimonial .testimonial-info .testimonial-stars {
  color: #FFD700;
  margin-top: 5px;
}

.content-section .about-cta {
  background: linear-gradient(135deg, #004aad 0%, #0066cc 100%);
  padding: 60px;
  border-radius: 15px;
  text-align: center;
  color: white;
}

@media (max-width: 768px) {
  .content-section .about-cta {
    padding: 40px 20px;
  }
}

.content-section .about-cta h2 {
  margin-bottom: 20px;
  color: white;
}

.content-section .about-cta h2::after {
  background: rgba(255, 255, 255, 0.5);
}

.content-section .about-cta p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.content-section .about-cta .cta-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .content-section .about-cta .cta-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
}

.content-section .about-cta .cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-section .about-cta .cta-button i {
  margin-right: 10px;
}

.content-section .about-cta .cta-button.primary {
  background: #25D366;
  color: white;
}

.content-section .about-cta .cta-button.primary:hover {
  background: #128C7E;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.content-section .about-cta .cta-button.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.content-section .about-cta .cta-button.secondary:hover {
  background: white;
  color: #004aad;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

.search-item.time-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 150px;
}

.search-item.time-item .time-select {
  width: 100%;
  height: 45px;
  padding: 0 15px 0 40px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 15px center;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.search-item.time-item .time-select:focus {
  outline: none;
  border-color: #3f78e0;
  -webkit-box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.2);
          box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.2);
}

.reservation-page {
  padding: 60px 0 60px;
  background-color: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.reservation-page .container {
  max-width: 900px;
  margin: 0 auto;
}

.reservation-page .reservation-progress {
  margin-bottom: 30px;
}

.reservation-page .reservation-progress .progress-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.reservation-page .reservation-progress .progress-steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

.reservation-page .reservation-progress .progress-steps .step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e9ecef;
  color: #6c757d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.reservation-page .reservation-progress .progress-steps .step .step-title {
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.reservation-page .reservation-progress .progress-steps .step.active .step-number {
  background-color: #3f78e0;
  color: #fff;
}

.reservation-page .reservation-progress .progress-steps .step.active .step-title {
  color: #3f78e0;
  font-weight: 600;
}

.reservation-page .reservation-progress .progress-steps .step-connector {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 2px;
  background-color: #e9ecef;
  margin: 0 10px;
  position: relative;
  top: -20px;
  z-index: 0;
}

.reservation-page .reservation-content {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.reservation-page .reservation-content h2 {
  font-size: 24px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 25px;
  text-align: center;
}

.reservation-page .reservation-content .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
}

.reservation-page .reservation-content .form-row .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 280px;
          flex: 1 0 280px;
  padding: 0 10px;
  margin-bottom: 20px;
}

.reservation-page .reservation-content .form-group {
  margin-bottom: 20px;
}

.reservation-page .reservation-content .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 6px;
}

.reservation-page .reservation-content .form-group input,
.reservation-page .reservation-content .form-group select,
.reservation-page .reservation-content .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.reservation-page .reservation-content .form-group input:focus,
.reservation-page .reservation-content .form-group select:focus,
.reservation-page .reservation-content .form-group textarea:focus {
  outline: none;
  border-color: #3f78e0;
  -webkit-box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.2);
          box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.2);
}

.reservation-page .reservation-content .form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.reservation-page .reservation-content .form-group .input-with-icon {
  position: relative;
}

.reservation-page .reservation-content .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #718096;
  z-index: 1;
}

.reservation-page .reservation-content .form-group .input-with-icon i.green-marker {
  color: #48bb78;
}

.reservation-page .reservation-content .form-group .input-with-icon i.blue-marker {
  color: #4299e1;
}

.reservation-page .reservation-content .form-group .input-with-icon input,
.reservation-page .reservation-content .form-group .input-with-icon select {
  padding-left: 40px;
}

.reservation-page .reservation-content .trip-summary {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 25px;
}

.reservation-page .reservation-content .trip-summary .summary-title {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.reservation-page .reservation-content .trip-summary .summary-details .summary-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.reservation-page .reservation-content .trip-summary .summary-details .summary-row span:first-child {
  color: #718096;
}

.reservation-page .reservation-content .trip-summary .summary-details .summary-row span:last-child {
  color: #2d3748;
}

.reservation-page .reservation-content .trip-summary .summary-details .summary-row.total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
  font-size: 16px;
  font-weight: 600;
}

.reservation-page .reservation-content .trip-summary .summary-details .summary-row.total span:last-child {
  color: #3f78e0;
}

.reservation-page .reservation-content .price-summary {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 20px 0;
}

.reservation-page .reservation-content .price-summary .price-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reservation-page .reservation-content .price-summary .price-info .price-label {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
}

.reservation-page .reservation-content .price-summary .price-info .price-amount {
  font-size: 20px;
  font-weight: 700;
  color: #3f78e0;
}

.reservation-page .reservation-content .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

.reservation-page .reservation-content .form-actions .back-btn,
.reservation-page .reservation-content .form-actions .continue-btn,
.reservation-page .reservation-content .form-actions .confirm-btn {
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.reservation-page .reservation-content .form-actions .back-btn {
  background-color: #e2e8f0;
  color: #4a5568;
  border: none;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reservation-page .reservation-content .form-actions .back-btn:hover {
  background-color: #cbd5e0;
}

.reservation-page .reservation-content .form-actions .continue-btn {
  background-color: #3f78e0;
  color: #fff;
  border: none;
}

.reservation-page .reservation-content .form-actions .continue-btn:hover {
  background-color: #3667be;
}

.reservation-page .reservation-content .form-actions .confirm-btn {
  background-color: #48bb78;
  color: #fff;
  border: none;
}

.reservation-page .reservation-content .form-actions .confirm-btn:hover {
  background-color: #38a169;
}

.reservation-page .reservation-content .payment-options {
  margin: 20px 0;
}

.reservation-page .reservation-content .payment-options .payment-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.reservation-page .reservation-content .payment-options .payment-option:hover {
  border-color: #cbd5e0;
}

.reservation-page .reservation-content .payment-options .payment-option input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-right: 15px;
  cursor: pointer;
}

.reservation-page .reservation-content .payment-options .payment-option label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: #2d3748;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.reservation-page .reservation-content .payment-options .payment-option label i {
  margin-right: 12px;
  font-size: 18px;
  color: #3f78e0;
}

.reservation-page .reservation-content .payment-options .payment-option label .coming-soon {
  margin-left: 10px;
  font-size: 13px;
  background-color: #fed7d7;
  color: #e53e3e;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.reservation-page .reservation-content .payment-options .payment-option input[type="radio"]:checked + label {
  color: #3f78e0;
}

.reservation-page .reservation-content .payment-options .payment-option label.disabled-payment {
  color: #a0aec0;
}

.reservation-page .reservation-content .payment-options .payment-option label.disabled-payment i {
  color: #a0aec0;
}

.reservation-page .reservation-content .confirmation-details .confirmation-section {
  margin-bottom: 25px;
}

.reservation-page .reservation-content .confirmation-details .confirmation-section h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}

.reservation-page .reservation-content .confirmation-details .confirmation-section .detail-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.reservation-page .reservation-content .confirmation-details .confirmation-section .detail-row .detail-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  font-weight: 500;
  color: #718096;
}

.reservation-page .reservation-content .confirmation-details .confirmation-section .detail-row .detail-value {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #2d3748;
}

.reservation-page .reservation-content .confirmation-details .price-total {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.reservation-page .reservation-content .confirmation-details .price-total .total-label {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
}

.reservation-page .reservation-content .confirmation-details .price-total .total-amount {
  font-size: 24px;
  font-weight: 700;
  color: #3f78e0;
}

.reservation-page .reservation-content .success-step {
  text-align: center;
  padding: 30px 0;
}

.reservation-page .reservation-content .success-step .success-icon {
  font-size: 70px;
  color: #48bb78;
  margin-bottom: 20px;
}

.reservation-page .reservation-content .success-step h2 {
  color: #2d3748;
  margin-bottom: 15px;
}

.reservation-page .reservation-content .success-step p {
  color: #4a5568;
  font-size: 16px;
  margin-bottom: 10px;
}

.reservation-page .reservation-content .success-step p.reservation-number {
  font-size: 18px;
  margin: 20px 0;
}

.reservation-page .reservation-content .success-step .success-actions {
  margin-top: 30px;
}

.reservation-page .reservation-content .success-step .success-actions .home-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #3f78e0;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.reservation-page .reservation-content .success-step .success-actions .home-btn:hover {
  background-color: #3667be;
}

@media (max-width: 768px) {
  .reservation-page {
    padding: 30px 0 40px;
  }
  .reservation-page .reservation-progress .progress-steps .step .step-title {
    font-size: 12px;
  }
  .reservation-page .reservation-content {
    padding: 20px;
  }
  .reservation-page .reservation-content h2 {
    font-size: 20px;
  }
  .reservation-page .reservation-content .form-row .form-group {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
  .reservation-page .reservation-content .form-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .reservation-page .reservation-content .form-actions .back-btn,
  .reservation-page .reservation-content .form-actions .continue-btn,
  .reservation-page .reservation-content .form-actions .confirm-btn {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .reservation-page .reservation-content .confirmation-details .confirmation-section .detail-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reservation-page .reservation-content .confirmation-details .confirmation-section .detail-row .detail-label {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 5px;
  }
  .reservation-page .reservation-content .confirmation-details .price-total {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

.autocomplete-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-height: 300px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  margin-top: 1px;
  border: 1px solid #e2e8f0;
}

.autocomplete-container .autocomplete-item {
  padding: 12px 40px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 14px;
  line-height: 1.4;
  color: #718096;
}

.autocomplete-container .autocomplete-item:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

.autocomplete-container .autocomplete-item strong {
  color: #2d3748;
  font-weight: 600;
}

.autocomplete-container .autocomplete-item i {
  margin-right: 12px;
  color: #3f78e0;
  font-size: 16px;
  margin-top: 2px;
  min-width: 16px;
}

.autocomplete-container .autocomplete-item i.fa-plane-departure {
  color: #f59e0b;
}

.autocomplete-container .autocomplete-item .location-address {
  font-size: 12px;
  color: #718096;
  margin-left: 5px;
}

.autocomplete-container .autocomplete-item:hover {
  background-color: #f8fafc;
}

.autocomplete-container .autocomplete-item.selected {
  background-color: #f0f7ff;
}

@media (max-width: 480px) {
  .autocomplete-container .autocomplete-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
}

.autocomplete-container::-webkit-scrollbar {
  width: 6px;
}

.autocomplete-container::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 0 0 8px 0;
}

.autocomplete-container::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.autocomplete-container::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

@media (max-width: 480px) {
  .autocomplete-container {
    width: 100%;
  }
}

.admin-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  background-color: #f8f9fa;
  font-family: 'Poppins', sans-serif;
}

.admin-header {
  background-color: white;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-header .admin-header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.admin-header .admin-header-content h1 {
  font-size: 24px;
  margin: 0;
  color: #2d3748;
}

.admin-header .admin-header-content .admin-header-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container {
  position: relative;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container input {
  background-color: #f5f7fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 40px 10px 15px;
  font-size: 14px;
  width: 280px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container input:focus {
  outline: none;
  border-color: #3f78e0;
  -webkit-box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.1);
          box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.1);
  background-color: white;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container input::-webkit-input-placeholder {
  color: #a0aec0;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container input:-ms-input-placeholder {
  color: #a0aec0;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container input::-ms-input-placeholder {
  color: #a0aec0;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container input::placeholder {
  color: #a0aec0;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container .search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  color: #a0aec0;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 10px;
}

.admin-header .admin-header-content .admin-header-actions .search-form .search-input-container .search-button:hover {
  color: #3f78e0;
}

.admin-header .admin-header-content .admin-header-actions .back-to-site {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8f9fa;
  color: #4a5568;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.admin-header .admin-header-content .admin-header-actions .back-to-site i {
  margin-right: 8px;
}

.admin-header .admin-header-content .admin-header-actions .back-to-site:hover {
  background-color: #edf2f7;
  color: #2d3748;
}

.admin-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
  width: 100%;
}

.status-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.status-filters .status-filter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
  padding: 10px 20px;
  border-radius: 8px;
  color: #4a5568;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.status-filters .status-filter:hover {
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.status-filters .status-filter.active {
  border-color: #3f78e0;
  background-color: #ebf4ff;
  color: #2952a3;
  font-weight: 600;
}

.status-filters .status-filter.status-warning.active {
  border-color: #ed8936;
  background-color: #fffaf0;
  color: #c05621;
}

.status-filters .status-filter.status-success.active {
  border-color: #48bb78;
  background-color: #f0fff4;
  color: #276749;
}

.status-filters .status-filter.status-primary.active {
  border-color: #4299e1;
  background-color: #ebf8ff;
  color: #2c5282;
}

.status-filters .status-filter.status-danger.active {
  border-color: #f56565;
  background-color: #fff5f5;
  color: #c53030;
}

.status-filters .status-filter .status-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #edf2f7;
  color: #4a5568;
  border-radius: 20px;
  padding: 0 10px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 500;
  height: 22px;
  min-width: 22px;
}

.empty-state {
  background-color: white;
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  margin: 20px 0;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.empty-state .empty-state-icon {
  font-size: 60px;
  color: #cbd5e0;
  margin-bottom: 20px;
}

.empty-state h2 {
  font-size: 24px;
  color: #2d3748;
  margin-bottom: 10px;
}

.empty-state p {
  color: #718096;
  max-width: 500px;
  margin: 0 auto 30px;
}

.empty-state .reset-filters-btn {
  display: inline-block;
  background-color: #edf2f7;
  color: #4a5568;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.empty-state .reset-filters-btn:hover {
  background-color: #e2e8f0;
  color: #2d3748;
}

.table-responsive {
  overflow-x: auto;
  background-color: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.reservations-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  font-size: 14px;
}

.reservations-table th,
.reservations-table td {
  padding: 14px 16px;
  text-align: left;
}

.reservations-table th {
  background-color: #f9fafb;
  color: #4a5568;
  font-weight: 600;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}

.reservations-table th:first-child {
  border-top-left-radius: 12px;
}

.reservations-table th:last-child {
  border-top-right-radius: 12px;
}

.reservations-table .sortable-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #4a5568;
  text-decoration: none;
}

.reservations-table .sortable-header i {
  font-size: 12px;
  color: #cbd5e0;
}

.reservations-table .sortable-header i.fa-sort-up, .reservations-table .sortable-header i.fa-sort-down {
  color: #3f78e0;
}

.reservations-table .sortable-header:hover {
  color: #3f78e0;
}

.reservations-table tbody tr {
  border-bottom: 1px solid #edf2f7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.reservations-table tbody tr:hover {
  background-color: #f9fafb;
}

.reservations-table tbody tr:last-child {
  border-bottom: none;
}

.reservations-table .id-column {
  font-weight: 600;
  color: #2d3748;
  width: 60px;
}

.reservations-table .route-column {
  max-width: 400px;
}

.reservations-table .route-column .origin,
.reservations-table .route-column .destination {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
  font-size: 13px;
}

.reservations-table .route-column .origin {
  font-weight: 500;
  color: #2d3748;
}

.reservations-table .route-column .destination {
  color: #4a5568;
}

.reservations-table .route-column .route-arrow {
  color: #a0aec0;
  margin: 2px 0;
  font-size: 11px;
}

.reservations-table .date-column,
.reservations-table .time-column {
  color: #4a5568;
  white-space: nowrap;
  text-align: center;
  font-size: 13px;
}

.reservations-table .price-column .price {
  font-weight: 600;
  color: #2d3748;
  text-align: right;
}

.reservations-table .price-column .price .currency {
  color: #a0aec0;
  font-weight: normal;
  margin-left: 2px;
  font-size: 12px;
}

.reservations-table .status-column .status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.reservations-table .status-column .status-badge.status-primary {
  background-color: #ebf8ff;
  color: #2c5282;
}

.reservations-table .status-column .status-badge.status-success {
  background-color: #f0fff4;
  color: #276749;
}

.reservations-table .status-column .status-badge.status-warning {
  background-color: #fffaf0;
  color: #c05621;
}

.reservations-table .status-column .status-badge.status-danger {
  background-color: #fff5f5;
  color: #c53030;
}

.reservations-table .status-column .status-badge.status-secondary {
  background-color: #f7fafc;
  color: #718096;
}

.reservations-table .actions-column {
  width: 90px;
}

.reservations-table .actions-column .action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.reservations-table .actions-column .action-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  background-color: #f7fafc;
  color: #718096;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.reservations-table .actions-column .action-btn:hover {
  background-color: #edf2f7;
}

.reservations-table .actions-column .action-btn.edit-btn:hover {
  background-color: #e6fffa;
  color: #319795;
}

.reservations-table .actions-column .action-btn.delete-btn:hover {
  background-color: #fff5f5;
  color: #e53e3e;
}

.admin-footer {
  margin-top: auto;
  background-color: white;
  border-top: 1px solid #edf2f7;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #a0aec0;
}

@media (max-width: 768px) {
  .reservations-table {
    font-size: 13px;
  }
  .reservations-table th,
  .reservations-table td {
    padding: 10px 12px;
  }
  .reservations-table .route-column {
    max-width: 180px;
  }
  .reservations-table .route-column .origin,
  .reservations-table .route-column .destination {
    max-width: 150px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .reservations-table .date-column,
  .reservations-table .time-column {
    font-size: 12px;
  }
  .reservations-table .route-column {
    max-width: 140px;
  }
  .reservations-table .route-column .origin,
  .reservations-table .route-column .destination {
    max-width: 120px;
  }
}

@media (max-width: 992px) {
  .admin-content {
    padding: 20px 15px;
  }
  .status-filters {
    gap: 10px;
  }
  .status-filters .status-filter {
    padding: 8px 15px;
    font-size: 13px;
  }
  .reservations-table .route-column {
    max-width: 200px;
  }
  .reservations-table .route-column .origin,
  .reservations-table .route-column .destination {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .status-filters {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .status-filters::-webkit-scrollbar {
    height: 4px;
  }
  .status-filters::-webkit-scrollbar-track {
    background: #f7fafc;
  }
  .status-filters::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 2px;
  }
  .reservations-table .contact-column .email {
    display: none;
  }
}

@media (max-width: 576px) {
  .admin-header .admin-header-content h1 {
    font-size: 20px;
  }
  .empty-state {
    padding: 40px 15px;
  }
  .empty-state .empty-state-icon {
    font-size: 50px;
  }
  .empty-state h2 {
    font-size: 20px;
  }
}

.edit-reservation-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 380px;
      grid-template-columns: 1fr 380px;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .edit-reservation-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.reservation-info-card,
.status-edit-card {
  background-color: white;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.card-header {
  padding: 20px;
  border-bottom: 1px solid #edf2f7;
  background-color: #f9fafb;
}

.card-header h2 {
  font-size: 18px;
  color: #2d3748;
  margin: 0;
}

.card-body {
  padding: 20px;
}

.info-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f5f7fb;
  padding-bottom: 15px;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-row .info-label {
  width: 150px;
  color: #718096;
  font-weight: 500;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.info-row .info-value {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #2d3748;
}

.info-row .info-value a {
  color: #4a5568;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-row .info-value a:hover {
  color: #3f78e0;
  text-decoration: underline;
}

.info-row .info-value a i {
  margin-right: 5px;
  color: #a0aec0;
}

.current-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf2f7;
}

.current-status .status-label {
  font-weight: 500;
  color: #718096;
  margin-right: 15px;
}

.status-form .form-group {
  margin-bottom: 25px;
}

.status-form .form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: #4a5568;
}

.status-form .form-group .form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #f9fafb;
  color: #4a5568;
  font-size: 15px;
  font-family: inherit;
}

.status-form .form-group .form-control:focus {
  outline: none;
  border-color: #3f78e0;
  -webkit-box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.1);
          box-shadow: 0 0 0 3px rgba(63, 120, 224, 0.1);
  background-color: white;
}

.status-form .form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.status-form .form-actions .update-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 24px;
  background-color: #3f78e0;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.status-form .form-actions .update-btn i {
  margin-right: 8px;
}

.status-form .form-actions .update-btn:hover {
  background-color: #2952a3;
}

.back-to-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f8f9fa;
  color: #4a5568;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.back-to-list i {
  margin-right: 8px;
}

.back-to-list:hover {
  background-color: #edf2f7;
  color: #2d3748;
}

.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 15px;
}

.alert.alert-success {
  background-color: #f0fff4;
  border: 1px solid #c6f6d5;
  color: #276749;
}

.alert.alert-error {
  background-color: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
}

@media (max-width: 768px) {
  .info-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .info-row .info-label {
    width: 100%;
  }
  .current-status {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

/* Custom Select Dropdown with Search */
.custom-select-container {
  position: relative;
  width: 100%;
}

.select-box {
  position: relative;
  width: 100%;
}

.select-selected {
  display: block;
  height: 48px;
  padding: 0 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  line-height: 48px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #555;
}

.select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  /* Increased z-index to ensure it's above other elements */
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Changed from just max-height to all */
  opacity: 0;
  visibility: hidden;
  display: block;
  /* Ensure the element is in the DOM */
}

.select-box.active .select-dropdown {
  max-height: 350px;
  opacity: 1;
  overflow-y: auto;
  visibility: visible;
  border: 1px solid #3f78e0;
  /* Add a highlight border when active */
}

.select-search {
  padding: 10px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 1;
}

.select-filter {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.select-options {
  padding: 0 0 10px;
}

.option-group {
  margin-bottom: 5px;
}

.option-header {
  padding: 10px;
  background-color: #f7f7f7;
  font-weight: bold;
  color: #666;
  font-size: 0.9em;
}

.option-item {
  padding: 10px 15px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.option-item:hover {
  background-color: #f1f1f1;
}

.option-item.selected {
  background-color: #e8f4fc;
  color: #0066cc;
}

.option-item.hide {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .select-dropdown {
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    border-radius: 0 0 12px 12px;
    z-index: 1050;
    max-height: 0;
    width: 100%;
    height: 50vh;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-top: none;
  }
  .select-box.active .select-dropdown {
    max-height: 50vh;
    height: auto;
  }
  .select-search {
    padding: 15px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1051;
  }
  .select-options {
    max-height: calc(50vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .option-header {
    padding: 12px 15px;
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    z-index: 1;
    background: #f7f7f7;
  }
  .option-item {
    padding: 15px;
    font-size: 16px;
  }
  /* Add backdrop for better UX */
  body.dropdown-active {
    overflow: hidden;
  }
  .dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    display: none;
  }
  .dropdown-backdrop.active {
    display: block;
  }
}

.price-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  width: 100%;
  padding: 0 15px 0 45px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  background-color: #f9f9f9;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.price-display span {
  margin-right: 2px;
}

.price-vertical-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.price-vertical-display .original-price {
  font-size: 0.95em;
  color: #777;
  text-decoration: line-through;
  font-weight: 500;
}

.price-vertical-display .discount-badge {
  background-color: #ff5252;
  color: white;
  font-size: 0.8em;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 3px 0;
  font-weight: 700;
}

.price-vertical-display .final-price {
  font-size: 1.6em;
  font-weight: 900;
  color: #2952a3;
  letter-spacing: -0.5px;
  margin-top: 2px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.price-summary-vertical .price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #f9fafe;
  padding: 10px 15px;
  border-radius: 8px;
  border-left: 3px solid #3f78e0;
}

.price-summary-vertical .price-container .price-label {
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
}

.price-summary-vertical .price-container .original-price {
  font-size: 0.95em;
  color: #777;
  text-decoration: line-through;
}

.price-summary-vertical .price-container .discount-badge {
  background-color: #ff5252;
  color: white;
  font-size: 0.75em;
  padding: 2px 6px;
  border-radius: 4px;
  margin: 3px 0;
}

.price-summary-vertical .price-container .final-price {
  font-size: 1.2em;
  font-weight: 700;
  color: #3f78e0;
}

.option-group {
  position: relative;
  margin-bottom: 10px;
}

.option-header {
  padding: 10px;
  background-color: #f7f7f7;
  font-weight: bold;
  color: #666;
  font-size: 0.9em;
}

.option-item {
  padding: 10px 15px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.option-item:hover {
  background-color: #f1f1f1;
}

.option-item.selected {
  background-color: #e8f4fc;
  color: #0066cc;
}

.option-item.hide {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .select-dropdown {
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    border-radius: 0 0 12px 12px;
    z-index: 1050;
    max-height: 0;
    width: 100%;
    height: 50vh;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-top: none;
  }
  .select-box.active .select-dropdown {
    max-height: 50vh;
    height: auto;
  }
  .select-search {
    padding: 15px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1051;
    border-bottom: 1px solid #eee;
  }
  .select-options {
    max-height: calc(50vh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
  }
  /* New approach for option headers */
  .option-group {
    position: relative;
    padding-top: 40px;
    /* Make space for header */
    margin-bottom: 0;
  }
  .option-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background-color: #f7f7f7;
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
  }
  .option-item {
    padding: 15px;
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
  }
  .option-item:last-child {
    border-bottom: none;
  }
  /* Add backdrop for better UX */
  body.dropdown-active {
    overflow: hidden;
  }
  .dropdown-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    display: none;
  }
  .dropdown-backdrop.active {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */