:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --ink: #111824;
  --muted: #5a667a;
  --line: #dce2ec;
  --brand: #ff5c35;
  --brand-dark: #e34a26;
  --success: #027a48;
  --shadow-sm: 0 8px 24px rgba(12, 20, 33, 0.08);
  --shadow-md: 0 18px 40px rgba(12, 20, 33, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.45;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

p {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  border: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  min-height: 48px;
  padding: 0.8rem 1.2rem;
  transition: background-color 0.18s ease;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  min-height: 40px;
  padding: 0.45rem 0.95rem;
}

.btn-small {
  background: #121d2d;
  color: #fff;
  min-height: 40px;
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eef1f6;
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand span {
  color: var(--brand);
}

.main-nav {
  margin-left: 1.8rem;
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  color: #263245;
}

.main-nav a:hover {
  color: var(--brand-dark);
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pill-select {
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0 0.85rem;
  background: #fff;
  color: #1f2a3b;
  font-weight: 600;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.05rem;
}

.icon-link:hover {
  border-color: #c3ccd9;
}

.menu-toggle {
  margin-left: auto;
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 3px;
  background: #0f1724;
  margin: 7px 8px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(8, 13, 24, 0.78), rgba(8, 13, 24, 0.45));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6.3rem;
  padding-bottom: 4.3rem;
}

.hero h1 {
  max-width: 760px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  letter-spacing: -0.02em;
}

.hero p {
  margin-top: 0.95rem;
  max-width: 620px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-search {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 20px;
  padding: 0.75rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr auto;
  gap: 0.6rem;
  box-shadow: var(--shadow-md);
}

.hero-search label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #e4e9f1;
  border-radius: 14px;
  background: #fff;
  min-height: 58px;
  padding: 0.5rem 0.8rem;
}

.hero-search span {
  color: #4f5f78;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-search input {
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.destination-chips {
  margin-top: 1rem;
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}

.destination-chips::-webkit-scrollbar,
.mobile-scroll::-webkit-scrollbar {
  display: none;
}

.destination-chips a {
  white-space: nowrap;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
}

.destination-chips a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.trust-strip {
  background: #111d30;
  color: #f5f8ff;
}

.trust-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.96rem;
}

.trust-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: 4.6rem 0;
}

.section-muted {
  background: #f2f5f9;
}

.section-head {
  margin-bottom: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  justify-content: space-between;
}

.section-head h2,
.section > .container > h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.section-head a {
  font-weight: 700;
  color: var(--brand-dark);
}

.destinations-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 212px;
}

.destination-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  min-height: 212px;
}

