
.booking-gt-form {
  background-image: url("../../tour-homepage/booking/Booking-page-bg.png");
  background-size: cover;         /* Ensures the image covers the full section */
  background-position: center;    /* Centers the image */
  background-repeat: no-repeat;   /* Prevents tiling */
  border-radius: 0 !important;           /* Optional: Adds rounded corners */
}
.booking-gt-2nd-from{
    background-image: url(../../tour-homepage/booking/Booking-page-bg2.png);
  background-size: cover;         /* Ensures the image covers the full section */
  background-position: center;    /* Centers the image */
  background-repeat: no-repeat;   /* Prevents tiling */
  border-radius: 0 !important;  
}
.booking-gt-box{
  padding: 100px 20px 10px 20px;
}

.custom-dropdown {
  position: relative;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

.custom-dropdown .selected {
  background-color: #ffffff00;
  border: 2px solid #ccc;
  color: white;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}

.custom-dropdown .selected:hover {
  border-color: #ffd807 ;
}

.custom-dropdown .options {
  position: absolute;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  margin-top: 4px;
  padding: 0;
  list-style: none;
  display: none;
  z-index: 10;
  max-height: 180px;
  overflow-y: auto;
}

.custom-dropdown .options li {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-dropdown .options li:hover {
  background-color: #ffcc00;
  color: #fff;
}

.custom-dropdown.active .options {
  display: block;
}
.gt-custom-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: #333;
  transition: color 0.3s;
}

.gt-custom-checkbox input[type="checkbox"] {
  display: none;
}

.gt-custom-checkbox .gt-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #f4cd0e;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
  transform-style: preserve-3d;
}

.gt-custom-checkbox .gt-checkmark::before {
  content: "\2713";
  font-size: 16px;
  color: transparent;
  transition: color 0.3s, transform 0.3s;
}

.gt-custom-checkbox input[type="checkbox"]:checked + .gt-checkmark {
  background-color: #f4cd0e;
  border-color: #f4cd0e;
  transform: scale(1.1) rotateZ(360deg) rotateY(360deg);
}

.gt-custom-checkbox input[type="checkbox"]:checked + .gt-checkmark::before {
  color: #171717;
}

.gt-custom-checkbox:hover {
  color: #666;
}

.gt-custom-checkbox:hover .gt-checkmark {
  border-color: #f4cd0e;
  background-color: #f0f0f0;
  transform: scale(1.05);
}

.gt-custom-checkbox input[type="checkbox"]:focus + .gt-checkmark {
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
  outline: none;
}

.gt-custom-checkbox .gt-checkmark,
.gt-custom-checkbox input[type="checkbox"]:checked + .gt-checkmark {
  transition: background-color 1.3s, border-color 1.3s, color 1.3s, transform 0.3s;
}
.gt-whatsapp-shere{
  border:   2px solid #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 5px;
  gap: 10px;
  cursor: pointer;
}
.gt-whatsapp-icon{
  width: 20px;
  height: 20px;
}
.gt-shere{
  color: white;
  margin: 0;
}


.tour-nt-contact-section {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.tour-nt-contact-card {
  background: #fff;
  box-shadow: none;
  padding: 28px 24px 24px 24px;
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease; /* smooth animation */
}

/* ✅ Lift-up hover effect */
.tour-nt-contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}


.tour-nt-contact-label {
  font-size: 19px;
  color: #111;
  font-weight: 600;
}

.tour-nt-contact-icon {
  margin-bottom: 8px;
  font-size: 38px;
}

.tour-nt-device-icon,
.tour-nt-whatsapp-icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 2px solid #111;
  border-radius: 0px;
  background: none;
  position: relative;
}

.tour-nt-device-icon::before {
  content: '';
  display: block;
  width: 26px;
  height: 34px;
  background: #fafafa;
  position: absolute;
  top: 3px; left: 6px;
  border-radius: 0px;
  box-shadow: 0 1px 2px #ccc;
}

.tour-nt-whatsapp-icon {
  border-radius:50%;
  border-color:#25d366;
}

.tour-nt-whatsapp-icon::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 6px; left: 7px;
  background: url('your-whatsapp-icon.svg') no-repeat center center/contain;
}

.tour-nt-qrcode {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.tour-nt-contact-info {
  font-size: 19px;
  color: #222;
  line-height: 1.35;
  font-weight: 500;
}

@media (max-width: 900px) {
  .tour-nt-main-section {
    flex-direction: column;
    gap: 30px;
  }
  .tour-nt-right,
  .tour-nt-left {
    min-width: 0;
    width: 100%;
  }
  .tour-nt-img-container {
    min-height: 210px;
    max-width: 100%;
  }
  .tour-nt-title {
    font-size: 32px;
  }
}

@media (max-width: 650px) {
  .tour-nt-wrapper {
    padding: 16px 4px;
  }
  .tour-nt-desc {
    font-size: 16px;
  }
  .tour-nt-book-btn {
    font-size:15px;
    padding:10px 0;
  }
  .tour-nt-contact-card {
    min-width: 160px;
    padding:18px 8px 16px 8px;
  }
  .tour-nt-contact-info {
    font-size:15px;
  }
}

@media (max-width: 500px) {
  .tour-nt-main-section,
  .tour-nt-contact-section {
    gap: 14px;
  }
  .tour-nt-package-label{
    width: 40%;
    padding: 50px 14px 12px 14px;
  }
  .tour-nt-title {
    font-size: 24px;
  }
  .tour-nt-img-num {
    font-size: 20px;
  }
  .tour-nt-img-label {
    font-size: 13px;
  }
  .tour-nt-contact-label {
    font-size: 15px;
  }
}


.gt-input-area{
  display: flex;
  gap: 70px 0px;
}

@media (max-width: 650px) {
    .gt-input-area{
  gap: 30px 0px;
}
}