/* ==========================================
   GLOBAL STYLING
========================================== */

body {
  background: #f4f6f8;
  font-family: 'Segoe UI', sans-serif;
  color: #2c2c2c;
}

/* ==========================================
   ENGINE CARD WRAPPER
========================================== */

.package-card {
  background: #ffffff;
   padding: 14px !important;
  border-radius: 16px;

  display: flex;               /* ✅ added (used later globally) */
  flex-direction: column;      /* ✅ prevents future duplication */
  gap: 6px !important;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero-heading{
    text-align:center;
    max-width:1000px;
    margin:20px auto 35px;
    padding:0 20px;
}

.engine-subtitle-badge{
    display:inline-block;
    margin:0 auto 25px;
    padding:12px 22px;

    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:12px;

    color:#64748b;
    font-size:14px;
    font-weight:500;
    line-height:1.7;
    text-align:center;

    max-width:850px;

    box-shadow:0 4px 12px rgba(0,0,0,.04);
}

.engine-subtitle-badge-wrapper{
     text-align:center;
}

@media(max-width:768px){

   .engine-title-badge{
        font-size:16px;
        padding:10px 14px;
        line-height:1.5;
    }
    
    .engine-subtitle-badge{
        font-size:14px;
        padding:10px 15px;
        margin:0 15px 15px;
        display:block;
    }

}

/* ==========================================
   FORM GRID
========================================== */

.form-grid {
  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(230px, 1fr));

  gap: 20px;
}

/* ==========================================
   PREMIUM FORM LABELS
========================================== */

.form-group label {

  display: flex;
  align-items: center;

  gap: 6px;

  margin-bottom: 8px;

  font-size: 14px;

  font-weight: 700;

  color: #1f2937;

  letter-spacing: 0.2px;

  transition: 0.2s ease;
}

/* PREMIUM ACTIVE EFFECT */

.form-group:focus-within label {

  color: #2e8b57;

  transform: translateX(1px);
}

/* ==========================================
   FORM SECTION HEADINGS (FIX SIZE)
========================================== */

.form-section-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2e8b57;
  letter-spacing: 0.3px;
  margin-top: 10px;   /* ✅ creates gap from above */
}

/* ==========================================
   INPUTS & SELECTS
========================================== */

.form-group input,
.form-group select {
  background: #f9fbfa;
  border: 1px solid #e3e7ea;
  border-radius: 10px;
  padding: 12px 14px;
  transition: all 0.2s ease;
}

/* Hover */
.form-group input:hover,
.form-group select:hover {
  border-color: #cfd8dc;
}

/* Focus */
.form-group input:focus,
.form-group select:focus {
  border-color: #2e8b57;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46,139,87,0.1);
}

/* ==========================================
   PASSENGERS GRID
========================================== */

.passengers-grid {
  display: grid; /* 🔥 MISSING LINE */
  grid-template-columns: repeat(3, 180px);
  gap: 15px;
}

#childAges {
  margin-top: 20px;
  max-width: 600px;
}

/* ==========================================
   ACTION BUTTON
========================================== */

.form-action {
  margin-top: 30px; /* ✅ reduced (40 → 30 for better spacing) */
  text-align: center;
}

.form-action button {
  background: linear-gradient(145deg, #2e8b57, #256f47);
  color: #fff;
  padding: 14px 36px; /* ✅ slightly tighter */
  border: none;
  border-radius: 40px;
  font-size: 15px; /* ✅ slightly modern */
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.3);
  transition: all 0.25s ease;
}

.form-action button:hover {
  transform: translateY(-2px); /* ✅ smoother */
  box-shadow: 0 12px 30px rgba(46, 139, 87, 0.4);
}

.form-action button:active {
  transform: scale(0.96);
}

/* ==========================================
   PACKAGE RESULTS
========================================== */

.hotel-combination {
  margin-top: 36px;
}

/* ==========================================
   COMBO HEADER
========================================== */

.combo-heading {

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 10px;

  width: 100%;

  box-sizing: border-box;

  overflow: hidden;

  background: #2e8b57;

  color: #ffffff;

  padding: 10px 16px;

  border-radius: 12px;

  margin-bottom: 12px;

  box-shadow:
    0 4px 12px rgba(46,139,87,0.14);
}

/* LEFT TITLE */

.heading-left {

  flex: 1;

  min-width: 0;

  font-size: 15px;

  font-weight: 700;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  letter-spacing: -0.1px;

  line-height: 1.3;
}

/* RIGHT CODE BADGE */

.heading-code {

  flex-shrink: 0;

  max-width: 42%;

  overflow: hidden;

  text-overflow: ellipsis;

  white-space: nowrap;

  background: rgba(255,255,255,0.14);

  color: #ffffff;

  padding: 5px 10px;

  border-radius: 999px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.3px;
}

/* ==========================================
   PACKAGE ROW
========================================== */

.package-row {
  display: flex;

  gap: 14px;

  width: 100%;

  align-items: stretch;
}

/* ==========================================
   PACKAGE CARDS
========================================== */

.package-row .package-card {

  flex: 1 1 0;

  min-width: 0;

  max-width: unset;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .combo-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .heading-left {
    width: 100%;

    white-space: normal;
  }

  .heading-code {
    max-width: 100%;
  }

  .package-row {
    flex-direction: column;
  }

  .package-row .package-card {
    max-width: 100%;
    width: 100%;
  }

}
/* ==========================================
   INCLUSIONS
========================================== */

.package-inclusions {
  margin-top: 6px !important;
  padding-left: 18px;

  font-size: 13px;

  color: #555;
}

/* Main sections */
.package-inclusions > li {
  margin-bottom: 12px;

  font-weight: 700;

  color: #1f2937;
}

/* Inner lists */
.package-inclusions > li > ul {
  margin-top: 8px;

  padding-left: 18px;
}

/* Inner items */
.package-inclusions > li > ul > li {
  margin-bottom: 6px;

  font-weight: 500;

  color: #4b5563;

  line-height: 1.7;
}

/* ==========================================
   ROOM OPTION CARDS
========================================== */

.room-option {
  margin-top: 6px !important;
  padding: 14px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #eee; /* ✅ added for better card separation */
  transition: all 0.25s ease;
}

.room-option:hover {
  background: #eef6f2;
  transform: translateY(-2px);
}

.room-option.cheapest {
  background: #dff3e6;
  border-left: 4px solid #2e8b57;
}

/* ==========================================
   TOGGLE BUTTON
========================================== */

.toggle-options-btn {
  margin-top: 10px; /* ✅ tighter */
  background: none;
  border: none;
  color: #2e8b57;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 13px; /* ✅ consistency */
  transition: opacity 0.2s ease;
}

.toggle-options-btn:hover {
  opacity: 0.7;
}

/* ==========================================
   TRANSPORT
========================================== */

.transport-routes {
  margin-top: 6px;
  padding-left: 16px; /* ✅ slightly reduced */
  font-size: 13px;
  color: #555;
}

.transport-routes li {
  margin-bottom: 4px;
}

/* ==========================================
   SWAP BUTTON (PERFECT CENTER VERSION)
========================================== */

.swap-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
   margin: 10px 0 25px; /* less top, more bottom */
  position: relative;
}

/* Divider line */
.swap-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: #e5e5e5;
  transform: translateY(-50%);
  z-index: 0;
}

/* Button */
.swap-btn {
  position: relative;
  z-index: 1;

  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  background: linear-gradient(145deg, #2e8b57, #256f47);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 8px 18px rgba(46,139,87,0.35),
    inset 0 1px 2px rgba(255,255,255,0.25);

  transition: all 0.25s ease;
}

/* Hover */
.swap-btn:hover {
  transform: translateY(-2px) scale(1.06);
}

/* Click */
.swap-btn:active {
  transform: scale(0.95);
}

/* Rotate animation */
.swap-btn.rotate {
  transform: rotate(180deg);
}

/* Icon */
.swap-icon {
  font-size: 16px;
  transition: transform 0.6s cubic-bezier(.4,2,.6,1);
}

.swap-icon.rotate {
  transform: rotate(360deg);
}
/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .package-row {
    flex-direction: column; /* ❌ removed !important */
  }

  .package-row .package-card {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%; /* ✅ keep only one definition */
  }

  .form-grid {
    gap: 16px; /* ✅ slightly tighter */
  }

}

/* ==========================================
   BOOKING MODAL
========================================== */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);

  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* SHOW STATE */
.booking-modal.show {
  display: flex;
}

.booking-content {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  width: 420px;

  max-height: 85vh;
  overflow-y: auto;

  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: fadeInScale 0.3s ease; /* ✅ fixed animation name */
  position: relative;
}

.booking-content h3 {
  margin-bottom: 18px;
}

/* Inputs inside modal */
.booking-content input {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fafafa;
  transition: all 0.2s ease;
}

/* Button inside modal */
.booking-content button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  background: linear-gradient(145deg, #2e8b57, #256f47);
  color: white;
  cursor: pointer;
}

/* Close button */
.booking-close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 24px; /* ✅ slightly refined */
  cursor: pointer;
  color: #888;
  transition: 0.3s;
}

