@media (min-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: 0;
    background: #eef4fb;
  }

  .app-shell {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #f8fbff;
    box-shadow: none;
  }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    min-height: 70px;
    padding: 0 64px;
    border-bottom: 1px solid rgba(222, 228, 240, .8);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
  }

  .brand {
    max-width: 240px;
  }

  .brand img {
    width: 174px;
  }

  .brand span {
    margin-top: 3px;
    font-size: 10px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .desktop-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
  }

  .desktop-main-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 18px;
    color: #14213f;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .desktop-main-nav a.is-active {
    color: #5b35e6;
    background: #eee8ff;
  }

  .desktop-main-nav svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .top-actions {
    gap: 12px;
  }

  .top-actions .icon-btn,
  .desktop-search-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 28px rgba(16, 32, 63, .1);
  }

  .desktop-search-btn {
    display: grid;
  }

  .desktop-enquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 24px;
    border-radius: 12px;
    color: #3b2a00;
    background: #ffc400;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(255, 196, 0, .24);
  }

  .app-shell > main {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px;
    width: min(100%, 1800px);
    margin: 0 auto;
    padding: 0 64px 34px;
  }

  .hero {
    position: relative;
    grid-column: 1 / -1;
    display: block;
    min-height: 282px;
    margin: 0 -64px;
    color: #fff;
  }

  .hero-slider {
    display: none;
  }

  .desktop-hero-panel {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 282px;
    padding: 24px 98px 52px;
    overflow: hidden;
    border-radius: 0;
    background:
      linear-gradient(90deg, rgba(2, 8, 22, .72) 0%, rgba(2, 8, 22, .22) 48%, rgba(2, 8, 22, .36) 100%),
      var(--desktop-hero-image) center/cover,
      linear-gradient(135deg, #123e70, #08152e);
  }

  .desktop-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 14% 35%, rgba(0,0,0,.30), transparent 30%),
      linear-gradient(90deg, rgba(4,13,30,.45), transparent 42%, rgba(4,13,30,.18));
    pointer-events: none;
  }

  .desktop-hero-copy,
  .desktop-hero-note {
    position: relative;
    z-index: 1;
  }

  .desktop-hero-copy p {
    margin: 0;
    color: #ffc400;
    font-size: 38px;
    line-height: .92;
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-weight: 800;
  }

  .desktop-hero-copy h1 {
    margin: 2px 0 10px;
    font-size: clamp(42px, 4vw, 70px);
    line-height: .90;
    font-weight: 950;
    letter-spacing: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,.22);
  }

  .desktop-hero-copy span {
    display: block;
    font-size: 21px;
    font-weight: 800;
    text-shadow: 0 3px 16px rgba(0,0,0,.28);
  }

  .desktop-hero-copy strong {
    color: #ffc400;
  }

  .desktop-hero-note {
    margin-left: auto;
    margin-right: 34px;
    color: #fff;
    font-family: "Segoe Script", "Brush Script MT", cursive;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
    text-align: center;
    transform: rotate(-8deg);
  }

  .desktop-hero-note::after {
    content: "";
    display: block;
    width: 130px;
    height: 8px;
    margin: 5px auto 0;
    border-radius: 999px;
    background: #ffc400;
    transform: rotate(-10deg);
  }

  .search-card {
    position: absolute;
    left: 50%;
    bottom: 60px;
    z-index: 5;
    width: min(690px, 45vw);
    transform: translateX(-50%);
    grid-template-columns: 1fr 128px;
    gap: 12px;
    padding: 10px;
    border: 1px solid rgba(226, 232, 244, .72);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 46px rgba(7, 18, 39, .24);
  }

  .search-card input {
    min-height: 50px;
    padding: 0 18px 0 22px;
    border: 0;
    font-size: 15px;
  }

  .search-card button {
    min-height: 50px;
    border-radius: 14px;
    color: #fff;
    background: #5b35e6;
    box-shadow: 0 14px 28px rgba(91, 53, 230, .26);
  }

  .desktop-hero-tags {
    position: absolute;
    left: 50%;
    bottom: 20px;
    z-index: 6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: min(700px, 48vw);
    transform: translateX(-50%);
  }

  .desktop-hero-tags a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 25px;
    padding: 0 11px;
    border: 1px solid rgba(255,255,255,.52);
    border-radius: 999px;
    color: #fff;
    background: rgba(3, 18, 38, .40);
    font-size: 11px;
    font-weight: 800;
    backdrop-filter: blur(8px);
  }

  .desktop-hero-tags svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
  }

  .search-banner {
    display: none;
  }

  .trust-strip {
    order: 2;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0;
    margin: -2px -64px 0;
    padding: 16px 64px;
    border-width: 0 0 1px;
    border-radius: 0;
    background: rgba(255,255,255,.9);
    box-shadow: 0 12px 30px rgba(16, 32, 63, .06);
  }

  .trust-strip div {
    display: grid;
    min-height: 58px;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    padding: 0 22px;
    border-right: 1px solid #dbe3f0;
  }

  .trust-strip .desktop-trust-stat {
    display: grid;
  }

  .desktop-trust-stat b {
    grid-row: 1 / 3;
    justify-self: center;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--item-accent);
    background: color-mix(in srgb, var(--item-accent) 12%, white);
    font-size: 19px;
    line-height: 1;
  }

  .trust-strip div > svg {
    grid-row: 1 / 3;
    justify-self: center;
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 50%;
    fill: var(--item-accent);
    background: color-mix(in srgb, var(--item-accent) 14%, white);
  }

  .trust-strip div:last-child {
    border-right: 0;
  }

  .trust-strip strong {
    font-size: 15px;
    line-height: 1.1;
  }

  .trust-strip span {
    font-size: 13px;
    line-height: 1.2;
  }

  .rail-section {
    margin-top: 0;
  }

  .section-head {
    margin-bottom: 12px;
  }

  .section-head h2 {
    font-size: 23px;
    line-height: 1.05;
  }

  .desktop-section-subtitle {
    display: block;
    margin: 2px 0 0;
    color: #60708b;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
  }

  .section-head a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    font-weight: 950;
  }

  .hero + .rail-section {
    order: 3;
    grid-column: 1 / 8;
  }

  .rail-section:has(#country-title) {
    display: none;
  }

  .home-popular-destinations {
    order: 4;
    grid-column: 8 / -1;
  }

  .category-rail,
  .destination-grid,
  .testimonial-rail,
  .experience-rail,
  .blog-grid {
    overflow: visible;
    grid-auto-flow: row;
    grid-auto-columns: unset;
    padding: 0;
    scroll-snap-type: none;
  }

  .category-rail {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
  }

  .mood-card {
    min-width: 0;
  }

  .mood-card img {
    width: 100%;
    max-width: none;
    aspect-ratio: 1 / .88;
    border-radius: 12px;
    object-fit: cover;
  }

  .mood-card span {
    font-size: 13px;
    font-weight: 950;
  }

  .mood-card {
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 13px;
    box-shadow: 0 14px 30px rgba(16, 32, 63, .12);
  }

  .mood-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 62%;
    background: linear-gradient(180deg, transparent, rgba(4,13,30,.78));
  }

  .mood-card span {
    position: absolute;
    left: 12px;
    right: 36px;
    bottom: 10px;
    z-index: 1;
    color: #fff;
    text-align: left;
    line-height: 1.15;
  }

  .mood-card::before {
    content: ">";
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #06183a;
    background: #fff;
    font-weight: 950;
  }

  .destination-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .destination-card {
    flex: none;
    min-height: 142px;
    border-radius: 13px;
  }

  .destination-card h3,
  .home-popular-destinations .destination-card h3 {
    font-size: 15px;
    line-height: 1.08;
  }

  .destination-card::after {
    background: linear-gradient(180deg, transparent 26%, rgba(5,17,38,.82));
  }

  .destination-card div {
    padding: 14px;
  }

  .destination-card p {
    display: none;
  }

  .destination-package-count {
    font-size: 12px;
    color: #ffc400;
  }

  #packages {
    order: 5;
    grid-column: 1 / 9;
  }

  .package-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }

  .package-card {
    position: relative;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 8px;
    align-items: center;
    min-height: 132px;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(16, 32, 63, .08);
  }

  .package-card-media,
  .package-card img {
    grid-row: 1 / 3;
    width: 112px;
    height: 96px;
    border-radius: 12px;
  }

  .package-card > div {
    min-width: 0;
    align-self: end;
  }

  .package-card-media em {
    top: 8px;
    left: 8px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .package-card h3 {
    font-size: 14px;
    line-height: 1.18;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .package-card p,
  .package-card span {
    font-size: 12px;
  }

  .package-card .package-price-link {
    grid-column: 2;
    align-self: start;
    justify-self: start;
    text-align: left;
    font-size: 11px;
  }

  .package-card .package-price-link strong {
    display: block;
    font-size: 15px;
  }

  .deal-banner {
    order: 6;
    grid-column: 9 / -1;
    min-height: 176px;
    margin-top: 34px;
    padding: 24px 26px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(255, 196, 0, .14);
  }

  .deal-banner h2 {
    font-size: 34px;
  }

  .deal-banner img {
    right: 0;
    max-height: 190px;
  }

  .deal-banner .primary-btn {
    min-height: 40px;
    padding: 0 16px;
    border-radius: 10px;
  }

  .rail-section:has(#reviews-title) {
    order: 7;
    grid-column: 1 / 8;
  }

  .testimonial-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .review-card {
    min-height: 130px;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(16, 32, 63, .08);
  }

  .review-head {
    align-items: center;
  }

  .review-head img {
    width: 48px;
    height: 48px;
  }

  .review-card h3 {
    font-size: 13px;
  }

  .review-card span {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.45;
  }

  .rail-section:has(#experience-title) {
    order: 8;
    grid-column: 8 / -1;
  }

  .experience-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
  }

  .experience-card {
    min-height: 106px;
    padding: 15px 10px;
    border-radius: 14px;
  }

  .experience-card span {
    width: 52px;
    height: 52px;
  }

  .experience-card strong {
    font-size: 13px;
  }

  .experience-card small {
    font-size: 11px;
  }

  .plan-card {
    order: 9;
    grid-column: 1 / 8;
    display: grid;
    grid-template-columns: 1.1fr 2fr;
    align-items: center;
    gap: 18px;
    min-height: 128px;
    margin-top: 0;
    padding: 22px 24px;
    border-radius: 16px;
  }

  .plan-card h2 {
    max-width: 330px;
    font-size: 22px;
  }

  .plan-card ul {
    margin-top: 8px;
    font-size: 13px;
  }

  .lead-form {
    grid-template-columns: repeat(3, minmax(0, 1fr)) 150px;
    gap: 10px;
  }

  .lead-form p {
    grid-column: 1 / -1;
  }

  .lead-form input,
  .lead-form button {
    min-height: 48px;
    border-radius: 11px;
  }

  .rail-section:has(#explore-more-title) {
    order: 10;
    grid-column: 8 / 11;
  }

  .explore-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .explore-card {
    min-height: 48px;
    padding: 9px 12px;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(16, 32, 63, .07);
  }

  .explore-card span {
    width: 30px;
    height: 30px;
  }

  .explore-card strong {
    font-size: 11px;
  }

  .site-help-strip {
    order: 11;
    grid-column: 11 / -1;
    align-self: end;
    width: 100%;
    min-height: 110px;
    margin: 0;
    padding: 18px;
    border-radius: 14px;
  }

  .site-help-strip img {
    width: 112px;
  }

  .service-list,
  .rail-section:has(#blog-title) {
    order: 12;
    grid-column: 1 / -1;
  }

  .service-list {
    display: none;
  }

  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bottom-nav {
    display: none;
  }
}

@media (min-width: 1024px) and (max-width: 1380px) {
  .topbar {
    grid-template-columns: 210px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 0 32px;
  }

  .desktop-main-nav {
    gap: 3px;
  }

  .desktop-main-nav a {
    padding: 0 9px;
    font-size: 12px;
  }

  .desktop-enquire-btn {
    padding: 0 16px;
  }

  .app-shell > main {
    padding-right: 32px;
    padding-left: 32px;
  }

  .hero {
    margin-right: -32px;
    margin-left: -32px;
  }

  .hero-slide {
    padding-right: 72px;
    padding-left: 72px;
  }

  .search-card {
    width: min(620px, 48vw);
  }

  .trust-strip {
    margin-right: -32px;
    margin-left: -32px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .package-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .experience-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
