/* --------------------------------------------------
  Base
-------------------------------------------------- */
:root {
  --accent: #f59e72;
  --accent-600: #f38a60;
  --ink: #0f172a; /* title */
  --text: #334155; /* body */
  --muted: #6b7280;
  --line: #f1e5db; /* soft card border like screenshot */
  --card: #ffffff;
  --bg: #ffffff;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --topbar-h: 60px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
}
.btn.ghost {
  border-color: #dbe3ea;
  background: #fff;
  color: #0f172a;
}
.btn.solid {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn.cta {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(245, 158, 114, 0.35);
}
.btn.small {
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
}
/* icon spacing inside buttons */
.btn i {
  margin-right: 8px;
  font-size: 16px;
}

/* --------------------------------------------------
  Topbar
-------------------------------------------------- */
/* language switcher (capsule) */
.language-switcher {
  display: inline-flex;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 4px;
}
.lang-btn {
  text-decoration: none;
  color: #475569;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
}
.lang-btn.active {
  background: var(--accent);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  margin-left: 10px;
  height: 36px;
  width: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
}
/* mobile dropdown panel */
@media (max-width: 640px) {
  .main-nav {
    position: absolute;
    top: var(--topbar-h);
    right: 12px;
    display: none;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(2, 8, 20, 0.12);
    padding: 10px;
    z-index: 80;
  }
  .main-nav.open {
    display: block;
  }
  .main-nav .nav-list {
    flex-direction: column;
    gap: 8px;
  }
  .main-nav a {
    padding: 8px 10px;
    display: block;
    border-radius: 8px;
  }
  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
  }
}
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
  border-bottom: 1px solid transparent;
}
.topbar .container {
  padding: 10px 24px;
}
.tb-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}
.topbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom-color: #eef2f7;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: calc(var(--topbar-h) - 20px);
}
.brand-img {
  height: 100%;
  width: auto;
  display: block;
}
.tb-center {
  justify-self: center;
}
.main-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
}
.main-nav a.active {
  color: var(--accent);
}
.tb-right {
  justify-self: end;
}
/* language select dropdown */
.lang-select {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 40px;
  min-width: 150px;
  padding: 0 40px 0 14px;
  border: 1px solid #cfe3e8;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f6feff 100%);
  color: #0f172a;
  font-weight: 700;
  line-height: 40px;
  box-shadow: 0 2px 8px rgba(23, 198, 207, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.lang-select i {
  position: absolute;
  right: 12px;
  font-size: 12px;
  color: #12b3bd;
  pointer-events: none;
  transition: transform 0.2s ease, color 0.2s ease;
}
.lang-select:focus-within i {
  transform: rotate(180deg);
  color: var(--accent);
}
.lang-switch {
  height: auto;
  padding: 8px 18px;
  border-radius: 999px; /* capsule */
  border: 1px solid #dbe3ea;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
}

/* language dropdown (custom) */
.lang-dd {
  position: relative;
  display: inline-block;
}
.dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #cfe3e8;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f6feff 100%);
  color: #0f172a;
  font-weight: 700;
  line-height: 40px;
  box-shadow: 0 2px 8px rgba(23, 198, 207, 0.12);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.dd-btn .fa-globe {
  color: var(--accent);
}
.dd-btn .chevron {
  font-size: 12px;
  color: var(--accent);
  transition: transform 0.2s ease, color 0.2s ease;
}
.dd-btn[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
  color: var(--accent);
}
.dd-menu {
  position: absolute;
  right: 0;
  top: calc(100% - 10px);
  width: 100%;
  padding: 6px;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(2, 8, 20, 0.12);
  display: none;
  z-index: 60;
}
.dd-menu.open {
  display: block;
}
.dd-menu li {
  list-style: none;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
}
.dd-menu li:hover {
  background: #f0fdfd;
}
.dd-menu li[aria-selected="true"] {
  background: #e6fbfd;
  color: #0f172a;
}

/* --------------------------------------------------
  Hero
-------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  color: #0b1220;
  background: url("../images/index/1.webp") center/cover no-repeat;
}
.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.7) 32%,
    rgba(255, 255, 255, 0.3) 100%
  );
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-inner {
  padding: 0 0 56px;
}
.eyebrow {
  margin: 0 0 8px;
  color: #6b7280;
  font-weight: 600;
}
.hero-title {
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
  font-size: 48px;
}
.hero-desc {
  max-width: 720px;
}

.search-bar {
  margin: 28px 0 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  max-width: 860px;
}
.field {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 6px;
}
.field input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  color: #0f172a;
}

/* --------------------------------------------------
  Section general
-------------------------------------------------- */
.section {
  padding: 72px 0;
}
.section-title {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 22px;
  font-size: 34px;
}
.section-sub {
  max-width: 780px;
  margin: 0 auto 28px;
  color: #6b7280;
  text-align: center;
}
.center {
  text-align: center;
}

/* --------------------------------------------------
  Features
-------------------------------------------------- */
.features {
  padding-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 22px;
}
.feature-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.04);
}
.feature-card .icon {
  font-size: 36px;
  margin-bottom: 10px;
  color: #f59e72;
}
.feature-card h3 {
  margin: 4px 0 10px;
  font-size: 18px;
  color: #0f172a;
}
.feature-card p {
  margin: 0;
  color: #6b7280;
}