.booking-close:hover {
  color: #000;
  transform: scale(1.2);
}

/* ==========================================
   MODAL ANIMATION
========================================== */

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
/* ==========================================
   SELECT PACKAGE BUTTON
========================================== */

.select-package-btn {
  margin-top: 12px; /* ✅ slightly tighter */
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;

  background: linear-gradient(145deg, #2e8b57, #256f47);
  color: #fff;

  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(46,139,87,0.25);
}

.select-package-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46,139,87,0.35);
}

.select-package-btn:active {
  transform: scale(0.97);
}

/* ==========================================
   SCROLLBAR
========================================== */

.filters-sidebar::-webkit-scrollbar {

  width: 6px;
}

.filters-sidebar::-webkit-scrollbar-thumb {

  background: #cbd5e1;

  border-radius: 999px;
}

/* ==========================================
   SCROLLBAR
========================================== */

.filters-sidebar::-webkit-scrollbar {

  width: 6px;
}

.filters-sidebar::-webkit-scrollbar-thumb {

  background: #cbd5e1;

  border-radius: 999px;
}

/* ==========================================
   MOBILE RESPONSIVE (FINAL CLEAN VERSION)
========================================== */

@media (max-width: 767px) {

  .package-row {
    flex-direction: column; /* ❌ removed !important */
  }

  .package-row .package-card {
    width: 100%;
    max-width: 100%; /* ✅ ensure no overflow */
  }

  .form-grid {
    gap: 16px;
  }

}

/* ==========================================
   FILTER UI
========================================== */

.filters-sidebar h4 {
  margin-bottom: 10px; /* ✅ slightly tighter */
  font-size: 17px;     /* ✅ refined */
  font-weight: 700;
}

.filters-sidebar label {
  font-size: 13px;     /* ✅ consistent with UI scale */
  margin-bottom: 5px;
  display: block;
  cursor: pointer;
}

/* ==========================================
   CHECKBOXES
========================================== */

/* Star checkbox */
.starFilter {
  margin-right: 6px;
  accent-color: #2e8b57;
}

/* All checkboxes */
.filters-sidebar input[type="checkbox"] {
  margin-right: 6px;
  accent-color: #2e8b57;
}

/* ==========================================
   PRICE SLIDER
========================================== */

#filterPrice {
  width: 100%;
  margin-top: 10px;
  height: 6px;
  border-radius: 5px;
  background: #e5e5e5;
  outline: none;
  appearance: none;
}

/* Slider thumb */
#filterPrice::-webkit-slider-thumb {
  appearance: none;
  width: 14px; /* ✅ slightly smaller */
  height: 14px;
  background: #2e8b57;
  border-radius: 50%;
  cursor: pointer;
}

#filterPrice::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #2e8b57;
  border-radius: 50%;
  cursor: pointer;
}

/* Price value */
#priceValue {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #2e8b57;
}

/* ==========================================
   FILTER SECTION TITLES
========================================== */

.filters-sidebar strong {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
  color: #222;
}

/* ==========================================
   TRAVEL DATES BOX
========================================== */

.travel-dates {
  background: #f3f8f5;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}

.travel-dates hr {
  margin: 6px 0; /* ✅ tighter */
  border: none;
  border-top: 1px solid #ddd;
}

/* ==========================================
   PACKAGE SUMMARY
========================================== */

#selectedPackageSummary ul {
  padding-left: 16px; /* ✅ slightly reduced */
  margin-bottom: 12px;
}

#selectedPackageSummary li {
  margin-bottom: 5px;
  font-size: 13px;
}

#selectedPackageSummary strong {
  color: #2e8b57;
}
/* ==========================================
   FULLSCREEN LOADER
========================================== */

#pageLoader {
  position: fixed;
  inset: 0; /* ✅ shorthand (top/left/width/height) */
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
  transition: opacity 0.4s ease; /* ✅ moved here */
}

/* Fade out */
#pageLoader.fade-out {
  opacity: 0;
  pointer-events: none; /* ✅ prevents blocking clicks */
}

/* ==========================================
   LOADER CONTENT
========================================== */

/* ==========================================
   FILTER SIDEBAR VISIBILITY
========================================== */

#filtersSidebar {
  opacity: 0;
  visibility: hidden;
}

#filtersSidebar.show {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   MOBILE MODAL FIX
========================================== */

@media (max-width: 767px) {

  .booking-modal {
    align-items: flex-start;
    padding: 10px;
  }

  .booking-content {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;

    max-height: 90vh;
    overflow-y: auto;

    border-radius: 14px;
  }

}

/* ==========================================
   LOGIN BUTTON — PREMIUM
========================================== */

.login-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;
    min-width: 105px;

    padding: 9px 18px;

    border: 1px solid #2e8b57;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #2e8b57,
            #256f47
        );

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.2;

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(46,139,87,.18);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}

.login-btn:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #369d64,
            #2e8b57
        );

    box-shadow:
        0 9px 22px rgba(46,139,87,.28);
}

.login-btn:active {
    transform: translateY(0) scale(.98);
}


/* MOBILE */

@media (max-width: 768px) {

    .login-btn {
        min-width: 110px;

        min-height: 40px;

        padding: 8px 15px;

        border-radius: 10px;

        font-size: 12px;
    }
}

/* ==========================================
   USER INFO
========================================== */

.user-info {
  font-weight: 600;
  color: #2e8b57;
}
/* =========================
   SECTION BOX (COMMON)
========================= */

.section-box {
  background: #ffffff;
  border: 1px solid #e6ece8;
  border-radius: 12px;

  padding: 12px;
  margin-bottom: 12px;

  box-shadow: 0 3px 8px rgba(0,0,0,0.04);
}

.section-title {
  font-size: 15px; /* ✅ slightly refined */
  font-weight: 700;
  margin-bottom: 12px; /* ✅ tighter spacing */
  color: #2e8b57;
}

/* ==========================================
   PREMIUM TRANSPORT WRAPPER
========================================== */

.transport-container {
  background: linear-gradient(
    180deg,
    #fbfdfc 0%,
    #f4f8f6 100%
  );

  border: 1px solid #e4ece7;

  border-radius: 18px;

  padding: 18px;

  box-shadow:
    0 6px 18px rgba(15, 23, 42, 0.04);
}

/* ==========================================
   TRANSPORT SECTION
========================================== */

.transport-section {
  margin-bottom: 0px;
}

.transport-section:last-child {
  margin-bottom: 0;
}

/* ==========================================
   SECTION TITLE
========================================== */

.transport-section h5 {
  display: flex;
  align-items: center;
  gap: 8px;

  font-size: 16px;

  font-weight: 800;

  color: #166534;

  letter-spacing: 0.3px;

  margin-bottom: 12px;
}

/* ==========================================
   GRID
========================================== */

.transport-options {
  display: grid;

  gap: 10px;
}

/* ==========================================
   ITEM CARD
========================================== */

.transport-item {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 14px 16px;

  border-radius: 14px;

  background: #ffffff;

  border: 1px solid #e5ebe7;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

/* ==========================================
   HOVER
========================================== */

.transport-item:hover {
  background: #f8fcf9;

  border-color: #86c19f;

  transform: translateY(-1px);

  box-shadow:
    0 8px 18px rgba(22, 101, 52, 0.08);
}

/* ==========================================
   INPUT
========================================== */

.transport-item input {
  accent-color: #2e8b57;

  transform: scale(1.08);

  cursor: pointer;
}

/* ==========================================
   TEXT
========================================== */

.transport-item span {
  font-size: 15px;

  font-weight: 700;

  color: #1f2937;

  line-height: 1.5;
}

/* ==========================================
   SELECTED
========================================== */

.transport-item input:checked + span {
  color: #2e8b57;
}

.transport-item:has(input:checked) {
  background: #f3fbf6;

  border-color: #57b47a;

  box-shadow:
    0 6px 16px rgba(34, 197, 94, 0.08);
}

/* ==========================================
   INTERNAL AUTO ROUTE
========================================== */

.transport-internal {
  padding: 14px 16px;

  border-radius: 14px;

  background: #eef8f2;

  border: 1px dashed #57b47a;

  font-size: 14px;

  font-weight: 700;

  color: #166534;
}

/* ==========================================
   EMPTY STATE
========================================== */

.transport-empty {
  color: #94a3b8;

  font-size: 13px;

  padding: 8px 0;
}

/* ==========================================
   MULTI SELECT
========================================== */

.transport-multi .transport-item {
  background: #fcfcfc;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .transport-container {
    padding: 14px;
  }

  .transport-section h5 {
    font-size: 15px;
  }

  .transport-item {
    padding: 13px 14px;
  }

  .transport-item span {
    font-size: 14px;

    line-height: 1.5;
  }

}

/* =========================
   VISA TOGGLE
========================= */

.visa-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.visa-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

/* SWITCH */

.switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background-color: #2e8b57;
  border-radius: 34px;
  transition: 0.3s;
}

.slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

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

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

/* =========================
   PRICE INSIGHTS (MERGED)
========================= */

.price-insights {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  margin-bottom: 15px;

  position: sticky;
  top: 10px;
  z-index: 5;
}

