:root {
  --bg: #ffffff;
  --surface: #f6fbf8;
  --surface-strong: #e8f4ee;
  --text: #181d2f;
  --muted: #4a4a4a;
  --primary: #0070c0;
  --primary-dark: #003366;
  --accent: #0070c0;
  --gold: #d6a833;
  --line: #d8e5de;
  --footer: #181d2f;
  --shadow: 0 16px 38px rgba(24, 29, 47, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.18;
  margin: 0 0 1rem;
}

h1 {
  font-size: 2.85rem;
}

h2 {
  font-size: 2rem;
  text-align: center;
}

h3 {
  font-size: 1.15rem;
  text-align: center;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.muted {
  color: var(--muted);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(32, 52, 47, 0.08);
  backdrop-filter: blur(12px);
}

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.topbar-text {
  margin: 0;
  font-weight: 700;
  color: var(--primary-dark);
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-links a:hover {
  color: var(--primary-dark);
}


.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 78px;
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
}

.whatsapp-btn {
  background: #25d366 !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 162px;
  height: auto;
}

.site-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-sep {
  display: inline-flex;
  color: #b0c4bc;
  padding: 0 0.1rem;
  font-size: 0.85rem;
  user-select: none;
}

.centered-menu {
  flex: 1;
  justify-content: center;
}

.nav-link,
.menu-trigger {
  gap: 0.15rem;
  align-items: center;
  gap: 0.35rem;
  min-height: 34px;
  padding: 0.28rem 0.28rem;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  letter-spacing: 0;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.menu-trigger:hover,
.menu-trigger:focus-visible {
  color: var(--primary);
  background: rgba(0, 112, 192, 0.08);
  outline: none;
}

.has-menu {
  position: relative;
}

.menu-trigger::after {
}
.menu-trigger.no-arrow::after {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  z-index: 10;
  display: grid;
  min-width: 235px;
  padding: 0.45rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.has-menu:hover .dropdown-menu,
.has-menu:focus-within .dropdown-menu,
.has-menu.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.62rem 0.72rem;
  color: var(--text);
  border-radius: 6px;
  font-weight: 700;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  color: var(--primary-dark);
  background: var(--surface);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.72rem 1.05rem;
  color: var(--text);
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline {
  color: var(--primary-dark);
  background: transparent;
  border-color: var(--primary);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  color: #ffffff;
  background: var(--primary);
}

.btn-light {
  color: var(--footer);
  background: #ffffff;
  border-color: #ffffff;
}

.nav-cta {
  margin-left: 0.35rem;
  margin-right: 0.35rem;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  color: #ffffff;
  padding: 6.6rem 0 6rem;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 33, 30, 0.52);
}
.hero-slide.active {
  opacity: 1;
}
.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.hero-cta {
  font-size: 1.15rem;
  padding: 0.85rem 2.2rem;
}

.hero h1 {
  max-width: 820px;
  color: #ffffff;
  font-size: 3rem;
}

.hero p {
  max-width: 690px;
  color: #eef8f4;
  font-size: 1.15rem;
}

.hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.82);
}

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible {
  color: var(--text);
  background: #ffffff;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  color: var(--footer);
  background: #ffffff;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hero-signup {
  margin-top: 1.8rem;
  max-width: 760px;
}

.hero-signup-copy {
  color: #eef8f4;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 700px;
}

.hero-signup-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-signup-row input[type="email"] {
  flex: 1 1 260px;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-signup-row input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-signup .muted {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.73);
}

.hero-signup-row button {
  min-width: 170px;
}


.section {
  padding: 4.25rem 0;
}

main.section {
  min-height: 52vh;
}

.section h1 {
  margin-bottom: 0.85rem;
}

.section h2 {
  margin-bottom: 1.35rem;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.section-header h2 {
  margin-bottom: 0;
}

.card-body h3 {
  text-align: center;
}

.card-body .muted {
  text-align: center;
}

.slider-controls {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}

.slider-btn {
  min-height: 38px;
  padding: 0.45rem 0.8rem;
  color: var(--primary-dark);
  background: #ffffff;
  border: 1px solid var(--primary);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  color: #ffffff;
  background: var(--primary);
  outline: none;
}

.section section {
  margin-top: 2rem;
}

.grid {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}

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

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

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

.city-tour-slider {
  overflow: hidden;
  position: relative;
}
.city-tour-track {
  display: flex;
  gap: 1.15rem;
  transition: transform .5s ease;
}
.city-tour-track .card {
  flex: 0 0 calc((100% - 3.45rem) / 4);
  min-width: 0;
}
.city-tour-track + .city-tour-track {
  margin-top: 1.15rem;
}

.tour-package-section {
  padding-top: 3.4rem;
}

.package-grid {
  align-items: stretch;
}

.package-grid .card {
  height: 370px;
}

.package-grid .card img {
  height: 220px;
}

.package-grid .card-body {
  display: flex;
  min-height: 150px;
  flex-direction: column;
}

.package-grid .card-body p {
  margin-bottom: 0;
}

.package-slider {
  overflow: hidden;
  position: relative;
}
.package-track {
  display: flex;
  gap: 1.15rem;
  transition: transform .5s ease;
}
.package-track + .package-track {
  margin-top: 1.15rem;
}
.package-track .card {
  flex: 0 0 calc((100% - 3.45rem) / 4);
  min-width: 0;
}
.package-track .card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.section-lead {
  max-width: 760px;
  margin: -0.45rem auto 1.35rem;
  color: var(--muted);
  text-align: center;
}

.blog-section {
  background: #f8fafc;
}

.blog-feature-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.14fr 0.88fr;
  gap: 1.15rem;
  align-items: stretch;
}

.blog-stack {
  display: grid;
  gap: 1.15rem;
}

.blog-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(32, 52, 47, 0.09);
}

