@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary: #009893;
  --secondary: #f3a158;
  --third: #67bed9;
  --neutral: #222;
  --ash: #555;
  --gray-bg: #f5faff;
  --form-bg: #fff;
  --border: #e5e5e5;
  --shadow: 0 8px 32px rgba(31, 38, 135, 0.09);
}
#wp-myBtn {
  display: block;
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #25d366;
  color: white;
  cursor: pointer;
  padding: 11px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 100%;
}
.dropdown-container {
  position: relative;
  width: 100%;
}

.suggestions {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 150px;
  overflow-y: auto;
  width: 100%;
  display: none;
  z-index: 1000;
}

.suggestions div {
  padding: 8px;
  cursor: pointer;
}

.suggestions div:hover {
  background: #f0f0f0;
}
#slider {
  visibility: hidden;
}
#slider.loaded {
  visibility: visible;
}
#slidesContainer > div {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
  position: absolute;
  inset: 0;
  background-color: transparent;
}

#slidesContainer > div.opacity-100 {
  opacity: 1;
  pointer-events: auto;
}
#slidesContainer > div {
  will-change: opacity;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.slideUp {
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}
.h-screen {
  height: 75vh;
}
.left-1\/2 {
  left: 48%;
}
#prevBtn,
#nextBtn {
  color: white;
}
#prevBtn,
#nextBtn:hover {
  cursor: pointer !important;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  padding: 10px;
}
.popup-box {
  background: #fff;
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
  animation: popupFade 0.3s ease;
  -webkit-overflow-scrolling: touch;
}
body.popup-open {
  overflow: hidden;
}
.close-popup {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 26px;
  cursor: pointer;
}
@keyframes popupFade {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* MOBILE FIXES */
@media (max-width: 576px) {
  .popup-box {
    max-height: 90vh;
    /* padding: 18px; */
  }
  .booking-row {
    flex-direction: column !important;
  }
  .left-1\/2 {
    left: 35%;
  }
  .w-3 {
    width: 0.45rem;
  }
  .h-3 {
    height: 0.45rem;
  }
  .text-5xl {
    font-size: 2.1rem;
    line-height: 1;
  }
  .text-xl {
    font-size: 1.1rem;
  }
  #prevBtn,
  #nextBtn {
    display: none !important;
  }
  .h-screen {
    height: 55vh;
  }
  .booking-form-section {
    padding: 10px 16px 16px 16px !important;
  }
  .booking-form-section {
    margin-top: 5px !important;
    min-width: unset;
  }
  .booking-form-section h2 {
    font-size: 1.3rem !important;
    margin-bottom: 5px !important;
  }
  .booking-form label {
    margin-top: 0px !important;
  }
  .booking-form .form-btn {
    background-color: #d97a28 !important;
    margin-top: 0px !important;
    font-size: 1rem !important;
  }
  .traulee {
    display: none;
  }
}
/* ************************************************************************ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
}
p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
}
a {
  font-family: "Open Sans", sans-serif;
  color: inherit;
  text-decoration: none;
}
body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: var(--gray-bg);
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
main {
  background: #fcfdff;
}
header {
  background: var(--gray-bg);
  box-shadow: 0 1px 10px #0001;
  padding: 0;
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 3vw;
}

.header-row-1 {
  min-height: 42px;
  border-bottom: 1px solid #f1f3fa;
}

.header-row-2 {
  justify-content: center;
  padding: 15px 3vw 15px 3vw;
  min-height: 40px;
  background: #fbfbfe;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.logo-img {
  position: absolute;
  height: auto;
  width: 110px;
  object-fit: contain;
  border-radius: 7px;
  margin-top: 30px;
  margin-bottom: -25px;
}

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

.header-info {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: #67788a;
}

.gst {
  font-size: 13px;
  color: var(--ash);
}

.pay-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 15px;
  padding: 8px 26px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 3px 14px #00989333;
  cursor: pointer;
  margin-left: 18px;
}
.pay-btn:hover {
  background: #ffa44d;
}
.hamburger {
  display: none;
}

.desktop-nav {
  display: flex;
  gap: 2vw;
  justify-content: center;
  align-items: center;
}

.desktop-nav a {
  font-weight: 500;
  color: var(--neutral);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.18s;
  padding: 3px 0;
  font-family: "Open Sans", sans-serif;
}

.desktop-nav a:hover {
  color: var(--primary);
}
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 75vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 32px #0001;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding-top: 28px;
  opacity: 0;
  pointer-events: none;
}

.mobile-nav.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav nav {
  display: block;
  flex-direction: column;
  padding: 27px 26px 12px 18px;
  margin-top: -50px;
}

.mobile-nav nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.15em;
  color: #212;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  font-weight: 500;
}

.mobile-contact {
  margin-top: 12px;
}

.mobile-nav hr {
  margin: 20px 0 15px 0;
  border: 1px solid #f5f6fa;
}

.mobile-nav-close {
  position: absolute;
  right: 15px;
  top: 9px;
  font-size: 27px;
  cursor: pointer;
  color: #009893;
  background: #f4f6f8;
  border-radius: 16px;
  padding: 2px 8px 0 8px;
  z-index: 3;
}

#mobileNavOverlay {
  position: fixed;
  z-index: 1500;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 26, 43, 0.27);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#mobileNavOverlay.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-dropdown {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-dropbtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 1.1em;
  color: #212;
  text-decoration: none;
  cursor: pointer;
}
.mobile-dropbtn .arrow {
  transition: transform 0.3s;
}
.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  transition: max-height 0.3s ease;
  padding-left: 20px;
}
.mobile-dropdown-content a {
  padding: 10px 0;
  font-size: 0.95em;
  color: #212;
  text-decoration: none;
}
.mobile-dropdown.active .mobile-dropbtn .arrow {
  transform: rotate(90deg);
}
main {
  width: 100%;
  min-height: 100vh;
  margin: 0;
}
.hero-2 {
  position: relative;
  height: 65vh;
  overflow: hidden;
}
.hero-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content-2 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 1rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.3)
  );
}

.hero-content-2 h1 {
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation: fadeIn 0.6s ease-out;
}

.hero-content-2 p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}
.badge {
  width: 290px;
  font-size: 15px;
  background: white;
  color: #009893;
  font-weight: 700 !important;
  border-radius: 20px;
  padding: 6px 18px;
  margin-bottom: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.about-features-v2 {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item-v2 {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  border-left: 3px solid #e0e0e0;
  padding-left: 15px;
}

.feature-item-v2 i {
  font-size: 1.5em;
  color: var(--primary);
}

.feature-item-v2 h3 {
  margin: 0;
  font-size: 1em;
  color: #1e2a53;
}

.feature-item-v2 p {
  margin: 0;
  font-size: 0.8em;
  color: #777;
}
.about-intro h2 {
  font-size: 1.8rem;
  color: #1f2937;
  margin-bottom: 8px;
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
.story-content {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: center;
}
.story-content p {
  color: #4b5563;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.stats-grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: movePattern 20s linear infinite;
  opacity: 1;
}

@keyframes movePattern {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: #1a5490;
  position: relative;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.story-text {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #555;
}

.story-text p {
  margin-bottom: 20px;
}

.story-visual {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 80px 0;
  padding: 60px 0;
  /* background: linear-gradient(135deg, #1a5490 0%, #2a8fc0 100%); */
  background: #009893;
  /* border-radius: 20px; */
  position: relative;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}