.price-chip {
  min-width: 260px;
  flex-shrink: 0;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.current { background: #e8f5e9; color: #2e7d32; }
.upcoming { background: #fff3cd; color: #856404; }
.peak { background: #fdecea; color: #c62828; }
.price-chip.range { background: #e3f2fd; color: #1565c0; }

/* =========================
   FORM ERRORS
========================= */

.form-error {
  display: none;
  padding: 12px 14px;
  border-radius: 8px;
  margin: 10px 0 12px;
  font-size: 14px;
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.child-error {
  display: none;
  color: #c62828;
  font-size: 12px;
  margin-top: 4px;
}

.child-age.invalid {
  border: 1px solid #c62828;
}

.error-border {
  border: 1px solid red;
  box-shadow: 0 0 5px rgba(255,0,0,0.3);
}

/* =========================
   FORM ACTION (FIXED)
========================= */

.form-action {
  margin-top: 20px; /* ✅ unified */
}


.app-container {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
}

/* CARD */

.package-card {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* BADGE */

.tier-badge {
  background: #eef6f2;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* SECTION BOX (FINAL) */

.section-box {
  background: #ffffff;
  border: 1px solid #e6ece8;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.04);
}

/* ROOM */

.room-option {
  background: #f9fafb;
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
  border: 1px solid #eee;
  transition: 0.25s;
}

.room-option:hover {
  background: #eef6f2;
}

/* FORM */

.form-card {
  background: #fff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: visible;
}

/* SWAP BUTTON */

.swap-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2e8b57, #256f47);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(46,139,87,0.3);
  transition: 0.25s;
}

.swap-btn:hover {
  transform: scale(1.08);
}

.passengers-section {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

/* ===== FINAL FIX: PASSENGERS + CHILD WIDTH ===== */

/* =========================
   PASSENGERS (FINAL FIX)
========================= */

/* Passengers row */
.passengers-grid {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 15px;
  align-items: start;
}

/* Each field inside passengers */
.passengers-grid .form-group {
  width: 100%;
}

/* =========================
   CHILD AGE (FINAL FIX)
========================= */

#childAges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* 🔥 MOST IMPORTANT FIX */
#childAges .form-group {
  width: 160px !important;   /* controls full box width */
}

/* Select inside it */
#childAges select {
  width: 100% !important;   /* fill inside box */
  min-width: unset;
}

/* Optional: better label spacing */
#childAges label {
  font-size: 12px;
}

/* ==========================================
   MOBILE FORM PERFECT FIX
========================================== */

@media (max-width: 767px) {

  /* Reduce container padding */
  .app-container {
    padding: 12px;
  }

  /* Form grid → 1 column */
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Section titles smaller */
  .form-section-title {
    font-size: 13px;
  }

  /* Inputs slightly smaller */
  .form-group input,
  .form-group select {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* =========================
     PASSENGERS (STACK CLEAN)
  ========================= */

  .passengers-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* =========================
     CHILD AGE (2 PER ROW)
  ========================= */

  #childAges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #childAges .form-group,
  .child-box {
    width: 100% !important;
  }

  /* =========================
     SWAP BUTTON FIX
  ========================= */

  .swap-wrapper {
    margin: 15px 0;
  }

  .swap-btn {
    width: 42px;
    height: 42px;
  }

  /* =========================
     PACKAGE CARDS
  ========================= */

  .package-card {
    padding: 16px;
  }


  /* =========================
     RESULTS LAYOUT
  ========================= */

  .results-layout {
    flex-direction: column;
  }

}

/* =========================
   ULTIMATE GLASS FORM CARD
========================= */

.form-card {
  position: relative;
  padding: 26px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.85);


  z-index: 1;

  box-shadow:
    0 30px 80px rgba(0,0,0,0.08),
    inset 0 1px 1px rgba(255,255,255,0.6);
}

/* =========================
   ANIMATED BORDER + GLOW
========================= */

.form-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;

  background: linear-gradient(
    130deg,
    #2e8b57,
    #3aa76d,
    #4bbf9a,
    #6dd5c1,
    #2e8b57
  );

  background-size: 500% 500%;

  animation:
    borderFlow 12s ease infinite,
    glowPulse 5s ease-in-out infinite;


  opacity: 0.5;

  z-index: -2;
}

/* =========================
   INNER SURFACE + CURSOR LIGHT
========================= */

.form-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;

  background:
    radial-gradient(
      circle at var(--x, 50%) var(--y, 50%),
      rgba(46,139,87,0.10),
      transparent 1%
    ),
    #ffffff;

  z-index: -1;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glowPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

/* =========================
   INTERACTIONS
========================= */

/* Hover */
.form-card:hover::before {
  opacity: 1;
  filter: blur(6px);
  animation-duration: 6s;
}

/* Focus (typing) */
.form-card:focus-within::before {
  opacity: 1;
  filter: blur(8px);
}

/* =========================
   ULTRA PREMIUM CARD
========================= */

.package-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  z-index: 1;

  background: rgba(255,255,255,0.96);
 

  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.06),
    0 4px 10px rgba(0,0,0,0.04);
}

/* =========================
   GALAXY BORDER
========================= */

.package-card::before {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 18px;

  padding: 1.5px;

  pointer-events: none;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;

  mask-composite: exclude;
}

/* =========================
   INNER LIGHT (PREMIUM FEEL)
========================= */

.package-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.15),  /* 🔥 reduced */
    transparent 50%
  );

  pointer-events: none;
}

/* =========================
   COMBO COLORS
========================= */

/* 💙 BLUE */
.package-row.combo-0 .package-card::before {

  background:
    linear-gradient(
      135deg,
      #4da3ff,
      #008cff
    );
}

/* 💜 PURPLE */
.package-row.combo-1 .package-card::before {

  background:
    linear-gradient(
      135deg,
      #c056ff,
      #8b3dff
    );
}

/* =========================
   HOVER (LUXURY INTERACTION)
========================= */

.package-card:hover {
    transform: translateY(-2px);

  box-shadow:
    0 20px 40px rgba(0,0,0,0.12),
    0 10px 20px rgba(0,0,0,0.08);
}


/* =========================
   CHEAPEST HIGHLIGHT (AUTO)
========================= */

.package-card.cheapest {
  transform: scale(1.02);
  z-index: 2;

  box-shadow:
    0 20px 50px rgba(46,139,87,0.25),
    0 0 20px rgba(46,139,87,0.2);
}

.package-card.cheapest::before {

  background:
    linear-gradient(
      135deg,
      #2e8b57,
      #42c97a
    );
}

/* =========================
   ANIMATION
========================= */

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 767px) {

  .package-card {
    border-radius: 14px;
  }

  .package-card::before {
    padding: 1.5px;
    animation-duration: 12s;
  }

  .package-card:hover {
    transform: none; /* no jump on mobile */
  }
}
/* =========================
   LOADER FULLSCREEN
========================= */

#pageLoader {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #f7faf8, #eef3f0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* BOX */
.loader-box {
  text-align: center;
  width: 420px;
}

/* TITLE */
.loader-box h3 {
  margin-bottom: 20px;
  color: #2e8b57;
  font-weight: 600;
}

/* =========================
   ICONS ROW
========================= */

.loader-icons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

/* ICON (ALWAYS VISIBLE NOW) */
.loader-icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 22px;

  opacity: 1; /* 🔥 removed fade */
  color: #b5b5b5; /* soft default */

  transition: all 0.4s ease;
}

/* LABEL */
.loader-icons .icon span {
  font-size: 11px;
  margin-top: 4px;
}

/* ACTIVE ICON (PREMIUM GLOW) */
.loader-icons .icon.active {
  color: #2e8b57;
  transform: scale(1.25);

  text-shadow:
    0 0 10px rgba(46,139,87,0.5),
    0 0 20px rgba(46,139,87,0.3),
    0 0 30px rgba(46,139,87,0.2);
}

/* =========================
   PROGRESS BAR
========================= */

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}

/* FILL */
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2e8b57, #4bbf9a);
  border-radius: 10px;
  transition: width 0.2s linear;
}

/* 🔥 SHIMMER EFFECT */
.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: shimmer 1.5s infinite;
}

/* SHIMMER ANIMATION */
@keyframes shimmer {
  0% { left: -40%; }
  100% { left: 100%; }
}

/* =========================
   TEXT
========================= */

#loadingText {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

/* =========================
   PROGRESS %
========================= */

.progress-text {
  font-size: 14px;
  font-weight: 600;
  color: #2e8b57;
  margin-top: 5px;
}

#progressNumber {
  display: inline-block;
  min-width: 28px;
  text-align: right;
  transition: 0.2s ease;
}

/* ==========================================
   PREMIUM ROOM PRICING
========================================== */

.room-option ul {
  margin-bottom: 8px;
}

.room-option ul li {

  margin-bottom: 10px;

  line-height: 1.45;
}

/* ==========================================
   ROOM NAME
========================================== */

.room-option ul li strong {

  display: inline-block;

  font-size: 16px;

  font-weight: 700;

  color: #2e8b57;

  margin-bottom: 2px;

  letter-spacing: 0.1px;
}

/* ==========================================
   MAIN PRICE
========================================== */

