/*
Theme Name: DEE SR Travel
Theme URI: https://example.com/
Author: Codex
Description: A classic WordPress travel theme inspired by the Vacaysea Travel package landing page.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dee-sr-travel
*/

:root {
  --color-ink: #111827;
  --color-charcoal: #202938;
  --color-navy: #0c3558;
  --color-navy-dark: #061d33;
  --color-blue: #17649a;
  --color-teal: #0f7c86;
  --color-gold: #c69a4a;
  --color-gold-light: #ead6aa;
  --color-text: #18202d;
  --color-muted: #647181;
  --color-line: #d7e2ea;
  --color-surface: #f5f8fa;
  --container: 1156px;
  --font-body: "Manrope", "Avenir Next", "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "Avenir Next", "Inter", "Segoe UI", Arial, sans-serif;
}

/* Matour-inspired professional redesign. */
:root {
  --color-ink: #0f1216;
  --color-charcoal: #171a1f;
  --color-navy: #0d3345;
  --color-navy-dark: #070605;
  --color-blue: #157a8a;
  --color-teal: #0b8f9f;
  --color-gold: #d9b469;
  --color-gold-light: #f1dfb7;
  --color-text: #151922;
  --color-muted: #6f7782;
  --color-line: #e4e7eb;
  --color-surface: #f7f6f2;
  --container: 1160px;
  --font-body: "Manrope", "Avenir Next", "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Manrope", "Avenir Next", "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  background: #fff;
  font-family: var(--font-body);
}

.site-header {
  background: linear-gradient(180deg, rgba(4, 8, 12, 0.5), rgba(4, 8, 12, 0));
}

.site-header__inner {
  min-height: 86px;
  width: min(1180px, calc(100% - 48px));
}

.site-branding__logo {
  width: 46px;
  height: 40px;
}

.site-branding__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.site-navigation {
  gap: 14px;
}

.primary-menu {
  gap: 4px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.primary-menu a {
  min-height: 34px;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-menu a::after {
  display: none;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--color-ink);
  background: #fff;
  border-radius: 999px;
  text-shadow: none;
}

.site-search__toggle {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.hero {
  min-height: 760px;
  height: 100vh;
  place-items: center start;
}

.hero::after {
  background:
    radial-gradient(circle at 76% 34%, rgba(8, 13, 20, 0.02), rgba(8, 13, 20, 0.18) 34%, rgba(8, 13, 20, 0.56) 100%),
    linear-gradient(90deg, rgba(4, 7, 8, 0.82) 0%, rgba(4, 7, 8, 0.36) 46%, rgba(4, 7, 8, 0.08) 100%);
}

.hero__slide {
  filter: saturate(1.06) contrast(1.02);
}

.hero__content {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 64px;
  text-align: left;
  text-shadow: none;
}

.hero__content::before {
  display: inline-grid;
  min-height: 34px;
  padding: 0 18px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  content: "Feel The Experience";
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  place-items: center;
}

.hero__title {
  max-width: 710px;
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__subtitle {
  max-width: 620px;
  padding: 0;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.hero__subtitle::after {
  display: grid;
  width: 154px;
  min-height: 48px;
  margin-top: 30px;
  color: var(--color-ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  content: "View Packages";
  background: #fff;
  border-radius: 999px;
  place-items: center;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.hero__dots {
  right: min(52px, 4vw);
  bottom: auto;
  left: auto;
  top: 50%;
  flex-direction: column;
  transform: translateY(-50%);
}

.hero__dot,
.hero__dot.is-active {
  width: 8px;
  height: 34px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.hero__dot.is-active {
  background: #fff;
}

.package-section {
  padding: 86px 0 92px;
  background: #fff;
}

.section-rule {
  display: none;
}

.package-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 245px;
  gap: 28px;
}

.package-card {
  position: relative;
  min-height: 245px;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
}

.package-card:nth-child(1) {
  grid-row: span 2;
}

.package-card:nth-child(6) {
  grid-column: span 2;
}

.package-card a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  color: #fff;
}

.package-card a::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  font-size: 20px;
  content: "↗";
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  place-items: center;
}

.package-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 500ms ease;
}

.package-card__button {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  min-height: 132px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 82px 29px 28px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  text-transform: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  border: 0;
}

.package-card a:hover .package-card__button,
.package-card a:focus-visible .package-card__button {
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.76));
}

.enquiry-section {
  padding: 86px 0;
  background: #0b0704;
}

.enquiry-section .site-container {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: 18px 76px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.enquiry-section p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.enquiry-section p:first-child {
  grid-row: 1 / span 3;
  color: #fff;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.03;
}

.enquiry-section p:first-child::before {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  content: "General Enquiry";
}

.whatsapp-cta {
  justify-self: start;
  width: auto;
  min-height: 50px;
  padding: 0 28px;
  color: var(--color-ink);
  font-size: 11px;
  background: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  color: var(--color-ink);
  background: var(--color-gold-light);
}

.why-section {
  padding: 94px 0 104px;
  background: #fff;
}

.why-section .site-container {
  display: grid;
  grid-template-columns: minmax(250px, 0.74fr) 1.4fr;
  gap: 62px;
  align-items: start;
}

.why-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  text-align: left;
  text-transform: none;
}

.why-section__title::before {
  display: block;
  margin-bottom: 15px;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  content: "Why Choose Us";
}

.why-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: none;
}