.st-no {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.st-lb {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 300;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.process-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(26, 84, 144, 0.15);
}

.process-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.process-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1a5490;
}

.process-card p {
  color: #666;
  line-height: 1.6;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.commitment-card {
  padding: 50px 30px;
  border-radius: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e9ecef;
  text-align: center;
  transition: all 0.3s ease;
}

.commitment-card:hover {
  border-color: #2a8fc0;
  box-shadow: 0 15px 40px rgba(26, 84, 144, 0.1);
}

.commitment-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
}

.commitment-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #1a5490;
}

.commitment-card p {
  color: #666;
  line-height: 1.7;
}

.decorative-shape {
  position: absolute;
  opacity: 0.5;
}

/* Package highlts */
.highlts {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 1rem;
}

.highlts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.highlt-item {
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlt-item:hover {
  transform: translateY(-5px);
}

.highlt-item::before {
  content: "✓";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  margin-right: 0.5rem;
}

/* Unified carsl */
.carsl-section {
  background: white;
  padding: 4rem 0rem;
}

.carsl-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carsl-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carsl-item {
  min-width: calc(100% / 3);
  padding: 1rem;
  box-sizing: border-box;
}

.carsl-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.carsl-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.carsl-card-content {
  padding: 1.5rem;
}

.item-type {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.item-type.attraction {
  background: #ffe5e5;
  color: #ff6b35;
}

.item-type.hotel {
  background: #e5f0ff;
  color: #004e89;
}

.carsl-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.star-rating {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.carsl-card p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.carsl-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carsl-btn {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.carsl-btn:hover {
  transform: scale(1.1);
}

.carsl-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #ff6b35;
}

/* What's Included */
.included-section {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.included-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.included-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.included-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #004e89;
}

.included-card ul {
  list-style: none;
}

.included-card li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.included-card li:last-child {
  border-bottom: none;
}

.included-card.yes li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
  margin-right: 0.5rem;
}

.included-card.no li::before {
  content: "✕";
  color: #f44336;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Pricing */
.pricing {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #004e89;
}

.price {
  font-size: 3rem;
  font-weight: bold;
  color: #ff6b35;
  margin: 1rem 0;
}

.price-note {
  color: #666;
  font-size: 0.9rem;
}

/* Query Form */
.query-form-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #003d6b 100%);
  padding: 4rem 1rem;
}

.query-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: #f3a158;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}
.steps {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.step {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  padding: 16px 19px;
  max-width: 130px;
  height: 130px;
  text-align: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
  font-size: 0.9rem;
  color: white;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.23);
}
.step img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  display: block;
  margin: 0;
}
.about-stats-v2 {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.stat-number {
  font-family: "Montserrat", sans-serif;
  display: flex;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  margin-top: 100px;
}
.stat-card i {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 8em;
  opacity: 0.35;
  z-index: 1;
}

.stat-label {
  display: flex;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 2;
  font-family: "open-sans", sans-serif;
}
.stat-1 {
  background-color: #ffa44d;
}

.stat-2 {
  background-color: #009893;
}

.stat-3 {
  background-color: #009893;
}

.stat-4 {
  background-color: #ffa44d;
}

.booking-form-section {
  flex: 1 1 360px;
  min-width: 0;
  max-width: 700px;
  background: var(--form-bg);
  box-shadow: var(--shadow);
  border-radius: 14px;
  width: 100%;
  padding: 37px 28px 28px 28px;
  z-index: 3;
  box-sizing: border-box;
}

.booking-form {
  display: flex;
  flex-wrap: wrap;
}

.booking-form-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
  color: var(--primary);
}

.booking-form label {
  font-size: 15px;
  color: #434355;
  margin-top: 12px;
  margin-bottom: 4px;
  display: block;
  font-weight: 500;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-width: 0;
  padding: 11px;
  font-size: 1rem;
  margin-bottom: 10px;
  border-radius: 7px;
  border: 1px solid #d3dcff;
  background: #f8faff;
  margin-top: 2px;
  outline: none;
  transition: box-shadow 0.2s;
  box-sizing: border-box;
  display: block;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 6px #5d60ef55;
}

.booking-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.booking-row > div {
  flex: 1 1 110px;
  min-width: 0;
}

.booking-form .terms {
  font-size: 0.92rem;
  color: #666;
  margin: 7px 0 22px 0;
  display: flex;
  align-items: center;
}
#terms {
  align-items: center;
  height: auto;
  width: 15px;
  margin-top: 15px;
}