.price-line {

  display: block;

  margin-top: 2px;

  font-size: 15px;

  font-weight: 700;

  color: #111827;

  line-height: 1.4;
}

/* ==========================================
   per adult
========================================== */

.price-type {

  font-size: 13px;

  font-weight: 600;

  color: #64748b;

  margin-left: 4px;
}

/* ==========================================
   CHILD / INFANT BLOCK
========================================== */

.price-extra {

  display: flex;

  align-items: baseline;

  flex-wrap: wrap;

  gap: 6px;

  margin-top: 8px;

  padding-top: 8px;

  border-top: 1px dashed #e5e7eb;

  font-size: 14px;

  line-height: 1.5;
}

.price-extra:last-child {
  margin-bottom: 0;
}

/* ==========================================
   LABEL
========================================== */

.price-extra-label {

  font-weight: 700;

  color: #374151;
}

/* ==========================================
   PRICE VALUE
========================================== */

.price-value {

  color: #2e8b57;

  font-weight: 800;

  font-size: 15px;
}

/* ==========================================
   per child / infant
========================================== */

.price-extra-type {

  color: #64748b;

  font-size: 13px;

  font-weight: 600;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .room-option ul li strong {

    font-size: 17px;
  }

  .price-line {

    font-size: 15px;
  }

  .price-extra {

    font-size: 14px;

    gap: 4px;
  }

  .price-value {

    font-size: 14px;
  }

  .price-extra-type {

    font-size: 12px;
  }

}

.soft-hint{
  margin-top:6px;
  font-size:12px;
  color:#64748b;
  transition:0.25s ease;
}

.date-error{
  margin-top:6px;
  font-size:12px;
  color:#dc2626;
  font-weight:500;
  display:none;
}

/* ==========================================
   PREMIUM CITY STAY BLOCK
========================================== */

.city-stay-block {
  display: flex;
  flex-direction: column;

  gap: 6px !important;
   margin-bottom: 0 !important;

  width: 100%;
}

/* ==========================================
   EACH CITY SECTION
========================================== */

.city-stay-section {

  position: relative;

  width: 100%;

  box-sizing: border-box;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fafcfd 100%
  );

  border: 1px solid #edf2f7;

  border-radius: 16px;

  padding: 14px;

  box-shadow:
    0 4px 12px rgba(15, 23, 42, 0.03);
}

.city-stay-section:hover {
  transform: translateY(-2px);

  border-color: #d8e0e8;

  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.08);
}

/* ==========================================
   DIVIDER
========================================== */

.city-stay-section:not(:last-child)::after {
  content: "";

  position: absolute;

  left: 18px;
  right: 18px;
  bottom: -10px;

  height: 1px;

  background: #edf2f7;
  
   display: none !important;
}

/* ==========================================
   CITY TITLE
========================================== */

.city-title {

  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 15px;

  font-weight: 700;

  line-height: 1.3;

  color: #111827;

  margin-bottom: 6px;

  letter-spacing: -0.1px;
}
/* ==========================================
   DATE BOX
========================================== */

.city-dates {

  width: 100%;

  box-sizing: border-box;

  background: #ffffff;

  border: 1px solid #edf2f7;

  border-radius: 10px;

  padding: 10px;

   margin-bottom: 6px !important;
}

/* ==========================================
   DATE ROWS
========================================== */

/* ==========================================
   DATE ROWS
========================================== */

.city-dates p {

  display: flex;

  flex-direction: row;

  align-items: center;

  gap: 2px;

  margin-bottom: 4px;

  font-size: 13px;

  color: #64748b;

  line-height: 1.2;

  flex-wrap: nowrap;
}

/* LAST ROW */

.city-dates p:last-child {

  margin-bottom: 0;
}

/* LABEL */

.city-dates strong {

  color: #111827;

  font-weight: 700;

  font-size: 13px;

  min-width: fit-content;

  flex-shrink: 0;

  margin-right: 2px;
}

/* VALUE */

.city-dates span {

  color: #475569;

  font-weight: 600;

  font-size: 13px;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;
}

/* ==========================================
   NIGHTS INLINE ONLY
========================================== */

.city-dates p.nights-row {
  flex-direction: row;

  align-items: center;

  gap: 2px;
}
/* ==========================================
   HOTEL BOX
========================================== */

.city-hotel {

  width: 100%;

  box-sizing: border-box;

  background: #ffffff;

  border: 1px solid #edf2f7;

  border-radius: 10px;

  padding: 10px;
  
  margin-top: 0 !important;
}

/* ==========================================
   HOTEL NAME
========================================== */

.hotel-name {

  font-size: 15px;

  font-weight: 700;

  color: #111827;

  line-height: 1.3;

  margin-bottom: 3px;
}
/* ==========================================
   DISTANCE
========================================== */

.hotel-distance {

  font-size: 12px;

  color: #64748b;

  font-weight: 600;

  line-height: 1.45;

  margin-bottom: 4px;
}



/* ==========================================
   STARS
========================================== */

.hotel-stars {

  font-size: 12px;

  font-weight: 700;

  color: #f59e0b;

  margin-bottom: 8px;
}

/* ==========================================
   VIEW MAP LINK
========================================== */

.hotel-map {
  display: inline-block;

  margin-top: 2px;

  color: #f59e0b;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.hotel-map:hover {
  color: #d97706;

  opacity: 0.9;

  text-decoration: underline;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .city-stay-block {
    gap: 16px;
  }

  .city-stay-section {
    padding: 16px;

    border-radius: 18px;
  }

  .city-title {
    font-size: 17px;

    margin-bottom: 14px;
  }

  .city-dates,
  .city-hotel {
    padding: 14px;

    border-radius: 14px;
  }

  .hotel-name {
    font-size: 16px;
  }

  .city-dates p,
  .hotel-distance,
  .hotel-stars {
    font-size: 13px;
  }

  .hotel-map {
    font-size: 13px;
  }

}


/* ==========================================
   RESULTS SUMMARY BAR
========================================== */

.results-summary {

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;

  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fafc 100%
  );

  border: 1px solid #e6ebf1;

  border-radius: 18px;

  padding: 18px 22px;

  margin-bottom: 24px;

  box-shadow:
    0 8px 22px rgba(15, 23, 42, 0.05);
}

/* LEFT */

.summary-big {

  font-size: 20px;

  font-weight: 800;

  color: #111827;

  margin-bottom: 4px;
}

.summary-small {

  font-size: 14px;

  color: #64748b;

  font-weight: 500;
}

/* RIGHT */

.scroll-tip {

  background: #eef6f2;

  color: #2e8b57;

  border-radius: 999px;

  padding: 10px 16px;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;
}

/* MOBILE */

@media (max-width: 767px) {

  .results-summary {

    flex-direction: column;

    align-items: flex-start;

    padding: 16px;
  }

  .summary-big {

    font-size: 18px;
  }

  .summary-small {

    font-size: 13px;
  }

  .scroll-tip {

    width: 100%;

    text-align: center;
  }
}

/* ==========================================
   MODAL TOTAL PRICE
========================================== */

.modal-total-price {

  margin: 18px 0;

  padding: 18px;

  border-radius: 16px;

  background: linear-gradient(
    135deg,
    #f3fbf6 0%,
    #eef8f2 100%
  );

  border: 1px solid #d7eadf;

  text-align: center;
}

.modal-total-label {

  font-size: 13px;

  font-weight: 700;

  color: #166534;

  margin-bottom: 6px;

  text-transform: uppercase;

  letter-spacing: 0.5px;
}

.modal-total-value {

  font-size: 30px;

  font-weight: 800;

  color: #2e8b57;

  line-height: 1.2;
}

@media (max-width: 767px) {

  .modal-total-value {

    font-size: 24px;
  }

}

/* ==========================================
   FINAL CLEAN INTL TEL INPUT FIX
========================================== */

.iti {

  width: 100%;

  position: relative !important;

  z-index: 999999 !important;
}

.iti--allow-dropdown {

  width: 100%;
}

/* COUNTRY CONTAINER */

.iti__country-container {

  z-index: 999999 !important;
}

/* COUNTRY DROPDOWN */

.iti__country-list {

  position: absolute !important;

  top: calc(100% + 2px) !important;

  left: 0 !important;

  width: 100% !important;

  min-width: 280px;

  max-width: 100%;

  margin-top: 0 !important;

  padding-top: 4px;

  z-index: 999999999 !important;

  max-height: 240px !important;

  overflow-y: auto !important;

  -webkit-overflow-scrolling: touch;

  border-radius: 14px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.18);
}

/* SEARCH INPUT */

.iti__search-input {

  background: #ffffff !important;

  border: 1px solid #e5e7eb !important;

  border-radius: 10px !important;

  padding: 10px 12px !important;

  margin: 6px !important;

  width: calc(100% - 12px) !important;

  font-size: 15px;
}

/* COUNTRY ITEM */

.iti__country {

  padding: 10px 12px !important;

  font-size: 14px;

  transition: background 0.2s ease;
}

/* HOVER */

.iti__country:hover {

  background: #f8fafc;
}

/* ACTIVE */

.iti__country.iti__highlight {

  background: #eef6f2 !important;
}

