    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --navy: #0E4891;
      --sky: #1ca0d7;
      --gold: #f8b400;
      --dark: #222;
      --gray: #666;
      --light: #f8f9ff;

      /* Header  */
      --hdr-navy: #0f172a;
      --hdr-navy-light: #1e293b;
      --hdr-emerald: #059669;
      --hdr-accent: #ea580c;
      --hdr-bg-glass: rgba(255, 255, 255, 0.88);
      --hdr-border: #e2e8f0;
      --hdr-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    }

    main{
      padding-top: 140px !important;
    }

    body {
      font-family: 'Poppins', sans-serif;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    img {
      width: 100%;
      display: block;
    }

    /* ================= GLOBAL & BRANDING ================= */

    .logo {
      font-size: 46px;
      font-weight: 800;
      text-decoration: none;
      display: inline-block;
      line-height: 1;
    }

    .logo span:nth-child(1) {
      color: var(--sky);
    }

    .logo span:nth-child(2) {
      color: var(--gold);
    }

    .logo span:nth-child(3),
    .logo span:nth-child(4) {
      color: var(--navy);
    }

    .logo img {
      width: 130px;
    }

    /* Header  */

    /* header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--hdr-bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hdr-border);
    box-shadow: var(--hdr-shadow) !important;
    transition: all 0.3s ease;
}

.header-top {
    padding: 8px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    background: rgba(248, 250, 252, 0.5);
} */


    /* Base Header Frame */
    header {

      position: fixed;

      top: 0;
      left: 0;

      width: 100%;

      z-index: 1030;

      background: var(--hdr-bg-glass);

      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);

      /* border-bottom: 1px solid var(--hdr-border); */

      box-shadow: var(--hdr-shadow) !important;

      transition:
        background .3s ease,
        box-shadow .3s ease;

    }

    /* 1. Header Top Smooth Collapse */
    .header-top {
      max-height: 100px;
      /* Adjust according to your top bar height */
      opacity: 1;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        padding 0.35s ease;
      padding: 8px 0;
      border-bottom: 1px solid rgba(226, 232, 240, 0.6);
      background: rgba(248, 250, 252, 0.5);
    }

    /* 2. Scrolled Logo Smooth Slide & Expand */
    .scrolled-logo {
      display: inline-flex;
      align-items: center;
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      white-space: nowrap;
      transition: max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        margin 0.35s ease;
    }

    .scrolled-logo img {

      height: 32px;

      width: auto;

      display: block;

    }

    header.is-scrolled .scrolled-logo {

      max-width: 150px;

      opacity: 1;

      margin-right: 20px;

    }

    /* ================= IS-SCROLLED STATE ================= */

    /* Hide Top Bar Smoothly */
    header.is-scrolled .header-top {
      max-height: 0 !important;
      opacity: 0 !important;
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      border: none !important;
    }

    header.is-scrolled .navbar-nav {
      margin: auto;
    }

    header.is-scrolled .custom-navbar {
      height: 70px;
      background: #fff;
    }
    header.is-scrolled  .custom-navbar .nav-link{
      color: var(--hdr-navy) !important;
    }

   

    header.is-scrolled {

      background: rgba(255, 255, 255, .92);

      backdrop-filter: blur(18px);

      -webkit-backdrop-filter: blur(18px);

      box-shadow:
        0 10px 30px rgba(15, 23, 42, .12) !important;

    }


    .phone-number {
      font-size: 26px;
      font-weight: 800;
      color: var(--hdr-navy);
      line-height: 1;
      letter-spacing: -0.5px;
      transition: color 0.25s ease;
    }

    .phone-number:hover {
      color: var(--hdr-emerald);
    }

    .opening-hours {
      color: #64748b;
      font-weight: 600;
      font-size: 13px;
      width: 100%;
      display: block;
      text-align: center;
      letter-spacing: 0.2px;
    }

    /* Custom Navbar */
    .custom-navbar {
      padding: 8px 0;
      background: linear-gradient(135deg, #07123cd1, #07123cd1);
    }

    .custom-navbar .nav-link {
      /* color: var(--hdr-navy) !important; */
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 8px 18px !important;
      position: relative;
      transition: color 0.25s ease;
    }

    /* Animated Indicator Line under Links */
    .custom-navbar .nav-link::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 18px;
      right: 18px;
      height: 2.5px;
      background-color: var(--hdr-accent);
      border-radius: 4px;
      transform: scaleX(0);
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .custom-navbar .nav-link:hover, .custom-navbar .nav-link.active {
      color: var(--hdr-accent) !important;
    }

    .custom-navbar .nav-link:hover::after , .custom-navbar .nav-link.active::after {
      transform: scaleX(1);
    }


    @media (min-width: 992px) {
      .mega-menu {
        position: static !important;
      }

      .nav-item.dropdown::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 16px;
        bottom: -16px;
        left: 0;
        display: none;
      }

      .nav-item.dropdown:hover::after {
        display: block;
      }

      .dropdown-menu {
        display: block;
        width: 100%;
        left: 0;
        right: 0;
        margin-top: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px) scale(0.99);
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 24px !important;
        border: 1px solid var(--hdr-border);
        background: #ffffff;
        box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
        padding: 32px !important;
      }

      .nav-item.dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
      }

      .nav-item.dropdown:hover>.dropdown-menu .col-md-3 {
        border-right: 1px solid var(--hdr-border);
      }

      .nav-item.dropdown:hover>.dropdown-menu .col-md-3:last-child {
        border: none;
      }
    }

    .mega-links a {
      color: #475569;
      padding: 8px 12px;
      display: block;
      font-size: 14.5px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.2s ease;
    }

    .mega-links a:hover {
      color: var(--hdr-accent) !important;
      background: #fff7ed;
      transform: translateX(4px);
    }

    /* ================= MOBILE SIDEBAR ================= */
    .mobile-sidebar {
      width: 340px !important;
      border: none !important;
      border-radius: 0 24px 24px 0 !important;
      box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1) !important;
    }

    /* Animated Hamburger Menu Button */
    .menu-btn {
      width: 32px;
      height: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      border: none;
      background: transparent;
      padding: 0;
    }

    .menu-btn span {
      width: 100%;
      height: 3px;
      background: var(--hdr-navy);
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .menu-btn:hover span:nth-child(2) {
      transform: translateX(4px);
      background: var(--hdr-accent);
    }

    /* Mobile Search Bar */
    .mobile-search {
      position: relative;
      padding: 20px 24px;
    }

    .mobile-search input {
      width: 100%;
      height: 48px;
      border: 1px solid var(--hdr-border);
      background: #f8fafc;
      border-radius: 14px;
      padding: 0 54px 0 16px;
      font-size: 14px;
      font-weight: 500;
      outline: none;
      transition: all 0.25s ease;
    }

    .mobile-search input:focus {
      background: #ffffff;
      border-color: var(--hdr-emerald);
      box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
    }

    .mobile-search button {
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      border: none;
      background: var(--hdr-emerald);
      color: #ffffff;
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .mobile-search button:hover {
      background: #047857;
    }

    /* Mobile Accordion & Links */
    .custom-mob-btn,
    .mob-nav-btn {
      background: #ffffff !important;
      padding: 16px 24px !important;
      font-weight: 700 !important;
      color: var(--hdr-navy) !important;
      border-bottom: 1px solid #f1f5f9 !important;
      box-shadow: none !important;
      width: 100%;
      text-align: left;
    }

    /* .mob-static-link a {
      display: flex;
      align-items: center;
      padding: 16px 24px;
      color: var(--hdr-navy);
      font-weight: 700;
      border-bottom: 1px solid #f1f5f9;
    } */

    .accordion-body.bg-light {
      background-color: #f8fafc !important;
      padding-left: 36px !important;
    }

    .accordion-body.bg-light h6{
      font-size: 14px;
    }

    .accordion-body.bg-light a{
      font-size: 14px !important;
          padding: 0px 0px 8px 4px !important;
    }

    .mobile-sub-links li a {
      padding: 10px 0;
      display: block;
      color: #475569;
      font-weight: 600;
      font-size: 14px;
      border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    }

    .mobile-phone {
      background: #ecfdf5;
      padding: 16px;
      border-radius: 16px;
      text-align: center;
      font-weight: 800;
      color: var(--hdr-emerald);
      margin: 20px 24px 12px 24px;
      border: 1px solid #a7f3d0;
    }

    .mobile-btn {
      display: block;
      background: var(--hdr-accent);
      color: #ffffff !important;
      padding: 14px;
      border-radius: 14px;
      font-weight: 700;
      text-align: center;
      margin: 0 24px 24px 24px;
      box-shadow: 0 8px 20px rgba(234, 88, 12, 0.2);
      transition: all 0.25s ease;
    }

    .mobile-btn:hover {
      background: #c2410c;
      transform: translateY(-2px);
    }

    /* ================= RESPONSIVE FIXES ================= */
    @media (max-width: 991px) {
      .logo {
        font-size: 28px;
        font-weight: 800;
      }

      .custom-navbar {
        padding: 12px 0;
      }

      .hero {
        padding: 60px 0;
        text-align: center;
      }

      .hero h1 {
        font-size: 34px;
        font-weight: 800;
      }

      header.is-scrolled .custom-navbar {
        height: auto !important;
      }
      main{
        padding-top: 80px !important;
      }
    }

    @media (max-width: 767px) {
      .nav-pills {
        flex-direction: column;
        gap: 6px;
      }

      .nav-pills .nav-link {
        width: 100%;
        border-radius: 12px !important;
      }

      .newsletter {
        flex-direction: column;
        gap: 12px;
      }

      .newsletter-forms input {
        flex: unset !important;
        width: 100%;
      }
    }

    .nav-link i {
      font-size: 12px;
    }



    /* ================= HERO ================= */

    .hero {
      min-height: 90vh;
      background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('../static-img/flight-banner.webp') center/cover no-repeat;

      display: flex;
      align-items: center;
      padding: 100px 0;
    }

    .hero h1 {
      color: #fff;
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 800;
      line-height: 1.1;
      text-transform: uppercase;
      margin-bottom: 45px;
      max-width: 100%;
    }

    /* ================= SEARCH BOX ================= */

    .search-box {
      /* background: #fff;  */
      border-radius: 14px;
      overflow: hidden;
      /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);  */
    }

    .star-rating {
      color: #f4b400;
      font-size: 18px;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .star-rating span {
      color: #555;
      font-size: 14px;
      margin-left: 6px;
    }

    .nav-pills {
      gap: 5px;
    }

    .nav-pills .nav-item {
      width: auto;
      flex: unset;

    }

    .nav-pills .nav-item .nav-link {
      padding: 10px 18px;
    }

    .nav-pills .nav-link {
      border-radius: 0;
      background: #f7f7f7de;
      color: #333 !important;
      padding: 18px;
      font-weight: 600;
      margin: 0;
    }

    .nav-pills .nav-link.active {
      background: #fff;
      color: #1ca0d7 !important;
    }

    .search-form {
      padding: 25px;
      background-color: #fff;
    }

    .form-control,
    .form-select {
      height: 58px;
      border-radius: 8px;
      border: 1px solid #ddd;
      box-shadow: none !important;
    }

    .search-btn {
      height: 58px;
      background: #f8b400;
      color: #fff;
      border: none;
      border-radius: 8px;
      font-weight: 700;
      transition: 0.3s;
    }

    .search-btn:hover {
      background: #e3a300;
    }



    /* ================= GENERAL SECTION ================= */

    section {
      padding: 80px 0 0;
    }

    .section-title {
      font-size: clamp(30px, 5vw, 48px);
      font-weight: 500;
      margin-bottom: 25px;
    }

    .custom-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      margin-bottom: 35px;
    }

    .custom-tabs a {
      color: #555;
      font-weight: 600;
      font-size: 21px;
    }

    .custom-tabs a.active {
      color: #1ca0d7;
      font-weight: 700;
    }

    .custom-tabs a.active {
      color: #2B3A8F;
      border-bottom: 5px solid #2B3A8F;
    }

    .hoteldetails {
      padding: 0px;
    }

    /* ================= CARDS ================= */

    .travel-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: 0.3s;
      height: 100%;
    }

    .travel-card:hover {
      transform: translateY(-6px);
    }

    .travel-card img {
      height: 240px;
      object-fit: cover;
    }

    .travel-card .card-body {
      padding: 25px 12px;
    }

    .travel-card .card-price {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid #E7E7E7;
      padding-top: 20px;
    }

    .travel-card h3 {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 15px;
    }

    .travel-card p {
      color: #212521;
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .price {
      font-size: 36px;
      font-weight: 700;
      /* margin-bottom:20px;  */
    }

    .price span {
      font-size: 14px;
      color: #666;
      font-weight: 400;
    }

    .btn-theme {
      padding: 12px 22px;
      border: 2px solid #1ca0d7;
      color: #1ca0d7;
      border-radius: 8px;
      font-weight: 600;
      transition: 0.3s;
      display: inline-block;
    }

    .btn-theme:hover {
      background: #1ca0d7;
      color: #fff;
    }

    .view-all {
      text-align: right;
      margin-top: 35px;
    }

    .view-all a {
      background: #f8b400;
      color: #fff;
      padding: 14px 24px;
      border-radius: 8px;
      font-weight: 700;
    }

    /* ================= BANNER ================= */

    .banner {
      /* border-radius:24px;  */
      overflow: hidden;
      background:
        linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        url('https://images.unsplash.com/photo-1519046904884-53103b34b206?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;

      padding: 170px 60px;
    }

    .banner h2 {
      color: #fff;
      font-size: clamp(35px, 5vw, 65px);
      font-weight: 800;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .banner p {
      color: #fff;
      font-size: clamp(20px, 3vw, 30px);
    }

    .banner span {
      color: #f8b400;
      font-weight: 700;
    }



    /* Deals Section  */
    .deal .travel-card {
      display: flex;
      flex-direction: column;
    }

    .deal .card-body {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .deal .card-body ul {
      display: flex;
      flex-wrap: wrap;
    }

    .deal .card-body ul li {
      width: 50%;
    }

    .deals-section {
      /* background: #000;  */
      overflow: hidden;
      font-family: 'Inter', sans-serif;
      padding-bottom: 80px;
    }

    .deals-section h1 {
      font-size: 45px;
    }

    .deals-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('../static-img/last-minute-banner.webp') no-repeat center center/cover;
      z-index: -1;
      border-radius: 10px;

    }

    .deals-bg::after {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0px;
      left: 0;
      background: #2e2e2e2a;
      backdrop-filter: blur(10px);
      z-index: 1;
      border-radius: 10px;
    }

    .deal-info h2 {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 35px;
    }

    .price-tag {
      color: #1ca0d7;
      font-size: 3.5rem;
    }

    .bg-orange {
      background-color: #1ca0d7;
    }

    /* Card Styling */
    .deals-slider-wrapper {
      width: 100%;
      overflow: hidden;
      /* This is the window */
      position: relative;
      padding: 20px 0;
    }

    .deals-slider {
      display: flex;
      flex-wrap: nowrap;
      /* Forces cards in one single line */
      gap: 20px;
      transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
      /* Professional ease */
      will-change: transform;
    }

    .deal-card {
      min-width: 280px;
      /* Force the width */
      flex: 0 0 280px;
      /* Don't let Bootstrap shrink it */
      height: 380px;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }

    .deal-card:hover {
      transform: translateY(-10px);
    }

    .deal-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      /* border: 1px solid rgba(255,255,255,0.2);  */
    }

    .card-label {
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      text-align: center;
      color: white;
      font-weight: 800;
      font-size: 1.2rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .z-1 {
      z-index: 1;
    }


    .guarntee_sec_nwe {
      /* background-color: #F8F9FA;
    padding: 48px 0px; */
      position: relative;
      top: -55px;
    }

    .guarntee_sec_nwe .row {
      /* gap: 15px; */
      display: flex;
      position: relative;
      padding: 20px;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      background: #fff;

      border-radius: 10px;
      box-shadow: rgb(128 128 128 / 26%) 2px 2px 15px;
      margin-bottom: 0px;
      padding-left: 0px;
      /* flex-wrap: wrap; */
    }

    .guarntee_sec_nwe .feature-title {
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 8px;
      color: #292929;
      text-align: left;
    }

    .mint_lastdels_sect {
      background-color: #F8F9FA;
      padding: 48px 0px;
    }

    .guarntee_sec_nwe .feature-box {
      margin-bottom: 0px !important;
      padding: 0px !important;
      padding-left: 20px !important;
    }

    .guarntee_sec_nwe .feature-icon {
      background-color: #fff;
      width: 50px;
      height: auto;
    }

    .guarntee_sec_nwe .feature-icon img {
      background-color: #fff;
      width: 50px;
      height: 50px;
      border: 2px solid #19443B;
      border-radius: 50px;
      padding: 8px;
    }

    .guarntee_sec_nwe .feature-text p {
      margin-bottom: 0px;
      line-height: 1.3;
      font-size: 14px;
      font-weight: 400;
    }


    /* Breadcrumbs */
    .custom-breadcrumb {
      font-size: 14px;
      font-weight: 500;
      color: var(--gray);
      margin-bottom: 12px;
    }

    .custom-breadcrumb span {
      color: var(--sky);
    }

    /* Heading Section */
    .tour-title {
      color: var(--navy);
      font-weight: 700;
      font-size: 32px;
      margin-bottom: 4px;
    }

    .hotel-location {
      font-size: 15px;
      color: var(--gray);
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 6px;
    }

    .hotel-location i {
      color: var(--navy);
      font-size: 16px;
    }

    .stars-rating {
      color: var(--navy);
      font-size: 14px;
      margin-bottom: 24px;
    }

    /* Gallery Grid Components */
    .main-image-box {
      position: relative;
      height: 380px;
      border-radius: 12px;
      overflow: hidden;
    }

    .main-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.3s ease;
    }

    .badge-beach {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: var(--sky);
      color: #fff;
      font-size: 11px;
      font-weight: 500;
      padding: 4px 12px;
      border-radius: 4px;
      z-index: 2;
    }

    .expand-btn {
      position: absolute;
      bottom: 12px;
      left: 12px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      width: 32px;
      height: 32px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      cursor: pointer;
      z-index: 2;
    }

    .side-image-box {
      height: 380px;
      border-radius: 12px;
      overflow: hidden;
    }

    .side-image-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Thumbnails Row Tabs */
    .thumb-row {
      margin-top: 16px;
    }

    .thumb-box {
      height: 75px;
      border-radius: 8px;
      overflow: hidden;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.2s ease;
      opacity: 0.5;
    }

    .thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .thumb-box:hover {
      border-color: var(--sky);
      opacity: 0.9;
    }

    .thumb-box.active {
      border: 2px solid var(--sky);
      opacity: 1;
    }


    /* Pricing Widget Side Panel */
    .offer-card-wrapper {
      position: relative;
      margin-top: 45px;
      /* Leaves perfect gap space for the floating head */
    }

    .character-head {
      position: absolute;
      top: -123px;
      left: 50%;
      transform: translateX(-50%);
      width: 286px;
      z-index: 2;
    }

    .offer-card {
      background-color: #4a62cd;
      border-radius: 12px;
      padding: 35px 24px 24px 24px;
      color: #ffffff;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .super-offer-badge {
      border: 2px solid #ffffff;
      display: inline-block;
      padding: 4px 20px;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: 0.5px;
      margin-bottom: 14px;
      border-radius: 4px;
    }

    .offer-date,
    .offer-nights {
      font-size: 13px;
      margin-bottom: 4px;
      opacity: 0.95;
    }

    .offer-nights {
      margin-bottom: 16px;
    }

    .flight-includes {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .price-from {
      font-size: 13px;
      opacity: 0.9;
    }

    .price-amount {
      font-size: 44px;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 16px;
    }

    .price-amount span {
      font-size: 18px;
      font-weight: 400;
    }

    .offer-description-box {
      background-color: #112879;
      border-radius: 6px;
      padding: 10px 14px;
      font-size: 12px;
      line-height: 1.4;
      text-align: left;
    }

    /* Action CTA Button */
    .btn-book-now {
      background-color: var(--gold);
      color: #ffffff;
      border: none;
      width: 100%;
      padding: 14px;
      font-size: 22px;
      font-weight: 600;
      border-radius: 8px;
      margin-top: 14px;
      transition: background-color 0.2s ease;
    }

    .btn-book-now:hover {
      background-color: #e0a300;
      color: #ffffff;
    }

    /* Responsive Adjustments */
    @media (max-width: 991.98px) {
      .offer-card-wrapper {
        margin-top: 130px;
      }

      .main-image-box,
      .side-image-box {
        height: 320px;
      }
    }

    @media (max-width: 575.98px) {

      .main-image-box,
      .side-image-box {
        height: 240px;
      }

      .tour-title {
        font-size: 26px;
      }

      .thumb-box {
        height: 55px;
      }
    }








    /* Tabs Navigation System */
    .detail-tabs-nav {
      border-bottom: 2px solid #eef1f6;
      margin-bottom: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .tab-trigger-btn {
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      padding: 10px 0;
      position: relative;
      cursor: pointer;
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .tab-trigger-btn:hover {
      color: var(--navy);
    }

    .tab-trigger-btn.active {
      color: var(--navy);
    }

    .tab-trigger-btn.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      height: 3px;
      background-color: var(--navy);
    }

    /* Tab Content Area */
    .tab-content-panel {
      font-size: 14px;
      color: var(--dark);
      line-height: 1.6;
      margin-bottom: 45px;
      display: none;
    }

    .tab-content-panel.active {
      display: block;
    }

    /* Section Inner Title Header */
    .section-main-heading {
      color: var(--dark);
      font-weight: 700;
      font-size: 26px;
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 25px;
    }

    .section-main-heading i {
      color: var(--navy);
      font-size: 28px;
    }

    /* Accommodation Component Card Layout */
    .accommodation-card {
      background: #ffffff;
      border-radius: 16px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      border: 1px solid #f0f2f8;
    }

    .hotel-cover-box {
      height: 100%;
      min-height: 250px;
    }

    .hotel-cover-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hotel-details-body {
      padding: 24px 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    /* Rating Rows styling */
    .ratings-wrapper-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 13px;
      color: var(--gray);
      margin-bottom: 8px;
    }

    .stars-cluster {
      color: var(--gold);
    }

    .rating-divider {
      color: #ccc;
    }

    .tripadvisor-badge-box {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .tripadvisor-badge-box i {
      color: var(--green-trip);
      font-size: 15px;
    }

    .circle-ratings {
      color: var(--green-trip);
      letter-spacing: -2px;
      margin-right: 2px;
    }

    /* Hotel Typography Titles */
    .hotel-display-title {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 14px;
    }

    /* Meta Details Vector Matrix Grid */
    .hotel-meta-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px 20px;
      margin-bottom: 20px;
    }

    .meta-grid-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--dark);
    }

    .meta-grid-item i {
      color: var(--gray);
      font-size: 16px;
      width: 16px;
      text-align: center;
    }

    /* View Details custom outline CTA button styling matching original setup */
    .btn-view-details-outline {
      border: 1px solid var(--navy);
      background-color: transparent;
      color: var(--navy);
      font-weight: 600;
      font-size: 14px;
      padding: 10px 28px;
      border-radius: 8px;
      transition: all 0.2s ease;
      align-self: flex-end;
    }

    .btn-view-details-outline:hover {
      background-color: var(--navy);
      color: #ffffff;
    }

    /* Responsive Queries */
    @media (max-width: 767.98px) {
      .hotel-details-body {
        padding: 20px;
      }

      .btn-view-details-outline {
        width: 100%;
        margin-top: 15px;
      }

      .detail-tabs-nav {
        gap: 15px;
      }

      .tab-trigger-btn {
        font-size: 14px;
      }
    }

    @media (max-width: 575.98px) {
      .hotel-meta-grid {
        grid-template-columns: 1fr;
      }
    }







    /* Section Main Header */
    .section-title-main {
      font-size: 28px;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 20px;
    }

    /* Alert / Notification Bar */
    .promo-alert-bar {
      background-color: #fef1db;
      border: 1px solid #fce4be;
      border-radius: 8px;
      padding: 14px 20px;
      font-size: 14px;
      color: #7d5615;
      margin-bottom: 24px;
    }

    .promo-alert-bar strong {
      display: block;
      margin-bottom: 2px;
      color: #513609;
    }

    /* Filter Search Configuration Layout Box */
    .filter-config-panel {
      background: #ffffff;
      border: 1px solid #eef1f6;
      border-radius: 8px;
      padding: 16px 20px;
      margin-bottom: 24px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    }

    .filter-meta-label {
      font-size: 11px;
      font-weight: 600;
      color: #999;
      text-transform: uppercase;
      margin-bottom: 4px;
      display: block;
    }

    .filter-value-text {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
    }

    .btn-update-orange {
      background-color: var(--gold);
      color: #ffffff;
      border: none;
      font-weight: 600;
      font-size: 15px;
      padding: 10px 24px;
      border-radius: 6px;
      width: 100%;
      height: 100%;
      min-height: 44px;
      transition: background 0.2s ease;
    }

    .btn-update-orange:hover {
      background-color: #e28712;
      color: #ffffff;
    }

    /* Month Selector Controls */
    .month-navigation-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 500px;
      margin-bottom: 16px;
    }

    .month-nav-btn {
      background: none;
      border: none;
      color: var(--dark);
      font-size: 16px;
      cursor: pointer;
      padding: 5px 10px;
    }

    .month-dropdown-box {
      border: 1px solid #dde2ec;
      border-radius: 6px;
      padding: 6px 16px;
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
      width: 80%;
      background-color: #fff;
    }

    /* Custom Responsive Calendar Matrix Grid */
    .calendar-matrix-wrapper {
      margin-bottom: 16px;
    }

    .calendar-weekdays-header {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      text-align: center;
      font-size: 13px;
      font-weight: 500;
      color: var(--gray);
      margin-bottom: 8px;
    }

    .calendar-days-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 6px;
    }

    .calendar-day-cell {
      border: 1px solid #eef1f6;
      border-radius: 6px;
      padding: 10px 8px;
      min-height: 64px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      position: relative;
      background-color: #ffffff;
      transition: all 0.2s ease;
    }

    .calendar-day-cell:hover {
      border-color: var(--sky);
      background-color: var(--light);
    }

    .day-num-lbl {
      font-size: 13px;
      font-weight: 500;
      color: var(--dark);
    }

    .day-price-lbl {
      font-size: 12px;
      font-weight: 600;
      color: var(--gray);
      text-align: left;
    }

    /* Active / Selected Date Styling matching original design layout */
    .calendar-day-cell.selected-active {
      background-color: #2c429b;
      border-color: #2c429b;
    }

    .calendar-day-cell.selected-active .day-num-lbl,
    .calendar-day-cell.selected-active .day-price-lbl {
      color: #ffffff;
    }

    /* Muted Day Styling (Empty space days) */
    .calendar-day-cell.day-muted {
      opacity: 0.25;
      cursor: default;
      pointer-events: none;
    }

    /* Cheapest Dot Indicator Badge */
    .cheapest-dot-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 7px;
      height: 7px;
      background-color: var(--teal);
      border-radius: 50%;
    }

    /* Calendar Legend Footer Info rules */
    .calendar-meta-footer {
      font-size: 12px;
      color: var(--gray);
      margin-bottom: 24px;
    }

    .legend-indicator-row {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 16px;
      font-size: 13px;
      color: var(--dark);
    }

    /* Toggle Switch Customization Style */
    .custom-switch-input {
      width: 40px;
      height: 20px;
      background-color: #ccc;
      border-radius: 20px;
      position: relative;
      display: inline-block;
      cursor: pointer;
      vertical-align: middle;
      margin-right: 8px;
    }

    .custom-switch-input::before {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background-color: white;
      top: 2px;
      left: 2px;
      transition: all 0.2s ease;
    }

    input[type="checkbox"]:checked+.custom-switch-input {
      background-color: var(--sky);
    }

    input[type="checkbox"]:checked+.custom-switch-input::before {
      left: 22px;
    }

    .teal-dot-legend {
      display: inline-block;
      width: 8px;
      height: 8px;
      background-color: var(--teal);
      border-radius: 50%;
      margin-right: 6px;
    }

    /* Embedded Map Column Panel Setup */
    .map-frame-wrapper {
      background: #ffffff;
      border: 10px solid #e1e4eb;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 20px;
    }

    .map-frame-inner {
      width: 100%;
      height: 480px;
      border: none;
      display: block;
    }

    /* Responsive Grid Scaling overrides */
    @media (max-width: 991.98px) {
      .map-frame-wrapper {
        margin-top: 30px;
        position: static;
      }

      .map-frame-inner {
        height: 350px;
      }
    }

    @media (max-width: 575.98px) {
      .calendar-day-cell {
        min-height: 52px;
        padding: 6px;
      }

      .day-price-lbl {
        font-size: 11px;
      }

      .filter-config-panel .col-6 {
        width: 100%;
        margin-bottom: 12px;
      }

      .legend-indicator-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
    }

    .other_attractions ul {
      padding-left: 22px;
    }

    .other_attractions li {
      line-height: 1.7;
      margin-bottom: 8px;
      text-transform: none !important;
      text-align: justify;
    }



    .plans_wrapper .slick-track {
      padding-bottom: 15px;
      padding-top: 15px;
    }

    .plans_wrapper .slick-dots {
      margin-bottom: 0px;
    }


    .plans_wrapper .slick-arrow {
      border: 1px solid rgb(35 31 32 / 7%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 53px;
      width: 53px;
      transition: 0.3s;
      display: none !important;
    }

    .plans_wrapper .slick-arrow:hover {
      background-color: #ff0100;
      background: linear-gradient(90deg, #FD5D4D 0%, #F39714 100%);
    }

    .plans_wrapper .slick-prev {
      left: -55px;
      box-shadow: 0px 4px 15px #80808024;
    }

    .plans_wrapper .slick-next {
      right: -55px;
      box-shadow: 0px 4px 15px #80808024;
    }

    .plans_wrapper .slick-arrow svg {
      color: #231f20b6;
      transition: .3s;
    }

    .plans_wrapper .slick-arrow:hover svg {
      color: #fff;
    }

    .plans_wrapper .slick-prev:before {
      color: #fff;
      display: none;
    }

    .plans_wrapper .slick-next:before {
      color: #fff;
      display: none;
    }

    .plans_wrapper .slick-list {
      margin: 0 -10px !important;
    }

    /* .plans_wrapper .slick-slide {
    margin: 0 10px !important;
} */


    .plans_wrapper .slick-dots {
      bottom: -30px;
      text-align: center;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
    }

    .plans_wrapper .slick-dots li {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      margin: 0 5px;
      width: 20px;
    }

    .plans_wrapper .slick-dots li button {
      font-size: 0;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background-color: #ccc;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .plans_wrapper .slick-dots li.slick-active button {
      background-color: #333;
      width: 20px;
      height: 8px;
      border-radius: 6px;
      background: linear-gradient(90deg, rgba(253, 93, 77, 1) 0%, rgba(243, 151, 20, 1) 100%);
      background: linear-gradient(to right, #4863db, #1c1f4c, #4863db);
    }

    .plans_wrapper .slick-dots li button:hover {
      background-color: #888;
    }

    .plans_wrapper .slick-dots li button:before {
      color: transparent;
    }

    .top_plans {
      border-radius: 15px;
      overflow: hidden;
      height: 100%;
      box-shadow: 0px 4px 14px #80808021;
      transition: all cubic-bezier(0.4, 0, 0.2, 1) 300ms;
      background-color: #fff;
    }

    .top_plans:hover {
      transform: scale(1.04);
    }

    .top_plans:hover p {
      color: #000;
    }

    .plans-img {
      overflow: hidden;
    }

    .top_plans:hover .plans-img img {
      transform: scale(1.1);
    }

    .top_plans img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: all .3s ease;
    }

    .top_plans h3 {
      text-align: left;
      padding: 0px;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 0px;
      padding-top: 0px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      letter-spacing: .5px;
    }

    .top_plans p {
      text-align: justify;
      padding: 0px;
      font-size: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 7;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 0px;
      margin-top: 12px;
      color: #535252;
    }

    .top_plans .plans-cont {
      height: 225px;
      padding: 24px 15px;
    }

    /* .plans_slider .top_plans{
    margin: 10px;
} */

    .plans-img img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .plans_wrapper .slick-dotted.slick-slider {
      margin-bottom: 70px;
    }





    /* ==========================================================================
   HELPER CLASSES
   ========================================================================== */
    .text-center {
      text-align: center;
    }

    .btn-orange {
      background-color: #ff8c00;
      color: #fff;
      padding: 10px 30px;
      border: none;
      border-radius: 4px;
      font-weight: 600;
      cursor: pointer;
      display: inline-block;
      margin: 20px auto;
      text-transform: uppercase;
      font-size: 14px;
    }

    .btn-orange:hover {
      background-color: #e07b00;
    }

    .section-title {
      font-size: 18px;
      font-weight: 600;
      color: var(--dark);
      text-transform: uppercase;
      margin: 30px 0 20px 0;
      position: relative;
      letter-spacing: 0.5px;
    }

    /* ==========================================================================
   HEADER / HERO BANNER
   ========================================================================== */
    .top-nav-sim {
      font-size: 11px;
      color: #777;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }

    .hero-banner {
      position: relative;
      background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../static-img/demo-4.jpg') no-repeat center center;
      background-size: cover;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .hero-banner h1 {
      font-size: 42px;
      font-weight: 700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    /* ==========================================================================
   FILTER ICON BAR
   ========================================================================== */
    .filter-icons-bar {
      background-color: var(--light);
      border-bottom: 1px solid var(--border-color);
      padding: 12px 0;
    }

    .filter-grid {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .filter-item {
      font-size: 13px;
      color: var(--dark);
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .filter-item i {
      color: var(--dark);
    }

    /* ==========================================================================
   INTRO TEXT & QUICK NAV SECTION
   ========================================================================== */
    .intro-section {
      padding: 30px 0;
      font-size: 13px;
      color: #555;
      line-height: 1.7;
    }

    .intro-section h2 {
      font-size: 18px;
      color: var(--dark);
      margin-bottom: 10px;
      font-weight: 600;
    }

    .intro-section h3 {
      font-size: 16px;
      color: var(--dark);
      margin: 15px 0 5px 0;
      font-weight: 600;
      text-align: left;
    }

    .intro-section p {
      margin-bottom: 12px;
      text-align: left;
    }

    .filter-nav-section {
      margin-top: 10px;
      margin-bottom: 20px;
    }

    .alphabet-filter {
      display: flex;
      justify-content: space-between;
      border: 1px solid var(--border-color);
      border-radius: 4px;
      background: #fff;
      flex-wrap: wrap;
    }

    .alphabet-filter span {
      min-width: 80px;
      text-align: center;
      padding: 10px 5px;
      font-size: 12px;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      border: 1px solid var(--navy);
    }

    /* .alphabet-filter span:last-child {
  border-right: none;
} */
    .alphabet-filter span:hover {
      background-color: var(--light);
    }

    /* ==========================================================================
   GRID LAYOUTS (Desktop / Standard View)
   ========================================================================== */
    .destinations-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .destination-card {
      position: relative;
      border-radius: 4px;
      overflow: hidden;
      height: 250px;
    }

    .destination-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .destination-card:hover img {
      transform: scale(1.05);
    }

    .destination-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.25);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
      padding: 10px;
    }

    .destination-overlay h4 {
      font-size: 22px;
      font-weight: 700;
      line-height: 1.2;
      margin: 0px;
      color: #fff;
      /* Text color white */
      text-shadow:
        -1px -1px 0 var(--sky),
        1px -1px 0 var(--sky),
        -1px 1px 0 var(--sky),
        1px 1px 0 var(--sky);
      /* Uses your exact --sky variable */
    }

    /* --- Package / Deal Cards --- */
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 15px;
    }

    .package-card {
      border: 1px solid var(--border-color);
      display: flex;
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
    }

    .package-img {
      width: 100%;
      position: relative;
    }

    .package-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .package-details {
      width: 55%;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid #22222229;
      border-left: none;
    }

    .package-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
    }

    .stars {
      color: var(--gold);
      font-size: 11px;
      margin: 3px 0;
    }

    .package-location {
      font-size: 12px;
      color: var(--gray);
      margin-bottom: 10px;
    }

    .package-price-box {
      text-align: right;
      margin-top: auto;
    }

    .price-from {
      font-size: 11px;
      color: var(--gray);
    }

    .price-amount {
      font-size: 20px;
      font-weight: 700;
      color: var(--navy);
    }

    .btn-view-deal {
      background-color: var(--navy);
      color: white;
      text-align: center;
      padding: 8px;
      font-size: 12px;
      font-weight: 600;
      display: block;
      width: 100%;
      margin-top: 10px;
    }

    /* --- Top Hotels Row Grid --- */
    .hotels-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 15px;
    }

    .hotel-card {
      border: 1px solid var(--border-color);
      border-radius: 4px;
      overflow: hidden;
      background: #fff;
      font-size: 11px;
    }

    .hotel-img-container {
      height: 100px;
      width: 100%;
    }

    .hotel-img-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hotel-info {
      padding: 8px;
      border: 1px solid #22222229;
      border-top: none;
    }

    .hotel-name {
      font-weight: 700;
      color: var(--navy);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .hotel-rating-inline {
      display: flex;
      align-items: center;
      gap: 5px;
      margin: 3px 0;
    }

    .tripadvisor-rating {
      color: #00af87;
      font-weight: 700;
      font-size: 10px;
    }

    /* --- Map Section --- */
    .map-section {
      margin: 30px 0;
    }

    .map-container {
      border: 1px solid var(--border-color);
      border-radius: 4px;
      overflow: hidden;
      height: 250px;
      background: #e5e3df;
      position: relative;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ==========================================================================
   TABBED INFORMATION SECTION & ACCORDION
   ========================================================================== */
    .info-tabs-headers {
      display: flex;
      border-bottom: 2px solid #22222287;
      margin-bottom: 20px;
      justify-content: center;
    }

    .tab-header {
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      border-bottom: 3px solid var(--navy);
      cursor: pointer;
      margin-bottom: -2px;
      transition: all 0.2s ease-in-out;
    }

    .tab-header.inactive {
      border-bottom: 3px solid transparent;
      color: var(--gray);
    }

    .tab-pane {
      display: none;
    }

    .tab-pane.active {
      display: block;
    }

    .info-blocks-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-bottom: 5px;
    }

    .info-block {
      border: 1px solid var(--border-color);
      background: #fff;
    }

    .info-block-img {
      height: 150px;
      width: 100%;
    }

    .info-block-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .info-block-content {
      padding: 15px;
      font-size: 11px;
      color: #555;
      border: 1px solid #22222229;
      border-top: none;
      min-height: 250px;
      font-size: 13px;
    }

    .info-block-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .info-block-content ul {
      list-style: none;
      padding-left: 0;
    }

    .info-block-content ul li {
      margin-bottom: 8px;
      position: relative;
      padding-left: 12px;
    }

    .info-block-content ul li::before {
      content: "•";
      color: var(--sky);
      font-weight: bold;
      position: absolute;
      left: 0;
      top: -1px;
    }

    .info-block-content strong {
      color: #333;
    }

    /* --- Modern Accordion FAQ --- */
    .faq-container {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--border-color);
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-header {
      background-color: #fff;
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.2s ease;
    }

    .faq-header:hover {
      background-color: var(--light);
    }

    .faq-question {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
    }

    .faq-icon {
      font-size: 12px;
      color: var(--gray);
      transition: transform 0.3s ease;
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease;
      background-color: #fff;
    }

    .faq-answer {
      font-size: 12.5px;
      color: #555;
      line-height: 1.6;
      padding: 0 20px 16px 20px;
    }

    .faq-item.active {
      border-color: var(--sky);
    }

    .faq-item.active .faq-header {
      background-color: var(--light);
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
      color: var(--sky);
    }

    .faq-item.active .faq-content {
      max-height: 200px;
    }

    /* ==========================================================================
   MEDIA QUERIES (Bootstrap 5 Breakpoints Validation)
   ========================================================================== */

    /* Tablets & Medium Viewports (Max-width: 992px) */
    @media (max-width: 992px) {
      .hotels-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* Small Tablets & Mobile Landscape (Max-width: 768px) */
    @media (max-width: 768px) {
      .hero-banner h1 {
        font-size: 32px;
      }

      .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .info-blocks-grid {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .info-block-content {
        min-height: auto;
      }
    }

    /* Pure Mobile Devices (Max-width: 480px) */
    @media (max-width: 480px) {
      .filter-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 10px;
      }

      .filter-item {
        font-size: 11px;
        justify-content: center;
      }

      .destinations-grid {
        grid-template-columns: 1fr;
      }

      .package-card {
        flex-direction: column;
      }

      .package-img {
        width: 100%;
        height: 180px;
      }

      .package-details {
        width: 100%;
        border-left: 1px solid #22222229;
        border-top: none;
      }

      .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .alphabet-filter span {
        border-bottom: 1px solid var(--border-color);
      }

      .alphabet-filter span:nth-child(even) {
        border-right: none;
      }
    }


    /* --- Premium Deals Section Styling --- */
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 20px;
    }

    .package-card {
      border: 1px solid #cce0f5;
      display: flex;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    /* Image + Dark Blue Strip Wrapper */
    .package-img-container {
      width: 40%;
      display: flex;
      flex-direction: column;
    }

    .package-img {
      flex-grow: 1;
      height: 165px;
    }

    .package-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .phone-strip {
      background-color: #243572;
      /* Exact dark luxury navy blue from screenshot */
      color: #fff;
      text-align: center;
      padding: 8px 5px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    .phone-strip a {
      color: #fff;
      display: block;
    }

    .phone-strip i {
      font-size: 11px;
      margin-right: 4px;
    }

    /* Content Details Area */
    .package-details {
      width: 60%;
      padding: 15px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .package-title {
      font-size: 16px;
      font-weight: 700;
      color: #0c3374;
      /* Premium structural text color */
    }

    .stars {
      color: #ffb400;
      /* Rich gold from reference image */
      font-size: 12px;
      margin: 2px 0 5px 0;
    }

    .package-location {
      font-size: 11.5px;
      color: #777;
      margin-bottom: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Icons Meta Lines */
    .meta-info-line {
      font-size: 12px;
      color: #444;
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .meta-info-line i {
      color: #92a4bc;
      /* Precise neutral grey-blue icon style */
      font-size: 13px;
      width: 14px;
    }

    /* Pricing and Action Grouping */
    .package-pricing-action {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .price-row {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      font-size: 12px;
      color: #555;
      padding-top: 5px;
    }

    .was-price del {
      color: #666;
    }

    .now-price {
      color: #034892;
    }

    .price-amount {
      font-size: 22px;
      font-weight: 800;
      color: #034892;
      font-family: Arial, sans-serif;
      /* Fallback for bold vector appearance */
    }

    /* Sky-blue Search Button */
    .btn-search-deal {
      background-color: #3490dc;
      /* Sky blue matching layout */
      color: #fff;
      text-align: center;
      padding: 10px;
      font-size: 14px;
      font-weight: 600;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      transition: background-color 0.2s;
    }

    .btn-search-deal:hover {
      background-color: #2779bd;
    }

    .btn-search-deal i {
      font-size: 11px;
    }

    /* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */
    @media (max-width: 768px) {
      .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    @media (max-width: 520px) {
      .package-card {
        flex-direction: column;
      }

      .package-img-container {
        width: 100%;
      }

      .package-details {
        width: 100%;
        padding: 15px;
      }

      .package-img {
        height: 180px;
      }
    }




    /* Payment Page  */
    .checkout-container {
      width: 100%;
      max-width: 860px;
      display: flex;
      flex-direction: column;
      gap: 28px;
    }

    /* --- Unified Card Styling (Prevents disappearing visual borders) --- */
    .checkout-card {
      background-color: var(--white);
      border-radius: 14px;
      padding: 32px;
      box-shadow: 0 10px 25px -5px rgba(14, 72, 145, 0.05),
        0 8px 10px -6px rgba(14, 72, 145, 0.05);
    }

    .payment-card {
      border: 1.5px solid var(--sky);
    }

    .billing-card {
      border: 1.5px solid var(--gold);
    }

    /* --- Content Headers --- */
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .checkout-card h2 {
      color: var(--navy);
      font-size: 1.35rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .subsection-title {
      font-size: 1rem;
      font-weight: 600;
      color: var(--dark);
      margin-bottom: 12px;
    }

    .section-divider {
      border: none;
      height: 1px;
      background-color: var(--border-default);
      margin: 18px 0 22px;
    }

    .badge-secure {
      background-color: #f0fdf4;
      color: #166534;
      border: 1px solid #bbf7d0;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    /* --- Credit Card Brand Tags --- */
    .card-brands-row {
      display: flex;
      gap: 8px;
      margin-bottom: 24px;
    }

    .brand-tag {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 5px 10px;
      border: 1px solid var(--border-default);
      border-radius: 6px;
      background-color: var(--white);
      color: var(--gray);
    }

    .brand-tag.mastercard {
      border-color: #ea580c;
      color: #ea580c;
    }

    .brand-tag.visa {
      border-color: #1d4ed8;
      color: #1d4ed8;
    }

    /* --- Complex Structural Layouts --- */
    .two-column-layout {
      display: grid;
      grid-template-columns: 1fr 200px;
      gap: 36px;
    }

    @media (max-width: 768px) {
      .two-column-layout {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .trust-column {
        border-left: none !important;
        border-top: 1px dashed var(--border-default);
        padding: 24px 0 0 !important;
        flex-direction: row !important;
        justify-content: space-around;
      }
    }

    .form-inputs-side {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .row-asymmetric {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 16px;
    }

    /* --- Concrete Input Field Box Containment System (Forces Rendering) --- */
    .form-component {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-component label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gray);
    }

    /* This outer block guarantees fields have visible structural boxes */
    .input-field-box {
      background-color: var(--field-bg) !important;
      border: 1.5px solid var(--border-default) !important;
      border-radius: 8px !important;
      display: flex !important;
      align-items: center !important;
      width: 100% !important;
      overflow: hidden;
      transition: all 0.2s ease;
    }

    /* Absolute style resets on fields to overwrite framework interference */
    .input-field-box input,
    .input-field-box select {
      width: 100% !important;
      height: 42px !important;
      border: none !important;
      outline: none !important;
      background: transparent !important;
      padding: 0 14px !important;
      font-size: 0.95rem !important;
      color: var(--dark) !important;
      box-shadow: none !important;
      margin: 0 !important;
    }

    /* Interactive focus states depending on section themes */
    .payment-card .input-field-box:focus-within {
      border-color: var(--sky) !important;
      background-color: var(--white) !important;
      box-shadow: 0 0 0 3.5px rgba(28, 160, 215, 0.12) !important;
    }

    .billing-card .input-field-box:focus-within {
      border-color: var(--gold) !important;
      background-color: var(--white) !important;
      box-shadow: 0 0 0 3.5px rgba(248, 180, 0, 0.12) !important;
    }

    /* Form layout variation components */
    .split-fields-row {
      display: flex;
      gap: 10px;
    }

    .centered-field input {
      text-align: center;
      letter-spacing: 1.5px;
    }

    .cvv-container {
      position: relative;
    }

    .cvv-hint {
      margin-right: 14px;
      color: var(--sky);
      cursor: pointer;
      font-size: 1rem;
    }

    /* Dropdown styling patch */
    .select-wrapper select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") !important;
      background-repeat: no-repeat !important;
      background-position: right 14px center !important;
      background-size: 14px !important;
      padding-right: 36px !important;
    }

    /* --- Billing Grid Matrix --- */
    .billing-form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    @media (max-width: 576px) {
      .billing-form-grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- Trust Vector Side Graphics Column --- */
    .trust-column {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 28px;
      border-left: 1px dashed var(--border-default);
      padding-left: 24px;
    }

    .pci-compliance-card {
      text-align: center;
      border: 1px solid var(--border-default);
      border-radius: 8px;
      padding: 12px;
      width: 140px;
      background-color: var(--field-bg);
    }

    .meta-label {
      font-size: 0.65rem;
      color: var(--gray);
      font-weight: 600;
      text-transform: uppercase;
    }

    .pci-brand {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--navy);
      margin: 1px 0;
    }

    .pci-brand .accent-text {
      color: var(--sky);
    }

    .compliance-status {
      font-size: 0.62rem;
      letter-spacing: 0.5px;
      font-weight: 700;
      color: var(--dark);
    }

    .badge-100-secure {
      text-align: center;
      color: #16a34a;
    }

    .shield-container {
      font-size: 2.2rem;
      margin-bottom: 4px;
    }

    .badge-100-secure p {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.5px;
    }

    /* --- Dynamic Call To Action Submit Button --- */
    .prime-submit-btn {
      background-color: var(--navy);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 18px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      box-shadow: 0 4px 14px rgba(14, 72, 145, 0.25);
      transition: background-color 0.15s ease, transform 0.1s ease;
    }

    .prime-submit-btn:hover {
      background-color: #0b3a75;
    }

    .prime-submit-btn:active {
      transform: scale(0.99);
    }

    /* --- Selectable Card Brands Styling --- */
    .card-brands-row {
      display: flex;
      gap: 10px;
      margin-bottom: 24px;
    }

    /* Hide the actual radio checkbox input completely */
    .card-brands-row input[type="radio"] {
      display: none;
    }

    /* Make the labels look like clickable tags */
    .card-brands-row label.brand-tag {
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 8px 16px;
      border: 1.5px solid var(--border-default);
      border-radius: 8px;
      background-color: var(--white);
      color: var(--gray);
      cursor: pointer;
      user-select: none;
      transition: all 0.2s ease;
    }

    /* Hover effect */
    .card-brands-row label.brand-tag:hover {
      border-color: var(--sky);
      background-color: var(--field-bg);
    }

    /* Global Selection Rules (When ANY card is picked) */
    .card-brands-row input[type="radio"]:checked+label {
      background-color: var(--navy) !important;
      color: var(--white) !important;
      border-color: var(--navy) !important;
      box-shadow: 0 4px 10px rgba(14, 72, 145, 0.2);
    }

    /* Brand specific highlight colors when active (Optional override) */
    .card-brands-row input[type="radio"]:checked+label.visa {
      background-color: #1d4ed8 !important;
      border-color: #1d4ed8 !important;
    }

    .card-brands-row input[type="radio"]:checked+label.mastercard {
      background-color: #ea580c !important;
      border-color: #ea580c !important;
    }




    /* Confiramtion Page  */
    .confirmation-container {
      width: 100%;
      max-width: 960px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* --- Brand Header Formatting --- */
    .brand-header {
      background-color: var(--white);
      border-radius: 12px;
      padding: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      border-bottom: 4px solid var(--navy);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .logo-area {
      font-size: 1.6rem;
      font-weight: 900;
      color: var(--navy);
      letter-spacing: -0.5px;
    }

    .logo-text-accent {
      color: var(--sky);
    }

    .header-contact-meta {
      text-align: right;
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.5;
    }

    .header-contact-meta a {
      color: var(--navy);
      text-decoration: none;
      font-weight: 600;
    }

    .header-contact-meta a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .brand-header {
        flex-direction: column;
        text-align: center;
      }

      .header-contact-meta {
        text-align: center;
      }
    }

    /* --- Modern Interactive Status Banner Card --- */
    .status-banner-card {
      background-color: var(--pending-bg);
      border: 1.5px solid var(--pending-border);
      border-radius: 12px;
      padding: 28px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .status-icon-ring {
      width: 56px;
      height: 56px;
      background-color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      color: var(--pending-amber);
      box-shadow: 0 4px 10px rgba(217, 119, 6, 0.15);
      flex-shrink: 0;
    }

    .status-text-content h1 {
      font-size: 1.4rem;
      color: #92400e;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .status-subtitle {
      font-size: 1rem;
      color: #b45309;
    }

    .ref-highlight {
      background-color: var(--white);
      padding: 3px 8px;
      border-radius: 6px;
      border: 1px solid var(--pending-border);
      font-family: monospace;
      font-size: 1.05rem;
      color: var(--navy);
    }

    @media (max-width: 576px) {
      .status-banner-card {
        flex-direction: column;
        text-align: center;
      }
    }

    /* --- Layout Adaptive Grid Architecture --- */
    .summary-layout-grid {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 24px;
      align-items: start;
    }

    @media (max-width: 768px) {
      .summary-layout-grid {
        grid-template-columns: 1fr;
      }
    }

    /* --- Modular Left-side Cards --- */
    .info-card {
      background-color: var(--white);
      border-radius: 12px;
      border: 1.5px solid var(--border-muted);
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    }

    .card-title-bar {
      background-color: #fafbfc;
      padding: 16px 20px;
      border-bottom: 1.5px solid var(--border-muted);
    }

    .card-title-bar h3 {
      font-size: 1.05rem;
      color: var(--navy);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* --- Clean Table-Free Content Grid Rows --- */
    .details-table-wrapper {
      padding: 8px 0;
    }

    .table-row {
      display: grid;
      grid-template-columns: 240px 1fr;
      padding: 14px 20px;
      border-bottom: 1px solid #f1f5f9;
      align-items: center;
    }

    .table-row:last-child {
      border-bottom: none;
    }

    .row-label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--gray);
    }

    .row-value {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--dark);
    }

    .student-name {
      color: var(--navy);
    }

    .text-break {
      word-break: break-all;
    }

    @media (max-width: 576px) {
      .table-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 12px 20px;
      }
    }

    /* --- Navigation & Secondary Action Footer Row --- */
    .action-footer-links {
      display: flex;
      justify-content: space-between;
      margin-top: 24px;
      gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
      border-radius: 8px;
      padding: 12px 20px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.15s ease;
      text-decoration: none;
    }

    .btn-primary {
      background-color: var(--navy);
      color: var(--white);
      border: none;
      box-shadow: 0 4px 10px rgba(14, 72, 145, 0.15);
    }

    .btn-primary:hover {
      background-color: #0b3a75;
    }

    .btn-secondary {
      background-color: transparent;
      color: var(--gray);
      border: 1.5px solid var(--border-muted);
    }

    .btn-secondary:hover {
      background-color: #f1f5f9;
      color: var(--dark);
    }

    /* --- Right Side Column Notice and Sidebar Cards --- */
    .sidebar-meta-column {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Notice Box Callout Styling */
    .notice-callout-card {
      background-color: #fffaf0;
      border-left: 4px solid #f59e0b;
      border-radius: 0 12px 12px 0;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
    }

    .notice-header {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #d97706;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .notice-callout-card p {
      font-size: 0.85rem;
      line-height: 1.5;
      color: #78350f;
      margin-bottom: 8px;
    }

    .notice-callout-card p:last-child {
      margin-bottom: 0;
    }

    .notice-highlight {
      font-weight: 600;
      background-color: #fef3c7;
      padding: 6px;
      border-radius: 4px;
    }

    /* Sidebar Customer Help Details Layout */
    .support-sidebar-card {
      background-color: var(--white);
      border: 1.5px solid var(--border-muted);
      border-radius: 12px;
      padding: 20px;
    }

    .support-sidebar-card h5 {
      font-size: 0.95rem;
      color: var(--dark);
      font-weight: 700;
      margin-bottom: 6px;
    }

    .support-sidebar-card p {
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.4;
      margin-bottom: 14px;
    }

    .support-action-channels {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .channel-link {
      display: flex;
      align-items: center;
      gap: 10px;
      background-color: var(--light);
      border: 1px solid var(--border-muted);
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .channel-link:hover {
      background-color: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    /* --- Clean Print Styling System --- */
    @media print {
      body {
        background-color: #fff;
        padding: 0;
      }

      .action-footer-links,
      .support-sidebar-card {
        display: none !important;
      }

      .confirmation-container {
        max-width: 100%;
      }

      .summary-layout-grid {
        grid-template-columns: 1fr;
      }

      .status-banner-card {
        border: 1px solid #000;
        background: none;
        color: #000;
      }

      .ref-highlight {
        border: none;
        font-weight: bold;
      }
    }




    /* ==========================================
   SEGMENTED TRACK CONTROLS
   ========================================== */
    .segment-track {
      display: flex;
      background-color: var(--bg-track);
      border-radius: 14px;
      padding: 4px;
      gap: 2px;
    }

    .segment-pill {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px 6px;
      cursor: pointer;
      border-radius: 10px;
      background-color: transparent;
      transition: all 0.2s ease-in-out;
    }

    .segment-pill i {
      font-size: 0.95rem;
      color: #4a5568;
    }

    .segment-pill .segment-label {
      font-size: 0.62rem;
      font-weight: 600;
      color: #718096;
      margin-top: 4px;
      text-align: center;
      white-space: noraml;
    }

    .segment-pill.active {
      background-color: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    }

    .segment-pill.active i,
    .segment-pill.active .segment-label {
      color: #0c2340;
      font-weight: 700;
    }

    .sub-filter-title {
      font-size: 16px;
    }

    /* ==========================================
   AIRPORTS STYLE FIXES
   ========================================== */
    .filter-card .airport-code {
      font-size: 0.8rem;
      color: var(--text-muted);
      display: block;
      margin-top: 2px;
      font-weight: 500;
    }

    .modern-checkbox {
      width: 18px !important;
      height: 18px !important;
      border: 1.5px solid #cbd5e1 !important;
      border-radius: 4px !important;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      background-color: #fff;
      position: relative;
    }

    .modern-checkbox:checked {
      background-color: var(--brand-blue) !important;
      border-color: var(--brand-blue) !important;
    }

    .modern-checkbox:checked::after {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: #ffffff;
      font-size: 10px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* ==========================================
   TRUE INTERACTIVE DUAL RANGE SLIDER
   ========================================== */
    .price-range-label {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    .price-value {
      font-weight: 700;
      color: var(--text-dark);
    }

    .dual-range-wrapper {
      position: relative;
      width: 100%;
      height: 30px;
      margin-top: 10px;
    }

    /* Base static gray track background */
    .dual-range-wrapper::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 4px;
      background-color: #e2e8f0;
      top: 50%;
      transform: translateY(-50%);
      border-radius: 2px;
      z-index: 1;
    }

    /* Active Highlight bar filled with orange between thumbs */
    .slider-track {
      position: absolute;
      height: 4px;
      background-color: var(--orange-accent);
      top: 50%;
      transform: translateY(-50%);
      border-radius: 2px;
      z-index: 2;
    }

    .range-input {
      position: absolute;
      width: 100%;
      height: 4px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      pointer-events: none;
      /* Allows click-through logic to handle dual knobs */
      -webkit-appearance: none;
      appearance: none;
      margin: 0;
      z-index: 3;
    }

    /* Webkit Thumbs */
    .range-input::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      height: 18px;
      width: 18px;
      border-radius: 50%;
      background: #ffffff;
      border: 3.5px solid var(--orange-accent);
      cursor: pointer;
      pointer-events: auto;
      /* Reactivates track handle dragging actions */
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }

    /* Firefox Thumbs */
    .range-input::-moz-range-thumb {
      height: 18px;
      width: 18px;
      border-radius: 50%;
      background: #ffffff;
      border: 3.5px solid var(--orange-accent);
      cursor: pointer;
      pointer-events: auto;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }


    footer {
      position: relative;
      background: #081018;
      overflow: hidden;
    }

    /* TOP */

    .footer-top {
      padding: 40px 0 40px;
      position: relative;
    }

    .footer-top::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left,
          rgba(0, 173, 181, 0.14),
          transparent 35%);

      pointer-events: none;
    }

    .footer-wrapper {
      display: flex;
      gap: 40px;
      align-items: stretch;
    }

    .footer-left {
      flex: 1;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 28px;
      padding: 25px 40px;
      backdrop-filter: blur(18px);
    }

    .footer-brand {
      margin-bottom: 40px;
    }

    .footer-logo {
      width: 130px;
      margin-bottom: 20px;
    }

    .footer-address {
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 30px;
      max-width: 100%;
    }

    .footer-contact-box {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .footer-contact {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    img.atl_imgs {
      width: 100%;
      max-width: 70px;
      height: 70px;
      margin-top: 5px;
    }

    .footer-contact span {
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      word-break: break-all;
    }

    .footer-contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-contact-icon img {
      width: 22px;
    }

    .footer-links-wrapper {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .footer-links-column h4 {
      color: #fff;
      font-size: 18px;
      margin-bottom: 22px;
      font-weight: 700;
      position: relative;
      padding: 0px;
      padding-bottom: 12px;
      margin-top: 0px;
    }

    .footer-links-column h4::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      border-radius: 50px;
      background: linear-gradient(90deg, #00ADB5, #4ECDC4);
    }

    .footer-links-column ul {
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer-links-column ul li {
      margin-bottom: 14px;
    }

    .footer-links-column ul li a {
      color: rgba(255, 255, 255, 0.68);
      text-decoration: none;
      transition: 0.4s ease;
      font-size: 15px;
    }

    .footer-links-column ul li a:hover {
      color: #00ADB5;
      padding-left: 6px;
    }

    .atol-img {
      width: 100px;
      margin-bottom: 25px;
    }

    .footer-socials {
      display: flex;
      gap: 14px;
    }

    .footer-socials a {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      transition: 0.4s ease;
    }

    .footer-socials a:hover {
      background: linear-gradient(135deg, #00ADB5, #4ECDC4);
      transform: translateY(-5px);
    }

    /* NEWSLETTER */

    .footer-newsletter {
      width: 420px;
    }

    .newsletter-card {
      height: 100%;
      border-radius: 30px;
      overflow: hidden;
      position: relative;
      padding: 40px 40px;
      background:
        linear-gradient(135deg,
          rgba(0, 173, 181, 0.15),
          rgba(255, 255, 255, 0.03));

      border: 1px solid rgba(255, 255, 255, 0.08);

      backdrop-filter: blur(16px);
    }

    .newsletter-tag {
      display: inline-flex;
      padding: 10px 18px;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.08);
      color: #00ADB5 !important;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 25px;
    }

    .newsletter-contents h2 {
      color: #fff;
      font-size: 30px;
      line-height: 1.2;
      margin-bottom: 20px;
      font-weight: 800;
      margin-top: 0px;
    }

    .newsletter-contents p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 35px;
    }

    .newsletter-forms {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
    }

    .newsletter-forms input {
      flex: 1;
      height: 58px;
      border: none;
      border-radius: 16px;
      padding: 0 18px;
      background: rgba(255, 255, 255, 0.07);
      color: #fff;
      font-size: 15px;
    }

    .newsletter-forms input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-forms button {
      border: none;
      padding: 0 26px;
      border-radius: 16px;
      background: linear-gradient(135deg, #00ADB5, #4ECDC4);
      color: #fff;
      font-weight: 700;
      transition: 0.4s ease;
      font-size: 13px;
    }

    .newsletter-forms button:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 30px rgba(0, 173, 181, 0.35);
    }

    /* MESSAGE */

    .msgNewsLetterSubsc12,
    .succNewsLetterSubsc,
    .msgNewsLetterSubsc,
    .msgNewsLetterSubsc1 {
      display: none;
      color: #fff;
      font-size: 13px;
    }

    /* BOTTOM */

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 18px 0;
      background: #081018;
    }

    .footer-bottom-top {
      margin-bottom: 30px;
    }

    .footer-reg {
      color: #fff;
      font-size: 15px;
      margin-bottom: 15px;
    }

    .footer-desc {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
      line-height: 1.9;
      max-width: 100%;
      text-align: justify;
    }

    .footer-desc a {
      color: #fff;
      transition: .3s;
    }

    .footer-desc a:hover {
      color: #ff9324;
    }

    .footer-bottom-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .footer-payment img {
      max-width: 240px;
    }

    .footer-copy {
      color: rgba(255, 255, 255, 0.65);
      font-size: 14px;
    }

    .footer-copy a {
      color: #00ADB5;
      text-decoration: none;
    }

    /* BACK TO TOP */

    .footer-top-btn {
      position: fixed;
      right: 08px;
      bottom: 90px;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #00ADB5, #4ECDC4);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 99;
      cursor: pointer;
      box-shadow: 0 15px 30px rgba(0, 173, 181, 0.35);
      transition: 0.4s ease;
      font-size: 0;
    }

    .footer-top-btn i {
      font-size: 18px;
    }

    .footer-top-btn:hover {
      transform: translateY(-6px);
    }

    /* STICKY CALL */

    .smallStickyCallBanner {
      position: fixed;
      left: 20px;
      bottom: 20px;
      z-index: 99;
      display: none;
    }

    .phone-only {
      background: #fff;
      border-radius: 22px;
      padding: 22px;
      width: 360px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      position: relative;
      animation: floatBox 3s ease-in-out infinite;
    }

    .phone-only-agent {
      width: 70px;
      margin-bottom: 14px;
    }

    .phone-only b {
      display: block;
      color: #081018;
      font-size: 17px;
      line-height: 1.5;
      margin-bottom: 12px;
    }

    .phone-only p {
      color: #666;
      font-size: 14px;
      line-height: 1.8;
    }

    .phone-only a {
      color: #00ADB5;
      font-weight: 700;
      text-decoration: none;
    }

    .cross-icon {
      position: absolute;
      top: 16px;
      right: 18px;
      cursor: pointer;
      font-size: 16px;
      color: #888;
    }

    @keyframes floatBox {
      0% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-8px);
      }

      100% {
        transform: translateY(0px);
      }
    }

    /* RESPONSIVE */

    @media(max-width:1199px) {

      .footer-wrapper {
        flex-direction: column;
      }

      .footer-newsletter {
        width: 100%;
      }

    }

    @media(max-width:991px) {

      .footer-links-wrapper {
        grid-template-columns: repeat(2, 1fr);
      }

      .newsletter-content h2 {
        font-size: 34px;
      }

      .logo img {
        width: 100px;
      }

    }

    @media(max-width:767px) {

      .footer-top {
        padding: 70px 0 60px;
      }



      .footer-links-wrapper {
        grid-template-columns: 1fr;
      }



      .newsletter-forms {
        flex-direction: column;
      }

      .newsletter-forms button {
        height: 55px;
      }

      .newsletter-content h2 {
        font-size: 28px;
      }

      .footer-bottom-flex {
        flex-direction: column;
        align-items: flex-start;
      }

      .phone-only {
        width: calc(100vw - 40px);
      }

    }

    @media(max-width:567px) {
      .footer-left {
        padding: 30px 12px;
      }

      .newsletter-card {
        padding: 35px 12px;
      }
    }


    /* ANIMATION */

    .footer-links-column,
    .footer-brand,
    .newsletter-card {
      opacity: 0;
      transform: translateY(50px);
      transition: 0.8s ease;
    }

    .footerFadeUp {
      opacity: 1 !important;
      transform: translateY(0px) !important;
    }