.destination-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.destination-card.featured-2 {
  grid-column: span 2;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-overlay {
  position: absolute;
  inset: auto 0 0;
  color: #fff;
  padding: 1.1rem;
  background: linear-gradient(180deg, rgba(8, 13, 24, 0.03), rgba(8, 13, 24, 0.75));
}

.card-overlay h3 {
  font-size: 1.22rem;
}

.card-overlay p {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.card-overlay span {
  margin-top: 0.6rem;
  display: inline-flex;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  font-weight: 700;
  font-size: 0.82rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.category-card {
  min-height: 112px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid #e4eaf2;
  box-shadow: 0 4px 14px rgba(17, 24, 36, 0.05);
  display: grid;
  place-content: center;
  gap: 0.35rem;
  text-align: center;
  padding: 0.8rem;
}

.category-card span {
  font-size: 1.35rem;
}

.category-card strong {
  font-size: 0.93rem;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.activity-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e4e9f1;
}

.activity-card img {
  height: 220px;
  object-fit: cover;
}

.activity-body {
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
}

.badges {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.badges span {
  background: #f2f6ff;
  color: #1f4274;
  font-size: 0.73rem;
  border-radius: 999px;
  border: 1px solid #d7e2f6;
  padding: 0.27rem 0.54rem;
  font-weight: 700;
}

.activity-body h3 {
  font-size: 1.08rem;
}

.activity-body h3 a:hover {
  color: var(--brand-dark);
}

.meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.meta span {
  color: #6d788b;
}

.price-row {
  margin-top: 0.15rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.price-row p {
  display: grid;
  gap: 0.05rem;
}

.old-price {
  color: #7f8998;
  text-decoration: line-through;
  font-size: 0.86rem;
}

.price-row strong {
  font-size: 1.34rem;
  letter-spacing: -0.01em;
}

.icon-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.icon-grid article {
  background: #fff;
  border: 1px solid #e3e9f2;
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.icon-grid span {
  font-size: 1.35rem;
}

.icon-grid h3 {
  margin-top: 0.6rem;
  font-size: 1.03rem;
}

.icon-grid p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps-grid article {
  border-radius: var(--radius-sm);
  border: 1px solid #e3e9f2;
  background: #fff;
  padding: 1.1rem;
}

.steps-grid span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a2a42;
  color: #fff;
  font-weight: 800;
}

.steps-grid h3 {
  margin-top: 0.7rem;
  font-size: 1.05rem;
}

.steps-grid p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.93rem;
}

.proof {
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 700;
}

.rating-summary {
  color: var(--muted);
  font-size: 1rem;
}

.rating-summary strong {
  color: #111f32;
}

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

.review-card {
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid #e4e9f1;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.review-card .stars {
  color: #d59d00;
  letter-spacing: 0.02em;
}

.review-card p {
  color: #2a3445;
}

.review-card h3 {
  margin-top: 0.4rem;
  font-size: 0.98rem;
}

.review-card span {
  color: #6a7383;
  font-size: 0.9rem;
}

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

.article-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid #e4e9f1;
  box-shadow: 0 6px 20px rgba(14, 22, 33, 0.06);
}

.article-card img {
  height: 170px;
  object-fit: cover;
}

.article-card div {
  padding: 0.9rem;
}

.article-card h3 {
  font-size: 1.02rem;
}

.article-card p {
  margin-top: 0.42rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.deal-box {
  border-radius: 20px;
  background: linear-gradient(130deg, #0f1c30, #213e6c);
  color: #fff;
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.deal-box h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
}

.deal-box p {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  max-width: 620px;
}

.newsletter-form input {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
  font-weight: 600;
  color: #12213a;
}

.app-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.84);
}

.final-cta {
  padding: 4.3rem 0;
  background: #13253f;
  color: #fff;
  text-align: center;
}

.final-cta h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.final-cta p {
  margin: 0.75rem auto 1.45rem;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.91);
}

.site-footer {
  background: #0d1625;
  color: #d9e1ee;
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

.site-footer section {
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: #c5d0e1;
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: #fff;
}

.social-links {
  margin: 0.45rem 0 0.35rem;
  display: flex;
  gap: 0.4rem;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1f314f;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid #1e2f4b;
  margin-top: 1.6rem;
  padding: 1rem 0 1.6rem;
  font-size: 0.92rem;
  color: #9fb0c9;
}

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(90px);
  z-index: 55;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  min-height: 48px;
  min-width: 230px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.mobile-sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    margin-left: 0.8rem;
    gap: 0.9rem;
  }

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

  .reviews-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .main-nav.open {
    display: grid;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e8edf5;
    padding: 1rem;
    gap: 0.7rem;
    margin: 0;
    box-shadow: var(--shadow-sm);
  }

  .main-nav.open a {
    padding: 0.45rem 0;
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding-top: 5rem;
  }

  .hero-search {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .hero-search .btn-primary {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.9rem 0;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }

  .destination-card.featured,
  .destination-card.featured-2 {
    grid-column: span 2;
    grid-row: span 1;
  }

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

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

  .steps-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section {
    padding: 3.35rem 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(1.65rem, 7vw, 2.2rem);
  }

  .hero p {
    font-size: 0.98rem;
    max-width: 35ch;
  }

  .mobile-scroll {
    display: flex;
    overflow-x: auto;
    gap: 0.7rem;
    padding-bottom: 0.2rem;
    scroll-snap-type: x mandatory;
  }

  .mobile-scroll > * {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .destinations-grid {
    display: flex;
  }

  .destination-card {
    min-height: 260px;
  }

  .destination-card.featured,
  .destination-card.featured-2 {
    min-height: 290px;
  }

  .category-grid {
    display: flex;
  }

  .category-card {
    min-width: 190px;
    min-height: 104px;
  }

  .activity-grid {
    grid-template-columns: 1fr;
  }

  #most-booked .activity-grid {
    display: flex;
  }

  #most-booked .activity-grid .activity-card {
    flex: 0 0 88%;
  }

  .icon-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-row .btn-small {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none;
  }
}