/* MOBILE */

@media (max-width: 767px) {

  .booking-modal {

    align-items: flex-start;

    padding: 10px;

    overflow-y: auto;
  }

  .booking-content {

    width: 100%;

    max-width: 100%;

    margin: 10px 0;

    max-height: 85vh !important;

    overflow-y: auto !important;

    overflow-x: hidden;

    padding-bottom: 120px;

    border-radius: 18px;
    
     overscroll-behavior: contain;
    
  }

  .booking-content input {

    font-size: 16px;
  }

  .iti {

    width: 100%;

    position: relative !important;
  }

  .iti__country-list {

    width: 100% !important;

    min-width: 100%;

    max-width: 100%;

    top: calc(100% + 2px) !important;
  }

}

.booking-modal {

  background:
    rgba(15,23,42,0.72);
}

.booking-content {

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fcfcfc 100%
    );

  box-shadow:
    0 30px 80px rgba(0,0,0,0.28);
}

/* HOTEL LABEL */

.hotel-label {

  color: #374151;

  font-weight: 700;

  margin-right: 1px;
}


/* ==========================================
   SOFT CITY HELPERS
========================================== */

.soft-helper {

  display: none;

  margin-top: 5px;

  font-size: 11px;

  font-weight: 600;

  color: #64748b;

  line-height: 1.4;
}

.soft-helper.show {

  display: block;
}

/* ==========================================
   PREMIUM RESULTS SKELETON LOADER
========================================== */

.results-loading {
  width: 100%;
  margin-top: 20px;

  animation: fadeLoader 0.35s ease;
}

/* ==========================================
   TOP PROGRESS BAR
========================================== */

.results-progress {

  width: 100%;
  height: 8px;

  border-radius: 999px;

  overflow: hidden;

  background: #e5e7eb;

  margin-bottom: 16px;

  position: relative;
}

.results-progress-fill {

  width: 35%;
  height: 100%;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #2e8b57,
    #4bbf9a,
    #2e8b57
  );

  background-size: 200% 100%;

  animation:
    loadingBarMove 1.2s linear infinite,
    loadingGradient 2s ease infinite;
}

/* ==========================================
   LOADING TEXT
========================================== */

.results-loading-text {

  display: flex;
  align-items: center;
  gap: 6px;

  font-size: 15px;

  font-weight: 700;

  color: #374151;

  margin-bottom: 10px;
}

/* ==========================================
   TIMER
========================================== */

.loading-timer {

  font-size: 13px;

  font-weight: 600;

  color: #64748b;

  margin-bottom: 22px;
}

#loadingSeconds {

  color: #2e8b57;

  font-size: 16px;

  font-weight: 800;
}

/* ==========================================
   DOTS
========================================== */

.loading-dots {

  display: flex;
}

.loading-dots span {

  animation: blink 1.4s infinite;

  color: #2e8b57;

  font-weight: 800;

  font-size: 18px;

  line-height: 1;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

/* ==========================================
   GRID
========================================== */

.skeleton-grid {

  display: flex;

  gap: 22px;

  width: 100%;
}

/* ==========================================
   CARD
========================================== */

.skeleton-card {

  flex: 1;

  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fcfcfc 100%
  );

  border-radius: 22px;

  padding: 20px;

  border: 1px solid #edf2f7;

  box-shadow:
    0 12px 28px rgba(15,23,42,0.05);

  overflow: hidden;

  position: relative;
}

/* ==========================================
   SHIMMER BASE
========================================== */

.skeleton {

  position: relative;

  overflow: hidden;

  background: #edf2f7;

  border-radius: 12px;

  margin-bottom: 14px;
}

/* SHIMMER EFFECT */

.skeleton::after {

  content: "";

  position: absolute;

  top: 0;
  left: -180px;

  width: 120px;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.85),
    transparent
  );

  animation: skeletonShimmer 1.4s infinite;
}

/* ==========================================
   ELEMENTS
========================================== */

/* Badge */

.skeleton-badge {

  width: 90px;
  height: 26px;

  border-radius: 999px;

  margin-bottom: 18px;
}

/* Title */

.skeleton-title {

  height: 30px;

  width: 65%;

  border-radius: 10px;
}

/* Lines */

.skeleton-line {

  height: 14px;

  width: 100%;
}

.skeleton-line.short {

  width: 70%;
}

/* Hotel Block */

.skeleton-hotel {

  height: 90px;

  border-radius: 18px;

  margin: 18px 0;
}

/* Room Box */

.skeleton-box {

  height: 130px;

  border-radius: 18px;

  margin-top: 10px;
}

/* Price */

.skeleton-price {

  width: 45%;

  height: 24px;

  margin-top: 18px;

  border-radius: 10px;
}

/* Button */

.skeleton-button {

  height: 50px;

  border-radius: 14px;

  margin-top: 22px;
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes skeletonShimmer {

  0% {
    left: -180px;
  }

  100% {
    left: 130%;
  }
}

@keyframes loadingBarMove {

  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(320%);
  }
}