.booking-form .form-btn {
  width: 100%;
  background: var(--secondary);
  color: #fff;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px;
  border: none;
  border-radius: 8px;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.booking-form .form-btn:hover {
  opacity: 0.85;
  background: #ffa44d;
}
.how-we-work {
  max-width: 1500px;
  margin: 0 auto;
  padding: 54px 14px 20px 14px;
  text-align: center;
  font-family: "Inter", Arial, sans-serif;
  background: #fcfdff;
}
.how-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #262d38;
  letter-spacing: 0.5px;
}
.how-desc {
  color: #647084;
  font-size: 1.1rem;
  margin-bottom: 42px;
}
.how-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto 32px auto;
  max-width: 1300px;
}
.how-card {
  flex: 1 1 0;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 24px rgba(64, 105, 163, 0.1),
    0 1.5px 8px rgba(73, 141, 203, 0.055);
  padding: 44px 38px 34px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 340px;
  max-width: 400px;
  min-height: 340px;
  position: relative;
  transition: box-shadow 0.32s cubic-bezier(0.48, 1.45, 0.51, 1.03),
    transform 0.32s cubic-bezier(0.48, 1.45, 0.51, 1.03);
}
.how-card:not(:last-child) {
  border-right: 1.5px solid #eef2f8;
}
.how-card:hover {
  box-shadow: 0 10px 32px rgba(56, 128, 206, 0.12),
    0 2px 12px rgba(73, 141, 203, 0.11);
  transform: translateY(-7px) scale(1.018);
  z-index: 2;
}
.how-num {
  width: 129px;
  height: 59px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 18px;
  background: #009893;
  color: #fff;
  box-shadow: 0 4px 10px rgba(96, 169, 228, 0.07);
}
.how-card:nth-child(2) .how-num,
.how-card:nth-child(2) .how-icon {
  background: linear-gradient(135deg, #ffa44d 20%, #ff875c 100%);
}
.how-card:nth-child(3) .how-num,
.how-card:nth-child(3) .how-icon {
  background: linear-gradient(135deg, #2596be 10%, #5eb0ce 100%);
}
.h-c-i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.h-c-i img {
  height: 150px;
  width: auto;
}
.how-icon {
  width: 49px;
  height: 49px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.05rem;
  margin-bottom: 27px;
  background: linear-gradient(135deg, #77c8f9 10%, #eaf7fe 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(53, 149, 208, 0.08);
}
.how-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
  color: #273959;
  margin-bottom: 15px;
  margin-top: 5px;
}
.how-card-desc {
  color: #697383;
  font-size: 1.1rem;
  text-align: left;
  margin-bottom: 0;
  margin-top: 0;
}
.how-tag {
  display: inline-block;
  background: #009893;
  color: white !important;
  padding: 4px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 19px;
}
/* ABOUT SECTION: Responsive Partitioned Layout */
.about-partitioned.about-blended-bg {
  background: var(--gray-bg);
  padding-bottom: 100px;
}
.about-partitioned {
  width: 100%;
  background: #fff;
  padding: 70px 3vw 42px 3vw;
  box-sizing: border-box;
}
.about-partitioned-inner {
  display: flex;
  gap: 42px;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1270px;
  margin: 0 auto;
}
.about-partitioned-left,
.about-partitioned-right {
  flex: 1 1 370px;
  min-width: 0;
  max-width: 610px;
}
.about-partitioned-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: start;
}
.about-badge {
  background: #009893;
  color: white;
  padding: 4px 14px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  margin-bottom: -7px;
  display: inline-block;
}
.about-partitioned-left h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 7px 0;
  color: var(--neutral);
}
.about-partitioned-left h2 .about-primary {
  color: var(--primary);
}
.about-partitioned-left h2 .about-secondary {
  color: var(--secondary);
}
.about-underline {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  margin-bottom: 28px;
}
.about-underline-2 {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 3px;
  margin-bottom: 28px;
  margin-left: auto;
  margin-right: auto;
}
.about-desc {
  font-size: 1.13rem;
  /* letter-spacing: 1px; */
  color: #63626e;
  margin-bottom: 12px;
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px 15px;
  margin-top: 8px;
  max-width: 480px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #f7faff;
  border-radius: 13px;
  padding: 15px 16px;
  min-width: 300px;
  box-shadow: var(--shadow);
  margin-bottom: 13px;
}
.about-feature-icon {
  width: 59px;
  height: 39px;
  border-radius: 9px;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.about-feature-desc {
  color: #555;
  font-size: 1rem;
}

/* GRID on RIGHT column */

.about-partitioned-right {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}
.about-lightblue {
  background: #e6f4fa !important;
  color: #279ac5;
}
.about-orange {
  background: #ffe4cc !important;
  color: #ea8935;
}
.about-primary-bg {
  background: #e1eeff !important;
  color: #2573b3;
}
.about-dark {
  background: #e7eaf5 !important;
  color: #4b5f83;
}
.how-num-2 {
  display: none;
}
.h-n-c-d {
  display: flex;
  gap: 15px;
}
/* 0000000000000000000000000000000000000000000000000000000000000 */
.sec {
  padding: 4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 0.6s ease-out;
}
.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: hsl(220, 18%, 20%);
  margin-bottom: 0.75rem;
}
.section-header p {
  font-size: 1.1rem;
  color: hsl(220, 10%, 50%);
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.destination-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(51, 51, 70, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: scaleIn 0.4s ease-out;
  animation-fill-mode: both;
}
.destination-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 12px 40px -4px rgba(51, 51, 70, 0.15);
}
.card-image-wrapper {
  position: relative;
  height: 256px;
  overflow: hidden;
}
.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.destination-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}
.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2),
    transparent
  );
}
.card-image-content {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
}
.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.card-title .flag {
  font-size: 1.875rem;
}
.card-country {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
}
.card-content {
  padding: 1rem;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
  margin-bottom: 1rem;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.meta-item svg {
  width: 1rem;
  height: 1rem;
}
.card-section {
  margin-bottom: 1rem;
}
.card-section h4 {
  font-weight: 600;
  color: hsl(220, 18%, 20%);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card-section h4 svg {
  width: 1rem;
  height: 1rem;
  color: #009893;
}
.attractions-list {
  list-style: none;
}
.attractions-list li {
  display: flex;
  align-items: start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(220, 10%, 50%);
  margin-bottom: 0.25rem;
}
.attractions-list li .bullet {
  color: #009893;
  margin-top: 0.25rem;
}
.highlights {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.highlight-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: hsla(210, 80%, 48%, 0.1);
  color: #009893;
  font-weight: 500;
}
.explore-button {
  width: 100%;
  background: linear-gradient(135deg, #d97a28, #f3a158);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 1rem;
}
.explore-button:hover {
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}
.visa-section {
  width: 100%;
  padding: 4rem 1rem;
  background-color: #f8fafc;
}

.cntier {
  max-width: 1200px;
  margin: 0 auto;
}

.harder {
  text-align: center;
  margin-bottom: 3rem;
}

.harder h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.underline {
  width: 6rem;
  height: 4px;
  background: linear-gradient(90deg, #0891b2 0%, #06b6d4 100%);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.harder p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

.cds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.card img {
  height: auto;
  object-fit: cover;
  width: 550px;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #009893;
  margin-bottom: 1.5rem;
}

.checklist {
  list-style: none;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  transition: all 0.2s ease;
}

.checklist-item:hover .check-icon {
  background-color: rgba(8, 145, 178, 0.2);
  transform: scale(1.1);
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background-color: rgba(8, 145, 178, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  transition: all 0.2s ease;
}

.check-icon svg {
  width: 1rem;
  height: 1rem;
  stroke: #009893;
  stroke-width: 3;
}

.checklist-item p {
  color: #2c3e50;
  line-height: 1.6;
}

.card-description {
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.services-section {
  margin-bottom: 2rem;
}

.services-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.cta-button {
  width: 100%;
  background: linear-gradient(135deg, #f3a158 0%, #f3a158 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(8, 145, 178, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(8, 145, 178, 0.4);
  background: linear-gradient(135deg, #f3a158 0%, #f3a158 100%);
}

.cta-button:active {
  transform: translateY(0);
}
.cta {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url("img/cta.avif") center 25% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 54px 16px;
  background-color: #222938;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 29, 42, 0.404);
  pointer-events: none;
  z-index: 1;
  box-shadow: 0 0 60px 0 rgba(14, 22, 35, 0.45) inset;
}
.cta-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta h2 {
  color: #fff;
  font-size: 2.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}
.cta p {
  color: #e8effa;
  font-size: 1rem;
  margin-bottom: 28px;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.19);
}
.cta button {
  background: #ffa44d;
  color: #fff;
  border: none;
  padding: 15px 46px;
  border-radius: 33px;
  font-size: 1.13rem;
  font-weight: 700;
  box-shadow: 0 3px 22px rgba(32, 54, 126, 0.17);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.cta button:hover {
  transform: translateY(-5px);
}
.testimonial-nav {
  margin-top: 20px;
  text-align: center;
}

.testimonial-nav button {
  background: #f3a158;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 20px;
  margin: 0 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.testimonial-nav button:hover {
  background: #d67d2e;
}
.testimonial-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
}
.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.testimonial {
  padding: 80px 20px;
  background: #f8fafc;
}

.contnr {
  max-width: 1200px;
  margin: 0 auto;
}

.se-head {
  text-align: center;
  margin-bottom: 60px;
}

.s-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.s-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card:nth-child(1) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(0, 188, 212, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00bcd4, #ff9800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  margin-right: 15px;
}

.testimonial-info h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.testimonial-trip {
  font-size: 14px;
  color: #00bcd4;
  font-weight: 600;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
  color: #ff9800;
}

.star {
  color: #ff9800;
  font-size: 18px;
}

.testimonial-text {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-quote {
  color: #00bcd4;
  font-size: 40px;
  opacity: 0.3;
  line-height: 0;
}
/* Footer */
.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 60px 20px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: #00bcd4;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}
.footer-logo img {
  width: 100px;
  height: auto;
  border-radius: 7px;
}
.footer-logo-icon {
  font-size: 32px;
  color: #00bcd4;
}

.footer-description {
  color: #b8b8b8;
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #b8b8b8;
}

.footer-contact-item i {
  color: #00bcd4;
  margin-top: 3px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #00bcd4;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 188, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00bcd4;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00bcd4;
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  text-align: center;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #b8b8b8;
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #b8b8b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #00bcd4;
}

.payment-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}

.payment-icon {
  font-size: 30px;
  color: #b8b8b8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/* Responsive Design */

@media (min-width: 768px) {
  .harder h2 {
    font-size: 1.8rem;
  }

  .cds-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .visa-section {
    padding: 5rem 1rem;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 0000000000000000000000000000000000000000000000000000000000000 */
@media (max-width: 1050px) {
  .about-partitioned-inner {
    flex-direction: column;
    gap: 34px;
  }
  .about-partitioned-left,
  .about-partitioned-right {
    max-width: 100%;
    width: 100%;
  }
}

/* Responsive for mobile */
@media (max-width: 1100px) {
  .booking-form-section {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .header-info {
    gap: 9px;
    font-size: 13px;
  }

  .pay-btn {
    font-size: 14px;
    padding: 7px 13px;
  }

  .desktop-nav {
    gap: 4vw;
  }

  .hero-content,
  .booking-form-section {
    max-width: 100%;
    width: 100%;
    padding-right: 0;
  }

  .booking-row {
    gap: 10px;
  }

  .booking-row > div {
    width: 100%;
    margin-bottom: 8px;
  }

  .booking-form-section {
    margin-top: 20px;
    min-width: unset;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }

  .how-cards {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 780px) {
  header {
    padding: 23px 2.5%;
  }
  .how-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 700px) {
  .step {
    min-width: 93px;
    font-size: 0.97rem;
  }

  .how-card {
    min-width: 180px;
    padding: 20px 14px 16px 14px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    min-height: auto;
    /* align-items: center; */
  }
  .how-card-title {
    margin-top: 10px !important;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    color: #273959;
    margin-bottom: 15px;
    margin-top: 5px;
  }
  .booking-form-section {
    padding: 20px 16px 16px 16px;
  }
}

@media (max-width: 820px) {
  .header-row-1,
  .header-row-2 {
    border-bottom: none;
  }

  .header-row {
    padding: 10px 3vw;
  }

  .gst {
    display: none;
  }

  .header-info {
    display: none;
  }

  .desktop-nav,
  .header-row-2 {
    display: none !important;
  }

  /* Mobile style: single row for header 1, show hamburger */
  .header-row-1 {
    min-height: 52px;
    padding: 8px 3vw 8px 3vw;
    display: flex;
    gap: 0;
    justify-content: space-between;
  }

  .pay-btn {
    margin-left: auto;
    margin-right: 6px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: 15px;
  }

  .hamburger span {
    background: #009893;
    height: 4px;
    width: 25px;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.32s;
  }
}

@media (max-width: 470px) {
  .mobile-nav {
    width: 90vw;
  }
  .header-row {
    padding: 6px 6px 6px 10px;
  }
  .pay-btn {
    font-size: 17px;
    padding: 7px 12px;
  }
}

/* Floating Google Review Button */
.google-review-btn {
  position: fixed;
  top: 90%;
  right: 0;
  transform: translateY(-50%);
  /* transform: rotate(-90deg); */
  background: white;
  padding: 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px 0 0 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 9999;
  transition: 0.3s ease;
  border: 1px solid #ddd;
}
.google-review-btn img {
  height: 70px;
  width: 135px;
}
.google-review-btn:hover {
  background: #f8f8f8;
  transform: translateY(-50%) scale(1.03);
}

/* .google-icon {
  width: 22px;
  height: 22px;
} */

/* .google-review-btn span {
  font-weight: 600;
  font-size: 14px;
} */

/* Overlay */
.review-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 9998;
}

/* Popup Box */
.review-popup {
  position: fixed;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  width: 260px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 9999;
}

.review-popup h3 {
  margin-bottom: 12px;
  font-size: 18px;
  text-align: center;
}

.qr-img {
  width: 100%;
  margin-bottom: 15px;
}

/* Close button */
.cls-btn {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: #eee;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.cls-btn:hover {
  background: #ddd;
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.12rem;
  }

  .logo-circle {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .how-cards {
    gap: 15px;
  }
  .how-num {
    width: 49px;
    height: 49px;
    font-size: 1.3rem;
  }
  .how-icon {
    width: 39px;
    height: 39px;
  }
  .testimonial-card {
    min-width: 100%;
  }
  .card img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }
  .about-partitioned-left {
    align-items: center;
  }
  .about-badge {
    display: inline-block;
    background: #009893;
    color: white;
    padding: 4px 14px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: -10px;
  }
  .about-badge p {
    display: inline;
    margin: 0;
  }
  .about-partitioned-left h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .about-underline {
    margin: -20px auto 0;
    margin-bottom: 19px;
  }
  .about-desc p {
    text-align: center;
    font-size: 1rem;
  }
  .about-feature-icon {
    width: 69px;
    height: 29px;
  }
  .about-partitioned-right {
    display: none;
  }
  .about-feature-icon svg {
    width: 16px;
    height: 16px;
  }
  .about-features {
    gap: 5px 10px;
  }
  .about-feature {
    min-width: 120px;
    padding: 9px 9px;
  }
  .badge {
    text-align: center;
  }
  .booking-form-section h2 {
    font-size: 1.6rem;
  }
  .about-features-v2 {
    display: none;
  }
  .headr h1 {
    font-size: 1.5rem !important;
  }
  .headr p {
    font-size: 1rem;
  }
  .booking-row > div {
    flex: 1 1 0px !important;
    min-width: 0;
    margin-bottom: 0px !important;
  }
  .section-title {
    font-size: 1.5rem !important;
  }
  .section-desc {
    font-size: 1rem !important;
  }
  .testimonial-card {
    min-width: 100% !important;
  }
  .google-review-btn {
    position: fixed;
    top: 95%;
    right: -5px;
    transform: translateY(-50%);
    /* transform: rotate(-90deg); */
    background: white;
    padding: 4px 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 9999;
    transition: 0.3s ease;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  .google-review-btn img {
    height: 40px;
    width: 90px;
  }
  .section-header p {
    font-size: 1rem;
  }
  .cta h2 {
    font-size: 1.5rem;
  }
  .cta {
    min-height: 220px;
    padding: 35px 6px;
  }
  .cta button {
    font-size: 1rem;
    padding: 12px 26px;
  }
  .hero-2 {
    position: relative;
    height: 45vh !important;
    overflow: hidden;
  }
  .about-partitioned.about-blended-bg {
    padding-bottom: 50px;
  }
  .about-stats-v2 {
    flex: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: -15px;
  }
  .stat-card {
    padding: 15px;
  }
  .stat-number {
    display: flex;
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
    margin-top: 65px;
  }
  .stat-card i {
    position: absolute;
    display: flex;
    top: 10px;
    right: 10px;
    font-size: 4em;
    opacity: 0.35;
    z-index: 1;
  }

  .stat-label {
    display: flex;
    text-align: start;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    font-family: "open-sans", sans-serif;
  }
  .how-desc {
    font-size: 1rem;
  }
  .about-feature-desc {
    color: #555;
    font-size: 0.75rem;
  }
  .logo-img {
    position: absolute;
    height: auto;
    width: 100px;
    object-fit: contain;
    border-radius: 7px;
    margin-top: -15px;
  }
  .how-num {
    display: none;
  }
  .how-num-2 {
    width: 45px;
    height: 45px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #70c1f7 30%, #eaf7fe 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(96, 169, 228, 0.07);
  }
  .how-card:nth-child(2) .how-num-2,
  .how-card:nth-child(2) .how-icon {
    background: linear-gradient(135deg, #ffa44d 20%, #ff875c 100%);
  }
  .how-card:nth-child(3) .how-num-2,
  .how-card:nth-child(3) .how-icon {
    background: linear-gradient(135deg, #2596be 10%, #5eb0ce 100%);
  }
  .how-card-desc {
    margin-left: -50px;
    margin-top: 90px;
  }
  .how-card-title {
    font-size: 1.1rem;
  }
  .how-card-desc p {
    font-size: 1rem;
  }
  .h-n-c-d {
    display: flex;
    justify-content: start;
    align-items: center;
    max-width: 100%;
    margin-left: -30px !important;
  }
  .h-n-c-d-2 {
    margin-left: -70px !important;
  }
  .h-n-c-d-3 {
    margin-left: -100px !important;
  }
  .h-c-i {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    width: 100%;
    gap: 10px;
  }
  .h-c-i img {
    height: 45px;
    width: auto;
  }
}
@media (max-width: 700px) {
  .about-partitioned-right {
    min-height: unset;
  }
  .hero-content h1 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
  .destinations-grid {
    grid-template-columns: 1fr;
  }
  .carsl-card img {
    height: 300px;
  }
  .highlts-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }
  .carsl-item {
    min-width: 100%;
  }
  .highlts-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }
  .carsl-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  .container {
    padding: 2rem 1rem;
  }
  .step {
    min-width: unset;
    padding: 24px 10px 18px 10px;
    font-size: 1rem;
  }
  .hero-content-2 h1 {
    font-size: 2rem;
  }
  .hero-content-2 p {
    font-size: 1rem;
  }
  .hero-2 {
    height: 500px;
  }
  .logo-img {
    position: absolute;
    height: auto;
    width: 100px;
    object-fit: contain;
    border-radius: 7px;
    margin-top: -15px;
  }
  .sec {
    padding: 4rem 1.1rem;
    max-width: 1280px;
    margin: 0 auto;
  }
  .s-title {
    font-size: 1.5rem;
  }
  .s-subtitle {
    font-size: 1rem;
  }
  .newsletter-title {
    font-size: 28px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    min-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .trust-badges {
    gap: 30px;
  }
  .harder h2 {
    font-size: 1.5rem;
  }

  .harder p {
    font-size: 1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .card h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 900px) {
  .card img {
    height: auto;
    object-fit: cover;
    width: 100%;
  }
  .how-cards {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
  .how-card {
    min-width: 220px;
    max-width: 96vw;
    width: 100%;
    border-right: none !important;
    box-shadow: 0 7px 24px rgba(64, 105, 163, 0.15),
      0 1.5px 8px rgba(73, 141, 203, 0.1);
  }
  .testimonial-card {
    min-width: calc(50% - 20px);
  }
}
@media (max-width: 968px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1160px) {
  .how-cards {
    gap: 18px;
    max-width: 1020px;
  }
  .how-card {
    min-width: 260px;
    max-width: 330px;
    padding: 32px 16px 23px 16px;
  }
}