.blog-post-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.blog-post-card.featured img {
  height: 292px;
}

.blog-post-card.compact {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  min-height: 172px;
}

.blog-post-card.compact img {
  height: 100%;
}

.blog-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 1rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.blog-post-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.blog-post-card.featured h3 {
  font-size: 1.25rem;
}

.blog-post-card p {
  margin-bottom: 0.9rem;
  color: var(--muted);
}

.read-link {
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 900;
}

.read-link:hover,
.read-link:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.blog-home-grid .card-body,
.blog-directory-card .card-body {
  display: flex;
  min-width: 0;
  min-height: 212px;
  flex-direction: column;
}

.blog-home-grid .card img,
.blog-directory-card img {
  height: 248px;
}

.blog-hero {
  padding: 3.2rem 0 2.4rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.article-kicker {
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.article-meta-row span {
  padding: 0.32rem 0.72rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.56fr);
  gap: 1.5rem;
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-content section + section {
  margin-top: 2.25rem;
}

.article-content p,
.article-content li {
  color: #30443d;
}

.article-content a,
.article-panel a {
  color: var(--primary-dark);
  font-weight: 800;
}

.article-content a:hover,
.article-content a:focus-visible,
.article-panel a:hover,
.article-panel a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-image {
  margin: 1.45rem 0 1.9rem;
}

.article-image img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(32, 52, 47, 0.09);
}

.article-image figcaption {
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-panel {
  position: sticky;
  top: 92px;
  padding: 1.2rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(32, 52, 47, 0.08);
}

.article-panel h2,
.article-panel h3 {
  margin-bottom: 0.8rem;
}

.article-panel ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
}

.article-panel li + li {
  margin-top: 0.55rem;
}

.article-panel .btn {
  width: 100%;
}

.article-callout {
  margin-top: 2.25rem;
  padding: 1.4rem;
  background: #eef7f3;
  border: 1px solid #cfe3db;
  border-radius: 8px;
}

.article-callout h2 {
  margin-bottom: 0.75rem;
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.blog-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.blog-quick-links {
  background: #f8fafc;
}

.hotel-partner-section {
  background: #ffffff;
}

.hotel-partner-grid {
  align-items: stretch;
}

.hotel-card {
  display: flex;
  min-height: 214px;
  min-width: 0;
  flex-direction: column;
  padding: 1.15rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32, 52, 47, 0.08);
}

.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.hotel-card h3 {
  margin-bottom: 0.35rem;
}

.hotel-rating {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.65rem;
  padding: 0.25rem 0.55rem;
  color: var(--primary-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
}

.hotel-area {
  margin-bottom: 0.55rem;
  color: var(--text);
  font-weight: 800;
}

.hotel-list {
  margin: auto 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.hotel-list li {
  margin-bottom: 0.25rem;
}

.hotel-cta {
  margin-top: 1rem;
}

.hotel-cta .read-link {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 700;
}

.hotel-page-hero {
  position: relative;
  padding: 4.6rem 0 4rem;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hotel-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 34, 68, 0.84), rgba(0, 72, 122, 0.58));
}

.hotel-page-hero .container {
  position: relative;
  z-index: 1;
}

.hotel-page-hero h1,
.hotel-page-hero h2,
.hotel-page-hero h3,
.hotel-page-hero p {
  color: #ffffff;
}

.hotel-hero-dubai {
  background-image: url("../images/banner/banner-d.png");
}

.hotel-hero-singapore {
  background-image: url("../images/banner/web-banner-singapore.jpg");
}

.hotel-hero-malaysia {
  background-image: url("../images/banner/web-banner-malaysia.jpg");
}

.hotel-hero-bali {
  background-image: url("../images/bali/attractions/bali-attractions-3.jpg");
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.42rem 0.8rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy p {
  max-width: 690px;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hotel-page-hero .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.hotel-page-hero .btn-outline:hover,
.hotel-page-hero .btn-outline:focus-visible {
  color: var(--primary-dark);
  background: #ffffff;
  border-color: #ffffff;
}

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

.info-card,
.mini-card,
.cta-panel {
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32, 52, 47, 0.08);
}

.info-card strong {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--primary-dark);
  font-size: 1rem;
}

.info-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 1.2rem;
  align-items: start;
}

