.cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: black;
  border-radius: 50%;
  pointer-events: none;
  /* Ensures it doesn't interfere with clicks */
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* New Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* darkness level */
  z-index: 1;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: #fffff7;
}

.spinner {
  animation: spin 1s linear infinite;
}

@media only screen and (max-width: 767px) {
  .hero-slider {
    background-color: rgba(10, 20, 40, 0.7) !important;
    background-image: none !important;
  }

  .hero-slider .slide {
    display: none !important;
    /* Hide individual slides */
  }
}

/* Form */

.form-container {
  flex: 1;
  background: rgba(39, 39, 39, 0.5);
  border-radius: 16px;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-width: 350px;
  backdrop-filter: blur(5px);
}

.form-container h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
  color: var(--light);
  font-weight: 600;
}

.toggle-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: rgba(39, 39, 39, 0.7);
  padding: 0.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-group button {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0);
}

.toggle-group button:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
}

.toggle-group button:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s ease;
}

.toggle-group button.active {
  background: var(--light);
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.toggle-group button.active:hover {
  background: var(--light);
}

.toggle-group button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.toggle-group button.active::after {
  opacity: 1;
}

.toggle-group button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.4);
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--light);
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.form-group input.invalid {
  border-color: var(--error);
}

.error-message {
  display: none;
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

button[type="button"],
button[type="submit"] {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: var(--primary);
  color: white;
  margin-top: 0.5rem;
}

button[type="button"]:hover,
button[type="submit"]:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.switch-container {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-right: 0.75rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.switch-label {
  font-weight: 500;
  color: var(--light);
}

.stop-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  align-items: center;
}

.stop-group input {
  flex: 1;
}

.remove-stop {
  background: none;
  border: none;
  color: var(--error);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  transition: transform 0.2s;
}

.remove-stop:hover {
  transform: scale(1.2);
}

.add-stop-btn {
  background-color: transparent;
  color: var(--primary);
  border: 1px dashed var(--primary);
  margin-bottom: 1.5rem;
}

.add-stop-btn:hover {
  background-color: rgba(255, 107, 0, 0.1);
  border-style: solid;
}

.inline-group {
  display: flex;
  gap: 1rem;
}

.inline-group .form-group {
  flex: 1;
  margin-bottom: 0;
}

.fare-summary {
  background: rgba(52, 134, 90, 0.3);
  padding: 1.25rem;
  margin-top: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--success);
  color: var(--light);
}

.fare-summary.hidden {
  display: none;
}

.fare-summary strong {
  display: block;
  font-size: 1.25rem;
  color: var(--light);
  margin-bottom: 0.75rem;
}

.fare-summary button {
  margin-top: 1rem;
  background-color: var(--success);
}

.fare-summary button:hover {
  background-color: #2f855a;
}

.hidden {
  display: none;
}

.extra-charges {
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(29, 96, 168, 0.1);
  border-radius: 8px;
  border-left: 4px solid #1d60a8;
  color: var(--light);
}

.extra-charges h6 {
  font-size: 1rem;
  color: #8ab4f8;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.charge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.charge i {
  width: 20px;
  text-align: center;
}

.phone-hint {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.country-code-select {
  width: 120px !important;
  border-radius: 8px 0 0 8px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--light) !important;
}

.country-code-select + .select2-container .select2-selection {
  height: 42px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--light) !important;
}

.select2-selection__rendered {
  line-height: 38px !important;
  color: var(--light) !important;
}

.select2-dropdown {
  background: var(--dark);
  border-color: rgba(255, 255, 255, 0.1);
}

.select2-results__option {
  color: var(--light);
  padding: 8px 12px;
}

.select2-results__option--highlighted {
  background-color: var(--primary) !important;
}

