
  :root {
    --gold: #E8A838;
    --gold-light: #F5C96A;
    --thai-blue: #00247D;
    --thai-red: #EF3340;
    --deep-teal: #7A5A2E;
    --teal: #A68030;
    --teal-light: #C9A040;
    --cream: #FFF8EE;
    --cream-dark: #F5EBD8;
    --coral: #E85D4A;
    --coral-soft: #FF7B6B;
    --white: #FFFFFF;
    --dark: #0A0A0A;
    --text: #2D2D2D;
    --text-light: #6B6B6B;
    --green-deal: #E8A838;
    --red-missed: #D94040;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
  }

  nav.scrolled {
    background: rgba(255, 248, 238, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }

  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--thai-blue);
    text-decoration: none;
    letter-spacing: -0.5px;
  }

  .logo span { color: var(--thai-red); }

  .nav-cta {
    background: #EF3340;
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .nav-cta:hover {
    background: #D42A36;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(239, 51, 64, 0.4);
  }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    background: linear-gradient(160deg, var(--deep-teal) 0%, var(--teal) 40%, var(--teal-light) 100%);
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.15) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 168, 56, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite reverse;
  }

  @keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
    position: relative;
    z-index: 2;
  }

  .hero-badge .pulse {
    width: 8px;
    height: 8px;
    background: var(--green-deal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    max-width: 800px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease 0.1s both;
    position: relative;
    z-index: 2;
  }

  .hero h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
  }

  .hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease 0.2s both;
    position: relative;
    z-index: 2;
  }

  .hero-form {
    display: flex;
    gap: 0;
    max-width: 520px;
    width: 100%;
    animation: fadeInDown 0.8s ease 0.3s both;
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 60px;
    padding: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  }

  .hero-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    outline: none;
  }

  .hero-form input::placeholder { color: #999; }

  .hero-form button {
    background: #EF3340;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
  }

  .hero-form button:hover {
    background: #D42A36;
    transform: scale(1.02);
  }

  .hero-trust {
    margin-top: 24px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    animation: fadeInDown 0.8s ease 0.4s both;
    position: relative;
    z-index: 2;
  }

  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== SECTION COMMON ===== */
  section {
    padding: 100px 24px;
  }

  .section-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--deep-teal);
    margin-bottom: 16px;
    line-height: 1.1;
  }

  .section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.6;
    margin-bottom: 48px;
  }

  /* ===== LIVE DEALS ===== */
  .deals-section {
    background: var(--white);
  }

  .deals-section .section-label { color: var(--green-deal); }

  .deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }

  .deal-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
  }

  .deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .deal-card-header {
    padding: 20px 24px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .deal-route {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .deal-airport {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .deal-arrow {
    color: var(--gold);
    font-size: 18px;
  }

  .deal-city {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--deep-teal);
  }

  .deal-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(239, 51, 64, 0.1);
    color: #EF3340;
  }

  .deal-card-body {
    padding: 0 24px 20px;
  }

  .deal-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-light);
  }

  .deal-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .deal-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .deal-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--thai-blue);
    line-height: 1;
  }

  .deal-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
  }

  .deal-normal-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 15px;
  }

  .deal-save {
    background: #EF3340;
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
  }

  /* ===== BOOKING LINKS ===== */
  .booking-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 12px 24px 20px;
    border-top: 1px dashed rgba(0,0,0,0.06);
  }

  .booking-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text);
    background: var(--white);
  }

  .booking-link:hover {
    border-color: var(--thai-blue);
    color: var(--thai-blue);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .booking-link.primary {
    background: #EF3340;
    color: #FFFFFF;
    border-color: #EF3340;
  }

  .booking-link.primary:hover {
    background: #D42A36;
    color: #FFFFFF;
    border-color: #D42A36;
  }

  .booking-link img {
    width: 16px;
    height: 16px;
    border-radius: 3px;
  }

  /* ===== MISSED DEALS ===== */
  .missed-section {
    background: var(--deep-teal);
    position: relative;
    overflow: hidden;
  }

  .missed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .missed-section .section-label { color: var(--coral-soft); }
  .missed-section .section-title { color: var(--white); }
  .missed-section .section-subtitle { color: rgba(255,255,255,0.6); }

  .missed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    position: relative;
    z-index: 2;
  }

  .missed-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 20px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }

  .missed-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
  }

  .missed-stamp {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--red-missed);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(2deg);
  }

  .missed-route-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }

  .missed-destination {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 12px;
  }

  .missed-prices {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 8px;
  }

  .missed-deal-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--coral-soft);
  }

  .missed-normal {
    text-decoration: line-through;
    color: rgba(255,255,255,0.3);
    font-size: 15px;
  }

  .missed-date {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
  }

  .missed-cta-box {
    margin-top: 48px;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  .missed-cta-box p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 20px;
  }

  .missed-cta-box p em {
    color: var(--gold-light);
    font-style: normal;
    font-weight: 600;
  }

  .btn-gold {
    display: inline-block;
    background: #EF3340;
    color: #FFFFFF;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .btn-gold:hover {
    background: #D42A36;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 51, 64, 0.4);
  }

  /* ===== HOW IT WORKS ===== */
  .how-section {
    background: var(--white);
  }

  .how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

  .how-step {
    text-align: center;
    position: relative;
  }

  .how-step:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    right: -20px;
    top: 36px;
    color: var(--gold);
    font-size: 24px;
  }

  .how-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
  }

  .how-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-teal);
    margin-bottom: 8px;
  }

  .how-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
  }

  /* ===== DESTINATIONS ===== */
  .dest-section {
    background: var(--cream);
  }

  .dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
  }

  .dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .dest-card:hover { transform: scale(1.02); }

  .dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .dest-card:hover img { transform: scale(1.1); }

  .dest-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
  }

  .dest-card-overlay h3 {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 24px;
    font-weight: 700;
  }

  .dest-card-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
  }

  .dest-from-price {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 15px;
    margin-top: 4px;
  }

  /* ===== FINAL CTA ===== */
  .final-cta {
    background: linear-gradient(135deg, var(--deep-teal), var(--teal));
    text-align: center;
    padding: 100px 24px;
  }

  .final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
  }

  .final-cta h2 em {
    color: var(--gold);
    font-style: normal;
  }

  .final-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .final-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 60px;
    padding: 6px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  }

  .final-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    outline: none;
  }

  .final-form button {
    background: #EF3340;
    color: #FFFFFF;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
  }

  .final-form button:hover { background: #D42A36; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--dark);
    padding: 40px 24px;
    text-align: center;
  }

  footer p {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 768px) {
    nav { padding: 12px 20px; }
    .logo { font-size: 22px; }
    section { padding: 60px 16px; }
    .how-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .how-step:not(:last-child)::after { display: none; }
    .hero-form, .final-form { flex-direction: column; border-radius: var(--radius); }
    .hero-form button, .final-form button { border-radius: 50px; }
    .missed-grid { grid-template-columns: 1fr 1fr; }
    .deals-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    .how-grid { grid-template-columns: 1fr; }
    .missed-grid { grid-template-columns: 1fr; }
    .dest-grid { grid-template-columns: 1fr; }
  }

  /* ===== ANIMATIONS ON SCROLL ===== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== HOTEL DEALS ===== */
  .hotels-section {
    background: var(--cream);
  }

  .hotels-section .section-label { color: var(--thai-blue); }

  .hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }

  .hotel-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0,36,125,0.08);
    text-decoration: none;
    color: inherit;
    display: block;
  }

  .hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0,36,125,0.15);
  }

  .hotel-card-header {
    padding: 20px 24px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .hotel-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-teal);
    line-height: 1.2;
    flex: 1;
    margin-right: 12px;
  }

  .hotel-rating {
    background: var(--gold);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .hotel-destination {
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
  }

  .hotel-card-body {
    padding: 0 24px 20px;
  }

  .hotel-price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid rgba(0,36,125,0.06);
  }

  .hotel-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--thai-blue);
    line-height: 1;
  }

  .hotel-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    margin-top: 2px;
  }

  .hotel-ota {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
  }

  .hotel-all-rates {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px dashed rgba(0,0,0,0.06);
  }

  .hotel-all-rates span {
    display: inline-block;
    background: var(--cream);
    padding: 2px 8px;
    border-radius: 4px;
    margin: 2px 4px 2px 0;
    font-size: 12px;
  }

  .hotel-book-btn {
    display: inline-block;
    background: #EF3340;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .hotel-book-btn:hover {
    background: #D42A36;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 51, 64, 0.3);
  }

  /* ===== FLIGHT FILTER ===== */
  .flight-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 24px;
    justify-content: center;
    align-items: center;
  }

  .flight-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .flight-filter-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 4px;
  }

  .flight-filter-chip {
    padding: 7px 16px;
    border-radius: 50px;
    border: 2px solid rgba(0,36,125,0.15);
    background: var(--white);
    color: var(--deep-teal);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .flight-filter-chip:hover {
    border-color: var(--thai-blue);
    color: var(--thai-blue);
  }

  .flight-filter-chip.active {
    background: var(--thai-blue);
    color: var(--white);
    border-color: var(--thai-blue);
  }

  .flight-filter-divider {
    width: 2px;
    height: 28px;
    background: rgba(0,36,125,0.12);
    margin: 0 8px;
  }

  @media (max-width: 768px) {
    .flight-filter { flex-direction: column; gap: 8px; }
    .flight-filter-chip { font-size: 12px; padding: 6px 12px; }
    .flight-filter-divider { display: none; }
  }

  /* ===== HOTEL FILTER ===== */
  .hotel-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 24px;
    justify-content: center;
  }

  .hotel-filter-chip {
    padding: 8px 18px;
    border-radius: 50px;
    border: 2px solid rgba(0,36,125,0.15);
    background: var(--white);
    color: var(--deep-teal);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .hotel-filter-chip:hover {
    border-color: var(--thai-blue);
    color: var(--thai-blue);
  }

  .hotel-filter-chip.active {
    background: var(--thai-blue);
    color: var(--white);
    border-color: var(--thai-blue);
  }

  @media (max-width: 768px) {
    .hotels-grid { grid-template-columns: 1fr; }
    .hotel-filter-chip { font-size: 13px; padding: 6px 14px; }
  }