.mini-card h3 {
  margin-bottom: 0.45rem;
}

.mini-card p:last-child,
.cta-panel p:last-child {
  margin-bottom: 0;
}

.mini-card .read-link {
  display: inline-block;
  margin-top: 0.75rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 0.45rem 0.72rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.hotel-page-grid .hotel-card {
  min-height: 100%;
}

.hotel-page-grid .hotel-card p {
  color: var(--muted);
}

.hotel-page-grid .hotel-card .read-link {
  display: inline-block;
  margin-top: 0.75rem;
}

.link-grid {
  align-items: stretch;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, #eef7fb, #ffffff);
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hotel-slider {
  overflow: hidden;
  position: relative;
}
.hotel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s ease;
}
.hotel-track .hotel-card {
  flex: 0 0 calc((100% - 4.5rem) / 4);
  min-width: 0;
}
.hotel-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32, 52, 47, 0.08);
}
.hotel-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.hotel-card-body {
  padding: 1rem 1.15rem;
  text-align: center;
}
.hotel-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.hotel-star {
  color: #f5a623;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.hotel-card-body .muted {
  font-size: 0.85rem;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s ease;
}
.testimonial-track .testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

.testimonial-grid {
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  min-height: 230px;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32, 52, 47, 0.08);
}

.testimonial-card p:last-child {
  margin-bottom: 0;
}

.testimonial-name {
  color: var(--text);
  font-weight: 900;
}

.why-choose-grid {
  align-items: stretch;
}

.why-card {
  min-height: 178px;
  padding: 1.15rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--primary);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32, 52, 47, 0.08);
}

.why-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  background: #f8fafc;
}

.faq-shell {
  display: grid;
  gap: 1rem;
}

.faq-group {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32, 52, 47, 0.08);
}

.faq-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-group summary::-webkit-details-marker {
  display: none;
}

.faq-group summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--primary-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-group[open] summary::after {
  content: "-";
}

.faq-group-body {
  display: grid;
  gap: 0.85rem;
  padding: 0 1.15rem 1.15rem;
}