.why-item {
  grid-template-columns: 54px 1fr;
  gap: 20px;
  justify-items: start;
  align-items: start;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.why-item__icon {
  width: 54px;
  height: 54px;
  padding: 14px;
  background: var(--color-ink);
  border: 0;
  border-radius: 50%;
}

.why-item__label {
  padding-top: 3px;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.24;
}

.site-footer {
  padding: 58px 0;
  color: #fff;
  background: #0b0704;
  border: 0;
}

.site-footer__content {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

.page-hero__title {
  font-family: var(--font-display);
}

@media (max-width: 980px) {
  .primary-menu {
    border-radius: 18px;
  }

  .hero__content {
    text-align: left;
  }

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

  .package-card:nth-child(1),
  .package-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .enquiry-section .site-container,
  .why-section .site-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header__inner {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    min-height: 660px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__dots {
    right: 22px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .enquiry-section p:first-child {
    font-size: 34px;
  }

  .why-item__label {
    font-size: 18px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  color: var(--color-navy-dark);
}

.site-container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 17, 31, 0.78) 0%, rgba(3, 17, 31, 0.42) 58%, rgba(3, 17, 31, 0) 100%);
}

body:not(.home) .site-header {
  position: sticky;
  background: var(--color-navy-dark);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  width: min(1780px, calc(100% - 52px));
  margin: 0 auto;
  gap: 28px;
}

.site-branding {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
  min-width: 0;
}

.site-branding__logo {
  width: 54px;
  height: 46px;
  object-fit: contain;
}

.site-branding__name {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.site-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 22px;
}

.primary-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.primary-menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-gold-light);
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.primary-menu .current-menu-item > a::after,
.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-search {
  position: relative;
  flex: 0 0 auto;
}

.site-search__toggle,
.nav-toggle {
  display: inline-grid;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: 0;
  place-items: center;
}

.site-search__toggle svg,
.nav-toggle svg {
  width: 20px;
  height: 20px;
}

.site-search__form {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: 280px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(215, 226, 234, 0.9);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(10, 31, 52, 0.2);
}

.site-search.is-open .site-search__form {
  display: block;
}

.site-search__form input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--color-text);
  border: 1px solid var(--color-line);
  border-radius: 7px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  place-items: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 17, 31, 0.3) 0%, rgba(3, 17, 31, 0.08) 42%, rgba(3, 17, 31, 0.28) 100%),
    linear-gradient(180deg, rgba(3, 17, 31, 0.16) 0%, rgba(3, 17, 31, 0.28) 58%, rgba(3, 17, 31, 0.46) 100%);
}