@keyframes loadingGradient {

  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes blink {

  0%, 80%, 100% {
    opacity: 0.2;
  }

  40% {
    opacity: 1;
  }
}

@keyframes fadeLoader {

  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .skeleton-grid {

    flex-direction: column;

    gap: 16px;
  }

  .skeleton-card {

    padding: 16px;

    border-radius: 18px;
  }

  .results-loading-text {

    font-size: 14px;
  }

   .loading-timer {

    font-size: 12px;
  }

}

/* ==========================================
   DESKTOP FIXED SIDEBAR + SCROLLABLE CARDS
========================================== */

.results-layout {

  display: flex;

  gap: 15px;

  max-width: 1400px;

  margin: auto;

  align-items: flex-start;
}

/* ==========================================
   ACTIVATE SCROLL LAYOUT AFTER RESULTS LOAD
========================================== */

.results-layout.has-results {

  height: calc(100vh - 20px);

  overflow: hidden;
}

/* ==========================================
   MOBILE RESET
========================================== */

@media (max-width: 767px) {

  .results-layout.has-results {

    height: auto;

    overflow: visible;
  }

  .results-content {

    height: auto !important;

    overflow: visible !important;

    padding-right: 0;
  }

  .filters-sidebar {

    width: 100%;

    min-width: 100%;

    max-width: 100%;

    height: auto;

    overflow: visible;
  }

}

/* ==========================================
   FIXED FILTER SIDEBAR
========================================== */

.filters-sidebar {

  width: 220px;

  min-width: 220px;

  max-width: 220px;

  height: 100%;

  overflow-y: auto;

  flex-shrink: 0;

  background: #ffffff;

  border-radius: 18px;

  padding: 14px;

  border: 1px solid #edf2f7;

  box-shadow:
    0 10px 30px rgba(15,23,42,0.06);
}

/* ==========================================
   ONLY RESULTS SCROLL
========================================== */

.results-content {

  flex: 1;

  min-width: 0;

  height: 100%;

  overflow-y: auto;

  overflow-x: hidden;

  padding-right: 6px;
}

/* ==========================================
/* ==========================================
   PREMIUM ALWAYS VISIBLE SCROLLBAR
========================================== */

.results-content::-webkit-scrollbar,
.filters-sidebar::-webkit-scrollbar {

  width: 10px;
}

.results-content::-webkit-scrollbar-track,
.filters-sidebar::-webkit-scrollbar-track {

  background: #dfe5eb;

  border-radius: 999px;
}

.results-content::-webkit-scrollbar-thumb,
.filters-sidebar::-webkit-scrollbar-thumb {

  background: #475569;

  border-radius: 999px;

  border: 2px solid #dfe5eb;
}

/* Hover */

.results-content::-webkit-scrollbar-thumb:hover,
.filters-sidebar::-webkit-scrollbar-thumb:hover {

  background: #1e293b;
}

/* Firefox */

.results-content,
.filters-sidebar {

  scrollbar-width: thin;

  scrollbar-color: #475569 #dfe5eb;
}


/* ==========================================
   DESKTOP COMPACT FORM SPACING
========================================== */

@media (min-width: 768px) {

  /* FORM GRID */

  .form-grid {

    gap: 16px;
  }

  /* SECTION TITLES */

  .form-section-title {

    margin-top: 4px;

    margin-bottom: 6px;

    font-size: 13px;
  }

  /* FORM GROUP */

  .form-group {

    margin-bottom: 4px;
  }

  /* LABELS */

  .form-group label {

    margin-bottom: 5px;

    font-size: 13px;
  }

  /* INPUTS */

  .form-group input,
  .form-group select {

    height: 44px;

    padding: 8px 12px;
  }

  /* CITY BLOCK */

  .city-stay-block {

    gap: 2px !important;
  }

  /* CITY SECTIONS */

  .city-stay-section {

    padding: 10px;
  }

  /* DIVIDER */

  .swap-wrapper {

    margin: 6px 0 14px;
  }

  /* FORM CARD */

  .form-card {

    padding: 20px;
  }

}


/* ==========================================
   ULTRA COMPACT DESKTOP FORM
========================================== */

@media (min-width: 768px) {

  /* FORM CARD */

  .form-card {

    padding: 16px;
  }

  /* GRID */

  .form-grid {

    gap: 12px;
  }

  /* SECTION TITLES */

  .form-section-title {

    margin-top: 0;

    margin-bottom: 4px;

    font-size: 12px;

    line-height: 1.2;
  }

  /* FORM GROUP */

  .form-group {

    margin-bottom: 2px;
  }

  /* LABELS */

  .form-group label {

    margin-bottom: 3px;

    font-size: 12px;

    line-height: 1.2;
  }

  /* INPUTS */

  .form-group input,
  .form-group select {

    height: 40px;

    padding: 6px 10px;

    font-size: 13px;
  }

  /* CITY BLOCK */

  .city-stay-block {

    gap: 0 !important;
  }

  /* CITY SECTION */

  .city-stay-section {

    padding: 8px;
  }

  /* DATES + HOTEL */

  .city-dates,
  .city-hotel {

    padding: 8px;
  }

  /* CITY TITLE */

  .city-title {

    margin-bottom: 4px;

    font-size: 14px;
  }

  /* DATE ROWS */

  .city-dates p {

    margin-bottom: 2px;

    line-height: 1.1;
  }

  /* SWAP AREA */

  .swap-wrapper {

    margin: 2px 0 8px;
  }

  .swap-btn {

    width: 42px;

    height: 42px;
  }

  /* PASSENGERS */

  .passengers-section {

    margin-top: 6px;

    padding-top: 6px;
  }

}

/* ==========================================
   COMPACT VISA SECTION
========================================== */

@media (min-width: 768px) {

  .visa-box {

    padding: 10px 12px !important;
  }

  .visa-box .section-title {

    margin-bottom: 8px;

    font-size: 14px;
  }

  .visa-toggle {

    gap: 8px;

    font-size: 13px;
  }

  /* SWITCH */

  .switch {

    width: 44px;

    height: 24px;
  }

  .slider:before {

    width: 18px;

    height: 18px;

    left: 3px;

    bottom: 3px;
  }

  .switch input:checked + .slider:before {

    transform: translateX(20px);
  }

}

/* ==========================================
   COMPACT TRANSPORT SECTION
========================================== */

@media (min-width: 768px) {

  /* MAIN WRAPPER */

  .transport-container {

    padding: 12px;

    border-radius: 14px;
  }

  /* EACH SECTION */

  .transport-section {

    margin-bottom: 14px;
  }

  /* TITLES */

  .transport-section h5 {

    font-size: 14px;

    margin-bottom: 8px;

    gap: 6px;
  }

  /* OPTIONS GRID */

  .transport-options {

    gap: 8px;
  }

  /* OPTION CARD */

  .transport-item {

    padding: 10px 12px;

    border-radius: 12px;

    min-height: 46px;
  }

  /* CHECKBOX/RADIO */

  .transport-item input {

    transform: scale(0.95);
  }

  /* TEXT */

  .transport-item span {

    font-size: 13px;

    line-height: 1.3;
  }

  /* INTERNAL AUTO ROUTE */

  .transport-internal {

    padding: 10px 12px;

    border-radius: 12px;

    font-size: 13px;
  }

}

/* ==========================================
   DESKTOP 4 COLUMN TRANSPORT LAYOUT
========================================== */

@media (min-width: 768px) {

  /* MAIN GRID */

  .transport-container {

    display: grid;

    grid-template-columns:
      repeat(4, 1fr);

    gap: 14px;

    align-items: start;
  }

  /* SECTION */

  .transport-section {

    margin-bottom: 0;
  }

  /* TITLE */

  .transport-section h5 {

    font-size: 14px;

    margin-bottom: 10px;

    min-height: 22px;
  }

  /* OPTIONS */

  .transport-options {

    gap: 8px;
  }

  /* CARD */

  .transport-item {

    padding: 10px;

    min-height: 44px;

    border-radius: 10px;

    align-items: flex-start;
  }

  /* TEXT */

  .transport-item span {

    font-size: 12px;

    line-height: 1.35;
  }

  /* INTERNAL AUTO */

  .transport-internal {

    padding: 10px;

    font-size: 12px;

    line-height: 1.4;
  }

}

/* ==========================================
   FORCE 4 COLUMN TRANSPORT
========================================== */

@media (min-width: 768px) {

  .transport-container {

    display: grid !important;

    grid-template-columns:
      repeat(4, minmax(0, 1fr)) !important;

    gap: 12px !important;

    align-items: start;

    width: 100%;
  }

  .transport-section {

    width: 100%;

    min-width: 0;
  }

  .transport-options {

    display: flex;

    flex-direction: column;

    gap: 8px;
  }

  .transport-item {

    width: 100%;

    box-sizing: border-box;
  }

}

/* ==========================================
   COMPACT TOP HERO AREA
========================================== */

@media (min-width: 768px) {

  /* MAIN CONTAINER */

  .app-container {

    padding-top: 8px;
  }

  /* PAGE TITLE */

  .package-title {

    font-size: 24px;

    margin-bottom: 2px;

    line-height: 1.2;
  }

  /* SUBTITLE */

  .package-subtitle {

    margin-bottom: 12px;

    font-size: 13px;

    line-height: 1.4;
  }

  /* PRICE VALID CHIP */

  .price-insights {

    margin-bottom: 10px;

    padding-bottom: 0;
  }

  .price-chip {

    padding: 8px 12px;

    min-width: unset;

    font-size: 12px;
  }

  /* FORM CARD */

  .form-card {

    margin-top: 0;

    padding-top: 14px;
  }}
  
  /* ==========================================
   ULTRA COMPACT MOBILE FORM
========================================== */

@media (max-width: 767px) {

  /* MAIN CARD */

  .form-card {

    padding: 12px;
  }

  /* FORM GRID */

  .form-grid {

    gap: 8px;
  }

  /* SECTION TITLES */

  .form-section-title,
  .section-title {

    font-size: 13px;

    margin-bottom: 6px;

    line-height: 1.2;
  }

  /* FORM GROUP */

  .form-group {

    margin-bottom: 2px;
  }

  /* LABELS */

  .form-group label {

    font-size: 12px;

    margin-bottom: 3px;

    line-height: 1.2;
  }

  /* INPUTS */

  .form-group input,
  .form-group select {

    height: 40px;

    padding: 6px 10px;

    font-size: 13px;

    border-radius: 10px;
  }

  /* CITY SECTIONS */

  .form-section,
  .section-box,
  .city-stay-section {

    padding: 10px;

    border-radius: 12px;
  }

  /* SWAP */

  .swap-wrapper {

    margin: 4px 0 10px;
  }

  .swap-btn {

    width: 40px;

    height: 40px;
  }

  /* PASSENGERS */

  .passengers-section {

    margin-top: 4px;

    padding-top: 4px;
  }

  /* TRANSPORT */

  .transport-container {

    display: block !important;

    padding: 0 !important;
  }

  .transport-section {

    margin-bottom: 10px !important;
  }

  .transport-options {

    display: flex !important;

    flex-direction: column !important;

    gap: 6px;
  }

  .transport-item {

    padding: 8px 10px;

    min-height: 40px;

    border-radius: 10px;
  }

  .transport-item span {

    font-size: 12px;

    line-height: 1.3;
  }

  .transport-internal {

    padding: 8px 10px;

    border-radius: 10px;

    font-size: 12px;
  }

  /* VISA */

  .visa-box {

    padding: 10px !important;
  }

  .visa-toggle {

    gap: 6px;

    font-size: 12px;
  }

  .switch {

    width: 42px;

    height: 22px;
  }

  .slider:before {

    width: 16px;

    height: 16px;

    bottom: 3px;

    left: 3px;
  }

  /* HERO */

  .package-title {

    font-size: 20px;

    margin-bottom: 2px;
  }

  .package-subtitle {

    font-size: 12px;

    margin-bottom: 10px;
  }

  .price-chip {

    font-size: 11px;

    padding: 7px 10px;
  }

}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

  .results-layout {

    flex-direction: column;

    height: auto;

    overflow: visible;
  }

  .filters-sidebar,
  .results-content {

    width: 100%;

    height: auto;

    overflow: visible;
  }

  .loading-timer {

    font-size: 12px;
  }

}

@media (max-width: 767px) {

  .mobile-filter-toggle {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: 100%;

    margin-bottom: 14px;

    padding: 14px;

    border: none;

    border-radius: 14px;

    background: linear-gradient(
      145deg,
      #2e8b57,
      #256f47
    );

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
      0 10px 25px rgba(46,139,87,0.25);
  }

  /* MOBILE FILTER STYLE */

  .filters-sidebar {

    width: 100% !important;

    min-width: 100% !important;

    max-width: 100% !important;

    position: static !important;

    margin-bottom: 15px;

    max-height: unset;

    overflow: visible;

    display: none !important;
  }

  /* SHOW FILTERS */

  .filters-sidebar.show-mobile-filters {

    display: block !important;
  }
}

/* ==========================================
   MOBILE FLATPICKR FIX
========================================== */