.faq-item {
  padding: 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  text-align: left;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-item .muted {
  text-align: left;
}

.faq-item ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.faq-note {
  padding: 0.8rem 0.95rem;
  color: var(--text);
  background: var(--surface);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.faq-note p {
  margin-bottom: 0;
}

.destination-slider {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.destination-slider .card {
  flex: 0 0 calc((100% - 3.45rem) / 4);
  scroll-snap-align: start;
}

.destination-slider .card img {
  height: 190px;
}

.destination-slider::-webkit-scrollbar {
  height: 8px;
}

.destination-slider::-webkit-scrollbar-track {
  background: var(--surface);
  border-radius: 8px;
}

.destination-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

a.card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
a.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(32,52,47,.12);
}

.card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32, 52, 47, 0.08);
}

.card img {
  width: 100%;
  height: 220px;
  aspect-ratio: auto;
  object-fit: cover;
  flex: 0 0 auto;
}

.grid-4 .card img {
  height: 190px;
}

.card-body,
.card.card-body {
  padding: 1.15rem;
}

.card h3 {
  margin-bottom: 0.6rem;
}

.card .btn {
  margin-top: 0.2rem;
}

.list {
  margin: 0;
  padding-left: 1.15rem;
}

.list li {
  margin-bottom: 0.55rem;
}

.testimonial {
  border-left: 4px solid var(--accent);
}

.partner-cta {
  padding: 2.2rem;
  color: #ffffff;
  background: var(--footer);
  border-radius: 8px;
}

.partner-cta h2,
.partner-cta p {
  color: #ffffff;
}

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

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

label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.78rem 0.85rem;
  color: var(--text);
  background: #ffffff;
  border: 1px solid #bdcec6;
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  outline: 3px solid rgba(0, 143, 138, 0.16);
}

.error-note {
  color: #b5422b;
  font-size: 0.9rem;
}

.site-footer {
  color: #d9e5df;
  background: var(--footer);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
  gap: 2rem;
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 520px;
  color: #d9e5df;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  font-weight: 800;
}

.footer-action {
  align-self: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.footer-action p {
  color: #ffffff;
  font-weight: 800;
}

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

.site-footer h3 {
  color: #ffffff;
  font-size: 1rem;
  text-align: left;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.site-footer a {
  color: #d9e5df;
}

.site-footer .btn-light {
  color: var(--footer);
  background: #ffffff;
  border-color: #ffffff;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  color: #c1d1ca;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

/* About Us page */
.about-hero {
  padding: 5rem 0 4rem;
  color: #ffffff;
  background: linear-gradient(rgba(18, 33, 30, 0.6), rgba(18, 33, 30, 0.6)), url("../images/about-us.jpg") center/cover no-repeat;
  text-align: center;
}
.about-hero h1 {
  max-width: 820px;
  margin: 0 auto 1.2rem;
  font-size: 2.4rem;
  color: #ffffff;
}
.about-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #eef8f4;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2.5rem;
  align-items: center;
}
.about-intro-text p {
  text-align: left;
}
.about-intro-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(32,52,47,0.10);
}
.about-stat-card {
  padding: 1.5rem 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32,52,47,0.08);
  text-align: center;
}
.about-stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
}
.about-stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.about-step {
  padding: 1.5rem 1.15rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(32,52,47,0.08);
  text-align: center;
}
.about-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  background: var(--primary);
  border-radius: 50%;
}
.about-step p {
  margin-bottom: 0;
  color: var(--muted);
  text-align: center;
}
.about-cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #ffffff;
}
.about-cta-section h2 {
  color: #ffffff;
}
.about-cta-section .section-lead {
  color: #eef8f4;
}
.about-cta-section .btn-primary {
  background: #ffffff;
  color: var(--primary-dark);
  font-size: 1.1rem;
  padding: 0.85rem 2.5rem;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  background: #25d366;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 32, 31, 0.24);
  font-size: 1.4rem;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .brand img {
    width: 148px;
  }

  .site-nav {
    font-size: 0.9rem;
  }

  .nav-link,
  .menu-trigger {
    padding: 0.5rem 0.62rem;
  }
}