/* --------------------------------------------------
  Discount / Attractive places
-------------------------------------------------- */
.discount {
  background: #fff;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}
.promo-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(2, 8, 20, 0.06);
  border: 1px solid #eef2f7;
  background: #fff;
}
.promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(23, 198, 207, 0.35);
}

/* --------------------------------------------------
  Explore (products)
-------------------------------------------------- */
.explore {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 30%, #ffffff 100%);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.travel-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  box-shadow: 0 6px 16px rgba(2, 8, 20, 0.05);
}
.travel-card .thumb {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.travel-card .content {
  padding: 14px 14px 18px;
}
.travel-card h4 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #0f172a;
  line-height: 1.35;
}
.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
  margin: 0 0 10px;
}
.rating .stars {
  color: #f59e0b;
  display: inline-flex;
  gap: 2px;
}
.rating .count {
  color: #6b7280;
}
.price {
  font-weight: 700;
  color: #0f172a;
}

/* --------------------------------------------------
  Testimonials
-------------------------------------------------- */
.testimonials .slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials .nav {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 18px;
  cursor: pointer;
}
.slides {
  overflow: hidden;
  position: relative;
  flex: 1;
}
.slides .tcard {
  min-width: 100%;
  transition: transform 0.45s ease, opacity 0.45s ease;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  padding: 22px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.slides .tcard:nth-child(2) {
  transform: translateX(105%);
}
.slides .tcard:nth-child(3) {
  transform: translateX(210%);
}
.slides .tcard.active {
  opacity: 1;
  position: relative;
  transform: none;
}
.ratings {
  color: #f59e0b;
  font-size: 18px;
}
.tcard h4 {
  margin: 6px 0 6px;
  color: #0f172a;
}
.tcard p {
  margin: 0 0 14px;
  color: #6b7280;
}
.person {
  display: flex;
  gap: 12px;
  align-items: center;
}
.person img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.person .name {
  font-weight: 700;
  color: #0f172a;
}
.person .role {
  font-size: 12px;
  color: #6b7280;
}

/* --------------------------------------------------
  Testimonials (new)
-------------------------------------------------- */
.section-title.left {
  text-align: left;
}
.t-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.t-nav {
  display: flex;
  gap: 8px;
}
.t-btn {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #0f172a;
  cursor: pointer;
}
.trow {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-behavior: smooth;
}
.trow::-webkit-scrollbar {
  height: 6px;
}
.trow::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 999px;
}
.tcard {
  background: #fffaf6; /* even lighter orange */
  border: none;
  border-radius: 14px;
  box-shadow: none;
  padding: 18px;
}
.tcard h4 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #0f172a;
}
.tcard p {
  margin: 0 0 12px;
  color: #6b7280;
}
.t-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  margin: 8px 0;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f59e72;
  display: inline-block;
}
/* wide first card */
.tcard.wide {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.tcard.wide .t-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.tcard.wide .t-media img {
  max-width: 90%;
  max-height: 90%;
  height: auto;
  width: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.tcard.wide .t-content {
  padding: 18px;
}

@media (max-width: 1024px) {
  .trow {
    grid-template-columns: 1fr 1fr;
  }
  .tcard.wide {
    grid-template-columns: 1fr;
  }
  .tcard.wide .t-media img {
    height: 180px;
  }
}
@media (max-width: 640px) {
  .trow {
    grid-template-columns: 80% 80% 80%;
  }
}

/* --------------------------------------------------
  Newsletter
-------------------------------------------------- */
.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}
.newsletter .section-title {
  text-align: left;
}
.newsletter .copy p {
  color: #6b7280;
}
.subscribe {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.subscribe input {
  flex: 1;
  height: 46px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  padding: 0 12px;
  font-size: 14px;
}
.preview img {
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* --------------------------------------------------
  Footer
-------------------------------------------------- */
.footer {
  margin-top: 56px;
  background: #f8fafc;
  border-top: 1px solid #eef2f7;
  color: #475569;
}
.footer-inner {
  padding: 40px 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.f-col h5 {
  margin: 0 0 10px;
  color: #0f172a;
}
.f-col a {
  color: #475569;
  text-decoration: none;
}
.f-col .quick-links,
.f-col .contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.quick-links li a:hover {
  color: var(--accent);
}
.contact-info li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.contact-info i {
  color: var(--accent);
  margin-top: 3px;
}
.quick-message-form .form-group {
  margin-bottom: 10px;
  position: relative;
}
.quick-message-form input,
.quick-message-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
}
.quick-message-form input[type="tel"] {
  padding-left: 52px;
}
.phone-error-message {
  color: #ef4444;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}
/* subfooter */
.footer-copy {
  border-top: 1px solid #eef2f7; /* same as main footer */
  background: #f8fafc; /* keep background consistent */
  padding: 14px 0;
  font-size: 14px;
  color: #64748b;
}
.footer-copy .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-left: 24px;
  padding-right: 24px;
}
/* Back to top */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  cursor: pointer;
}
/* Success modal */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 20, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.success-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  width: min(92vw, 420px);
  text-align: center;
  box-shadow: var(--shadow);
}
.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-weight: 800;
}

