﻿/* ===================================================
     HOMEPAGE — GLOBAL
  =================================================== */
  .hp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .hp-section {
    padding: 64px 0;
  }
  .hp-section.sec-white { background: #fff; }
  .hp-section.sec-gray  { background: #f8f9fa; }
  .hp-section.sec-navy  { background: linear-gradient(135deg, #0f3460 0%, #1a3c6e 100%); color: #fff; }

  .hp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
  }
  .hp-header-left p {
    font-size: 14px;
    color: #6b7280;
    margin: 4px 0 0;
  }
  .hp-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
  }
  .hp-viewall {
    font-size: 13px;
    font-weight: 600;
    color: #e94560;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 16px;
  }
  .hp-viewall:hover { text-decoration: underline; }

  /* ===================================================
     A. HERO — SLIDESHOW BACKGROUND
  =================================================== */
  .hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: bgSlide 25s infinite;
  }
  .hero-slide:nth-child(1) { animation-delay: 0s; }
  .hero-slide:nth-child(2) { animation-delay: 5s; }
  .hero-slide:nth-child(3) { animation-delay: 10s; }
  .hero-slide:nth-child(4) { animation-delay: 15s; }
  .hero-slide:nth-child(5) { animation-delay: 20s; }
  @keyframes bgSlide {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    20%  { opacity: 1; }
    25%  { opacity: 0; }
    100% { opacity: 0; }
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 56px 0 48px;
  }
  .hero-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
  }
  .hero-sub {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
  }

  /* Search tabs */
  .search-tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
  }
  .search-tab {
    padding: 10px 26px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    background: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
  }
  .search-tab.active {
    background: #fff;
    color: #0f3460;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  .search-tab:hover:not(.active) {
    color: #fff;
    background: rgba(255,255,255,0.1);
  }

  /* Search form card */
  .search-form-wrap {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
  }
  .sf-counter-btn { width:28px;height:28px;border-radius:50%;border:1px solid #e5e7eb;background:#fff;font-size:16px;cursor:pointer;display:inline-flex;align-items:center;justify-content:center;font-weight:600;color:#1a1a2e;transition:all .2s;line-height:1 }
  .sf-counter-btn:hover { background:#f0f4ff;border-color:#003580;color:#003580 }
  .sf-guest-row { display:flex;justify-content:space-between;align-items:center;padding:10px 0;border-bottom:1px solid #f0f0f0 }
  .sf-guest-row:last-of-type { border-bottom:none }
  .search-form {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    overflow: hidden;
  }
  .search-field {
    flex: 1;
    padding: 17px 20px;
    border: none;
    border-right: 1px solid #e5e7eb;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #1a1a2e;
    min-width: 0;
  }
  .search-field:first-child { border-radius: 12px 0 0 12px; }
  .search-field::placeholder { color: #9ca3af; }
  .search-field:focus,
  .sf-guest-btn:focus-visible {
    background: #fff8f9;
    box-shadow: inset 0 0 0 2px #e94560;
    z-index: 1;
    position: relative;
  }
  .search-btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -5px;
  }
  .search-field[type="date"] { max-width: 165px; }
  .search-field[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }
  .search-btn {
    padding: 17px 36px;
    background: #e94560;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 0 12px 12px 0;
    white-space: nowrap;
    transition: background .2s;
  }
  .search-btn:hover { background: #d03a52; }

  /* Hero stats pills */
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
  }
  .hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
  }
  .hero-stat-pill strong {
    color: #fff;
    font-weight: 800;
  }


  /* ===================================================
     B. TRUST BAR
  =================================================== */
  .trust-bar {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 32px 0;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .trust-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #fff5f6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-icon svg {
    width: 22px;
    height: 22px;
  }
  /* Rotate icon background tints so the strip feels less monotone */
  .trust-grid .trust-item:nth-child(2) .trust-icon { background: #f0f7ff; }
  .trust-grid .trust-item:nth-child(2) .trust-icon svg { stroke: #1d4ed8; }
  .trust-grid .trust-item:nth-child(3) .trust-icon { background: #ecfdf5; }
  .trust-grid .trust-item:nth-child(3) .trust-icon svg { stroke: #069142; }
  .trust-grid .trust-item:nth-child(4) .trust-icon { background: #fef3c7; }
  .trust-grid .trust-item:nth-child(4) .trust-icon svg { stroke: #b45309; }
  .trust-label {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
  }
  .trust-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
  }

  /* ===================================================
     C. PARTNER STRIP
  =================================================== */
  .partner-strip {
    background: #f8f9fa;
    padding: 18px 0;
    border-bottom: 1px solid #eeeff1;
  }
  .partner-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .partner-label {
    font-size: 12px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 4px;
    white-space: nowrap;
  }
  .partner-badge {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 1px 2px rgba(15,52,96,0.04);
    transition: border-color .15s, box-shadow .15s, transform .15s;
  }
  .partner-badge:hover {
    border-color: #d1d5db;
    box-shadow: 0 2px 6px rgba(15,52,96,0.08);
  }

  /* Partner chip — styled brand logo chips */
  .partner-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid currentColor;
    transition: opacity .15s, transform .15s;
  }
  .partner-chip:hover { opacity: .82; transform: translateY(-1px); }
  .partner-chip::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
  }
  .partner-chip--agoda      { color:#e94560; border-color:rgba(233,69,96,0.3);    background:rgba(233,69,96,0.06); }
  .partner-chip--booking    { color:#003580; border-color:rgba(0,53,128,0.3);     background:rgba(0,53,128,0.06); }
  .partner-chip--aviasales  { color:#00b775; border-color:rgba(0,183,117,0.3);   background:rgba(0,183,117,0.06); }
  .partner-chip--viator     { color:#FF8000; border-color:rgba(255,128,0,0.3);   background:rgba(255,128,0,0.06); }
  .partner-chip--hostelworld{ color:#E63329; border-color:rgba(230,51,41,0.3);   background:rgba(230,51,41,0.06); }
  .partner-chip--gyg        { color:#FF9800; border-color:rgba(255,152,0,0.3);   background:rgba(255,152,0,0.06); }
  .partner-chip--hotels     { color:#D4001A; border-color:rgba(212,0,26,0.3);    background:rgba(212,0,26,0.06); }

  .partner-trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: #069142;
    white-space: nowrap;
  }
  .partner-trust svg { color: #069142; flex-shrink: 0; }
  @media (max-width: 768px) {
    .partner-trust { margin-left: 0; width: 100%; padding-top: 4px; }
  }

  /* ===================================================
     D. DEAL CARDS — horizontal scroll
  =================================================== */
  .deals-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .deals-scroll::-webkit-scrollbar { height: 5px; }
  .deals-scroll::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3px; }
  .deals-scroll::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }

  .deal-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: box-shadow .25s, transform .25s;
    display: flex;
    flex-direction: column;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    position: relative;
  }
  .deal-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
  }
  .deal-card-img-wrap {
    position: relative;
    overflow: hidden;
  }
  .deal-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: transform .4s;
  }
  .deal-card:hover .deal-card-img { transform: scale(1.04); }
  .deal-savings-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e94560;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 100px;
  }
  .deal-score-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #0f3460;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 5px;
  }
  .deal-card-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .deal-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .deal-card-loc {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 12px;
  }
  .deal-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
  }
  .deal-card-price {
    font-size: 22px;
    font-weight: 800;
    color: #069142;
    line-height: 1;
  }
  .deal-card-orig {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
  }
  .deal-card-per {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 2px;
  }
  .deal-card-cta {
    font-size: 13px;
    font-weight: 700;
    color: #e94560;
  }

  /* ===================================================
     E. POPULAR DESTINATIONS
  =================================================== */
  .dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .dest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    text-decoration: none;
    display: block;
    transition: transform .3s, box-shadow .3s;
  }
  .dest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  }
  .dest-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
  }
  .dest-card:hover .dest-card-img { transform: scale(1.06); }
  .dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.72) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
  }
  .dest-card-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
  }
  .dest-card-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.72);
  }
  .dest-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 5px;
  }

  /* ===================================================
     F. CHEAP FLIGHTS — horizontal-scroll cards
  =================================================== */
  .flights-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .flights-scroll::-webkit-scrollbar { height: 5px; }
  .flights-scroll::-webkit-scrollbar-track { background: #f0f0f0; border-radius: 3px; }
  .flights-scroll::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }

  .flight-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .2s, transform .2s;
    text-decoration: none;
    color: inherit;
  }
  .flight-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
  }
  .flight-route-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }
  .flight-code {
    font-size: 28px;
    font-weight: 900;
    color: #0f3460;
    letter-spacing: -1px;
    line-height: 1;
  }
  .flight-arrow {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flight-arrow svg {
    width: 20px;
    height: 20px;
    color: #9ca3af;
  }
  .flight-cities-row {
    display: flex;
    justify-content: space-between;
  }
  .flight-city-name {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .flight-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .flight-airline-badge {
    background: #f3f4f6;
    color: #374151;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
  }
  .flight-duration {
    font-size: 12px;
    color: #6b7280;
  }
  .flight-direct-badge {
    font-size: 10px;
    font-weight: 700;
    color: #069142;
    background: #ecfdf5;
    padding: 2px 8px;
    border-radius: 100px;
  }
  .flight-stop-badge {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 100px;
  }
  .flight-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid #f3f4f6;
    margin-top: auto;
  }
  .flight-price {
    font-size: 22px;
    font-weight: 800;
    color: #069142;
  }
  .flight-book-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #e94560;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 7px;
    text-decoration: none;
    transition: background .2s;
  }
  .flight-book-btn:hover { background: #d03a52; }

  /* ===================================================
     G. TOP ACTIVITIES — 4-col grid
  =================================================== */
  .activities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  /* ===================================================
     G2. TRAVEL SERVICES (Insurance, Cars, Transfers…)
  =================================================== */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .service-tile {
    background: #fff;
    border: 1.5px solid #eef0f3;
    border-radius: 16px;
    padding: 24px 14px 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    display: flex; flex-direction: column; align-items: center;
  }
  .service-tile:hover {
    box-shadow: 0 10px 32px rgba(0,0,0,.10);
    transform: translateY(-4px);
    border-color: #d1d9e6;
  }
  .service-icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; flex-shrink: 0;
  }
  .service-icon-wrap svg { width: 26px; height: 26px; }
  .service-name {
    font-size: 13px; font-weight: 800; color: #1a1a2e;
    margin-bottom: 5px; line-height: 1.25;
  }
  .service-desc {
    font-size: 11px; color: #6b7280; line-height: 1.45;
    margin-bottom: 12px; flex: 1;
  }
  .service-cta {
    font-size: 11px; font-weight: 700; color: #e94560;
    display: inline-flex; align-items: center; gap: 3px;
  }
  .service-cta::after { content: '→'; }

  /* ===================================================
     H. TRAVEL GUIDES
  =================================================== */
  .guides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .guide-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s, transform .25s;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border: 1px solid #eef0f3;
  }
  .guide-card:hover {
    box-shadow: 0 12px 36px rgba(0,0,0,.14);
    transform: translateY(-4px);
  }
  .guide-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #0f3460;
    flex-shrink: 0;
  }
  .guide-card-img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s ease;
  }
  .guide-card:hover .guide-card-img { transform: scale(1.07); }
  .guide-card-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.0) 30%, rgba(0,0,0,.72) 100%);
    pointer-events: none;
  }
  .guide-type-badge {
    position: absolute; top: 10px; left: 10px; z-index: 3;
    padding: 4px 10px; border-radius: 5px;
    font-size: 10px; font-weight: 700; color: #fff;
    letter-spacing: .04em; text-transform: uppercase;
    backdrop-filter: blur(3px);
  }
  /* Guide type badge colours — no inline style needed */
  .guide-badge--itinerary   { background: #0f3460; }
  .guide-badge--food        { background: #e94560; }
  .guide-badge--hidden_gems { background: #7c3aed; }
  .guide-badge--budget      { background: #059669; }
  .guide-badge--first_timer { background: #d97706; }

  .guide-city-overlay {
    position: absolute; bottom: 12px; left: 12px; right: 12px; z-index: 3;
    display: flex; align-items: flex-end; justify-content: space-between; gap: 8px;
  }
  .guide-city-name {
    font-size: 16px; font-weight: 800; color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
    line-height: 1.2;
  }
  .guide-country-tag {
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,.9);
    background: rgba(0,0,0,.38);
    padding: 2px 8px; border-radius: 4px;
    backdrop-filter: blur(4px);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .guide-card-body {
    padding: 14px 16px 16px;
    flex: 1; display: flex; flex-direction: column;
  }
  .guide-card-title {
    font-size: 14px; font-weight: 700; color: #1a1a2e;
    line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1; margin-bottom: 10px;
  }
  .guide-card-read {
    font-size: 12px; font-weight: 700; color: #e94560; display: flex; align-items: center; gap: 4px;
  }
  .guide-card-read::after { content: '→'; }

  /* ===================================================
     I. BLOG / TRAVEL INSPIRATION — Magazine layout
  =================================================== */
  .blog-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    align-items: start;
  }
  /* Featured post — full-bleed image + text overlay */
  .blog-feat {
    border-radius: 14px; overflow: hidden;
    position: relative; display: block;
    text-decoration: none; color: inherit;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
  }
  .blog-feat-img {
    width: 100%; height: 380px;
    object-fit: cover; display: block;
    transition: transform .5s ease;
  }
  .blog-feat:hover .blog-feat-img { transform: scale(1.04); }
  .blog-feat-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.35) 65%, transparent 100%);
    padding: 40px 22px 22px;
  }
  .blog-feat-cat {
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
    color: #e94560; margin-bottom: 8px;
  }
  .blog-feat-title {
    font-size: 20px; font-weight: 800; color: #fff; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .blog-feat-date { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,.6); }
  /* Side posts — horizontal thumb + text */
  .blog-aside { display: flex; flex-direction: column; gap: 14px; }
  .blog-side {
    display: flex; gap: 0;
    background: #fff; border-radius: 12px; overflow: hidden;
    text-decoration: none; color: inherit;
    border: 1px solid #eef0f3;
    transition: box-shadow .2s, transform .2s;
    min-height: 130px;
  }
  .blog-side:hover {
    box-shadow: 0 6px 22px rgba(0,0,0,.1);
    transform: translateY(-2px);
  }
  .blog-side-img {
    width: 130px; flex-shrink: 0; object-fit: cover; display: block;
  }
  .blog-side-body { padding: 14px 16px; display: flex; flex-direction: column; }
  .blog-side-cat {
    font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
    color: #e94560; margin-bottom: 5px;
  }
  .blog-side-title {
    font-size: 13px; font-weight: 700; color: #1a1a2e; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1; margin-bottom: 6px;
  }
  .blog-side-date { font-size: 11px; color: #9ca3af; margin-top: auto; }

  /* ===================================================
     J. NEWSLETTER
  =================================================== */
  .newsletter-section {
    padding: 64px 0;
    text-align: center;
  }
  .newsletter-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 10px;
  }
  .newsletter-section p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 28px;
  }
  .newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
  }
  .newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 15px;
    color: #fff;
    outline: none;
    min-width: 0;
  }
  .newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
  .newsletter-btn {
    padding: 14px 26px;
    background: #e94560;
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
  }
  .newsletter-btn:hover { background: #d03a52; }
  .newsletter-btn:disabled,
  .newsletter-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
  .newsletter-msg {
    min-height: 1.4em;
    font-size: 13px;
    margin-top: 12px;
    color: rgba(255,255,255,0.85);
    transition: color .2s;
  }
  .newsletter-msg.is-error   { color: #ffb4b4; }
  .newsletter-msg.is-success { color: #b7f7c8; font-weight: 600; }
  .newsletter-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  .newsletter-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
  }
  .newsletter-trust-item svg {
    width: 14px;
    height: 14px;
    opacity: 0.55;
  }

  /* ===================================================
     RESPONSIVE — Tablet (768–1024px)
  =================================================== */
  @media (min-width: 769px) and (max-width: 1024px) {
    .hero-headline { font-size: 2.4rem; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .dest-grid  { grid-template-columns: repeat(2, 1fr); }
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid   { grid-template-columns: 1fr; }
    .blog-feat-img { height: 300px; }
    .hp-container { padding: 0 20px; }
    .hp-section { padding: 48px 0; }
  }

  /* ===================================================
     RESPONSIVE — Mobile (≤ 768px)
  =================================================== */
  @media (max-width: 768px) {
    .hero { min-height: 480px; }
    .hero-content { padding: 40px 16px 36px; }
    .hero-headline { font-size: 2rem; }
    .hero-sub { font-size: 1rem; padding: 0 8px; }

    .search-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin: 0 0 16px;
      justify-content: center;
    }
    .search-tab { padding: 9px 16px; font-size: 13px; }
    .search-form {
      flex-direction: column;
      border-radius: 10px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    }
    .search-field {
      border-right: none;
      border-bottom: 1px solid #e5e7eb;
      border-radius: 0 !important;
      padding: 14px 16px;
      font-size: 14px;
    }
    .search-field:first-child { border-radius: 10px 10px 0 0 !important; }
    .search-field[type="date"] { max-width: none; }
    .sf-guest-btn { min-width: 0 !important; justify-content: space-between; }
    .search-btn { border-radius: 0 0 10px 10px; padding: 14px 24px; }
    #sf-guest-dd { left: 0; right: 0; min-width: 0; border-radius: 0 0 12px 12px; }
    .hero-stats { gap: 8px; }
    .hero-stat-pill { font-size: 12px; padding: 6px 12px; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .partner-inner { gap: 8px; }

    .deals-scroll .deal-card { min-width: 240px; max-width: 240px; }

    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-card { height: 170px; }
    .dest-card-name { font-size: 17px; }

    .activities-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-feat-img { height: 260px; }
    .blog-side-img { width: 110px; }

    .newsletter-section { padding: 48px 16px; }
    .newsletter-form { flex-direction: column; margin: 0; border-radius: 10px; }
    .newsletter-btn { border-radius: 0 0 10px 10px; }
    .newsletter-trust { gap: 16px; }

    .hp-header { flex-direction: column; align-items: flex-start; gap: 6px; }
    .hp-title { font-size: 22px; }
    .hp-section { padding: 40px 0; }
    .hp-container { padding: 0 16px; }
  }

  /* ===================================================
     MOBILE STICKY SEARCH BAR
  =================================================== */
  .mob-search-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 10px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transform: translateY(-100%);
    transition: transform 0.25s ease;
  }
  .mob-search-bar.visible { transform: translateY(0); }
  .mob-search-form {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .mob-search-input {
    flex: 1;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 9px 14px;
    font-size: 14px;
    outline: none;
    background: #f9fafb;
  }
  .mob-search-input:focus { border-color: #e94560; background: #fff; }
  .mob-search-submit {
    background: #e94560;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }

  @media (max-width: 768px) {
    .mob-search-bar { display: block; }
  }

  /* ===================================================
     RESPONSIVE — Small mobile (≤ 480px)
  =================================================== */
  @media (max-width: 480px) {
    .hero-headline { font-size: 1.75rem; }
    .trust-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
    .dest-card { height: 190px; }
    .activities-grid { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; }
    .blog-side-img { width: 90px; }
    .deals-scroll .deal-card { min-width: 220px; }
    .search-tab { font-size: 12px; padding: 8px 12px; }
  }

  /* ===================================================
     D2: MULTI-CITY FLIGHT MODE
  =================================================== */
  .sf-flight-mode {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
  }
  .sf-mode-btn {
    padding: 6px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    transition: background .15s, color .15s, border-color .15s;
  }
  .sf-mode-btn:hover:not(.active) {
    background: #f9fafb;
    border-color: #d1d5db;
  }
  .sf-mode-btn.active {
    background: #e94560;
    color: #fff;
    border-color: #e94560;
  }
  .sf-leg {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    align-items: center;
    flex-wrap: wrap;
  }
  .sf-leg .search-field {
    flex: 1;
    min-width: 120px;
  }
  .sf-leg-remove {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #9ca3af;
    padding: 0 4px;
    transition: color .15s;
  }
  .sf-leg-remove:hover { color: #e94560; }
  .sf-add-leg-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: #0f3460;
    border: 1.5px solid #0f3460;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin: 4px 12px 8px;
    transition: background .15s, color .15s;
  }
  .sf-add-leg-btn:hover {
    background: #0f3460;
    color: #fff;
  }

  /* ===================================================
     A2. HERO POLISH — eyebrow + inline trust + line-break
  =================================================== */
  .hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: rgba(233,69,96,0.85);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(233,69,96,0.35);
  }
  .hero-headline .hero-br-desktop { display: inline; }
  .hero-search-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 16px;
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    font-weight: 600;
  }
  .hsr-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.92);
  }
  .hsr-item svg {
    width: 14px;
    height: 14px;
    color: #6ee7a7;
    flex-shrink: 0;
  }

  /* ===================================================
     C2. WHY SECTION — value props (3-up)
  =================================================== */
  .why-section { padding: 72px 0 64px; }
  .why-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
  }
  .why-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e94560;
    margin-bottom: 10px;
  }
  .why-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: #0f3460;
    margin: 0 0 14px;
    line-height: 1.2;
    letter-spacing: -0.4px;
  }
  .why-sub {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .why-card {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
  }
  .why-card:hover {
    border-color: #e94560;
    box-shadow: 0 12px 32px rgba(15,52,96,0.08);
    transform: translateY(-3px);
  }
  .why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .why-card-icon svg {
    width: 26px;
    height: 26px;
  }
  .why-icon-1 { background: #fff5f6; color: #e94560; }
  .why-icon-2 { background: #ecfdf5; color: #069142; }
  .why-icon-3 { background: #eff6ff; color: #1d4ed8; }
  .why-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: #0f3460;
    margin: 0 0 8px;
    line-height: 1.35;
  }
  .why-card-text {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
  }

  /* ===================================================
     D2. SOCIAL PROOF — testimonials + live pulse
  =================================================== */
  .social-proof { padding: 64px 0; }
  .sp-header {
    text-align: center;
    margin-bottom: 32px;
  }
  .sp-stars {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sp-star-row {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
  }
  .sp-star-row svg {
    width: 18px;
    height: 18px;
  }
  .sp-rating {
    font-size: 18px;
    font-weight: 800;
    color: #0f3460;
  }
  .sp-rating-meta {
    font-size: 13px;
    color: #6b7280;
  }
  .sp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .sp-quote {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 22px 22px 18px;
    margin: 0;
    position: relative;
    box-shadow: 0 1px 3px rgba(15,52,96,0.04);
  }
  .sp-quote::before {
    content: '\201C';
    position: absolute;
    top: -12px;
    left: 18px;
    font-family: Georgia, serif;
    font-size: 56px;
    font-weight: 700;
    color: #e94560;
    line-height: 1;
    background: #f8f9fa;
    padding: 0 8px;
  }
  .sp-quote blockquote {
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.65;
    margin: 0 0 16px;
    font-style: italic;
  }
  .sp-quote figcaption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
  }
  .sp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e94560, #0f3460);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
  }
  .sp-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f3460;
  }
  .sp-loc {
    display: block;
    font-size: 11.5px;
    color: #9ca3af;
    margin-top: 1px;
  }
  .sp-pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 32px auto 0;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 100px;
    font-size: 13px;
    color: #4b5563;
    box-shadow: 0 2px 6px rgba(15,52,96,0.05);
    width: fit-content;
    max-width: 100%;
  }
  .sp-pulse-text { white-space: normal; }
  .sp-pulse-text strong { color: #0f3460; font-weight: 700; }
  .sp-pulse-text strong#sp-pulse-city {
    color: #e94560;
    transition: opacity 0.25s;
  }
  .sp-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #069142;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(6,145,66,0.5);
    animation: spPulse 2s infinite;
  }
  @keyframes spPulse {
    0%   { box-shadow: 0 0 0 0 rgba(6,145,66,0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(6,145,66,0); }
    100% { box-shadow: 0 0 0 0 rgba(6,145,66,0); }
  }
  /* Center the pulse on its own row */
  .social-proof .hp-container { text-align: center; }
  .social-proof .sp-grid { text-align: left; }

  /* ===================================================
     J2. NEWSLETTER POLISH — eyebrow + decorative pattern
  =================================================== */
  .newsletter-section { position: relative; overflow: hidden; }
  .newsletter-bg-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
      radial-gradient(circle at 12% 22%, rgba(233,69,96,0.18) 0, transparent 40%),
      radial-gradient(circle at 88% 78%, rgba(255,255,255,0.08) 0, transparent 45%),
      repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 22px);
    z-index: 0;
  }
  .newsletter-section .hp-container { position: relative; z-index: 1; }
  .newsletter-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffd1d9;
    background: rgba(233,69,96,0.22);
    border: 1px solid rgba(233,69,96,0.45);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
  }
  .newsletter-section p strong {
    color: #fff;
    font-weight: 800;
  }

  /* ===================================================
     RESPONSIVE — Why / Social Proof / Hero polish
  =================================================== */
  @media (min-width: 769px) and (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .sp-grid  { grid-template-columns: repeat(2, 1fr); }
    .why-title { font-size: 28px; }
  }
  @media (max-width: 768px) {
    .hero-headline .hero-br-desktop { display: none; }
    .hero-eyebrow { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }
    .hero-search-trust { gap: 10px 16px; font-size: 12px; margin-top: 14px; }

    .why-section { padding: 48px 0 40px; }
    .why-header { margin-bottom: 28px; }
    .why-title { font-size: 24px; }
    .why-grid { grid-template-columns: 1fr; gap: 14px; }
    .why-card { padding: 22px 20px; }

    .social-proof { padding: 44px 0; }
    .sp-grid { grid-template-columns: 1fr; gap: 14px; }
    .sp-quote { padding: 20px 18px 16px; }
    .sp-pulse { font-size: 12px; padding: 9px 14px; gap: 8px; }
  }
  @media (max-width: 480px) {
    .why-title { font-size: 22px; }
    .why-sub { font-size: 14px; }
  }
