
    /* ── Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Inter', sans-serif; color: #222; background: #f5f5f5; }

    /* ── Navbar ── */
    .navbar-top {
      background: #fff;
      border-bottom: 1px solid #e8e8e8;
      padding: 0;
      font-size: 14px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    }
    .navbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      height: 60px;
      max-width: 1280px;
      margin: 0 auto;
    }
    .nav-logo {
      font-size: 24px;
      font-weight: 800;
      color: #005fcc;
      letter-spacing: -0.5px;
      text-decoration: none;
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }
    .nav-logo img {
      height: 52px;
      width: auto;
      display: block;
    }
    .nav-logo span { color: #f47b20; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-grow: 1;
      justify-content: center;
    }
    .nav-links a {
      text-decoration: none;
      color: #333;
      padding: 6px 14px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 4px;
      white-space: nowrap;
      transition: color 0.15s, background 0.15s;
    }
    .nav-links a:hover { color: #005fcc; background: #f0f6ff; }
    .nav-links a.active { color: #005fcc; font-weight: 700; }
    /* Dropdown (CRM-managed nav items with children) */
    .nav-item-dropdown { position: relative; }
    .nav-links a.has-children::after { content: ''; display: inline-block; width: 6px; height: 6px; margin-left: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); }
    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      min-width: 190px;
      padding: 6px;
      z-index: 1001;
    }
    .nav-item-dropdown:hover .nav-dropdown-menu { display: block; }
    .nav-dropdown-menu a { display: block; padding: 8px 12px; border-radius: 6px; }
    .mobile-submenu-item { padding-left: 28px !important; font-size: 13px !important; color: #666 !important; }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-shrink: 0;
    }
    .nav-search-icon {
      color: #555;
      font-size: 18px;
      cursor: pointer;
      transition: color 0.15s;
      display: flex;
      align-items: center;
    }
    .nav-search-icon:hover { color: #005fcc; }
    .btn-login {
      background: #fff;
      border: none;
      color: #333;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      padding: 6px 4px;
      text-decoration: none;
      transition: color 0.15s;
    }
    .btn-login:hover { color: #005fcc; }
    /* Hamburger */
    .nav-hamburger {
      display: none;
      background: none;
      border: none;
      font-size: 22px;
      color: #333;
      cursor: pointer;
      padding: 4px;
    }
    .mobile-menu {
      display: none;
      flex-direction: column;
      background: #fff;
      border-top: 1px solid #eee;
      padding: 12px 20px;
      gap: 4px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      text-decoration: none;
      color: #333;
      font-size: 14px;
      font-weight: 500;
      padding: 10px 8px;
      border-radius: 6px;
      border-bottom: 1px solid #f0f0f0;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: #005fcc; background: #f0f6ff; }

    /* ==============================
       HERO
    ============================== */
    .hero-section {
      position: relative;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      padding: 56px 0 40px;
      background: linear-gradient(135deg, #050e24 0%, #0a1d4a 55%, #0d2d73 100%);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1800&q=80') center/cover no-repeat;
      opacity: 0.18;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(5,14,36,0.20) 0%, rgba(10,29,73,0.58) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 980px;
      width: 100%;
      margin: 0 auto;
      padding: 0 16px;
    }
    .hero-title {
      font-size: clamp(20px, 3.2vw, 36px);
      font-weight: 800;
      color: #fff;
      text-align: center;
      margin-bottom: 10px;
      letter-spacing: -0.5px;
      text-shadow: 0 2px 24px rgba(0,0,0,0.45);
      line-height: 1.2;
    }
    .hero-subtitle {
      text-align: center;
      color: rgba(255,255,255,0.65);
      font-size: 13.5px;
      margin-bottom: 22px;
    }

    /* ==============================
       SEARCH CARD
    ============================== */
    .search-card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 16px 64px rgba(0,0,0,0.22);
      position: relative;
      overflow: visible;
      padding-bottom: 0;
    }

    /* ==============================
       TABS
    ============================== */
    .search-tabs {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
      border-bottom: 2px solid #eef1f8;
      padding: 0 16px;
      background: #f8f9fe;
      border-radius: 16px 16px 0 0;
    }
    .search-tabs::-webkit-scrollbar { display: none; }
    .search-tabs button {
      position: relative;
      border: none;
      background: transparent;
      padding: 14px 13px 12px;
      font-size: 13px;
      font-weight: 500;
      color: #7b82a0;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      white-space: nowrap;
      flex-shrink: 0;
      transition: color 0.18s, background 0.15s;
    }
    .search-tabs button .tab-icon {
      width: 26px;
      height: 26px;
      border-radius: 7px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      background: #eaecf5;
      color: #7b82a0;
      flex-shrink: 0;
      transition: background 0.18s, color 0.18s;
    }
    .search-tabs button:hover:not(.active) { color: #1352cc; }
    .search-tabs button:hover:not(.active) .tab-icon { background: #dce8ff; color: #1352cc; }
    /* active states per tab */
    .search-tabs button[data-tab="flights"].active   { color: #1352cc; border-bottom-color: #1352cc; font-weight: 700; }
    .search-tabs button[data-tab="hotels"].active    { color: #c97500; border-bottom-color: #c97500; font-weight: 700; }
    .search-tabs button[data-tab="homestays"].active { color: #047857; border-bottom-color: #047857; font-weight: 700; }
    .search-tabs button[data-tab="holidays"].active  { color: #7c3aed; border-bottom-color: #7c3aed; font-weight: 700; }
    .search-tabs button[data-tab="trains"].active    { color: #be123c; border-bottom-color: #be123c; font-weight: 700; }
    .search-tabs button[data-tab="buses"].active     { color: #c2410c; border-bottom-color: #c2410c; font-weight: 700; }
    .search-tabs button[data-tab="cabs"].active      { color: #0f766e; border-bottom-color: #0f766e; font-weight: 700; }
    .search-tabs button[data-tab="flights"].active .tab-icon   { background: #dce8ff; color: #1352cc; }
    .search-tabs button[data-tab="hotels"].active .tab-icon    { background: #fef3c7; color: #c97500; }
    .search-tabs button[data-tab="homestays"].active .tab-icon { background: #d1fae5; color: #047857; }
    .search-tabs button[data-tab="holidays"].active .tab-icon  { background: #ede9fe; color: #7c3aed; }
    .search-tabs button[data-tab="trains"].active .tab-icon    { background: #ffe4e6; color: #be123c; }
    .search-tabs button[data-tab="buses"].active .tab-icon     { background: #ffedd5; color: #c2410c; }
    .search-tabs button[data-tab="cabs"].active .tab-icon      { background: #ccfbf1; color: #0f766e; }

    /* Disabled search tabs (PART A) — driven by search_tab_settings.enabled */
    .search-tabs button.tab-disabled {
      color: #c3c7d6;
      cursor: not-allowed;
      pointer-events: none;
    }
    .search-tabs button.tab-disabled .tab-icon { background: #f1f2f7; color: #c3c7d6; }
    .search-tabs button .tab-badge {
      position: absolute;
      top: 3px;
      right: 4px;
      font-size: 8px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .02em;
      background: #eef1f8;
      color: #9aa0b4;
      border-radius: 8px;
      padding: 1px 5px;
      line-height: 1.4;
      pointer-events: none;
      white-space: nowrap;
    }

    /* ==============================
       TAB PANELS
    ============================== */
    .tab-panel { display: none; padding: 20px 20px 48px; position: relative; }
    .tab-panel.active { display: block; }

    /* ==============================
       MAKE MY TRIP SEARCH STYLE
    ============================== */
    .trip-type-container {
      border-bottom: none;
      margin-bottom: 5px;
    }
    .trip-type-options {
      display: flex;
      gap: 24px;
    }
    .trip-type-label {
      font-size: 14px;
      font-weight: 700;
      color: #333;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      user-select: none;
    }
    .trip-type-label input[type="radio"] {
      display: none;
    }
    .trip-type-custom {
      width: 18px;
      height: 18px;
      border: 2px solid #d0d4e4;
      border-radius: 50%;
      display: inline-block;
      position: relative;
      background: #fff;
      transition: all 0.2s ease;
    }
    .trip-type-label input[type="radio"]:checked + .trip-type-custom {
      border-color: #0084ff;
    }
    .trip-type-label input[type="radio"]:checked + .trip-type-custom::after {
      content: "";
      width: 10px;
      height: 10px;
      background: #0084ff;
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .mmt-search-group {
      display: flex;
      flex-wrap: nowrap;
      border: 1px solid #e7ebf3;
      border-radius: 12px;
      background: #fff;
      position: relative;
      margin-bottom: 24px;
      box-shadow: 0 1px 6px rgba(0,0,0,0.03);
    }
    
    .mmt-field-cell {
      flex: 1 1 0;
      min-width: 0;
      padding: 12px 18px;
      border-right: 1px solid #e7ebf3;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: background-color 0.2s ease;
    }
    .mmt-field-cell.flex-grow-2 {
      flex-grow: 2;
    }

    /* Location autocomplete dropdown (PART B) — anchored to .mmt-field-cell's position:relative */
    .fb-autocomplete-menu {
      display: none;
      position: absolute;
      left: 0; right: 0; top: 100%;
      margin-top: 4px;
      background: #fff;
      border: 1px solid #e7ebf3;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(20, 30, 60, 0.12);
      max-height: 240px;
      overflow-y: auto;
      z-index: 1200;
    }
    .fb-autocomplete-menu.open { display: block; }
    .fb-autocomplete-item {
      padding: 9px 14px;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .fb-autocomplete-item:hover { background: #f2f7ff; }
    .fb-autocomplete-item .fb-ac-label { font-size: 13px; font-weight: 600; color: #1b2233; }
    .fb-autocomplete-item .fb-ac-sub { font-size: 11px; color: #8a90a6; }
    .mmt-field-cell:hover {
      background-color: #f2f7ff;
      cursor: pointer;
    }
    .mmt-field-cell:first-child {
      border-top-left-radius: 12px;
      border-bottom-left-radius: 12px;
    }
    .mmt-field-cell:last-child {
      border-right: none;
      border-top-right-radius: 12px;
      border-bottom-right-radius: 12px;
    }
    
    .mmt-label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: #555;
      margin-bottom: 5px;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .mmt-label .caret-icon {
      color: #0084ff;
      font-size: 10px;
    }
    
    .mmt-input-main {
      font-size: 24px;
      font-weight: 900;
      color: #222;
      border: none;
      background: transparent;
      padding: 0;
      margin: 0;
      outline: none;
      width: 100%;
      font-family: inherit;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .mmt-input-main::placeholder {
      color: #a0a8c0;
      font-weight: 500;
    }
    
    .mmt-input-val {
      font-size: 24px;
      font-weight: 900;
      color: #222;
      display: block;
      line-height: 1.2;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    
    .mmt-sub {
      font-size: 11px;
      color: #777;
      margin-top: 3px;
      display: block;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.3;
    }

    /* Date and Dropdown Overlay Mechanics */
    .date-cell, .select-cell {
      position: relative;
    }
    .mmt-date-hidden, .mmt-select-hidden {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      z-index: 5;
    }
    .date-display-wrap, .select-display-wrap {
      display: flex;
      flex-direction: column;
      pointer-events: none;
    }

    /* Swap button styling */
    .mmt-swap-cell {
      position: relative;
      width: 0;
      flex: 0 0 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
    }
    .mmt-swap-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid #e7ebf3;
      background: #fff;
      color: #0084ff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 13px;
      position: absolute;
      transform: translate(-50%, 0);
      transition: all 0.22s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      padding: 0;
      outline: none;
    }
    .mmt-swap-btn:hover {
      background: #f2f7ff;
      border-color: #0084ff;
      box-shadow: 0 4px 12px rgba(0, 132, 255, 0.15);
      transform: translate(-50%, 0) rotate(180deg);
    }

    /* Centered Floating Search Button */
    .btn-search-container {
      position: absolute;
      bottom: -22px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      text-align: center;
      width: 100%;
    }
    .btn-search {
      background: linear-gradient(135deg, #0d5cff 0%, #0046d5 100%);
      color: #fff;
      border: none;
      border-radius: 32px;
      padding: 10px 56px;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0, 70, 213, 0.4);
      transition: all 0.2s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      outline: none;
      letter-spacing: 0.5px;
    }
    .btn-search:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 24px rgba(0, 70, 213, 0.55);
    }
    .btn-search:active {
      transform: scale(0.98);
    }

    /* Special Fares Styling */
    .special-fares-container {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 15px;
      margin-bottom: 15px;
    }
    .special-fares-title {
      font-size: 11px;
      font-weight: 800;
      color: #333;
      line-height: 1.2;
      letter-spacing: 0.5px;
      flex-shrink: 0;
    }
    .special-fares-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .special-fare-pill {
      background: #fff;
      border: 1px solid #e7ebf3;
      border-radius: 6px;
      padding: 6px 12px;
      cursor: pointer;
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
      user-select: none;
    }
    .special-fare-pill:hover {
      background: #f8f9fe;
      border-color: #0084ff;
    }
    .special-fare-pill.active {
      background: #eaf3ff;
      border-color: #0084ff;
    }
    .special-fare-pill .fare-title {
      font-size: 12px;
      font-weight: 700;
      color: #333;
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .special-fare-pill.active .fare-title {
      color: #0084ff;
    }
    .special-fare-pill .fare-desc {
      font-size: 10px;
      color: #666;
      margin-top: 1px;
    }
    .special-fare-pill .badge-new {
      background: #ff4d4f;
      color: #fff;
      font-size: 8px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 1px 4px;
      border-radius: 4px;
      line-height: 1;
    }

    /* Price Drop Banner Styling */
    .price-drop-banner {
      background: #f2f8ff;
      border: 1px solid #dce8ff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 18px;
      border-radius: 8px;
      margin-top: 15px;
      margin-bottom: 15px;
    }
    
    /* Disabled Return Date cell styling */
    .mmt-field-cell.disabled-cell {
      background-color: #f9f9f9;
      opacity: 0.75;
      cursor: not-allowed;
    }
    .mmt-field-cell.disabled-cell:hover {
      background-color: #f9f9f9;
    }
    .mmt-field-cell.disabled-cell .mmt-input-val {
      color: #999;
    }
    .mmt-field-cell.disabled-cell .mmt-sub {
      color: #aaa;
    }

    /* Nights badge */
    .nights-badge {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg,#1352cc,#0d40a8);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      border-radius: 20px;
      padding: 2px 8px;
      white-space: nowrap;
      z-index: 5;
      display: none;
    }

    /* Tablet/Mobile Stack for MMT Search style */
    @media (max-width: 991px) {
      .mmt-search-group {
        flex-wrap: wrap;
      }
      .mmt-field-cell {
        flex: 1 1 calc(50% - 1px);
        min-width: calc(50% - 1px);
        border-bottom: 1px solid #e7ebf3;
        border-right: 1px solid #e7ebf3;
      }
      .mmt-field-cell:nth-child(even) {
        border-right: none;
      }
      .mmt-field-cell:last-child {
        border-bottom: none;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
      }
      .mmt-field-cell:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 0;
      }
      .mmt-swap-cell {
        display: none;
      }
      .btn-search-container {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: 15px;
        padding-bottom: 15px;
      }
      .btn-search {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
      }
      .search-card {
        padding-bottom: 0;
      }
    }
    
    @media (max-width: 576px) {
      .mmt-field-cell {
        flex: 1 1 100%;
        min-width: 100%;
        border-right: none !important;
      }
      .mmt-field-cell:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
      }
      .trip-type-options {
        gap: 12px;
      }
      .trip-type-label {
        font-size: 12px;
      }
      .special-fares-container {
        flex-direction: column;
        align-items: flex-start;
      }
      .price-drop-banner {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
      }
      .search-card {
        border-radius: 12px;
      }
      .search-tabs button {
        padding: 11px 9px 10px;
        font-size: 11.5px;
        gap: 5px;
      }
      .search-tabs button .tab-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
      }
      .hero-title {
        font-size: 18px;
      }
    }

    /* ── Offers Section ── */
    .section-title { font-size: 20px; font-weight: 700; color: #111; margin-bottom: 16px; }
    .offers-tabs {
      display: flex;
      gap: 24px;
      align-items: center;
      border-bottom: 1px solid #e7ebf3;
      padding-bottom: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .offers-tabs::-webkit-scrollbar {
      display: none;
    }
    .offers-tabs button {
      border: none;
      background: transparent;
      padding: 8px 0;
      font-size: 14px;
      font-weight: 500;
      color: #555;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      margin-bottom: -1px;
      transition: color 0.15s;
      white-space: nowrap;
    }
    .offers-tabs button:hover {
      color: #0084ff;
    }
    .offers-tabs button.active {
      color: #0084ff;
      border-bottom: 3px solid #0084ff;
      border-radius: 0;
      background: transparent;
      font-weight: 700;
    }

    .offers-grid-scroll {
      display: grid;
      grid-template-rows: repeat(2, auto);
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - (2 * 16px)) / 3);
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      padding: 6px 0;
    }
    .offers-grid-scroll::-webkit-scrollbar {
      display: none;
    }
    .offers-grid-scroll .offer-card {
      scroll-snap-align: start;
    }

    @media (max-width: 992px) {
      .offers-grid-scroll {
        grid-auto-columns: calc((100% - 16px) / 2);
      }
    }

    @media (max-width: 576px) {
      .offers-grid-scroll {
        grid-auto-columns: 100%;
      }
    }

    .offer-card {
      background: #fff;
      border: 1px solid #e7ebf3;
      border-radius: 12px;
      display: flex;
      flex-direction: row;
      align-items: center;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(0,0,0,0.04);
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
    }
    .offer-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .offer-card .offer-img-wrap {
      width: 140px;
      height: 140px;
      padding: 12px;
      flex-shrink: 0;
    }
    .offer-card .offer-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }
    .offer-card .card-body {
      flex-grow: 1;
      padding: 12px 16px 12px 0;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 140px;
      min-width: 0;
    }
    .offer-header-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 4px;
    }
    .offer-tag {
      font-size: 10px;
      font-weight: 800;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .offer-tc {
      font-size: 9px;
      color: #aaa;
      font-weight: 500;
    }
    .offer-title {
      font-size: 14px;
      font-weight: 800;
      color: #111;
      line-height: 1.3;
      margin-bottom: 2px;
      white-space: normal;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .offer-accent-line {
      width: 30px;
      height: 2px;
      background: #ff4d4f;
      margin: 6px 0;
    }
    .offer-desc {
      font-size: 11px;
      color: #666;
      line-height: 1.4;
      margin-bottom: 0;
      white-space: normal;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .offer-footer-row {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-top: auto;
    }
    .btn-offer {
      font-size: 12px;
      font-weight: 800;
      color: #0084ff;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: color 0.15s;
    }
    .btn-offer:hover {
      color: #005fcc;
    }
    .view-all-link { font-size: 13px; font-weight: 600; color: #005fcc; text-decoration: none; display: flex; align-items: center; gap: 4px; }

    /* ── For Travel Pros ── */
    .pros-section { background: #fff; }
    .pro-card {
      background: #fff;
      border-radius: 20px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 320px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.03);
      border: 1px solid #f0f2f5;
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
      min-height: 320px;
    }
    .pro-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .pro-card-header { text-align: left; }
    .pro-card img {
      width: auto;
      height: 150px;
      max-height: 160px;
      max-width: 100%;
      object-fit: contain;
      margin: 0 auto;
      display: block;
    }
    .pro-card h6 { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 6px; text-align: left; }
    .pro-card p { font-size: 12px; color: #666; line-height: 1.4; text-align: left; }

    /* ── Flagship Hotels ── */
    .flagship-section { background: #f8f9fc; }
    .flagship-inner {
      background: #f0f6ff;
      border-radius: 24px;
      padding: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      border: 1px solid #e2edfd;
      box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    }
    .flagship-title-block {
      flex: 0 0 260px;
      text-align: left;
    }
    .flagship-title-block h3 {
      font-size: 28px;
      font-weight: 800;
      color: #111;
      line-height: 1.25;
      margin: 0;
    }
    .flagship-title-block h3 span.logo-fare { color: #005fcc; }
    .flagship-title-block h3 span.logo-buzz { color: #f47b20; }
    
    .flagship-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      flex-grow: 1;
    }
    .hotel-store-card {
      position: relative;
      height: 200px;
      border-radius: 20px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .hotel-store-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    .hotel-store-card .card-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .hotel-store-card:hover .card-bg-img {
      transform: scale(1.05);
    }
    .hotel-store-card .logo-overlay {
      position: absolute;
      top: 12px;
      left: 12px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.12);
      padding: 6px;
      z-index: 10;
    }
    .hotel-store-card .logo-overlay img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .hotel-store-card .gradient-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0.85) 100%);
      z-index: 5;
      pointer-events: none;
    }
    .hotel-store-card .card-name-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 16px 16px;
      z-index: 8;
    }
    .hotel-store-card .card-name-overlay h6 {
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.35;
      margin: 0;
      text-shadow: 0 1px 4px rgba(0,0,0,0.4);
      text-align: left;
    }

    @media (max-width: 991px) {
      .flagship-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 30px;
      }
      .flagship-title-block {
        flex: auto;
        text-align: center;
        margin-bottom: 8px;
      }
    }
    @media (max-width: 768px) {
      .flagship-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 480px) {
      .flagship-cards-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── Destination Cards ── */
    .dest-tabs {
      display: flex;
      gap: 24px;
      align-items: center;
      border-bottom: 1px solid #e7ebf3;
      padding-bottom: 0;
      margin-bottom: 24px;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .dest-tabs::-webkit-scrollbar {
      display: none;
    }
    .dest-tabs button {
      border: none;
      background: transparent;
      padding: 10px 0;
      font-size: 14px;
      font-weight: 500;
      color: #555;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      margin-bottom: -1px;
      transition: color 0.15s ease;
      white-space: nowrap;
    }
    .dest-tabs button:hover {
      color: #0f766e;
    }
    .dest-tabs button.active {
      color: #0f766e;
      border-bottom: 3px solid #0f766e;
      font-weight: 700;
    }

    .dest-scroll-wrapper {
      position: relative;
    }

    .dest-grid-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 270px;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 6px 0;
    }
    .dest-grid-scroll::-webkit-scrollbar {
      display: none;
    }

    @media (max-width: 576px) {
      .dest-grid-scroll {
        grid-auto-columns: 75vw;
      }
    }

    .dest-card {
      background: #fff;
      border: 1px solid #e7ebf3;
      border-radius: 16px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .dest-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .dest-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-top-left-radius: 16px;
      border-top-right-radius: 16px;
      transition: transform 0.3s ease;
    }
    .dest-card:hover img {
      transform: scale(1.03);
    }
    .dest-card-body {
      padding: 16px;
      background: #fff;
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .dest-card-body h6 {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
    }
    .dest-card-body p {
      font-size: 12px;
      color: #666;
      margin: 0;
      line-height: 1.4;
    }

    .dest-scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dde3f0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      z-index: 10;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .dest-scroll-btn:hover {
      background: #f2f7ff;
      color: #005fcc;
      border-color: #005fcc;
      box-shadow: 0 6px 16px rgba(0, 95, 204, 0.15);
    }
    .dest-scroll-btn.dest-prev {
      left: -20px;
    }
    .dest-scroll-btn.dest-next {
      right: -20px;
    }

    /* ── Homes Guests Love & Stay at our Top Unique Properties Redesign ── */
    .homes-scroll-wrapper, .unique-scroll-wrapper {
      position: relative;
    }
    .homes-grid-scroll, .unique-grid-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 290px;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 8px 0;
    }
    .homes-grid-scroll::-webkit-scrollbar, .unique-grid-scroll::-webkit-scrollbar {
      display: none;
    }
    @media (max-width: 576px) {
      .homes-grid-scroll, .unique-grid-scroll {
        grid-auto-columns: 78vw;
      }
    }
    
    .homes-scroll-btn, .unique-scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dde3f0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      z-index: 10;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .homes-scroll-btn:hover, .unique-scroll-btn:hover {
      background: #f2f7ff;
      color: #005fcc;
      border-color: #005fcc;
      box-shadow: 0 6px 16px rgba(0, 95, 204, 0.15);
    }
    .homes-scroll-btn.homes-prev, .unique-scroll-btn.unique-prev {
      left: -20px;
    }
    .homes-scroll-btn.homes-next, .unique-scroll-btn.unique-next {
      right: -20px;
    }

    /* Premium Accommodation Card */
    .acc-card {
      background: #fff;
      border: 1px solid #e7ebf3;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }
    .acc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .acc-card .acc-img-wrap {
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
    }
    .acc-card .acc-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .acc-card:hover .acc-img-wrap img {
      transform: scale(1.03);
    }
    
    .acc-card-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
      text-align: left;
    }
    
    .acc-badge-row {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }
    .acc-type {
      font-size: 11px;
      color: #555;
      font-weight: 500;
    }
    .acc-stars {
      display: flex;
      gap: 2px;
      align-items: center;
    }
    .badge-star-icon {
      background: #febb02;
      color: #acc-stars;
      color: #fff;
      width: 13px;
      height: 13px;
      border-radius: 2px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
    }
    .genius-badge {
      background: #003b95;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 1px 6px;
      border-radius: 3px;
      display: inline-flex;
      align-items: center;
      letter-spacing: 0.3px;
    }
    
    .acc-title {
      font-size: 14px;
      font-weight: 700;
      color: #111;
      line-height: 1.4;
      margin-bottom: 4px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      min-height: 38px;
    }
    
    .acc-location {
      font-size: 12px;
      color: #555;
      margin-bottom: 8px;
    }
    
    .acc-rating-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
    }
    .acc-rating-badge {
      background: #003580;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      width: 24px;
      height: 24px;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .acc-rating-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .acc-rating-label {
      font-size: 12px;
      font-weight: 700;
      color: #111;
    }
    .acc-rating-count {
      font-size: 11px;
      color: #555;
    }
    
    .acc-distance {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: #555;
      margin-bottom: 12px;
      margin-top: auto;
    }
    .acc-distance i {
      color: #555;
      font-size: 12px;
    }
    
    .acc-price-row {
      display: flex;
      align-items: baseline;
      justify-content: flex-end;
      gap: 4px;
      width: 100%;
      margin-top: auto;
    }
    .acc-price-label {
      font-size: 11px;
      color: #555;
    }
    .acc-price-old {
      font-size: 11px;
      text-decoration: line-through;
      color: #d32f2f;
      font-weight: 500;
    }
    .acc-price-new {
      font-size: 14px;
      font-weight: 800;
      color: #111;
    }

    /* ── Hotel Cards (Legacy fallback) ── */
    .hotel-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,.07); transition: transform .2s, box-shadow .2s; }
    .hotel-card img { width: 100%; height: 150px; object-fit: cover; }
    .hotel-card .card-body { padding: 12px; }

    /* ── Trending Destinations Redesign ── */
    .trending-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      height: 100%;
    }
    .trending-card > img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s ease;
      display: block;
    }
    .trending-card.large > img {
      height: 250px;
    }
    .trending-card.small > img {
      height: 200px;
    }
    .trending-card:hover > img {
      transform: scale(1.03);
    }
    .trending-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 35%, rgba(0,0,0,0.3) 100%);
      z-index: 2;
      pointer-events: none;
    }
    .trending-title {
      position: absolute;
      top: 16px;
      left: 16px;
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      z-index: 5;
      display: flex;
      align-items: center;
      gap: 8px;
      text-shadow: 0 1px 4px rgba(0,0,0,0.45);
      margin: 0;
    }
    .trending-title .flag-icon {
      height: 14px;
      width: auto;
      border-radius: 2px;
      box-shadow: 0 1px 3px rgba(0,0,0,0.25);
    }

    /* ── Deals for the Weekend Redesign ── */
    .deals-scroll-wrapper {
      position: relative;
    }
    .deals-grid-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 290px;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 8px 0;
    }
    .deals-grid-scroll::-webkit-scrollbar {
      display: none;
    }
    @media (max-width: 576px) {
      .deals-grid-scroll {
        grid-auto-columns: 78vw;
      }
    }
    .deals-scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dde3f0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      z-index: 10;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .deals-scroll-btn:hover {
      background: #f2f7ff;
      color: #005fcc;
      border-color: #005fcc;
      box-shadow: 0 6px 16px rgba(0, 95, 204, 0.15);
    }
    .deals-scroll-btn.deals-prev { left: -20px; }
    .deals-scroll-btn.deals-next { right: -20px; }

    .acc-deal-badge {
      background: #008009;
      color: #fff;
      font-size: 10px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      display: inline-block;
      width: fit-content;
      margin-top: 4px;
      margin-bottom: 8px;
      letter-spacing: 0.3px;
    }

    /* ── Trip Planner Redesign ── */
    .planner-scroll-wrapper {
      position: relative;
    }
    .planner-grid-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 165px;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 4px 0;
    }
    .planner-grid-scroll::-webkit-scrollbar {
      display: none;
    }
    @media (max-width: 576px) {
      .planner-grid-scroll {
        grid-auto-columns: 42vw;
      }
    }
    .planner-scroll-btn {
      position: absolute;
      top: 35%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dde3f0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      z-index: 10;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .planner-scroll-btn:hover {
      background: #f2f7ff;
      color: #005fcc;
      border-color: #005fcc;
      box-shadow: 0 6px 16px rgba(0, 95, 204, 0.15);
    }
    .planner-scroll-btn.planner-prev { left: -20px; }
    .planner-scroll-btn.planner-next { right: -20px; }

    .planner-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .planner-tabs button {
      border: 1px solid #dde3f0;
      background: #fff;
      border-radius: 20px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 500;
      color: #222;
      cursor: pointer;
      transition: all 0.15s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .planner-tabs button:hover {
      background: #f2f7ff;
      border-color: #0084ff;
      color: #0084ff;
    }
    .planner-tabs button.active {
      background: #fff;
      border-color: #0084ff;
      color: #0084ff;
      font-weight: 600;
    }

    .city-card {
      position: relative;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .city-card img {
      width: 100%;
      height: 110px;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 0.3s ease;
      display: block;
    }
    .city-card:hover img {
      transform: scale(1.04);
    }
    .city-card h6 {
      font-size: 14px;
      font-weight: 700;
      color: #111;
      margin-top: 8px;
      margin-bottom: 2px;
    }
    .city-card small {
      font-size: 12px;
      color: #666;
    }

    /* ── Explore India Redesign ── */
    .explore-scroll-wrapper {
      position: relative;
    }
    .explore-grid-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 165px;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 4px 0;
    }
    .explore-grid-scroll::-webkit-scrollbar {
      display: none;
    }
    @media (max-width: 576px) {
      .explore-grid-scroll {
        grid-auto-columns: 42vw;
      }
    }
    .explore-scroll-btn {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dde3f0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      z-index: 10;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .explore-scroll-btn:hover {
      background: #f2f7ff;
      color: #005fcc;
      border-color: #005fcc;
      box-shadow: 0 6px 16px rgba(0, 95, 204, 0.15);
    }
    .explore-scroll-btn.explore-prev { left: -20px; }
    .explore-scroll-btn.explore-next { right: -20px; }

    .explore-card {
      position: relative;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .explore-card img {
      width: 100%;
      height: 130px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s ease;
      display: block;
    }
    .explore-card:hover img {
      transform: scale(1.04);
    }
    .explore-card .card-body {
      padding: 8px 0 0;
    }
    .explore-card h6 { font-size: 14px; font-weight: 700; margin-bottom: 2px; color: #111; }
    .explore-card small { font-size: 12px; color: #666; }

    /* ── Browse by Property Type Redesign ── */
    .browse-scroll-wrapper {
      position: relative;
    }
    .browse-grid-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 270px;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 4px 0;
    }
    .browse-grid-scroll::-webkit-scrollbar {
      display: none;
    }
    @media (max-width: 576px) {
      .browse-grid-scroll {
        grid-auto-columns: 75vw;
      }
    }
    .browse-scroll-btn {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dde3f0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      z-index: 10;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .browse-scroll-btn:hover {
      background: #f2f7ff;
      color: #005fcc;
      border-color: #005fcc;
      box-shadow: 0 6px 16px rgba(0, 95, 204, 0.15);
    }
    .browse-scroll-btn.browse-prev { left: -20px; }
    .browse-scroll-btn.browse-next { right: -20px; }

    .property-card {
      position: relative;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      text-align: left;
    }
    .property-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.3s ease;
      display: block;
    }
    .property-card:hover img {
      transform: scale(1.04);
    }
    .property-card-label {
      font-size: 14px;
      font-weight: 700;
      color: #111;
      margin-top: 8px;
    }

    /* ── Sri Lanka Redesign ── */
    .srilanka-box {
      background: #fff;
      border: 1px solid #e7ebf3;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.02);
    }
    .srilanka-dest-card {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-align: left;
      border: 1px solid #e7ebf3;
      background: #fff;
      height: 100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .srilanka-dest-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.07);
    }
    .srilanka-dest-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      display: block;
    }
    .srilanka-dest-body {
      padding: 16px;
      text-align: left;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .srilanka-dest-body h6 {
      font-size: 16px;
      font-weight: 700;
      color: #111;
      margin-bottom: 4px;
    }
    .srilanka-dest-body p {
      font-size: 12px;
      color: #555;
      margin: 0;
      line-height: 1.45;
    }

    /* Overlay Style for Sigiriya Rock View Card */
    .srilanka-dest-card.overlay-style {
      border: none;
      min-height: 280px;
    }
    .srilanka-dest-card.overlay-style img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      z-index: 1;
    }
    .srilanka-dest-card.overlay-style::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
      z-index: 2;
      pointer-events: none;
    }
    .srilanka-dest-card.overlay-style .srilanka-dest-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px 16px;
      color: #fff;
      z-index: 3;
      background: transparent;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
    .srilanka-dest-card.overlay-style .srilanka-dest-body h6 {
      color: #fff;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 4px;
    }
    .srilanka-dest-card.overlay-style .srilanka-dest-body p {
      color: rgba(255,255,255,0.9);
      font-size: 13px;
    }

    /* ── Footer ── */
    .site-footer { background: #0a1929; color: #ccc; font-size: 13px; }
    .footer-logo { display: inline-flex; align-items: center; background: #fff; padding: 8px 16px; border-radius: 8px; }
    .footer-logo img { height: 38px; width: auto; display: block; }
    .footer-links h6 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 12px; }
    .footer-links ul { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 6px; }
    .footer-links a { color: #aaa; text-decoration: none; font-size: 12px; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid #1e3a5f; padding-top: 16px; font-size: 12px; color: #888; }

    /* ── Utilities ── */
    .bg-white-section { background: #fff; }
    .section-pad { padding: 40px 0; }
    .carousel-nav { display: flex; align-items: center; gap: 6px; }
    .carousel-btn { width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid #ddd; background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; color: #555; }
    .carousel-btn:hover { border-color: #005fcc; color: #005fcc; }
    .wishlist-btn { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 13px; color: #555; }

    /* Rich-text content (CMS page body, Holiday Package overview/itinerary/FAQ) — the
       real wrap/list/table styling now comes from CKEditor's own ckeditor5-content.css
       (loaded in layouts/head.blade.php, scoped under .ck-content). These rules are
       just the clearfix + a couple of legacy class names kept for any content saved
       under the old TinyMCE regime. */
    .cms-page-body, .rich-text-content { overflow: hidden; } /* clearfix: contains floated images so trailing content doesn't collapse under them */
    .cms-page-body img, .rich-text-content img { max-width: 100%; height: auto; }
    .cms-page-body .img-float-left, .rich-text-content .img-float-left { float: left; margin: 0 16px 10px 0; max-width: 50%; height: auto; }
    .cms-page-body .img-float-right, .rich-text-content .img-float-right { float: right; margin: 0 0 10px 16px; max-width: 50%; height: auto; }
    .cms-page-body .img-center, .rich-text-content .img-center { display: block; margin: 10px auto; max-width: 100%; height: auto; }
    @media(max-width: 576px) {
      .cms-page-body .img-float-left, .rich-text-content .img-float-left,
      .cms-page-body .img-float-right, .rich-text-content .img-float-right { float: none; display: block; margin: 0 auto 10px; max-width: 100%; }
    }

    /* CKEditor "Style" dropdown presets — mirrors public/admin/custom.css so line/letter
       spacing chosen in the editor renders identically on the published page. */
    .ck-content .line-tight { line-height: 1.2; }
    .ck-content .line-loose { line-height: 2; }
    .ck-content .letter-tight { letter-spacing: -0.5px; }
    .ck-content .letter-wide { letter-spacing: 1.5px; }

    @media(max-width: 991px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; align-items: center; }
      .navbar-inner { padding: 0 20px; }
    }
    @media(max-width: 768px) {
      .flagship-inner { flex-direction: column; }
      .trending-card.large img { height: 250px; }
      .hero-content { padding: 0 10px; }
    }
    @media(max-width: 576px) {
      .section-title { font-size: 17px; }
      .nav-right .btn-login { font-size: 13px; }
    }

    /* ── Live homepage sliders (Domestic/International Packages, Top Activities, Handpicked Stays) ── */
    .domestic-scroll-wrapper, .intl-scroll-wrapper, .activities-scroll-wrapper, .stays-scroll-wrapper {
      position: relative;
    }
    .domestic-grid-scroll, .intl-grid-scroll, .activities-grid-scroll, .stays-grid-scroll {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: 290px;
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none;
      padding: 8px 0;
    }
    .domestic-grid-scroll::-webkit-scrollbar, .intl-grid-scroll::-webkit-scrollbar,
    .activities-grid-scroll::-webkit-scrollbar, .stays-grid-scroll::-webkit-scrollbar {
      display: none;
    }
    @media (max-width: 576px) {
      .domestic-grid-scroll, .intl-grid-scroll, .activities-grid-scroll, .stays-grid-scroll {
        grid-auto-columns: 78vw;
      }
    }
    .domestic-scroll-btn, .intl-scroll-btn, .activities-scroll-btn, .stays-scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #fff;
      border: 1px solid #dde3f0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #333;
      z-index: 10;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .domestic-scroll-btn:hover, .intl-scroll-btn:hover, .activities-scroll-btn:hover, .stays-scroll-btn:hover {
      background: #f2f7ff;
      color: #005fcc;
      border-color: #005fcc;
      box-shadow: 0 6px 16px rgba(0, 95, 204, 0.15);
    }
    .domestic-scroll-btn.domestic-prev, .intl-scroll-btn.intl-prev,
    .activities-scroll-btn.activities-prev, .stays-scroll-btn.stays-prev {
      left: -20px;
    }
    .domestic-scroll-btn.domestic-next, .intl-scroll-btn.intl-next,
    .activities-scroll-btn.activities-next, .stays-scroll-btn.stays-next {
      right: -20px;
    }

    /* ── Shared Hotel Card (also used by hotels/index.blade.php) ── */
    .hotel-card { background:#fff; border-radius:12px; box-shadow:0 1px 8px rgba(0,0,0,0.07); overflow:hidden; height:100%; display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s; }
    .hotel-card:hover { transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,0.12); }
    .hotel-card-img { height:180px; overflow:hidden; }
    .hotel-card-img img { width:100%; height:100%; object-fit:cover; }
    .hotel-card-body { padding:16px; flex:1; display:flex; flex-direction:column; }
    .hotel-card-title { font-size:15px; font-weight:700; color:#111; margin-bottom:4px; }
    .hotel-card-star i { color:#f47b20; font-size:12px; }
    .hotel-card-address { font-size:12px; color:#888; margin:6px 0 10px; }
    .hotel-card-address i { color:#005fcc; }
    .hotel-score { background:#16a34a; color:#fff; border-radius:8px; padding:3px 10px; font-size:12px; font-weight:700; display:inline-block; }
    .hotel-amenity-pill { display:inline-block; background:#f5f5f5; border-radius:6px; padding:2px 8px; font-size:10px; margin:2px 4px 2px 0; color:#555; }
    .hotel-card-footer { margin-top:auto; display:flex; align-items:flex-end; justify-content:space-between; }
    .hotel-price-from { font-size:11px; color:#888; }
    .hotel-price-value { font-size:17px; font-weight:800; color:#111; }
    .btn-view-hotel { background:#005fcc; color:#fff; border:none; border-radius:8px; font-size:12px; font-weight:700; padding:8px 16px; text-decoration:none; }

    /* ── Shared Activity Card (also used by activities/index.blade.php) ── */
    .activity-card-link { display:block; height:100%; }
    .activity-card { background:#fff; border-radius:14px; box-shadow:0 1px 8px rgba(0,0,0,0.07); overflow:hidden; height:100%; display:flex; flex-direction:column; transition:transform .25s, box-shadow .25s; }
    .activity-card:hover { transform:translateY(-4px); box-shadow:0 10px 26px rgba(0,0,0,0.13); }
    .activity-card-img { position:relative; height:190px; overflow:hidden; }
    .activity-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .35s; }
    .activity-card:hover .activity-card-img img { transform:scale(1.06); }
    .activity-badge-category {
      position:absolute; top:12px; left:12px; background:rgba(255,255,255,0.92); color:#111;
      font-size:11px; font-weight:700; padding:5px 10px; border-radius:20px; display:flex; align-items:center; gap:5px;
    }
    .activity-badge-category i { color:#005fcc; font-size:11px; }
    .activity-badge-price {
      position:absolute; top:12px; right:12px; background:rgba(17,17,17,0.72); color:#fff; backdrop-filter:blur(2px);
      font-size:11px; font-weight:700; padding:5px 10px; border-radius:20px;
    }
    .activity-card-body { padding:16px; flex:1; display:flex; flex-direction:column; }
    .activity-card-title { font-size:16px; font-weight:700; color:#111; margin-bottom:4px; }
    .activity-card-dest { font-size:12px; color:#888; margin-bottom:8px; }
    .activity-card-dest i { color:#005fcc; }
    .activity-card-desc { font-size:13px; color:#666; line-height:1.5; flex:1; margin-bottom:14px; }
    .activity-card-duration { font-size:12px; color:#555; margin-bottom:8px; display:flex; align-items:center; gap:5px; }
    .activity-card-duration i { color:#005fcc; }
    .activity-card-footer { margin-top:auto; display:flex; align-items:center; justify-content:space-between; }
    .activity-price-label { font-size:11px; color:#888; }
    .activity-price-value { font-size:17px; font-weight:800; color:#005fcc; }
    .btn-view-activity { background:#005fcc; color:#fff; border:none; border-radius:8px; font-size:12px; font-weight:700; padding:8px 14px; text-decoration:none; display:inline-flex; align-items:center; gap:6px; margin-left:auto; }
 