/* Success modal button */
.success-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 158, 114, 0.35);
  width: 100%;
  margin-top: 8px;
}
.success-btn:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
}
.success-btn:focus {
  outline: 2px solid rgba(245, 158, 114, 0.35);
  outline-offset: 2px;
}

/* International Tel Input (intl-tel-input) Styles */
.iti {
  display: block;
  width: 100% !important;
}
.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}
.iti__selected-flag {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0 0 8px;
}
.iti__country-list {
  position: absolute;
  z-index: 2;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0 0 0 -1px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  border: 1px solid #ccc;
  white-space: nowrap;
  max-height: 200px;
  overflow-y: scroll;
  border-radius: 8px;
}
.iti__country-list::-webkit-scrollbar {
  width: 6px;
}
.iti__country-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.iti__country {
  padding: 5px 10px;
  outline: none;
}
.iti__country:hover,
.iti__country.iti__highlight {
  background-color: #f5f5f5;
}
.iti__flag-box {
  display: inline-block;
  width: 20px;
}
.iti__country-name,
.iti__dial-code {
  vertical-align: middle;
}
.iti__country-name {
  margin-right: 6px;
}
.iti__hide {
  display: none;
}
.iti__v-hide {
  visibility: hidden;
}
.iti input[type="tel"],
.iti input[type="text"] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

@media (max-width: 800px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------
  Sub Pages
-------------------------------------------------- */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #0f172a;
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.7) 32%,
    rgba(255, 255, 255, 0.3) 100%
  );
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
  padding: 80px 20px 40px;
}
.page-header h1 {
  font-size: 42px;
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
}
.page-header p {
  font-size: 18px;
  opacity: 0.95;
}
/* Gallery grid */
.gallery-section,
.travel-gallery-section,
.video-gallery-section {
  padding: 60px 0;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: translateY(-5px);
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
/* Travel gallery */
.travel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.travel-gallery-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s;
}
.travel-gallery-item:hover {
  transform: translateY(-5px);
}
.travel-image-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f5f5f5;
}
.travel-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.travel-gallery-item:hover .travel-image-wrapper img {
  transform: scale(1.05);
}
.travel-review {
  padding: 16px;
}
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.review-author .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
/* Video gallery */
.video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.video-gallery-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s;
}
.video-gallery-item:hover {
  transform: translateY(-5px);
}
.video-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #000;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* Contact page */
.contact-section {
  padding: 60px 0;
  background: #fff;
}
.contact-content {
  max-width: 900px;
  margin: 0 auto;
}
.contact-info-main {
  margin-bottom: 40px;
}
.contact-info-main .section-title {
  font-size: 36px;
  margin-bottom: 10px;
}
.contact-info-main .section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 0;
}
.contact-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.contact-items .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #eef2f7;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s;
}
.contact-items .contact-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.contact-items .contact-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f172a;
}
.contact-details p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}
.qr-code img {
  border: 2px solid #eef2f7;
  border-radius: 10px;
}
/* About page */
.about-section {
  padding: 60px 0;
  background: #fff;
}
.about-content-page {
  max-width: 900px;
  margin: 0 auto;
}
.about-text .section-title {
  font-size: 36px;
  margin-bottom: 24px;
  color: #0f172a;
}
.about-description {
  margin-bottom: 40px;
}
.about-description p {
  font-size: 16px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 16px;
  text-align: justify;
}
.company-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.company-features .feature-item {
  padding: 24px;
  background: #f8fafc;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #eef2f7;
  transition: transform 0.3s;
}
.company-features .feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}
.company-features .feature-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 12px;
}
.company-features h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0f172a;
}
.company-features p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.license-section {
  margin-top: 40px;
}
.license-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #0f172a;
  text-align: center;
}
.license-container {
  background: #f8fafc;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}
.license-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* --------------------------------------------------
  Responsive
-------------------------------------------------- */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .hero-title {
    font-size: 38px;
  }
  .search-bar {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  /* global container padding for mobile */
  .container {
    padding: 0 16px;
  }
  .topbar .container {
    padding: 10px 16px;
  }
  .footer-copy .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .promo-grid {
    grid-template-columns: 1fr;
  }
  .search-bar {
    grid-template-columns: 1fr;
  }
  .brand-img {
    height: 100%;
  }
  .gallery-grid,
  .travel-gallery-grid,
  .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .contact-items {
    grid-template-columns: 1fr;
  }
  .company-features {
    grid-template-columns: 1fr;
  }
  .page-header h1 {
    font-size: 32px;
  }
}