@media (max-width: 767px) {

  .flatpickr-calendar {

    width: 100% !important;

    max-width: 340px !important;

    left: 50% !important;

    transform: translateX(-50%) !important;

    border-radius: 18px !important;

    box-shadow:
      0 15px 40px rgba(0,0,0,0.18) !important;

    font-size: 14px !important;
  }

  /* DAYS */

  .flatpickr-day {

    max-width: 38px;

    height: 38px;

    line-height: 38px;
  }

  /* MONTH HEADER */

  .flatpickr-current-month {

    font-size: 15px;
  }

  /* WEEKDAYS */

  .flatpickr-weekday {

    font-size: 12px;
  }

}

/* ==========================================
   MOBILE CALENDAR TITLE
========================================== */

.mobile-calendar-title {

  display: none;

  position: fixed;

  top: calc(50% - 260px);

  left: 50%;

  transform: translateX(-50%);

  z-index: 999999;

  background: #2e8b57;

  color: #ffffff;

  padding: 10px 18px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: 700;

  white-space: nowrap;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.18);
}

/* ==========================================
   LIVE STATUS BADGE
========================================== */

.loading-status-badge {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 14px;

  border-radius: 999px;

  background: #ecfdf5;

  border: 1px solid #bbf7d0;

  margin-bottom: 20px;

  font-size: 13px;

  font-weight: 700;

  color: #166534;

  box-shadow:
    0 4px 10px rgba(34,197,94,0.08);
}

/* PULSE DOT */

.loading-pulse {

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: #22c55e;

  position: relative;

  flex-shrink: 0;

  animation: pulseLive 1.4s infinite;
}

/* GLOW */

.loading-pulse::after {

  content: "";

  position: absolute;

  inset: 0;

  border-radius: 50%;

  background: rgba(34,197,94,0.45);

  animation: pulseGlow 1.4s infinite;
}

@keyframes pulseLive {

  0%,100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }
}

@keyframes pulseGlow {

  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

/* Main phone input */
.iti input.iti__tel-input,
.iti input.iti__tel-input[type=text],
.iti input.iti__tel-input[type=tel]{

    width:100% !important;
    height:46px !important;

    padding-left:95px !important; /* space for flag + code */

    border-radius:0.375rem !important;

    position:relative !important;
    z-index:1;

    margin:0 !important;
}

/* Country button area */
.iti__selected-country{
    height:46px !important;
    padding:0 10px !important;
    display:flex !important;
    align-items:center !important;
    background:transparent !important;
    border:none !important;
}

/* Flag + label wrapper */
.iti__selected-country-primary{

    display:flex !important;

    align-items:center !important;

    gap:6px !important;

    height:100% !important;

    padding:0 !important;

    overflow:visible !important;
}

/* Dial code */
.iti__selected-dial-code{

    display:block !important;

    color:#212121 !important;

    font-size:14px !important;

    margin-left:4px !important;
}

/* Fix hidden flag */
.iti__flag{
    transform:scale(1.1);
}

/* Input placeholder/text visibility */
.iti input{
    color:#333 !important;
    font-size:14px !important;
}

/* Placeholder */
.iti input::placeholder{
    color:#777 !important;
    opacity:1 !important;
}


/* =====================================
   PREMIUM FAQ SECTION
===================================== */

.faq-section {
    max-width: 1100px;

    margin: 60px auto;

    padding: 40px;

    background: #ffffff;

    border-radius: 24px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);

    position: relative;

    overflow: hidden;
}


/* =====================================
   TOP GOLD ACCENT
===================================== */

.faq-section::before {
    content: '';

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            #c8a44d,
            #f5d97a,
            #c8a44d
        );
}


/* =====================================
   FAQ HEADING
===================================== */

.faq-section h2 {
    text-align: center;

    font-size: 34px;

    font-weight: 700;

    color: #1f2937;

    margin: 0 0 40px;

    position: relative;
}

.faq-section h2::after {
    content: '';

    display: block;

    width: 90px;

    height: 4px;

    margin: 12px auto 0;

    border-radius: 50px;

    background: #c8a44d;
}


/* =====================================
   FAQ CARD
===================================== */

.faq-item {
    margin-bottom: 10px;

    border: 1px solid #ececec;

    border-radius: 13px;

    overflow: hidden;

    background: #ffffff;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.faq-item:hover {
    border-color: #e6d3a0;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, .05);
}

.faq-item.active {
    border-color: #c8a44d;

    box-shadow:
        0 8px 24px rgba(200, 164, 77, .13);
}


/* =====================================
   FAQ QUESTION — COMPACT
===================================== */

.faq-question {
    width: 100%;

    min-height: 48px;

    padding: 13px 50px 13px 20px;

    border: none;

    background: #ffffff;

    text-align: left;

    font-size: 15px;

    font-weight: 600;

    color: #1f2937;

    cursor: pointer;

    position: relative;

    line-height: 1.45;

    transition:
        background .25s ease,
        color .25s ease;
}

.faq-question:hover {
    background: #fffdf8;

    color: #8a6a1f;
}

.faq-item.active .faq-question {
    background: #fffdf7;

    color: #8a6a1f;
}


/* =====================================
   CHEVRON ICON
===================================== */

.faq-question::after {
    content: "›";

    position: absolute;

    right: 18px;

    top: 50%;

    transform:
        translateY(-50%)
        rotate(90deg);

    font-size: 25px;

    font-weight: 400;

    color: #c8a44d;

    line-height: 1;

    transition:
        transform .3s ease;
}

.faq-item.active .faq-question::after {
    transform:
        translateY(-50%)
        rotate(-90deg);
}


/* =====================================
   FAQ ANSWER
===================================== */

.faq-answer {
    display: none;

    padding: 0 20px 18px;

    color: #555555;

    font-size: 14px;

    line-height: 1.75;

    border-top: 1px solid #f5f5f5;

    animation:
        faqFade .3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}


/* =====================================
   ANSWER LIST
===================================== */

