.gdpr-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 300px;
  background: #f0f0f0;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  font-size: 14px;
  display: none;
}
.gdpr-popup p {
  margin-bottom: 10px;
}
.gdpr-popup button {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 3px;
  cursor: pointer;
  margin-right: 10px;
  font-size: 12px;
}
.gdpr-popup button.decline {
  background: #f8f9fa;
  color: #212529;
  border: 1px solid #dee2e6;
}

/* Scroll to top button styles */
#scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-image: linear-gradient(
    26deg,
    rgb(255, 145, 41) 0%,
    /* Orange */ rgb(240, 103, 49) 25%,
    /* Dark Orange */ rgb(208, 107, 67) 50%,
    /* Burnt Orange */ rgb(255, 115, 149) 75%,
    /* Coral */ rgb(255, 159, 159) 100% /* Light Coral */
  ) !important;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

#scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-to-top:hover {
  background-image: linear-gradient(
    26deg,
    rgb(255, 145, 41) 0%,
    /* Orange */ rgb(240, 103, 49) 25%,
    /* Dark Orange */ rgb(208, 107, 67) 50%,
    /* Burnt Orange */ rgb(255, 115, 149) 75%,
    /* Coral */ rgb(255, 159, 159) 100% /* Light Coral */
  ) !important;
  transform: translateY(-3px);
}

/* Improve GDPR popup styling */
.gdpr-popup {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-select-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.custom-select {
  position: relative;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.custom-select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
}

.custom-select__trigger span {
  color: #333;
}

.arrow {
  position: relative;
  width: 12px;
  height: 12px;
  margin-left: auto;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(45deg);
  transition: transform 0.3s;
}

.custom-select.open .arrow {
  transform: rotate(-135deg);
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 2;
}

.custom-select.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.custom-option {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-option:hover {
  background: #f5f5f5;
}

.custom-option img {
  width: 60px;
  height: 40px;
  object-fit: contain;
  margin-right: 15px;
}

.option-text {
  display: flex;
  flex-direction: column;
}

.option-text strong {
  font-size: 14px;
  color: #333;
}

.option-text small {
  font-size: 12px;
  color: #666;
}

.hidden-select {
  display: none;
}

@media (max-width: 768px) {
  .custom-option {
    padding: 10px 15px;
  }

  .custom-option img {
    width: 50px;
    height: 35px;
  }
}

.booking-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
}

.booking-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.booking-form input.error {
  border-color: #ff3333;
}

.booking-form button {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#formMessage .success {
  color: #28a745;
  padding: 10px;
  margin-top: 10px;
}

#formMessage .error {
  color: #dc3545;
  padding: 10px;
  margin-top: 10px;
}

.booking-section {
  position: relative;
  max-height: 0;
  transform: translateY(-20px);
  opacity: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.booking-wrapper {
  display: none;
  width: 100%;
}

.booking-wrapper.active {
  display: block;
  transform: translateY(0);
  animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.is-logo-link[href^="tel"] {
  display: flex;
  align-items: center;
  gap: 8px;
  background-image: linear-gradient(
    45deg,
    rgb(255, 145, 41) 0%,
    rgb(255, 94, 58) 100%
  );
  color: rgb(0, 0, 0);
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.is-logo-link[href^="tel"]:before {
  content: "☎";
  font-size: 18px;
}

.is-logo-link[href^="tel"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: rgb(255, 235, 130);
}

.is-logo-link[href^="tel"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .is-logo-link[href^="tel"] {
    padding: 6px 15px;
    font-size: 14px;
  }
}

.is-topbar-container {
  max-width: 1080px;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  margin: 0 auto;
  gap: 20px;
}

.is-topbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.is-logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.is-photo-profile {
  height: 50px !important;
  width: auto !important;
  object-fit: contain;
}

.is-sitename {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .is-topbar-container {
    padding: 10px;
  }

  .is-sitename {
    font-size: 16px;
  }

  .is-photo-profile {
    height: 40px !important;
  }
}

@media (max-width: 480px) {
  .is-sitename {
    display: none;
  }

  .is-topbar-container {
    justify-content: space-between;
  }
}

/* Booking Button Styles */
#bookNowBtn {
  background-image: linear-gradient(
    45deg,
    rgb(255, 145, 41) 0%,
    rgb(255, 94, 58) 100%
  );
  padding: 12px 30px !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(255, 94, 58, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#bookNowBtn:before {
  content: "🚖";
  margin-right: 8px;
}

#bookNowBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 94, 58, 0.4);
}

#bookNowBtn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 94, 58, 0.3);
}

@media (max-width: 768px) {
  #bookNowBtn {
    padding: 10px 24px !important;
    font-size: 16px !important;
  }
}

.custom-select {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  padding: 15px 20px;
  gap: 12px;
}

.custom-options {
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 94, 58, 0.5) #f1f1f1;
  padding: 10px 0;
  margin-top: 5px;
}

/* Webkit scrollbar styling */
.custom-options::-webkit-scrollbar {
  width: 6px;
}

.custom-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb {
  background: rgba(255, 94, 58, 0.5);
  border-radius: 10px;
}

.custom-options::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 94, 58, 0.7);
}

/* Ensure dropdown stays above other elements */
.custom-select.open .custom-options {
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-option {
  padding: 15px 20px;
  gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.custom-option:last-child {
  border-bottom: none;
}

.option-text {
  gap: 5px;
}

.option-text strong {
  margin-bottom: 4px;
}

.option-text small {
  opacity: 0.7;
}

.custom-option img {
  margin-right: 15px;
  width: 50px;
  height: 35px;
  object-fit: contain;
}

.is-overlay-orange {
  background-image: linear-gradient(
    26deg,
    rgb(255, 145, 41) 0%,
    /* Orange */ rgb(240, 103, 49) 25%,
    /* Dark Orange */ rgb(208, 107, 67) 50%,
    /* Burnt Orange */ rgb(255, 115, 149) 75%,
    /* Coral */ rgb(255, 159, 159) 100% /* Light Coral */
  ) !important;
}