.hero__slider,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slider {
  z-index: 0;
}

.hero__slide {
  background-position: center center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 6200ms ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 42px));
  padding-top: 72px;
  text-align: center;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.42);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.2vw, 84px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__subtitle {
  display: inline-block;
  margin: 24px 0 0;
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 700;
  background: rgba(3, 17, 31, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.72);
  transform: translateX(-50%);
}

.hero__scroll svg {
  width: 24px;
  height: 24px;
}

.hero__dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero__dot {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.hero__dot.is-active {
  width: 28px;
  background: #fff;
  border-radius: 999px;
}

.package-section {
  padding: 18px 0 66px;
  background: linear-gradient(180deg, #fff 0%, var(--color-surface) 100%);
}

.section-rule {
  width: min(var(--container), calc(100% - 48px));
  height: 1px;
  margin: 0 auto 34px;
  background: linear-gradient(90deg, transparent 0%, var(--color-line) 18%, var(--color-gold-light) 50%, var(--color-line) 82%, transparent 100%);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 30px;
}

.package-card {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(215, 226, 234, 0.84);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(19, 38, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  overflow: hidden;
}

.package-card:hover {
  border-color: rgba(198, 154, 74, 0.55);
  box-shadow: 0 24px 58px rgba(19, 38, 58, 0.14);
  transform: translateY(-4px);
}

.package-card__image {
  width: 100%;
  aspect-ratio: 365 / 230;
  object-fit: cover;
  background: #d8e6ef;
  transition: transform 360ms ease;
}

.package-card:hover .package-card__image {
  transform: scale(1.035);
}

.package-card__button {
  display: grid;
  min-height: 52px;
  margin: 0;
  padding: 13px 18px;
  color: var(--color-navy);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  background: #fff;
  border-top: 1px solid rgba(215, 226, 234, 0.84);
  place-items: center;
  transition: color 180ms ease, background 180ms ease;
}

.package-card a:hover .package-card__button,
.package-card a:focus-visible .package-card__button {
  color: #fff;
  background: var(--color-navy);
}

.enquiry-section {
  padding: 0 0 68px;
  background: var(--color-surface);
}

.enquiry-section .site-container {
  padding: 28px 30px 30px;
  background: #fff;
  border: 1px solid rgba(215, 226, 234, 0.84);
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(19, 38, 58, 0.07);
}

.enquiry-section p {
  max-width: 100%;
  margin: 0 0 24px;
  color: var(--color-charcoal);
  font-size: 14px;
  font-weight: 700;
}

.enquiry-section p + p {
  margin-bottom: 10px;
}

.enquiry-section p:nth-of-type(3) {
  margin-bottom: 15px;
}

.whatsapp-cta {
  display: grid;
  width: 100%;
  min-height: 48px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-navy-dark), var(--color-blue));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 0 16px 32px rgba(12, 53, 88, 0.18);
  place-items: center;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  background: var(--color-navy-dark);
}

.why-section {
  padding: 0 0 64px;
  text-align: center;
  background: var(--color-surface);
}

.why-section__title {
  margin: 0 0 35px;
  font-family: var(--font-display);
  font-size: clamp(32px, 2.8vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.why-item {
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  padding: 22px 16px 21px;
  background: #fff;
  border: 1px solid rgba(215, 226, 234, 0.84);
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(19, 38, 58, 0.06);
}

.why-item__icon {
  width: 72px;
  height: 72px;
  padding: 17px;
  object-fit: contain;
  background: #f4f5f7;
  border: 1px solid #eef0f3;
  border-radius: 8px;
}

.why-item__label {
  margin: 0;
  color: var(--color-charcoal);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.site-footer {
  padding: 34px 0 42px;
  background: #fff;
  border-top: 1px solid var(--color-line);
}

.site-footer__content {
  color: var(--color-charcoal);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  text-transform: uppercase;
}

.page-hero {
  padding: 92px 0 68px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, rgba(5, 43, 80, 0.94), rgba(46, 118, 183, 0.84));
}

.page-hero--image {
  background-position: center;
  background-size: cover;
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
}

.content-section {
  padding: 58px 0;
}

.entry-content {
  font-size: 18px;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.empty-state {
  max-width: 680px;
  margin: 0 auto;
  color: var(--color-muted);
  text-align: center;
}

.elementor-full-width-page,
.elementor-canvas-content {
  width: 100%;
  overflow-x: clip;
}

.elementor-full-width-page .elementor-section-wrap,
.elementor-canvas-content .elementor-section-wrap {
  width: 100%;
}

.elementor-page .entry-content,
.elementor-page .content-section {
  padding: 0;
}

@media (max-width: 1100px) {
  .site-header__inner {
    width: min(100% - 28px, 980px);
  }

  .primary-menu {
    gap: 18px;
  }

  .primary-menu a {
    font-size: 14px;
  }
}

@media (max-width: 860px) {
  .site-header {
    background: rgba(6, 29, 51, 0.97);
  }

  .site-header__inner {
    min-height: 62px;
  }

  .site-branding__name {
    max-width: 52vw;
    overflow: hidden;
    font-size: 17px;
    text-overflow: ellipsis;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .site-navigation {
    flex: 0 0 auto;
    gap: 6px;
  }

  .site-navigation .menu-primary-container,
  .site-navigation > ul {
    position: absolute;
    top: 62px;
    right: 14px;
    left: 14px;
    display: none;
    padding: 10px 18px 16px;
    background: rgba(6, 29, 51, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  }

  .site-navigation.is-open .menu-primary-container,
  .site-navigation.is-open > ul {
    display: block;
  }

  .primary-menu {
    display: grid;
    gap: 0;
  }

  .primary-menu a {
    min-height: 42px;
    width: 100%;
  }

  .primary-menu a::after {
    bottom: 0;
  }

  .site-search__form {
    right: -4px;
    width: min(260px, calc(100vw - 32px));
  }

  .hero {
    min-height: 660px;
    height: 90vh;
  }

  .hero__content {
    padding-top: 72px;
  }

  .hero__subtitle {
    margin-top: 16px;
  }

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

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

@media (max-width: 620px) {
  .site-container,
  .section-rule {
    width: min(100% - 28px, var(--container));
  }

  .site-branding__logo {
    width: 44px;
    height: 36px;
  }

  .hero {
    min-height: 580px;
    height: 84vh;
  }

  .hero__title {
    font-size: 42px;
  }

  .package-section {
    padding-bottom: 42px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .package-card__button {
    min-height: 50px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 20px;
  }

  .site-footer__content,
  .enquiry-section p {
    font-size: 14px;
  }
}

/* Final Matour direction overrides. Keep this block last. */
body {
  background: #fff;
  font-family: var(--font-body);
}

.site-header {
  background: linear-gradient(180deg, rgba(4, 8, 12, 0.48), rgba(4, 8, 12, 0));
}

.site-header__inner {
  min-height: 86px;
  width: min(1180px, calc(100% - 48px));
}

.primary-menu {
  gap: 4px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.primary-menu a {
  min-height: 34px;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-menu a::after {
  display: none;
}

.primary-menu .current-menu-item > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--color-ink);
  background: #fff;
  border-radius: 999px;
  text-shadow: none;
}

.hero {
  min-height: 760px;
  height: 100vh;
  place-items: center start;
}

.hero::after {
  background:
    radial-gradient(circle at 76% 34%, rgba(8, 13, 20, 0.02), rgba(8, 13, 20, 0.18) 34%, rgba(8, 13, 20, 0.56) 100%),
    linear-gradient(90deg, rgba(4, 7, 8, 0.82) 0%, rgba(4, 7, 8, 0.36) 46%, rgba(4, 7, 8, 0.08) 100%);
}

.hero__content {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 64px;
  text-align: left;
  text-shadow: none;
}

.hero__content::before {
  display: inline-grid;
  min-height: 34px;
  padding: 0 18px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  content: "Feel The Experience";
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  place-items: center;
}

.hero__title {
  max-width: 710px;
  font-family: var(--font-display);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 700;
  line-height: 0.98;
}

.hero__subtitle {
  display: block;
  max-width: 620px;
  padding: 0;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.hero__subtitle::after {
  display: grid;
  width: 154px;
  min-height: 48px;
  margin-top: 30px;
  color: var(--color-ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  content: "View Packages";
  background: #fff;
  border-radius: 999px;
  place-items: center;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.hero__dots {
  right: min(52px, 4vw);
  bottom: auto;
  left: auto;
  top: 50%;
  flex-direction: column;
  transform: translateY(-50%);
}

.hero__dot,
.hero__dot.is-active {
  width: 8px;
  height: 34px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.hero__dot.is-active {
  background: #fff;
}

.package-section {
  padding: 86px 0 92px;
  background: #fff;
}

.section-rule {
  display: none;
}

.package-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-auto-rows: 245px;
  gap: 28px;
}

.package-card {
  position: relative;
  min-height: 245px;
  background: transparent;
  border: 0;
  border-radius: 18px;
  box-shadow: none;
  overflow: hidden;
}

.package-card:nth-child(1) {
  grid-row: span 2;
}

.package-card:nth-child(6) {
  grid-column: span 2;
}

.package-card a {
  position: relative;
  display: block;
  height: 100%;
  min-height: inherit;
  color: #fff;
}

.package-card a::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  font-size: 20px;
  content: "↗";
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  place-items: center;
}

.package-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.package-card__button {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  min-height: 132px;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 82px 29px 28px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
  text-transform: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72));
  border: 0;
}

.package-card a:hover .package-card__button,
.package-card a:focus-visible .package-card__button {
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.76));
}

.enquiry-section {
  padding: 86px 0;
  background: #0b0704;
}

.enquiry-section .site-container {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: 18px 76px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.enquiry-section p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.enquiry-section p:first-child {
  grid-row: 1 / span 3;
  color: #fff;
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 700;
  line-height: 1.03;
}

.enquiry-section p:first-child::before {
  display: block;
  margin-bottom: 12px;
  color: var(--color-gold-light);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  content: "General Enquiry";
}

.whatsapp-cta {
  justify-self: start;
  width: auto;
  min-height: 50px;
  padding: 0 28px;
  color: var(--color-ink);
  font-size: 11px;
  background: #fff;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.why-section {
  padding: 94px 0 104px;
  background: #fff;
}

.why-section .site-container {
  display: grid;
  grid-template-columns: minmax(250px, 0.74fr) 1.4fr;
  gap: 62px;
  align-items: start;
}

.why-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  text-align: left;
  text-transform: none;
}

.why-section__title::before {
  display: block;
  margin-bottom: 15px;
  color: var(--color-teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  content: "Why Choose Us";
}

.why-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: none;
}

.why-item {
  grid-template-columns: 54px 1fr;
  gap: 20px;
  justify-items: start;
  align-items: start;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.why-item__icon {
  width: 54px;
  height: 54px;
  padding: 14px;
  background: var(--color-ink);
  border: 0;
  border-radius: 50%;
}

.why-item__label {
  padding-top: 3px;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.24;
}

.site-footer {
  padding: 58px 0;
  color: #fff;
  background: #0b0704;
  border: 0;
}

.site-footer__content {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-card:nth-child(1),
  .package-card:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .enquiry-section .site-container,
  .why-section .site-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 660px;
  }

  .hero__title {
    font-size: 48px;
  }

  .package-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }
}