@media (max-width: 980px) {
  .testimonial-track .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
  .hotel-track .hotel-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
  .city-tour-track .card {
    flex: 0 0 calc((100% - 1.15rem) / 2);
  }
  .about-intro-grid {
    grid-template-columns: 1fr;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
  .package-track .card {
    flex: 0 0 calc((100% - 1.15rem) / 2);
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .topbar-inner {
    min-height: 36px;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-sep {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 70px);
    overflow: auto;
    align-items: stretch;
    padding: 1rem;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(32, 52, 47, 0.12);
  }

  .site-nav.open {
    display: grid;
    gap: 0.45rem;
  }

  .nav-link,
  .menu-trigger,
  .nav-cta {
    width: 100%;
    justify-content: space-between;
    min-height: 38px;
    padding: 0.45rem 0.55rem;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.25rem 0 0.55rem;
    padding: 0.4rem;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-menu:hover .dropdown-menu,
  .has-menu:focus-within .dropdown-menu {
    display: none;
  }

  .has-menu.open .dropdown-menu {
    display: grid;
  }

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

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

  .blog-feature-layout {
    grid-template-columns: 1fr;
  }

  .blog-directory-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .blog-post-card.compact {
    grid-template-columns: 1fr;
  }

  .blog-post-card.compact img {
    height: 180px;
  }

  .article-panel {
    position: static;
    top: auto;
  }

  .destination-slider .card {
    flex-basis: calc((100% - 1.15rem) / 2);
  }

  .package-grid .card {
    height: 370px;
  }

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

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

  .content-split {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .testimonial-track .testimonial-card {
    flex: 0 0 100%;
  }
  .hotel-track .hotel-card {
    flex: 0 0 100%;
  }
  .city-tour-track .card {
    flex: 0 0 100%;
  }
  .about-intro-img {
    max-width: 320px;
    margin: 0 auto;
  }
  .about-hero {
    padding: 3.5rem 0 3rem;
  }
  .package-track .card {
    flex: 0 0 100%;
  }

  .container {
    width: min(100% - 2rem, 1160px);
  }

  .topbar {
    display: none;
  }

  .site-nav {
    max-height: calc(100vh - 70px);
  }

  .hero {
    min-height: 520px;
    padding: 5rem 0 4.4rem;
  }

  .hero h1 {
    font-size: 2.15rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .lead-form,
  .blog-stack,
  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .blog-post-card.featured img,
  .blog-post-card.compact img,
  .blog-post-card img {
    height: 210px;
  }

  .blog-home-grid .card img,
  .blog-directory-card img,
  .article-image img {
    height: 220px;
    max-height: none;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .destination-slider .card {
    flex-basis: min(82vw, 320px);
  }

  .card img,
  .grid-4 .card img {
    height: 220px;
  }

  .package-grid .card {
    height: 360px;
  }

  .package-grid .card img {
    height: 210px;
  }

  .info-band {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-panel-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-panel-actions .btn {
    width: 100%;
  }

  .footer-bottom,
  .footer-contact,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* ── Contact page layout ── */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-form-col {
  flex: 2 1 340px;
  min-width: 0;
}

.contact-aside {
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 340px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(32, 52, 47, 0.08);
  padding: 2rem 1.5rem;
  margin-top: 1.5rem;
}

.contact-aside h2 {
  margin-top: 0;
  border-bottom: 2px solid #d8e5de;
  padding-bottom: 0.3rem;
  font-size: 1.3rem;
}

@media (max-width: 980px) {
  .contact-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .contact-aside {
    max-width: 100%;
    min-width: 0;
    margin-top: 0;
  }

  .nav-link,
  .menu-trigger {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  .contact-container {
    gap: 1rem;
  }

  .contact-aside {
    padding: 1.5rem 1rem;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .hero-cta {
    font-size: 1rem;
    padding: 0.72rem 1.5rem;
    width: auto;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }
}