.book-now-btn {
  background-color: #3182ce;
  /* blue */
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.book-now-btn.clicked {
  background-color: #38a169;
  /* green */
}

@media only screen and (max-width: 767px) {
  .form-container h2 {
    font-size: 18px !important;
    /* or 20px */
    line-height: 1.4 !important;
  }
}

/* 3rd Section */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-left {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-right {
  animation: slideInRight 1s ease-out forwards;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: var(--dark);
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-top: 5px solid var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.popup-content p {
  color: var(--light);
  margin-bottom: 1.5rem;
}

.popup-phone {
  font-size: 1.3rem;
  margin: 1rem 0;
  color: var(--primary);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 8px;
  display: inline-block;
}

.popup-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.popup-buttons button {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-buttons button:first-child {
  background: var(--primary);
  color: white;
}

.popup-buttons button:first-child:hover {
  background: green;
}

.popup-buttons button:last-child {
  background: var(--gray);
  color: var(--light);
}

.popup-buttons button:last-child:hover {
  background: green;
}

.hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .hero {
    padding: 1rem;
  }

  .hero-text {
    display: none;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .form-container {
    width: 100%;
    padding: 1.5rem;
    max-height: none;
  }
}

@media (max-width: 480px) {
  .inline-group {
    flex-direction: column;
    gap: 1rem;
  }

  .toggle-group {
    flex-direction: column;
  }

  .form-container {
    padding: 1.25rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary-color);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero {
    padding: 1rem;
    text-align: center;
  }
}

.bags-dropdown {
  display: none;
}

.airport-type-dropdown {
  display: none;
}

li.has-dropdown {
  position: relative;
}
/* 
.dropdown {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  min-width: 200px;
  max-width: 200px;
  transform: translateY(10px);
  transition: ease 0.4s all;
}

.dropdown ul li {
  list-style: none;
}

.dropdown ul li a {
  padding: 8px 16px;
  display: block;
  text-transform: capitalize;
}

.dropdown ul {
  padding: 0;
}

.dropdown ul li a:hover {
  background: #000;
  color: #fff !important;
} */

/* li.has-dropdown:hover .dropdown {
  opacity: 1;
  transform: translateY(0px);
  visibility: visible;
} */

h2 {
  font-size: 30px;
  font-weight: bold;
}

/* Features Card Section*/

.features-section {
  padding: 4rem 1rem;
  text-align: center;
  background: #fff;
}

.features-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #000000;
}

.features-section p {
  font-size: 1.1rem;
  color: #111;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-card {
  background: #1d60a8;
  border-radius: 12px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  text-align: left;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.6s ease;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-list {
  list-style: disc;
  padding-left: 1.5rem;
  color: #ddd;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .feature-card {
    width: 100%;
  }

  nav {
    display: block;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }

  header {
    background: var(--dark);
    color: white;
    padding: 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}

/* Counter Section*/

.counter-section {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  /* blue gradient */
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  color: white;
}

.counter-box {
  flex: 1 1 200px;
  margin: 20px;
}

.counter-box h2 {
  font-size: 3rem;
  margin: 0 0 10px;
}

.counter-box p {
  font-size: 1.2rem;
  margin: 0;
}

/* Sub-Hero Section */
.sub-hero {
  background: linear-gradient(135deg, #2eaafa, #1f2f98);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(45deg);
}

.sub-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sub-hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #fff;
}

.sub-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  line-height: 1.7;
}

.phone-link {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.booking-btn {
  background: #000;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.booking-btn:hover {
  background: #333;
  color: #fff;
  transform: translateY(-3px);
}

.secondary-btn {
  background: #ffffff;
  color: #1f2f98;
}

.secondary-btn:hover {
  background: #eee;
  color: #ff8008;
}
.hero-content {
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
}
/* Responsive for Mobile */
@media (max-width: 768px) {
  .sub-hero-content h2 {
    font-size: 2rem;
  }

  .sub-hero-content p {
    font-size: 1rem;
  }

  .booking-btn {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .airport-radio-group {
    flex-direction: column;
    gap: 10px;
  }
}
