@import url('https://fonts.googleapis.com/css2?family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');

*{ box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -o-box-sizing:border-box;}
body{ padding:0px; margin:0px; font-weight:normal; font-style:normal; font-family: "Host Grotesk", sans-serif; overflow-x: hidden;}
:root{--primary-color:#012275; --secondary-color:#e8261e;}




.home_banner{    background: url(/images/home_banner.jpg) top center / cover no-repeat;}
.home_banner_main{       padding: 5rem 0;
    margin: 0 auto;
    max-width: 700px;}

.web_heading h1{    text-align: center;
    color: #fff;
    padding-bottom: 12px;
    font-size: 35px;
    margin: 0;}
  .widget-wrapper {
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 10px;
  }
 
  .widget-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 24px 20px 24px;
    position: relative;
  }
 
  /* ---------- Trip type toggle ---------- */
  .trip-toggle {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
  }
 
  .trip-toggle input[type="radio"] {
    display: none;
  }
 
  .trip-toggle label {
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    padding: 6px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    margin: 0;
    user-select: none;
  }
 
  .trip-toggle input[type="radio"]:checked + label {
    border-color: #cfd4da;
    background: #fff;
    color: #212529;
  }
 
  /* ---------- From / To boxes ---------- */
  .location-box {
    border: 1px solid #e3e6ea;
    border-radius: 14px;
    padding: 14px 16px;
    height: 100%;
    position: relative;
  }
 
  .location-box .label {
    font-size: 12px;
    color: #616161;
    margin-bottom: 2px;
  }
 
  .location-box .city-input {
    border: none;
    outline: none;
    padding: 0;
    width: 100%;
    font-size: 19px;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
    background: transparent;
  }
 
  .location-box .city-input::placeholder {
    color: #212529;
    opacity: 0.55;
    font-weight: 700;
  }
 
  .location-box .sub {
        font-size: 13px;
    color: #616161;
    margin-top: 2px;
  }
 
  .location-box .pin-icon {
    font-size: 15px;
    color: #212529;
  }
 
  .location-box .code {
    font-size: 20px;
    color: #c3c8ce;
    font-weight: 600;
    letter-spacing: 1px;
  }
 
  .swap-icon-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    cursor: pointer;
  }
 
  .swap-icon-wrap i {
    font-size: 16px;
    color: #212529;
  }
 
  .locations-row {
    position: relative;
  }
 
  /* ---------- Shared "split box" style for date row and passenger/class row ---------- */
  .split-box {
    border: 1px solid #e3e6ea;
    border-radius: 14px;
    padding: 0;
    display: flex;
    align-items: stretch;
    position: relative;
  }
 
  .split-box .split-col {
    flex: 1 1 0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
  }
 
  .split-box .split-col:first-child {
    border-right: 1px solid #e3e6ea;
  }
 
  .split-box .icon {
    font-size: 18px;
    color: #212529;
    flex-shrink: 0;
  }
 
  .split-box .content {
    flex-grow: 1;
    min-width: 0;
    cursor: pointer;
  }
 
  .split-box .label {
    font-size: 12px;
    color: #616161;
    margin-bottom: 2px;
  }
 
  .split-box .main-value {
    font-size: 15px;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
  }
 
  .split-box .sub-value {
    font-size: 11px;
    color: #616161;
    margin-top: 2px;
  }
 
  .split-box .date-input {
    border: none;
    outline: none;
    padding: 0;
    width: 100%;
    background: transparent;
    font-size: 15px;
    font-weight: 700;
    color: #212529;
    cursor: pointer;
  }
 
  .split-box .arrows {
    display: flex;
    gap: 2px;
    color: #495057;
    font-size: 15px;
    flex-shrink: 0;
  }
 
  .split-box .chevron-down {
    color: #495057;
    font-size: 15px;
    flex-shrink: 0;
    pointer-events: none;
    transition: transform 0.15s ease;
  }
 
  .split-box .chevron-down.open {
    transform: rotate(180deg);
  }
 
  /* ---------- Dropdown flyout panels (Passenger #box / Class #classBox) ---------- */
  .dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 280px;
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 16px;
    z-index: 20;
  }
 
  .passen_left label {
    font-size: 14px;
    color: #212529;
    margin-bottom: 0;
  }
 
  .adult-right, .children-right, .infants-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
 
  .qtyminus {
    width: 26px;
    height: 26px;
    border: 1px solid #cfd4da;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
  }
 
  .adult-minus-txt {
    margin: 0;
    font-size: 15px;
    line-height: 1;
  }
 
  .qtynumber {
    width: 30px;
    text-align: center;
    border: none;
    font-size: 14px;
    font-weight: 600;
  }
 
  .submit--button {
    width: 100%;
    background: #e8261e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
  }
 
  /* Class options list */
  .class-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 6px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #212529;
  }
 
  .class-option:hover {
    background: #f5f6f8;
  }
 
  .class-option.active {
    background: #fdeceb;
    color: #e8261e;
  }
 
  .class-option .class-option-sub {
    font-size: 11px;
    font-weight: 400;
    color: #616161;
  }
 
  .class-option.active .class-option-sub {
    color: #e8261e;
  }
 
  /* ---------- Search button ---------- */
  .btn-search {
    background: #e8261e;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    width: 100%;
  }
 
  .btn-search:hover {
    background: #cf1f18;
    color: #fff;
  }
 
  .helper-text {
    font-size: 13px;
    color: #6c757d;
    margin-top: 14px;
    margin-bottom: 12px;
  }
 

 
 
  @media (max-width: 575.98px) {
    .widget-card {
      padding: 18px 16px 16px 16px;
    }
    .location-box .city-input {
      font-size: 16px;
    }
    .location-box .code {
      font-size: 16px;
    }
    .swap-icon-wrap {
      width: 34px;
      height: 34px;
    }
    .split-box {
      flex-direction: column;
    }
    .split-box .split-col:first-child {
      border-right: none;
      border-bottom: 1px solid #e3e6ea;
    }
    .dropdown-panel {
      width: 100%;
    }
  
  }

  .deals-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px 70px 20px;
  }
 
  .deals-heading {
    font-weight: 400;
    font-size: 42px;
    text-align: center;
    color: #1a1a1a;
    line-height: 1.3;
    max-width: 780px;
    margin: 0 auto 30px auto;
  }
 
  .deal-row {
    display: flex;
    align-items: center;
    padding: 22px 0;gap: 25px;
  }
 

  .deal-illustration {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
  }
 
  .deal-illustration svg {
    width: 100%;
    height: 100%;
  }
 
  .deal-body {
    flex-grow: 1;
    padding: 0 28px;
    min-width: 0;
  }
 
  .deal-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
  }
 
  .deal-text {
    font-size: 14px;
    color: #5c5c5c;
    line-height: 1.5;
    margin: 0;
  }
 
  .deal-cta {
    flex-shrink: 0;
  }
 
  .btn-deal {
    background: #e8261e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }
 
  .btn-deal:hover {
    background: #cf1f18;
    color: #fff;
  }
 
  @media (max-width: 767.98px) {
    .deals-heading {
      font-size: 28px;
    }
    .deal-row {
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      padding: 24px 0;
    }
    .deal-illustration {
      width: 100px;
      height: 100px;
      margin: 0 auto 14px auto;
    }
    .deal-body {
      padding: 0;
      flex-basis: 100%;
      margin-bottom: 16px;
    }
    .deal-cta {
      flex-basis: 100%;
      display: flex;
      justify-content: center;
    }
  }





  .meta_shell {
    max-width:1240px;
    margin:0 auto;
    padding:0 24px;
  }
  .meta_row {
    display:flex;
    flex-wrap:wrap;
    gap:24px;
  }
  .meta_row > [class*="meta_col-"] { box-sizing:border-box; }
  .meta_col-12 { flex:0 0 100%; max-width:100%; }
  .meta_col-8  { flex:0 0 calc(66.6667% - 16px); max-width:calc(66.6667% - 16px); }
  .meta_col-6  { flex:0 0 calc(50% - 12px); max-width:calc(50% - 12px); }
  .meta_col-4  { flex:0 0 calc(33.3333% - 16px); max-width:calc(33.3333% - 16px); }
  .meta_col-3  { flex:0 0 calc(25% - 18px); max-width:calc(25% - 18px); }
 
  @media (max-width:992px){
    .meta_col-4 { flex:0 0 calc(50% - 12px); max-width:calc(50% - 12px); }
    .meta_col-3 { flex:0 0 calc(50% - 12px); max-width:calc(50% - 12px); }
    .meta_col-8 { flex:0 0 100%; max-width:100%; }
  }
  @media (max-width:640px){
    .meta_col-4, .meta_col-3, .meta_col-6, .meta_col-8 { flex:0 0 100%; max-width:100%; }
    .meta_row { gap:16px; }
  }
 
  .meta_eyebrow {
    color:#7a828f;
    font-size:15px;
    max-width:640px;
    margin:0 auto 8px;
    text-align:center;
  }
  .meta_section-head { text-align:center; margin-bottom:48px; }
  .meta_section-head h2 { font-size:34px; margin-bottom:12px; }
  .meta_section-head p { color: #000;
    font-size: 14px;
    max-width: 644px;
    margin: 0 auto;
    font-weight: 300; }
  .meta_pill-btn {
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#fff;
    color:#e8262f;
    border:1.5px solid #e8262f;
    font-weight:600;
    font-size:14px;
    padding:9px 16px;
    border-radius:6px;
    white-space:nowrap;
    transition:background .15s ease, color .15s ease;
  }
  .meta_pill-btn:hover { background:#e8262f; color:#fff; }
 
  /* ================= HERO ================= */
  .meta_hero { padding:64px 0 48px; background:#ffffff; }
  .meta_hero .meta_hero__inner { text-align:center; }
  .meta_hero .meta_hero__tagline { font-size:24px; font-weight:400; color:#3a3f4b; margin-bottom:10px; }
  .meta_hero .meta_hero__title { font-size:42px; font-weight:700; letter-spacing:.5px; }
 
  @media (max-width:640px){
    .meta_hero .meta_hero__tagline { font-size:18px; }
    .meta_hero .meta_hero__title { font-size:30px; }
  }
 
  /* ================= DEALS ================= */
  .meta_deals { background:#fafafa; padding:64px 0 72px; }
  .meta_deals .meta_section-head h2 { font-size:32px;    font-weight: 400; }
 
  .meta_deal-card {
     display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(97, 97, 97, 0.2);
    border-radius: 5px;
    padding: 14px;
    height: 100%;
  }
  .meta_deal-card .meta_deal-card__thumb {
    width:48px; height:48px; border-radius:50%;
    overflow:hidden; flex-shrink:0; background:#eee;
  }
  .meta_deal-card .meta_deal-card__thumb img { width:100%; height:100%; object-fit:cover; }
  .meta_deal-card .meta_deal-card__info { flex:1; min-width:0; }
  .meta_deal-card .meta_deal-card__label {display: block;
    font-size: 14px;
    color: #1b1b1b;
    font-weight: 300;}
  .meta_deal-card .meta_deal-card__dest { display:block; font-size:15px; font-weight:600; color: #000000;}
  .meta_deal-card .meta_deal-card__price {
    flex-shrink:0;
    font-size:13px;
    font-weight:700;
    color:#e8262f;
    border:1.5px solid #e8262f;
    border-radius:5px;
    padding:8px 12px;
  }
 
  /* ================= ABOUT / FAQ ================= */
  .meta_about { padding:80px 0; }
  .meta_about .meta_about__heading { font-size:32px; line-height:1.25; margin-bottom:0; }
  .meta_about .meta_faq { margin-bottom:32px; }
  .meta_about .meta_faq h3 { font-size:16px; margin-bottom:8px; }
  .meta_about .meta_faq p { font-size:14px; color:#7a828f; }
  .meta_about .meta_about__banner {
    margin-top:40px;
    border-radius:14px;
    overflow:hidden;
    position:relative;
  }
  .meta_about .meta_about__banner img { width:100%; height:260px; object-fit:cover; }
 
  /* ================= DESTINATIONS ================= */
  .meta_destinations {
    background: url(/images/deal_bg.webp); background-repeat:no-repeat; background-size:cover;
    padding:72px 0;
    position:relative;
    overflow:hidden;
  }
  .meta_destinations .meta_destinations__inner { position:relative; }
  .meta_destinations .meta_section-head h2 {color: #fff;
    font-size: 40px;
    font-weight: 300;
    padding-bottom: 2.5rem; }
  .meta_destinations .meta_section-head { margin-bottom:16px; }
 
  .meta_destination-card {
       background: rgb(255, 255, 255);
    border-radius: 5px;
    /* overflow: hidden; */
    /* box-shadow: rgba(0, 0, 0, 0.25) 0px 20px 40px; */
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(97, 97, 97, 0.2);
  }
  .meta_destination-card .meta_destination-card__media { position:relative; height:190px; }
  .meta_destination-card .meta_destination-card__media img {     width: 100%;
    height: 100%;
    position: relative;
    z-index: 9;
    border-radius: 5px 5px 0 0;
    z-index: 9; }

  .meta_destination-card__row{font-size: 17px;
    color: #000;}
  .meta_destination-card .meta_destination-card__badge {
 position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(232, 38, 47);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    padding: 6px 41px 26px;
    border-radius: 30px;
    white-space: nowrap;
    z-index: 1;
  }
  .meta_destination-card .meta_destination-card__body { padding:18px 22px 22px; flex:1; display:flex; flex-direction:column; }
  .meta_destination-card .meta_destination-card__row {cursor:pointer;
 justify-content:space-between; align-items:center;
    padding:16px 0; border-bottom:1px solid #D9D9D9; font-size:14px;
  }
  .meta_destination_details {    display: flex;
    width: 100%;
    justify-content: space-between;}

  .meta_destination-card__row a{color:#000;}

  .meta_destination-card .meta_destination-card__row:last-of-type { border-bottom:none; }
  .meta_destination-card .meta_destination-card__price { color:#e8262f; font-weight:700; }
  .meta_destination-card .meta_destination-card__cta {
    margin-top:18px;
    text-align:center;
    border:1.5px solid #e8262f;
    color:#e8262f;
    font-weight:600;
    font-size:14px;
    padding:12px;
      border-radius: 5px;
    text-decoration: none;
  }
 
  .meta_destinations .meta_destinations__arrow {
    position:absolute;
    top:calc(50% + 22px);
    transform:translateY(-50%);
    width:44px; height:44px;
    border-radius:50%;
    background:#e8262f;
    color:#fff;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:5; border:none;
  }
  .meta_destinations .meta_destinations__arrow--prev { left:-6px; }
  .meta_destinations .meta_destinations__arrow--next { right:-6px; }
  @media (max-width:992px){
    .meta_destinations .meta_destinations__arrow { display:none; }
  }
 
  /* ================= ROUTES / DEPARTURES ================= */
  .meta_routes, .meta_departures { padding:72px 0 24px; }
  .meta_routes .meta_section-head, .meta_departures .meta_section-head { text-align:left; margin-bottom:36px; }
  .meta_routes .meta_section-head h2, .meta_departures .meta_section-head h2 {     font-size: 34px;
    font-weight: 600;color:#000;margin-bottom:5px; }
  .meta_routes .meta_section-head p, .meta_departures .meta_section-head p {    margin: 0;
    font-size: 18px;
    font-weight: 300; }
 
  .meta_route-box {
    background:#f4f5f7;
    border-radius:10px;
    padding:18px 20px;
  }
  .meta_route-box .meta_route-box__label { display:block; font-size:13px; color:#8b909b; margin-bottom:4px; }
  .meta_route-box .meta_route-box__value { display: block;
    font-size: 17px;
    font-weight: 600;
    color: #000000; }
 
  /* ================= TRAVEL TIPS ================= */
  .meta_tips { padding:80px 0; }
  .meta_tip-card { border-radius:14px; overflow:hidden; }
  .meta_tip-card .meta_tip-card__media { height:220px; }
  .meta_tip-card .meta_tip-card__media img { width:100%; height:100%; object-fit:cover; }
  .meta_tip-card .meta_tip-card__body { display:flex; align-items:center; gap:12px; padding-top:16px; }
  .meta_tip-card .meta_tip-card__avatar { width:44px; height:44px; border-radius:50%; overflow:hidden; flex-shrink:0; }
  .meta_tip-card .meta_tip-card__avatar img { width:100%; height:100%; object-fit:cover; }
  .meta_tip-card .meta_tip-card__question { font-size:14px; color:#4a4f5a; margin-bottom:4px; }
  .meta_tip-card .meta_tip-card__author { font-size:14px; font-weight:700; color:#1a1d24; }
 
  /* ================= FOOTER ================= */
  .meta_footer { background:#0d1f4a; color:#c7cee0; padding:64px 0 0; }
  .meta_footer .meta_footer__logo {  font-size:26px; font-weight:700; color:#fff; margin-bottom:6px; }
  .meta_footer .meta_footer__logo span { color:#e8262f; }
  .meta_footer .meta_footer__tagline { font-size:12px; color:#8891ab; margin-bottom:24px; }
  .meta_footer .meta_footer__social-label { font-size:14px; color:#fff; margin-bottom:12px; }
  .meta_footer .meta_footer__social { display:flex; gap:12px; }
  .meta_footer .meta_footer__social a {
    width:36px; height:36px; border-radius:50%; border:1px solid #3a4570;
    display:flex; align-items:center; justify-content:center; font-size:14px; color:#fff;
  }
  .meta_footer .meta_footer__col-title { color:#fff; font-size:15px; font-weight:600; margin-bottom:18px; }
  .meta_footer .meta_footer__links li { margin-bottom:12px; font-size:14px; }
  .meta_footer .meta_footer__links a:hover { color:#fff; }
 
  .meta_footer .meta_footer__newsletter {
    border-top:1px solid #253064;
    margin-top:48px;
    padding:36px 0;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    gap:20px;
  }
  .meta_footer .meta_footer__newsletter h3 { color:#fff; font-size:18px; margin-bottom:4px; }
  .meta_footer .meta_footer__newsletter p { font-size:13px; color:#8891ab; }
  .meta_footer .meta_footer__newsletter-form { display:flex; max-width:380px; width:100%; }
  .meta_footer .meta_footer__newsletter-form input {
    flex:1; padding:12px 16px; border:none; border-radius:6px 0 0 6px; font-size:14px; outline:none;
  }
  .meta_footer .meta_footer__newsletter-form button {
    background:#e8262f; color:#fff; font-weight:600; font-size:14px;
    padding:12px 20px; border-radius:0 6px 6px 0;
  }
 
  .meta_footer .meta_footer__bottom {
    border-top:1px solid #253064;
    padding:24px 0 28px;
    font-size:12px;
    color:#7581a3;
    text-align:center;
  }
  .meta_footer .meta_footer__bottom p { max-width:1000px; margin:0 auto; }
 
  @media (max-width:640px){
    .meta_footer .meta_footer__newsletter { flex-direction:column; align-items:flex-start; }
  }

   .content-section {
    max-width: 1220px;
    margin: 0 auto;
    padding: 60px 20px 70px 20px;
}
    .deals-wrap {
        width: 100%;
        margin: 0 auto;
        display: grid;
          grid-template-columns: 372px minmax(0, 1fr) 220px;
        grid-template-rows: auto auto;
        column-gap: 20px;
        row-gap: 18px;
        align-items: start;
    }

    /* LEFT HEADING */
    .deals-title {
        grid-column: 1;
        grid-row: 1 / span 2;
        padding-top: 0;
    }

    .deals-title h1 {
        max-width: 210px;
        font-size: 27px;
        line-height: 1.15;
        font-weight: 500;
        letter-spacing: -0.7px;
    }

    /* FAQ COPY */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .faq-list.top {
        grid-column: 2 / 4;
        grid-row: 1;
    }

    .faq-list.bottom {
        grid-column: 1 / 3;
        grid-row: 2;
        padding-right: 8px;
    }

    .faq-item h3 {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 5px; color: #000000;
    }

    .faq-item p {
         max-width: 100%;
    font-size: 14px;
    line-height: 1.38;
    font-weight: 400;
    color: #111;
    }

    /* IMAGE */
    .deal-image {
        grid-column: 3;
        grid-row: 2;
        width: 100%;
        aspect-ratio: 1.72 / 1;
        border-radius: 7px;
        overflow: hidden;
    }

    .deal-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        .deals-wrap {
            grid-template-columns: 190px minmax(0, 1fr) 190px;
            column-gap: 18px;
        }

        .deals-title h1 {
            font-size: 24px;
        }
    }

    @media (max-width: 700px) {
        .deals-section {
            padding: 24px 18px;
        }

        .deals-wrap {
            display: grid;
            grid-template-columns: 1fr;
            gap: 22px;
        }

        .deals-title,
        .faq-list.top,
        .faq-list.bottom,
        .deal-image {
            grid-column: 1;
            grid-row: auto;
        }

        .deals-title h1 {
            max-width: 330px;
            font-size: 28px;
            line-height: 1.12;
        }

        .faq-list {
            gap: 18px;
        }

        .faq-list.bottom {
            padding-right: 0;
        }

        .faq-item h3 {
            font-size: 15px;
        }

        .faq-item p {
            font-size: 12px;
            line-height: 1.45;
        }

        .deal-image {
            width: 100%;
            max-width: 100%;
            aspect-ratio: 1.72 / 1;
            border-radius: 8px;
        }
    }

    @media (min-width: 701px) and (max-width: 1100px) {
        .deals-wrap {
            grid-template-columns: 200px minmax(0, 1fr) 190px;
        }

       
    }


location-box { position: relative; }


.rs-panel {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(20, 40, 90, 0.22), 0 2px 8px rgba(20, 40, 90, 0.08);
    padding: 20px;
    max-height: 420px;
    overflow-y: auto;
    min-width: 380px;
}

.rs-panel::-webkit-scrollbar { width: 6px; }
.rs-panel::-webkit-scrollbar-thumb {
    background: #d3dcef;
    border-radius: 10px;
}

.rs-section + .rs-section {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #eef1f6;
}

.rs-title {
    font-size: 15px;
    font-weight: 700;
    color: #1b2a4a;
    margin-bottom: 12px;
}

/* Recent search rows */
.rs-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rs-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 8px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background 0.15s ease;
}

.rs-row:hover {
    background: #f5f7fb;
}

.rs-code {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #d8dee8;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #4a5568;
    letter-spacing: 0.3px;
}

.rs-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.rs-city {
    font-size: 15px;
    font-weight: 600;
    color: #1b2a4a;
}

.rs-sub {
    font-size: 13px;
    color: #8a93a6;
}

/* Visa-free pill grid */
.rs-pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.rs-pill {
    background: #ffffff;
    border: 1.5px solid #e2e6ee;
    border-radius: 24px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #3a4257;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.rs-pill:hover {
    border-color: #2f6fdb;
    background: #eef4ff;
    color: #2f6fdb;
}

@media (max-width: 480px) {
    .rs-pill-grid { grid-template-columns: repeat(2, 1fr); }
    .rs-panel { min-width: unset; width: 100%; }
}

.home_banner_sub{background: url(/images/home_banner.jpg) top center / cover no-repeat;padding:3rem 0;}
 .lfm-frame {
        width: 100%;
        max-width:560px;
        background: #ffffff;
        border-radius: 22px;
        box-shadow: 0 30px 70px rgba(10, 30, 70, 0.35);
        overflow: hidden;
        margin:0 auto;
    }

    /* Header */
    .lfm-header {
        padding: 22px 20px 16px;
        text-align: center;
        position: relative;
    }

    .lfm-back {
        position: absolute;
        left: 18px;
        top: 24px;
        display: flex;
        align-items: center;
        gap: 6px;
        color: #14286b;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
    }

    .lfm-back svg { width: 18px; height: 18px; }

    .lfm-close {
        position: absolute;
        right: 18px;
        top: 24px;
        color: #14286b;
        background: none;
        border: none;
        padding: 0;
        line-height: 1;
    }

    .lfm-close svg { width: 20px; height: 20px; }

    .lfm-logo {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 28px;
        font-weight: 800;
        color: #14286b;
        font-style: italic;
        line-height: 1;
    }

    .lfm-logo .lfm-fare-chip {
        background: #e4212b;
        color: #ffffff;
        border-radius: 8px;
        padding: 2px 9px 4px;
        font-style: italic;
        position: relative;
        top: -1px;
    }

    .lfm-logo .lfm-plane {
        color: #e4212b;
        margin-left: 4px;
        transform: translateY(-6px);
    }

    .lfm-logo .lfm-plane svg { width: 26px; height: 26px; }

    .lfm-tagline {
        font-size: 11px;
        letter-spacing: 0.3px;
        color: #8a93a6;
        margin-top: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .lfm-tagline::before,
    .lfm-tagline::after {
        content: "";
        width: 22px;
        height: 1px;
        background: #d33;
    }

    .lfm-route {
        font-size: 22px;
        font-weight: 700;
        color: #14286b;
        margin-top: 14px;
        letter-spacing: 0.5px;
    }

    .lfm-meta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 13px;
        color: #6b7690;
        margin-top: 6px;
    }

    .lfm-meta svg { width: 15px; height: 15px; vertical-align: -2px; margin-right: 4px; }

    .lfm-meta-divider {
        width: 1px;
        height: 14px;
        background: #d6dbe6;
    }

    .lfm-underline {
        width: 60px;
        height: 3px;
        background: #e4212b;
        border-radius: 3px;
        margin: 10px auto 0;
    }

    /* Provider list */
    .lfm-list {
        border-top: 1px solid #eef1f6;
    }

    .lfm-row {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 20px;
        border-bottom: 1px solid #f0f2f7;
    }

    .lfm-check {
        width: 20px;
        height: 20px;
        border: 1.5px solid #c3c9d6;
        border-radius: 5px;
        flex: 0 0 auto;
        cursor: pointer;
    }

    .lfm-badge-wrap {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        height: 40px;
    }

    .lfm-badge {
        border: 1px solid #e4e8f0;
        border-radius: 6px;
        padding: 6px 12px;
        display: inline-flex;
        align-items: center;
        max-width: 100%;
        height: 40px;
        box-sizing: border-box;
    }

    .lfm-divider {
        width: 1px;
        height: 26px;
        background: #e4e8f0;
        flex: 0 0 auto;
    }

    .lfm-view-btn {
        flex: 0 0 auto;
        display: flex;
        border-radius: 8px;
        overflow: hidden;
        text-decoration: none;
        box-shadow: 0 2px 6px rgba(20, 40, 90, 0.15);
    }

    .lfm-view-btn .lfm-view-label {
        background: #142f6b;
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        padding: 9px 16px;
    }

    .lfm-view-btn .lfm-view-arrow {
        background: #e4212b;
        color: #ffffff;
        display: flex;
        align-items: center;
        padding: 9px 10px;
    }

    .lfm-view-btn .lfm-view-arrow svg { width: 14px; height: 14px; }

    /* Show more */
    .lfm-showmore {
        margin: 14px 20px 0;
        border: 1.5px dashed #d6dbe6;
        border-radius: 10px;
        padding: 10px;
        text-align: center;
    }

    .lfm-showmore button {
        background: none;
        border: none;
        color: #14286b;
        font-weight: 600;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .lfm-showmore svg { width: 14px; height: 14px; }

    /* Compare button */
    .lfm-compare {
        margin: 16px 20px 0;
        width: calc(100% - 40px);
        background: #eef0f5;
        color: #9aa1b3;
        border: none;
        border-radius: 12px;
        padding: 14px;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .lfm-compare svg { width: 18px; height: 18px; }

    /* Footer trust row */
    .lfm-trust {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        padding: 20px 18px 22px;
        margin-top: 4px;
    }

    .lfm-trust-item {
        flex: 1;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .lfm-trust-item svg {
        width: 26px;
        height: 26px;
        color: #14286b;
        flex: 0 0 auto;
        margin-top: 2px;
    }

    .lfm-trust-item strong {
        display: block;
        font-size: 12.5px;
        font-weight: 700;
        color: #1b2a4a;
        line-height: 1.25;
    }

    .lfm-trust-item span {
        display: block;
        font-size: 11px;
        color: #8a93a6;
        line-height: 1.3;
        margin-top: 1px;
    }

    @media (max-width: 480px) {
        body { padding: 0; }
        .lfm-frame { border-radius: 0; max-width: 100%; min-height: 100vh; }
    }


    .partner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-track {
    display: flex;
    width: max-content;

    animation: partnerScroll 28s linear infinite;

    will-change: transform;
}

.partner-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.partner-logo {
    width: 180px;
    flex: 0 0 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px 25px;
}

.partner-logo img {
    display: block;

    width: auto;
    height: 35px;
    max-width: 140px;

    object-fit: contain;
}


/* EXACTLY ONE GROUP DISTANCE */
@keyframes partnerScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


@media (max-width: 767px) {

    .partner-logo {
        width: 145px;
        flex-basis: 145px;
        padding: 8px 18px;
    }

    .partner-logo img {
        height: 28px;
        max-width: 115px;
    }
}



/* =============================================
   FLIGHT COMPARE PANEL
============================================= */

.flight-compare-panel {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;

    background: #fff;

    font-family: Arial, Helvetica, sans-serif;
    color: #111;

    overflow: hidden;
}


/* =============================================
   HEADER
============================================= */

.flight-compare-header {
    min-height: 58px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 0 25px;

    background: #fff;

    border-bottom: 1px solid #dce2eb;
}


/* Edit Search */

.flight-edit-search {
    justify-self: start;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #252525;
    text-decoration: none;

    font-size: 13px;
    font-weight: 400;

    white-space: nowrap;
}


.flight-back-icon {
    position: relative;
    top: -1px;

    font-size: 20px;
    line-height: 1;
    font-weight: 300;
}


/* Route */

.flight-route {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    white-space: nowrap;
}


.flight-airport-code {
    font-size: 18px;
    line-height: 1;
    font-weight: 600;

    color: #111;
}


.flight-route-arrow {
    font-size: 16px;
    line-height: 1;

    color: #242424;
}


/* Close */

.flight-compare-close {
    justify-self: end;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    outline: 0;

    background: transparent;

    color: #111;

    font-size: 27px;
    line-height: 1;
    font-weight: 300;

    cursor: pointer;
}


/* =============================================
   BODY
============================================= */

.flight-compare-body {
    padding: 16px 24px 20px;

    background: #fbfbfc;
}


/* =============================================
   PROVIDER LIST
============================================= */

.flight-provider-list {
    width: 100%;

    background: #fff;

    border: 1px solid #d3dce9;
    border-radius: 16px;

    overflow: hidden;
}


/* =============================================
   PROVIDER ROW
============================================= */

.flight-provider-item {
    min-height: 61px;

    display: grid;
    grid-template-columns: 32px minmax(0, 1fr) auto;
    align-items: center;

    column-gap: 15px;

    padding: 9px 23px 9px 19px;

    background: #fff;

    border-bottom: 1px solid #d3dce9;
}


.flight-provider-item:last-child {
    border-bottom: 0;
}


/* =============================================
   CHECKBOX
============================================= */

.flight-provider-checkbox {
    width: 18px;
    height: 18px;

    display: block;

    position: relative;

    cursor: pointer;
}


.flight-provider-checkbox input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
    pointer-events: none;
}


.flight-checkbox-ui {
    width: 18px;
    height: 18px;

    display: block;

    position: relative;

    background: #fff;

    border: 1px solid #ccd6e4;
    border-radius: 4px;

    transition: border-color .2s ease,
                background-color .2s ease;
}


.flight-provider-checkbox input:checked + .flight-checkbox-ui {
    background: #ed0015;
    border-color: #ed0015;
}


.flight-provider-checkbox input:checked + .flight-checkbox-ui::after {
    content: "";

    position: absolute;

    left: 5px;
    top: 2px;

    width: 5px;
    height: 9px;

    border: solid #fff;
    border-width: 0 2px 2px 0;

    transform: rotate(45deg);
}


/* =============================================
   LOGO BOX
============================================= */

.flight-provider-logo {
    width: 146px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px 10px;

    background: #fff;

    border: 1px solid #d1d1d1;
    border-radius: 9px;
}


.flight-provider-logo img {
    display: block;

    width: auto;
    max-width: 125px;

    height: auto;
    max-height: 29px;

    object-fit: contain;
}


/* =============================================
   VIEW BUTTON
============================================= */

.flight-provider-view {
    width: 76px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    background: #fff;

    border: 1px solid #f00017;
    border-radius: 5px;

    color: #e90015;

    font-family: inherit;
    font-size: 10px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease,
        border-color .2s ease;
}


.flight-provider-view:hover,
.flight-provider-view-active {
    background: #ed0015;

    border-color: #ed0015;

    color: #fff;
}


/* =============================================
   TABLET
============================================= */

@media (max-width: 767px) {

    .flight-compare-panel {
        max-width: 100%;
    }

}


/* =============================================
   MOBILE
   SAME DESIGN / SAME ROW PATTERN
============================================= */

@media (max-width: 575px) {

    .flight-compare-header {
        min-height: 56px;

        padding-left: 16px;
        padding-right: 16px;
    }


    .flight-edit-search {
        gap: 5px;

        font-size: 12px;
    }


    .flight-back-icon {
        font-size: 18px;
    }


    .flight-route {
        gap: 10px;
    }


    .flight-airport-code {
        font-size: 17px;
    }


    .flight-route-arrow {
        font-size: 14px;
    }


    .flight-compare-close {
        width: 28px;
        height: 28px;

        font-size: 25px;
    }


    /* Body */

    .flight-compare-body {
        padding:
            15px
            14px
            18px;
    }


    .flight-provider-list {
        border-radius: 14px;
    }


    /* Same horizontal row */

    .flight-provider-item {
        min-height: 61px;

        grid-template-columns:
            25px
            minmax(0, 1fr)
            68px;

        column-gap: 9px;

        padding:
            9px
            13px;
    }


    /* Logo */

    .flight-provider-logo {
        width: 145px;
        max-width: 100%;

        height: 42px;

        padding:
            5px
            8px;
    }


    .flight-provider-logo img {
        max-width: 120px;
        max-height: 28px;
    }


    /* View */

    .flight-provider-view {
        width: 68px;
        height: 31px;

        font-size: 10px;
    }

}


/* =============================================
   SMALL MOBILE
============================================= */

@media (max-width: 380px) {

    .flight-compare-header {
        padding-left: 12px;
        padding-right: 12px;
    }


    .flight-edit-search {
        font-size: 11px;
    }


    .flight-route {
        gap: 7px;
    }


    .flight-airport-code {
        font-size: 16px;
    }


    .flight-provider-item {
        grid-template-columns:
            22px
            minmax(0, 1fr)
            58px;

        column-gap: 7px;

        padding-left: 10px;
        padding-right: 10px;
    }


    .flight-provider-logo {
        width: 128px;
        height: 40px;
    }


    .flight-provider-logo img {
        max-width: 108px;
        max-height: 26px;
    }


    .flight-provider-view {
        width: 58px;
        height: 30px;
    }

}

#flightSearchEngine,
#suggestedSitesPanel {
    transition: opacity .25s ease, transform .25s ease;
}

.meta_panel_hide {
    opacity: 0;
    transform: translateY(-8px);
}

.meta_panel_start {
    opacity: 0;
    transform: translateY(10px);
}

.meta_panel_start.meta_panel_show {
    opacity: 1;
    transform: translateY(0);
}

.meta_back_btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    padding: 4px 0;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.meta_homeresult{    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 10px;}

.seach_bg {width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 10px;}


.meta_destination-card .meta_destination-card__row:hover{background: #f3f7ff;}


/* =========================================================
   NEW META FOOTER
========================================================= */

.new_metafooter {
    width: 100%;
    background: #0e3188;
    color: #ffffff;
    padding: 48px 20px 28px;
}

.new_metafooter *,
.new_metafooter *::before,
.new_metafooter *::after {
    box-sizing: border-box;
}

.new_metafooter_container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}


/* =========================================================
   TOP SECTION
========================================================= */

.new_metafooter_top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 28px;
}


/* Logo */

.new_metafooter_logo_col {
    display: flex;
    align-items: flex-start;
}

.new_metafooter_logo {
    display: inline-block;
}

.new_metafooter_logo img {
    width: 100%;
    max-width: 315px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* Links */

.new_metafooter_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new_metafooter_links li {
    margin-bottom: 7px;
    line-height: 1.25;
}

.new_metafooter_links li:last-child {
    margin-bottom: 0;
}

.new_metafooter_links a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.new_metafooter_links a:hover {
    color: #ffffff;
    opacity: 0.75;
}


/* =========================================================
   DIVIDER
========================================================= */

.new_metafooter_divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 168, 255, 0.32);
}


/* =========================================================
   MIDDLE SECTION
========================================================= */

.new_metafooter_middle {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 1.25fr;
    gap: 60px;
    align-items: start;
    padding: 42px 0 46px;
}


/* Social */

.new_metafooter_social h4,
.new_metafooter_newsletter_text h4 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.new_metafooter_social_icons {
    display: flex;
    align-items: center;
    gap: 28px;
}

.new_metafooter_social_icon {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.new_metafooter_social_icon:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.new_metafooter_social_icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Newsletter Text */

.new_metafooter_newsletter_text p {
    max-width: 270px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   NEWSLETTER FORM
========================================================= */

.new_metafooter_newsletter_form_wrap {
    padding-top: 8px;
}

.new_metafooter_newsletter_form {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #ffffff;
    border-radius: 5px;
}

.new_metafooter_newsletter_form input {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 16px;
    border: 0;
    outline: none;
    background: #ffffff;
    color: #222222;
    font-size: 12px;
}

.new_metafooter_newsletter_form input::placeholder {
    color: #9c9c9c;
}

.new_metafooter_newsletter_form button {
    min-width: 140px;
    height: 42px;
    padding: 0 20px;
    border: 0;
    outline: none;
    background: #f80813;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s ease;
}

.new_metafooter_newsletter_form button:hover {
    background: #dd0711;
}

.new_metafooter_newsletter_form button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   DISCLAIMER
========================================================= */

.new_metafooter_bottom_divider {
    margin-bottom: 28px;
}

.new_metafooter_disclaimer {
    width: 100%;
}

.new_metafooter_disclaimer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 10.5px;
    line-height: 1.55;
    font-weight: 400;
}

.new_metafooter_disclaimer strong {
    color: #ffffff;
    font-weight: 600;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .new_metafooter {
        padding: 44px 28px 28px;
    }

    .new_metafooter_top {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 40px 35px;
    }

    .new_metafooter_logo_col {
        grid-column: 1 / -1;
    }

    .new_metafooter_logo img {
        max-width: 270px;
    }

    .new_metafooter_middle {
        grid-template-columns: 1fr 1fr;
        gap: 32px 40px;
    }

    .new_metafooter_newsletter_form_wrap {
        grid-column: 1 / -1;
        padding-top: 0;
    }

    .new_metafooter_newsletter_form {
        max-width: 620px;
    }

}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 767px) {

    .new_metafooter {
        padding: 38px 22px 25px;
    }

    .new_metafooter_top {
        grid-template-columns: 1fr 1fr;
        gap: 34px 24px;
        padding-bottom: 34px;
    }

    .new_metafooter_logo_col {
        grid-column: 1 / -1;
    }

    .new_metafooter_logo img {
        max-width: 240px;
    }

    .new_metafooter_links a {
        font-size: 13px;
    }

    .new_metafooter_middle {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 0;
    }

    .new_metafooter_newsletter_form_wrap {
        grid-column: auto;
    }

    .new_metafooter_newsletter_text p {
        max-width: 380px;
    }

    .new_metafooter_newsletter_form {
        max-width: 100%;
    }

    .new_metafooter_disclaimer p {
        font-size: 10px;
        line-height: 1.65;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

    .new_metafooter {
        padding: 34px 18px 24px;
    }

    .new_metafooter_top {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .new_metafooter_logo_col {
        grid-column: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
    }

    .new_metafooter_logo img {
        max-width: 225px;
    }

    .new_metafooter_links_col {
        width: 100%;
    }

    .new_metafooter_links li {
        margin-bottom: 9px;
    }

    .new_metafooter_links a {
        font-size: 13px;
    }

    .new_metafooter_middle {
        padding: 32px 0 34px;
        gap: 30px;
    }

    .new_metafooter_social h4,
    .new_metafooter_newsletter_text h4 {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .new_metafooter_social_icons {
        gap: 22px;
    }

    .new_metafooter_newsletter_text p {
        font-size: 11.5px;
    }

    .new_metafooter_newsletter_form {
        flex-direction: column;
        overflow: visible;
        background: transparent;
        gap: 10px;
    }

    .new_metafooter_newsletter_form input {
        height: 45px;
        border-radius: 5px;
        padding: 0 15px;
    }

    .new_metafooter_newsletter_form button {
        width: 100%;
        height: 45px;
        border-radius: 5px;
    }

    .new_metafooter_bottom_divider {
        margin-bottom: 23px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .new_metafooter {
        padding-left: 15px;
        padding-right: 15px;
    }

    .new_metafooter_logo img {
        max-width: 205px;
    }

    .new_metafooter_disclaimer p {
        font-size: 9.5px;
    }

}


/* =========================
   MAIN NAVBAR
========================= */

.nav_header {
    position: relative;
    width: 100%;
    z-index: 1030;
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.07);
    transition:
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
}

.nav_header .navbar {
    padding: 14px 0;
    transition: padding 0.35s ease;
}

.nav_header .container_max {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
}


/* =========================
   SCROLLED NAVBAR
========================= */

.nav_header.nav_scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom-color: transparent;

    box-shadow:
        0 5px 25px rgba(15, 23, 42, 0.08),
        0 1px 4px rgba(15, 23, 42, 0.04);

    animation: navSlideDown 0.35s ease;
}

.nav_header.nav_scrolled .navbar {
    padding: 10px 0;
}

@keyframes navSlideDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/* =========================
   LOGO
========================= */

.nav_logo {
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.nav_logo img {
    width: auto;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    display: block;

    transition: transform 0.25s ease;
}

.nav_logo:hover img {
    transform: scale(1.02);
}


/* =========================
   DESKTOP MENU
========================= */

.nav_desktop_menu {
    gap: 5px;
}

.nav_desktop_menu .nav-item {
    display: flex;
    align-items: center;
}

.nav_desktop_menu .nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding: 11px 15px !important;

    color: #334155;
    font-size: 15px;
    font-weight: 500;

    border-radius: 9px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.nav_desktop_menu .nav-link:hover {
    color: #0f172a;
    background: #f5f7fa;
}

.nav_desktop_menu .nav-link::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 5px;

    width: 0;
    height: 2px;

    background: #032274;

    border-radius: 30px;

    transform: translateX(-50%);

    transition: width 0.28s ease;
}

.nav_desktop_menu .nav-link:hover::after,
.nav_desktop_menu .nav-link.active::after {
    width: 22px;
}

.nav_desktop_menu .nav-link.active {
    color: #032274;
    font-weight: 600;
}


/* =========================
   HELP BUTTON
========================= */

.nav_help_btn {
    margin-left: 8px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 17px;

    min-height: 43px;

    color: #fff;
    background: #032274;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.nav_help_btn:hover {
    color: #fff;
    background: #000;

    transform: translateY(-1px);

    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}

.nav_help_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* =========================
   MOBILE HAMBURGER
========================= */

.nav_mobile_toggle {
    width: 44px;
    height: 44px;

    padding: 0;

    border: 1px solid #e5e7eb;
    background: #fff;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.nav_mobile_toggle:hover {
    background: #f8fafc;
    border-color: #d1d5db;
}

.nav_mobile_toggle span {
    display: block;

    width: 21px;
    height: 2px;

    background: #032274;

    border-radius: 10px;

    transition: 0.3s ease;
}


/* =========================
   MOBILE OFFCANVAS
========================= */

.nav_mobile_offcanvas {
    width: 360px !important;

    max-width: 88vw;

    border-left: 0 !important;

    background: #fff;

    box-shadow: -15px 0 40px rgba(15, 23, 42, 0.12);

    transition: transform 0.38s cubic-bezier(.4, 0, .2, 1) !important;
}

.nav_mobile_header {
    min-height: 78px;

    padding: 18px 20px;

    border-bottom: 1px solid #edf0f3;
}

.nav_mobile_logo {
    display: inline-flex;
}

.nav_mobile_logo img {
    width: auto;
    max-width: 170px;
    height: auto;
}


/* Close */

.nav_mobile_close {
    width: 40px;
    height: 40px;

    padding: 0;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    background: #f8fafc;

    color: #032274;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.nav_mobile_close:hover {
    background: #eef1f4;
    transform: rotate(5deg);
}


/* =========================
   OFFCANVAS BODY
========================= */

.nav_mobile_body {
    display: flex;
    flex-direction: column;

    padding: 25px 20px 20px;
}

.nav_mobile_heading {
    margin-bottom: 11px;

    color: #94a3b8;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.4px;
}


/* =========================
   MOBILE MENU
========================= */

.nav_mobile_menu {
    margin: 0;
    padding: 0;

    list-style: none;
}

.nav_mobile_menu li {
    margin-bottom: 7px;
}

.nav_mobile_menu li a {
    width: 100%;

    min-height: 52px;

    padding: 0 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #334155;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    border-radius: 10px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        padding 0.25s ease;
}

.nav_mobile_menu li a svg {
    color: #94a3b8;

    transition: transform 0.25s ease;
}

.nav_mobile_menu li a:hover {
    color: #032274;

    padding-left: 19px;

    background: #f5f7f9;
}

.nav_mobile_menu li a:hover svg {
    transform: translateX(3px);
    color: #032274;
}

.nav_mobile_menu li a.active {
    background: #f1f5f9;
    color: #032274;
    font-weight: 600;
}


/* =========================
   MOBILE SUPPORT CARD
========================= */

.nav_mobile_support {
    margin-top: 26px;

    padding: 17px;

    display: flex;
    align-items: center;

    gap: 12px;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #f8fafc 0%,
        #ffffff 100%
    );
}

.nav_mobile_support_icon {
    width: 44px;
    height: 44px;

    min-width: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #032274;
    color: #fff;

    border-radius: 11px;
}

.nav_mobile_support_content {
    display: flex;
    flex-direction: column;

    flex: 1;

    line-height: 1.25;
}

.nav_mobile_support_content span {
    color: #64748b;

    font-size: 12px;
}

.nav_mobile_support_content strong {
    margin-top: 3px;

    color: #032274;

    font-size: 13px;
    font-weight: 600;
}

.nav_mobile_support_btn {
    color: #032274;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}

.nav_mobile_support_btn:hover {
    color: #000;
    text-decoration: underline;
}


/* =========================
   MOBILE FOOTER
========================= */

.nav_mobile_footer {
    margin-top: auto;
    padding-top: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;
}

.nav_mobile_footer a {
    color: #94a3b8;

    font-size: 12px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.nav_mobile_footer a:hover {
    color: #032274;
}

.nav_mobile_footer span {
    width: 3px;
    height: 3px;

    background: #cbd5e1;

    border-radius: 50%;
}


/* =========================
   BACKDROP
========================= */

.offcanvas-backdrop.show {
    opacity: 0.45;
    backdrop-filter: blur(2px);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .nav_header .container_max {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav_desktop_menu .nav-link {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }
}


@media (max-width: 991.98px) {

    .nav_header .navbar {
        padding: 12px 0;
    }

    .nav_header.nav_scrolled .navbar {
        padding: 9px 0;
    }

    .nav_logo img {
        max-width: 160px;
    }
}


@media (max-width: 575px) {

    .nav_header .container_max {
        padding-left: 15px;
        padding-right: 15px;
    }

    .nav_logo img {
        max-width: 145px;
    }

    .nav_mobile_toggle {
        width: 40px;
        height: 40px;
    }

    .nav_mobile_toggle span {
        width: 19px;
    }

    .nav_mobile_offcanvas {
        width: 330px !important;
        max-width: 90vw;
    }

    .nav_mobile_header {
        min-height: 70px;
        padding: 15px 17px;
    }

    .nav_mobile_body {
        padding: 22px 17px 18px;
    }

    .nav_mobile_support {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav_mobile_support_btn {
        width: 100%;
        margin-top: 3px;

        padding: 10px;

        text-align: center;

        background: #fff;

        border: 1px solid #e5e7eb;

        border-radius: 8px;
    }
}

.meta_destinations__inner .meta_row {
    display: flex;
    flex-wrap: nowrap;
    scroll-behavior: smooth;overflow-x:auto;
}

.meta_destinations__inner .meta_col-4 {
    flex: 0 0 400px;
}

.meta_destination-card__badge{    background: rgb(232, 38, 47);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    padding: 6px 32px 6px;
    border-radius: 30px 30px 0 0;
    z-index: 1;
    width: 50%;
    margin: 0 auto;}