.faq-answer ul {
    margin-top: 10px;

    margin-bottom: 0;

    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 6px;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer li::marker {
    color: #c8a44d;
}


/* =====================================
   FAQ PARAGRAPH
===================================== */

.faq-answer p {
    margin-top: 0;

    margin-bottom: 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


/* =====================================
   FAQ LINKS
===================================== */

.faq-answer a {
    color: #9a7625;

    font-weight: 700;

    text-decoration: underline;

    text-underline-offset: 2px;
}


/* =====================================
   FAQ ANIMATION
===================================== */

@keyframes faqFade {

    from {
        opacity: 0;

        transform:
            translateY(-6px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =====================================
   FAQ NOTICE
===================================== */

.faq-notice {
    max-width: 1000px;

    margin: 30px auto 20px;

    padding: 13px 18px;

    background: #fff8e1;

    border-left: 4px solid #f39c12;

    border-radius: 9px;

    color: #7a5a00;

    font-size: 14px;

    line-height: 1.6;

    font-weight: 500;

    box-shadow:
        0 2px 10px rgba(0, 0, 0, .06);
}

.faq-notice strong {
    color: #d35400;

    font-weight: 700;
}


/* =====================================
   MOBILE FAQ
===================================== */

@media (max-width: 768px) {

    .faq-section {
        margin: 30px 15px;

        padding: 22px 15px;

        border-radius: 18px;
    }


    .faq-section h2 {
        font-size: 26px;

        margin-bottom: 25px;
    }


    .faq-section h2::after {
        width: 70px;

        height: 3px;

        margin-top: 9px;
    }


    .faq-item {
        margin-bottom: 8px;

        border-radius: 11px;
    }


    .faq-question {
        min-height: 44px;

        padding:
            11px 42px 11px 15px;

        font-size: 14px;

        line-height: 1.45;
    }


    .faq-question::after {
        right: 14px;

        font-size: 23px;
    }


    .faq-answer {
        padding:
            0 15px 15px;

        font-size: 13px;

        line-height: 1.7;
    }


    .faq-answer ul {
        padding-left: 18px;
    }


    .faq-answer li {
        margin-bottom: 5px;
    }
}


/* =====================================
   FAQ NOTICE — MOBILE
===================================== */

@media (max-width: 767px) {

    .faq-notice {
        margin: 20px 15px;

        padding: 11px 14px;

        font-size: 13px;

        line-height: 1.6;
    }
}


/* =====================================
   VERY SMALL MOBILE
===================================== */

@media (max-width: 400px) {

    .faq-section {
        margin: 25px 10px;

        padding: 20px 12px;
    }

    .faq-section h2 {
        font-size: 23px;

        margin-bottom: 22px;
    }

    .faq-question {
        min-height: 42px;

        padding:
            10px 38px 10px 13px;

        font-size: 13px;
    }

    .faq-question::after {
        right: 12px;

        font-size: 21px;
    }

    .faq-answer {
        padding:
            0 13px 13px;

        font-size: 12.5px;
    }
}

/* =====================================
   BRAND GOLD GLOW
===================================== */

.glow-brand {
    font-size: 28px;

    font-weight: 700;

    color: #c8a44d !important;

    letter-spacing: .5px;

    text-transform: uppercase;

    text-shadow:
        0 1px 2px rgba(0,0,0,.08),
        0 0 6px rgba(200,164,77,.18);

    transition:
        all .3s ease;
}

.glow-brand:hover {
    text-shadow:
        0 1px 2px rgba(0,0,0,.08),
        0 0 10px rgba(200,164,77,.25);
}

/* =====================================
TOP ENGINE BAR
===================================== */

.top-engine-bar{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
margin:15px 0 25px;
padding:10px 0;
}

/* ENGINE BADGE */

.package-engine-badge{
display:inline-flex;
align-items:center;
gap:10px;


background:linear-gradient(135deg,#2e8b57,#3ca66b);
color:#fff;

padding:12px 24px;
border-radius:50px;

font-size:22px;
font-weight:700;
letter-spacing:.3px;

border:1px solid rgba(255,255,255,.15);

box-shadow:
    0 8px 25px rgba(46,139,87,.18),
    inset 0 1px 0 rgba(255,255,255,.15);

transition:.3s ease;


}

.package-engine-badge:hover{
transform:translateY(-2px);
}

/* =========================================================
   LOGIN / AUTH AREA — PREMIUM
========================================================= */

.auth-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 9px;

    flex-wrap: wrap;

    width: auto;

    text-align: right;
}


/* =========================================================
   ALL AUTH BUTTONS
========================================================= */

.auth-buttons .btn {
    min-height: 40px;

    padding: 8px 17px;

    border-radius: 10px;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .1px;

    border: 1px solid transparent;

    box-shadow:
        0 4px 12px rgba(15,23,42,.07);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease,
        border-color .22s ease,
        color .22s ease;
}


/* =========================================================
   PRIMARY / LOGIN
========================================================= */

.auth-buttons .btn-primary {
    background:
        linear-gradient(
            135deg,
            #2e8b57,
            #256f47
        ) !important;

    border-color: #2e8b57 !important;

    color: #ffffff !important;
}

.auth-buttons .btn-primary:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #369d64,
            #2e8b57
        ) !important;

    border-color: #369d64 !important;

    color: #ffffff !important;

    box-shadow:
        0 8px 20px rgba(46,139,87,.25);
}

.auth-buttons .btn-primary:active {
    transform: translateY(0) scale(.98);
}


/* =========================================================
   OUTLINE / REGISTER
========================================================= */

.auth-buttons .btn-outline-primary {
    background: #ffffff !important;

    border-color: #2e8b57 !important;

    color: #2e8b57 !important;
}

.auth-buttons .btn-outline-primary:hover {
    transform: translateY(-2px);

    background: #f0faf3 !important;

    border-color: #2e8b57 !important;

    color: #166534 !important;

    box-shadow:
        0 7px 18px rgba(46,139,87,.14);
}

.auth-buttons .btn-outline-primary:active {
    transform: translateY(0) scale(.98);
}


/* =========================================================
   SECONDARY / LOGOUT
========================================================= */

.auth-buttons .btn-outline-secondary {
    background: #ffffff !important;

    border-color: #dbe3e8 !important;

    color: #475569 !important;
}

.auth-buttons .btn-outline-secondary:hover {
    transform: translateY(-2px);

    background: #f8fafc !important;

    border-color: #cbd5e1 !important;

    color: #1f2937 !important;

    box-shadow:
        0 7px 18px rgba(15,23,42,.10);
}


/* =========================================================
   USER NAME / LOGGED-IN STATE
========================================================= */

.auth-buttons .fw-semibold {
    display: inline-flex;

    align-items: center;

    min-height: 40px;

    padding: 8px 13px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #f0faf3,
            #e8f7ee
        );

    border: 1px solid #d4ecdd;

    color: #166534;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.2;

    white-space: nowrap;

    box-shadow:
        0 4px 12px rgba(46,139,87,.06);
}


/* =========================================================
   USER ICON / AVATAR IF PRESENT
========================================================= */

.auth-buttons .user-avatar {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 27px;

    height: 27px;

    margin-right: 6px;

    border-radius: 50%;

    background: #2e8b57;

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   TOP ENGINE BAR
========================================================= */

.top-engine-bar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    width: 100%;

    margin: 15px 0 25px;
}


/* =========================================================
   MOBILE AUTH AREA
========================================================= */

@media (max-width: 768px) {

    .top-engine-bar {
        flex-direction: column;

        align-items: stretch;

        justify-content: center;

        gap: 12px;

        margin: 10px 0 20px;
    }


    .package-engine-badge {
        width: 100%;

        justify-content: center;

        font-size: 18px;

        padding: 12px 18px;
    }


    .auth-buttons {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 8px;

        flex-wrap: wrap;

        text-align: center;
    }


    .auth-buttons .btn {
        min-width: 110px;

        min-height: 40px;

        padding: 8px 15px;

        border-radius: 10px;

        font-size: 12px;
    }


    .auth-buttons .fw-semibold {
        min-height: 40px;

        padding: 8px 11px;

        font-size: 11px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .auth-buttons {
        gap: 6px;
    }

    .auth-buttons .btn {
        min-width: 100px;

        padding: 8px 12px;

        font-size: 11px;
    }

    .auth-buttons .fw-semibold {
        font-size: 10px;

        padding: 8px 9px;
    }
}


/* =========================================================
   PACKAGE CONTAINER POSITION
========================================================= */

.package-container {
    margin-top: -40px;
}
.terms-consent{
    margin:15px 0 12px;
    font-size:12px;
    line-height:1.6;
    color:#64748b;
    text-align:center;
}

.terms-consent a{
    color:#0b5c5a;
    font-weight:600;
    text-decoration:underline;
}

.terms-consent a:hover{
    color:#084744;
}

.single-occupancy-note{
    margin-top:10px;
    color:#dc2626;
    font-size:13px;
    font-weight:700;
    line-height:1.4;
}

/* =========================================================
   LARGE GROUP HOTEL SELECTOR
   ========================================================= */

.large-group-selector {
    width: 100%;
    max-width: 1000px;
    margin: 35px auto 50px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}


/* =========================================================
   HEADER
   ========================================================= */

.large-group-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.large-group-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 16px;

    font-size: 28px;
}

.large-group-header h2 {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.large-group-header p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}


/* =========================================================
   INFORMATION MESSAGE
   ========================================================= */

.large-group-message {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0f766e;
    border-radius: 12px;

    padding: 18px 20px;
    margin-bottom: 25px;
}

.large-group-message p {
    margin: 0 0 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.65;
}

.large-group-message p:last-child {
    margin-bottom: 0;
}

.large-group-note {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 9px;
    padding: 12px 14px;
    margin-top: 14px !important;
    color: #92400e !important;
}


/* =========================================================
   HOTEL SELECTION GRID
   ========================================================= */

.large-group-hotels {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.large-group-hotel-field {
    display: flex;
    flex-direction: column;
}

.large-group-hotel-field label {
    display: block;
    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.large-group-hotel-field select {
    width: 100%;
    min-height: 48px;

    padding: 0 14px;

    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 10px;

    color: #1f2937;
    font-size: 14px;

    outline: none;
    cursor: pointer;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.large-group-hotel-field select:hover {
    border-color: #94a3b8;
}

.large-group-hotel-field select:focus {
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}


/* =========================================================
   ERROR MESSAGE
   ========================================================= */

#largeGroupHotelError {
    margin-top: 15px;
    padding: 10px 14px;

    border-radius: 9px;

    background: #fef2f2;
    border: 1px solid #fecaca;

    color: #b91c1c;
    font-size: 13px;
}


/* =========================================================
   ACTION BUTTON
   ========================================================= */

.large-group-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

#largeGroupCalculateBtn {
    min-width: 250px;

    padding: 13px 24px;

    border: none;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #047857,
        #0f766e
    );

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 18px rgba(15, 118, 110, 0.20);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

#largeGroupCalculateBtn:hover {
    transform: translateY(-1px);

    box-shadow:
        0 10px 22px rgba(15, 118, 110, 0.28);
}

#largeGroupCalculateBtn:active {
    transform: translateY(0);
}

#largeGroupCalculateBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}


/* =========================================================
   SUPPORT MESSAGE
   ========================================================= */

.large-group-support {
    margin-top: 20px;

    text-align: center;

    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.large-group-support strong {
    color: #0f766e;
}


/* =========================================================
   LOADING
   ========================================================= */

.large-group-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 30px 10px;

    color: #64748b;
    font-size: 14px;
}

.large-group-spinner {
    width: 22px;
    height: 22px;

    border: 3px solid #e2e8f0;
    border-top-color: #0f766e;

    border-radius: 50%;

    animation: largeGroupSpin 0.8s linear infinite;
}

@keyframes largeGroupSpin {

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .large-group-selector {
        margin: 25px 12px 40px;
        width: calc(100% - 24px);
        padding: 20px 16px;
        border-radius: 16px;
    }

    .large-group-header {
        align-items: flex-start;
        gap: 12px;
    }

    .large-group-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 23px;
        border-radius: 13px;
    }

    .large-group-header h2 {
        font-size: 20px;
    }

    .large-group-header p {
        font-size: 13px;
    }

    .large-group-hotels {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .large-group-message {
        padding: 15px;
    }

    .large-group-message p {
        font-size: 13px;
    }

    #largeGroupCalculateBtn {
        width: 100%;
        min-width: 0;
    }

}