:root {
  --bg: #f7f4ee;
  --bg-soft: #fcfaf6;
  --bg-deep: #f1ece3;
  --surface: #ffffff;
  --surface-2: #fdfbf7;
  --surface-3: #f7f2e9;

  --line: rgba(15, 23, 32, 0.08);
  --line-strong: rgba(15, 23, 32, 0.14);

  --text: #17212b;
  --text-soft: #3a4755;
  --muted: #667085;

  --primary: #12372a;
  --primary-2: #1f5a44;
  --accent: #c8a96b;
  --gold: #c8a96b;
  --gold-soft: #eadfc7;
  --dark: #0f1720;

  --danger: #b42318;
  --success: #067647;

  --shadow-sm: 0 8px 24px rgba(15, 23, 32, 0.06);
  --shadow-md: 0 18px 44px rgba(15, 23, 32, 0.09);
  --shadow-lg: 0 28px 80px rgba(15, 23, 32, 0.14);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;

  --container: 1200px;
  --header-h: 84px;
  --transition: 0.28s ease;
}

/* =========================
   RESET & GLOBAL
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body,
body.site-body {
  margin: 0;
  font-family: "Inter", "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(200, 169, 107, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(18, 55, 42, 0.08), transparent 20%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

section,
main,
header,
footer,
div,
article,
aside {
  min-width: 0;
}

.hidden {
  display: none !important;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section-fade {
  opacity: 0;
  transform: translateY(35px);
}

/* =========================
   UTILITIES
========================= */
.rotate-180 {
  transform: rotate(180deg);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.text-link:hover {
  color: var(--primary-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 36px rgba(18, 55, 42, 0.18);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #14934f);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.22);
}

.btn-sm {
  min-height: 44px;
  padding-inline: 18px;
}

.btn-block {
  width: 100%;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  min-height: var(--header-h);
  background: rgba(247, 244, 238, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-bottom-color: rgba(15, 23, 32, 0.06);
  box-shadow: 0 14px 30px rgba(15, 23, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo,
.footer-logo {
  width: 54px;
  height: 54px;
  padding: 7px;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.brand-logo {
  border-radius: 18px;
}

.footer-logo {
  padding: 6px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--dark);
}

.brand-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(200, 169, 107, 0));
}

.brand-subtitle {
  margin-top: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #64748b;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a,
.nav-login-btn,
.user-menu-trigger {
  transition: all var(--transition);
}

.desktop-nav > a {
  position: relative;
  padding: 8px 2px;
  color: var(--text-soft);
  font-weight: 600;
}

.desktop-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  transition: width var(--transition);
}

.desktop-nav > a:hover {
  color: var(--primary);
}

.desktop-nav > a:hover::after {
  width: 100%;
}

.nav-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px !important;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent), #d7b67d);
  box-shadow: 0 14px 28px rgba(200, 169, 107, 0.28);
}

.nav-cta-link::after {
  display: none !important;
}

.nav-login-btn,
.mobile-login-btn,
.mobile-menu-btn,
.user-menu-trigger,
.modal-close,
.mobile-close-btn,
.switch-link {
  border: 0;
  background: none;
}

.nav-login-btn,
.mobile-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(18, 55, 42, 0.18);
}

.mobile-menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow-md);
}

/* =========================
   ACCOUNT & LANGUAGE
========================= */
.user-menu-wrap,
.lang-dropdown-wrap {
  position: relative;
}

.account-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.account-trigger:hover {
  background: #fff;
  border-color: rgba(200, 169, 107, 0.36);
}

.account-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #2b2110;
  background: linear-gradient(135deg, var(--gold), #f4e7ca);
  font-size: 0.95rem;
}

.account-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

.account-text small,
.user-dropdown-label,
.mobile-account-title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.account-text small {
  margin-bottom: 2px;
  font-size: 0.68rem;
  color: #64748b;
}

.account-text strong {
  max-width: 160px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 250px;
  padding: 8px 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 23, 32, 0.16);
}

.user-dropdown-header {
  padding: 14px 16px 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid #edf2f7;
}

.user-dropdown-label {
  display: block;
  margin-bottom: 3px;
  font-size: 0.72rem;
  color: #64748b;
}

.user-dropdown-header strong {
  display: block;
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 700;
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.user-dropdown a i,
.mobile-menu-panel a i {
  width: 18px;
  text-align: center;
  color: var(--primary);
}

.user-dropdown a:hover {
  background: #f8f6f1;
}

.user-dropdown .danger-link,
.user-dropdown .danger-link i,
.mobile-logout-link {
  color: #dc3558 !important;
}

.user-dropdown hr {
  margin: 6px 0;
  border: 0;
  border-top: 1px solid #edf2f7;
}

.lang-dropdown-wrap {
  margin-left: 2px;
}

.lang-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.lang-dropdown-trigger:hover {
  border-color: rgba(200, 169, 107, 0.32);
}

.lang-caret {
  font-size: 0.72rem;
  color: #64748b;
  transition: transform 0.25s ease;
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 100;
  display: grid;
  gap: 8px;
  width: 76px;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.lang-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 14px;
  transition: all 0.22s ease;
}

.lang-dropdown-item:hover {
  background: #f8f6f1;
}

.lang-dropdown-item.active {
  border: 1px solid rgba(37, 99, 235, 0.12);
  background: #eff6ff;
}

.lang-flag-img,
.lang-item-flag-img,
.mobile-lang-flag-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  overflow-y: auto;
  background: rgba(15, 23, 32, 0.52);
  backdrop-filter: blur(10px);
}

.mobile-menu-panel {
  width: min(420px, 100%);
  min-height: 100%;
  margin-left: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8f4ec);
}

.mobile-menu-panel a,
.mobile-login-btn {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: left;
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mobile-close-btn {
  align-self: flex-end;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  color: var(--text);
  background: #fff;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.mobile-account-box {
  padding: 14px 16px;
  margin-bottom: 6px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, rgba(18, 55, 42, 0.96), rgba(31, 90, 68, 0.96));
}

.mobile-account-title {
  margin-bottom: 4px;
  font-size: 0.72rem;
  color: #e5f0e8;
}

.mobile-account-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.mobile-menu-panel a i {
  margin-right: 8px;
}

.mobile-lang-card {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mobile-lang-head {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #728196;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-lang-list-flags {
  display: flex;
  gap: 12px;
}

.mobile-lang-flag-only {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0 !important;
  border-radius: 14px;
}

.mobile-lang-flag {
  font-size: 1.35rem;
  line-height: 1;
}

/* =========================
   HERO
========================= */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 28px);
}

.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  pointer-events: none;
}

.hero-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 23, 32, 0.28), rgba(15, 23, 32, 0.52)),
    linear-gradient(90deg, rgba(15, 23, 32, 0.68), rgba(15, 23, 32, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-grid,
.detail-grid,
.footer-grid,
.cards-grid,
.feature-grid,
.mybooking-summary-grid,
.mybooking-meta-grid {
  align-items: start;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.hero-grid > *,
.detail-grid > *,
.footer-grid > *,
.cards-grid > *,
.feature-grid > *,
.mybooking-summary-grid > *,
.mybooking-meta-grid > * {
  min-width: 0;
}

.hero-chip,
.hero-proof-item,
.promo-badge,
.card-badge,
.status-badge,
.mybooking-code,
.mybooking-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-chip {
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-title,
.section-heading h1,
.section-heading h2,
.cta-box h2,
.footer-cta-band h2,
.promo-box h2,
.modal-card h2 {
  font-family: "Cormorant Garamond", serif;
}

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(2.6rem, 5.5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.03rem;
  overflow-wrap: anywhere;
}

.hero-actions,
.hero-proof,
.footer-cta-actions,
.detail-actions,
.filter-row,
.newsletter-form,
.footer-payment-logos,
.mybooking-card-actions {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 14px;
  margin-bottom: 18px;
}

.hero-proof {
  gap: 10px;
}

.hero-proof-item {
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-promo,
.promo-box {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.promo-box {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.promo-box.show {
  opacity: 1;
  transform: translateY(0);
}

.promo-badge {
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff4db;
  background: rgba(200, 169, 107, 0.2);
  font-size: 0.75rem;
  font-weight: 700;
}

.promo-box h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  color: #fff;
}

.promo-box ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.96);
}

.promo-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.promo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.promo-stat,
.hero-strip-item,
.feature-card,
.mybooking-summary-card,
.mybooking-meta-item {
  border-radius: 18px;
}

.promo-stat {
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
}

.promo-stat strong,
.hero-strip-item strong,
.review-user strong,
.mybooking-summary-card strong,
.mybooking-meta-item strong {
  display: block;
}

.promo-stat strong {
  margin-bottom: 4px;
  font-size: 1.2rem;
  color: #fff;
}

.promo-stat span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-bottom-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 0 26px;
}

.hero-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-strip-item {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.hero-strip-item strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.hero-strip-item span {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.84);
}

/* =========================
   SECTION & CARD SYSTEM
========================= */
.section-block {
  position: relative;
  padding: 96px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(252, 250, 246, 0.92));
}

.section-dark {
  color: #fff;
  background: linear-gradient(180deg, #12261f, #0f1d19);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-kicker,
.footer-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--gold);
}

.section-dark .section-kicker,
.footer-kicker,
.footer-title,
.footer-payments h5 {
  color: #f2dfb6;
}

.section-heading h1,
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  color: inherit;
}

.section-heading p,
.package-days,
.detail-meta,
.legacy-vehicle-meta,
.package-list,
.feature-card p,
.empty-state-cell,
.mybooking-empty-state p,
.card-content p,
.review-user span,
.detail-text {
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .card-content p,
.section-dark .review-user span {
  color: rgba(255, 255, 255, 0.84);
}

.glass-card,
.table-card,
.gallery-card,
.faq-item,
.mybooking-summary-card,
.mybooking-meta-item {
  background: #fff;
  border: 1px solid rgba(15, 23, 32, 0.06);
  box-shadow: var(--shadow-md);
}

.glass-card {
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 250, 246, 0.98));
}

.section-dark .glass-card {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
}

.cards-grid,
.feature-grid,
.faq-list,
.gallery-shell,
.footer-contact-list,
.mybooking-list {
  display: grid;
}

.cards-grid,
.feature-grid {
  gap: 24px;
}

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

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

.product-card,
.legacy-vehicle-card,
.review-card,
.article-card,
.feature-card,
.detail-card,
.mybooking-card {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.product-card,
.legacy-vehicle-card,
.review-card,
.article-card,
.feature-card,
.gallery-card,
.faq-item {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover,
.legacy-vehicle-card:hover,
.review-card:hover,

.article-card:hover,
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 107, 0.25);
  box-shadow: 0 18px 52px rgba(15, 23, 32, 0.14);
}

.card-media,
.gallery-thumb,
.footer-map-wrap,
.detail-media {
  overflow: hidden;
}

.card-media {
  position: relative;
}

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

.product-card .card-media img,
.article-card .card-media img,
.legacy-vehicle-card .card-media img {
  height: 260px;
  transition: transform 0.55s ease;
}

.product-card:hover .card-media img,
.article-card:hover .card-media img,
.legacy-vehicle-card:hover .card-media img,
.gallery-card:hover .gallery-thumb img {
  transform: scale(1.06);
}

.card-content {
  padding: 24px;
}

.card-content h3,
.mybooking-card-top h3,
.mybooking-empty-state h3,
.footer-brand h3 {
  margin: 0;
  overflow-wrap: anywhere;
}

.card-content h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.card-content p,
.footer-about,
.footer-map-note span,
.mybooking-card-top h3,
.detail-text,
.hero-subtitle {
  overflow-wrap: anywhere;
}

.card-content p {
  margin: 0 0 12px;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  padding: 8px 14px;
  color: #2b2110;
  background: linear-gradient(135deg, #f5e6c3, var(--gold));
  box-shadow: 0 10px 24px rgba(200, 169, 107, 0.24);
  font-size: 0.74rem;
  font-weight: 700;
}

.ribbon {
  position: absolute;
  top: 18px;
  right: -38px;
  z-index: 5;
  padding: 7px 46px;
  color: #fff;
  background: linear-gradient(135deg, #b42318, #d54331);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transform: rotate(38deg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.package-list {
  margin: 0;
  padding-left: 18px;
}

/* =========================
   DETAIL
========================= */
.detail-section {
  padding-top: 24px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.detail-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 24px 0;
  background: #f8f6f1;
}

.detail-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  object-position: top center;
  margin: 0 auto;
}

.detail-main-image {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.detail-content {
  padding: 36px;
}

.detail-price {
  margin-bottom: 12px;
  font-size: 1.9rem;
  color: var(--primary);
  font-weight: 700;
}

.detail-text {
  margin-bottom: 24px;
  color: var(--text-soft);
}

.detail-actions {
  gap: 12px;
}

.detail-thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.detail-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.detail-thumbnails::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.detail-thumb-btn {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background: transparent;
  opacity: 0.9;
  transition: all 0.25s ease;
}

.detail-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumb-btn:hover,
.detail-thumb-btn.active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: #c8a96a;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

/* =========================
   FILTER / FEATURE / GALLERY
========================= */
.filter-row {
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.feature-card {
  padding: 28px;
  text-align: center;
}

.feature-icon,
.review-avatar,
.mybooking-empty-icon,
.footer-contact-item i {
  display: grid;
  place-items: center;
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border: 1px solid rgba(18, 55, 42, 0.12);
  border-radius: 50%;
  color: var(--primary);
  background: rgba(18, 55, 42, 0.08);
  font-size: 1.45rem;
  transition: all 0.35s ease;
}

.feature-card:hover .feature-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 20px rgba(18, 55, 42, 0.16);
  transform: scale(1.08) rotate(4deg);
}

.feature-card h3 {
  margin: 0 0 10px;
}

.gallery-container {
  min-height: 160px;
  transition: opacity 0.28s ease;
}

.gallery-shell {
  gap: 28px;
}

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

.gallery-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 32, 0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 32, 0.08);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 32, 0.12);
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f3f4f6;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  transition: opacity 0.28s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  padding: 14px 16px 16px;
  background: linear-gradient(180deg, #fff, #fcfaf6);
}

.gallery-caption h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #17212b;
  line-height: 1.35;
}

.gallery-empty {
  padding: 36px 20px;
  text-align: center;
  border: 1px dashed rgba(15, 23, 32, 0.12);
  border-radius: 22px;
  color: #667085;
  background: #fff;
}

.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-pagination button {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 32, 0.08);
  border-radius: 12px;
  color: #17212b;
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 32, 0.05);
  font-weight: 600;
  transition: all 0.25s ease;
}

.gallery-pagination button:hover {
  color: #fff;
  border-color: #12372a;
  background: #12372a;
}

.gallery-pagination button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #12372a, #1f5a44);
  box-shadow: 0 12px 24px rgba(18, 55, 42, 0.18);
}

.gallery-pagination .dots {
  padding: 0 4px;
  color: #667085;
  font-weight: 600;
}

/* =========================
   REVIEWS / FAQ / NEWSLETTER
========================= */
.rating-summary,
.center-action,
.newsletter-box,
.cta-box,
.mybooking-empty-state {
  text-align: center;
}

.rating-summary {
  margin-bottom: 34px;
}

.rating-score {
  display: block;
  font-size: 3rem;
  font-weight: 800;
}

.rating-stars,
.review-stars,
.mini-rating,
.product-card .product-rating i,
.detail-content .detail-rating i,
.article-card .mini-rating {
  color: #f2c96b;
}

.review-grid .review-card {
  padding: 24px;
}

.review-text {
  margin: 14px 0 18px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-user span {
  font-size: 0.86rem;
  color: #64748b;
}

.review-avatar,
.mybooking-empty-icon {
  border-radius: 50%;
}

.review-avatar {
  width: 46px;
  height: 46px;
  color: #2b2110;
  background: linear-gradient(135deg, var(--gold), #f3e5c8);
  font-weight: 700;
}

.center-action {
  margin-top: 32px;
}

.mini-rating {
  margin-bottom: 10px;
}

.faq-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(247, 244, 238, 0.9));
}

.faq-list {
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.faq-item:hover {
  border-color: rgba(200, 169, 107, 0.32);
  box-shadow: 0 12px 28px rgba(15, 23, 32, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  font-weight: 700;
}

.faq-question::after {
  content: "+";
  color: var(--primary);
  font-size: 1.2rem;
}

.faq-question.active {
  color: var(--primary);
}

.faq-question.active::after {
  content: "-";
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: #5f6c7b;
  font-size: 0.94rem;
  line-height: 1.75;
}

.newsletter-wrap {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 32, 0.7), rgba(15, 23, 32, 0.72));
}

.newsletter-content {
  position: relative;
  z-index: 1;
  padding: 84px 0;
}

.newsletter-box,
.cta-box {
  color: #fff;
}

.newsletter-form {
  justify-content: center;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.newsletter-form input {
  width: min(100%, 460px);
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.cta-box {
  margin-top: 34px;
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* =========================
   INNER PAGE / TABLE / FORM / MODAL
========================= */
.inner-page {
  min-height: 100vh;
  padding-top: 120px;
}

.page-panel {
  padding-bottom: 72px;
}

.page-panel.narrow {
  max-width: 680px;
}

.table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-table {
  width: 100%;
  border-collapse: collapse;
}

.booking-table th,
.booking-table td {
  padding: 17px 16px;
  text-align: left;
}

.booking-table thead {
  background: #f8f6f1;
}

.booking-table tbody tr {
  border-top: 1px solid #eef2f6;
}

.status-badge {
  padding: 7px 12px;
  color: var(--primary);
  border: 1px solid rgba(18, 55, 42, 0.12);
  background: rgba(18, 55, 42, 0.08);
  font-size: 0.84rem;
  text-transform: capitalize;
}

.table-link {
  color: var(--primary);
  font-weight: 700;
}

.table-link.danger {
  color: var(--danger);
}

.divider {
  margin-inline: 6px;
  color: #cbd5e1;
}

.form-panel {
  padding: 26px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 700;
}

.form-group input,
#bookingModal input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid #dde3ea;
  border-radius: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.form-group input:focus,
#bookingModal input:focus {
  border-color: rgba(18, 55, 42, 0.45);
  box-shadow: 0 0 0 4px rgba(18, 55, 42, 0.08);
}

.form-group input.is-invalid {
  border-color: rgba(180, 35, 24, 0.45);
}

.field-error {
  display: block;
  margin-top: 6px;
  color: #b42318;
  font-size: 0.84rem;
}

.form-note,
.switch-text,
.booking-price-line {
  color: #5f6c7b;
  text-align: center;
}

.form-note {
  margin: 0 0 16px;
  font-size: 0.86rem;
}

.alert-success,
.alert-error {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}

.alert-success {
  color: #067647;
  border: 1px solid rgba(6, 118, 71, 0.14);
  background: rgba(6, 118, 71, 0.08);
}

.alert-error {
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.14);
  background: rgba(180, 35, 24, 0.08);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(15, 23, 32, 0.62);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  width: min(100%, 560px);
  max-height: 92vh;
  overflow-y: auto;
  padding: 28px;
  border: 1px solid rgba(15, 23, 32, 0.06);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fbf8f2);
  box-shadow: var(--shadow-lg);
}

.modal-card h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: 1.8rem;
  color: var(--text);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--text);
  background: #f6f3ec;
  font-size: 1.4rem;
}

.auth-form,
.booking-form {
  margin-top: 14px;
}

.switch-text {
  margin-top: 14px;
}

.switch-link {
  color: var(--primary);
  font-weight: 700;
}

.booking-price-line {
  margin-top: -4px;
}

.booking-price-line span,
.booking-total span {
  color: var(--primary);
  font-weight: 700;
}

.booking-total {
  margin: 10px 0 18px;
  text-align: center;
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 700;
}

/* =========================
   FLOATING WA
========================= */
.floating-wa,
#floatingWA {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #18a54d);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.28);
  font-weight: 700;
}

.floating-wa i,
#floatingWA i {
  font-size: 1.15rem;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  position: relative;
  margin-top: 80px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 107, 0.12), transparent 18%),
    linear-gradient(180deg, #0f1d19 0%, #0b1512 100%);
}

.footer-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  margin-top: -38px;
  margin-bottom: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.footer-kicker {
  font-size: 0.78rem;
}

.footer-cta-band h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  line-height: 1.05;
}

.footer-cta-band p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.footer-cta-actions {
  gap: 12px;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
  gap: 28px;
  padding: 0 0 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-about {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.footer-title {
  margin: 0 0 16px;
  font-size: 1.02rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact-list {
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-contact-item i {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 14px;
  color: #f2dfb6;
  background: rgba(200, 169, 107, 0.14);
}

.footer-contact-item small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-contact-item strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-payments {
  margin-top: 18px;
}

.footer-payments h5 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-payment-logos {
  gap: 10px;
}

.footer-payment-logos img {
  width: auto;
  height: 28px;
  padding: 6px 10px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.footer-map-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.footer-map-wrap iframe {
  width: 100%;
  height: 240px;
  min-height: 220px;
  border: 0;
}

.footer-map-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-map-note i {
  margin-top: 2px;
  color: #f2dfb6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
}

/* =========================
   MY BOOKING
========================= */
.mybooking-page {
  padding-bottom: 60px;
}

.mybooking-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.mybooking-summary-card {
  padding: 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 32, 0.06);
}

.mybooking-summary-card span,
.mybooking-meta-item span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mybooking-summary-card strong {
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--text);
}

.mybooking-list {
  gap: 18px;
}

.mybooking-card {
  display: grid;
  grid-template-columns: 260px 1fr;
}

.mybooking-card-media {
  min-height: 100%;
  background: #f3f4f6;
}

.mybooking-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.mybooking-card-body {
  padding: 22px;
}

.mybooking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.mybooking-code {
  padding: 8px 12px;
  margin-bottom: 10px;
  color: var(--primary);
  background: rgba(18, 55, 42, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.mybooking-card-top h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.mybooking-price {
  white-space: nowrap;
  font-size: 1.18rem;
  color: var(--primary);
  font-weight: 800;
}

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

.mybooking-meta-item {
  padding: 14px;
  box-shadow: 0 8px 18px rgba(15, 23, 32, 0.04);
}

.mybooking-meta-item strong {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

.mybooking-badge {
  justify-content: center;
  min-width: 96px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}

.mybooking-badge.warning {
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
}

.mybooking-badge.success {
  color: #15803d;
  background: rgba(34, 197, 94, 0.12);
}

.mybooking-badge.muted {
  color: #475569;
  background: rgba(148, 163, 184, 0.14);
}

.mybooking-badge.info {
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.12);
}

.mybooking-badge.danger {
  color: #b91c1c;
  background: rgba(239, 68, 68, 0.12);
}

.mybooking-card-actions {
  gap: 12px;
  margin-top: 20px;
}

.mybooking-remove-btn {
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.14);
}

.mybooking-remove-btn:hover {
  color: #fff;
  background: #b42318;
}

.mybooking-empty-state {
  padding: 36px 24px;
}

.mybooking-empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  color: var(--primary);
  background: rgba(18, 55, 42, 0.08);
  font-size: 1.5rem;
}

.mybooking-empty-state h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* =========================
   RATING DETAILS
========================= */
.product-card .product-rating,
.detail-content .detail-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 10px;
  line-height: 1;
}

.product-card .product-rating i,
.detail-content .detail-rating i {
  font-size: 14px;
  color: #ffd700;
}

.product-card .product-rating span {
  color: #666;
  font-weight: 600;
}

.article-card .mini-rating i {
  color: inherit;
}

/* =========================
   RESPONSIVE - LARGE
========================= */
@media (min-width: 1400px) {
  :root {
    --container: 1280px;
  }
}

/* =========================
   RESPONSIVE - LAPTOP
========================= */
@media (max-width: 1200px) {
  :root {
    --container: 1100px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
  }

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

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

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

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

  .detail-content {
    padding: 28px;
  }

  .detail-media {
    padding: 22px 22px 0;
  }

  .detail-media img {
    max-height: 400px;
  }

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

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

  .mybooking-card {
    grid-template-columns: 1fr;
  }

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

/* =========================
   RESPONSIVE - TABLET
========================= */
@media (max-width: 992px) {
  :root {
    --header-h: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .desktop-nav,
  .lang-dropdown-wrap {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 10px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-title {
    font-size: 1.25rem;
    line-height: 1.1;
  }

  .brand-subtitle {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 36px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy,
  .hero-promo {
    text-align: center;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-bottom-strip {
    position: relative;
    padding-top: 22px;
    padding-bottom: 0;
  }

  .hero-strip-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter-wrap {
    background-attachment: scroll;
  }

  .footer-cta-band {
    flex-direction: column;
    align-items: flex-start;
    margin-top: -28px;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .mybooking-card-media img {
    min-height: 220px;
    max-height: 320px;
  }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */
@media (max-width: 768px) {
  :root {
    --header-h: 72px;
    --radius-md: 18px;
    --radius-lg: 24px;
  }

  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .section-block {
    padding: 64px 0;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-subtitle {
    display: none;
  }

  .account-trigger {
    min-height: 46px;
    padding: 6px 10px;
    gap: 8px;
  }

  .account-avatar {
    width: 34px;
    height: 34px;
  }

  .account-text small {
    font-size: 0.58rem;
  }

  .account-text strong {
    max-width: 90px;
    font-size: 0.82rem;
  }

  .hero-title {
    font-size: 2.15rem;
    line-height: 1.08;
  }

  .hero-subtitle {
    margin-bottom: 22px;
    font-size: 0.96rem;
  }

  .hero-chip,
  .hero-proof-item {
    font-size: 0.78rem;
  }

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

  .hero-actions .btn,
  .footer-cta-actions .btn,
  .detail-actions .btn,
  .mybooking-card-actions .btn,
  .newsletter-form .btn,
  .newsletter-form input {
    width: 100%;
  }

  .promo-box,
  .hero-promo {
    padding: 22px 18px;
  }

  .promo-box h2 {
    font-size: 1.5rem;
  }

  .promo-stats,
  .cards-grid,
  .feature-grid,
  .footer-grid,
  .mybooking-summary-grid,
  .mybooking-meta-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-caption {
    padding: 12px 13px 14px;
  }

  .gallery-caption h4 {
    font-size: 0.92rem;
  }

  .card-media img,
  .product-card .card-media img,
  .article-card .card-media img,
  .legacy-vehicle-card .card-media img {
    height: 220px;
  }

  .detail-content {
    padding: 22px 18px;
  }

  .detail-price {
    font-size: 1.5rem;
  }

  .detail-media {
    padding: 18px 18px 0;
  }

  .detail-media img {
    max-height: 300px;
  }

  .detail-thumb-btn {
    width: 72px;
    height: 72px;
  }

  .newsletter-content {
    padding: 64px 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-cta-band {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .footer-cta-band h2 {
    font-size: 1.45rem;
  }

  .footer-contact-item {
    padding: 12px;
  }

  .footer-contact-item i {
    width: 36px;
    height: 36px;
  }

  .footer-payment-logos img {
    height: 26px;
    padding: 5px 8px;
  }

  .footer-map-wrap iframe {
    height: 220px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .booking-table th,
  .booking-table td {
    padding: 12px 10px;
    white-space: nowrap;
    font-size: 0.86rem;
  }

  .modal-overlay {
    padding: 12px;
  }

  .modal-card {
    width: 100%;
    padding: 22px 16px;
    border-radius: 20px;
  }

  .floating-wa,
  #floatingWA {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 0 14px;
  }

  .floating-wa span,
  #floatingWA span {
    display: none;
  }

  .mybooking-card-body {
    padding: 18px 16px;
  }

  .mybooking-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */
@media (max-width: 576px) {
  .container {
    width: calc(100% - 16px);
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h1,
  .section-heading h2 {
    font-size: 1.75rem;
  }

  .btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    padding: 6px;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .hero-chip {
    width: 100%;
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
    border-radius: 16px;
  }

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

  .gallery-thumb {
    aspect-ratio: 16 / 11;
  }

  .gallery-caption {
    padding: 12px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand h3 {
    font-size: 1.05rem;
  }

  .footer-brand span {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .footer-contact-item {
    gap: 10px;
  }

  .footer-contact-item small {
    font-size: 0.68rem;
  }

  .footer-contact-item strong {
    font-size: 0.88rem;
  }

  .mybooking-card-body {
    padding: 16px 14px;
  }

  .mybooking-price {
    white-space: normal;
  }

  .mybooking-card-actions {
    flex-direction: column;
  }

  .mybooking-card-actions .btn {
    width: 100%;
  }

  .detail-thumbnails {
    gap: 8px;
  }

  .detail-thumb-btn {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.65rem;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .mobile-menu-panel {
    padding: 18px 14px;
  }

  .promo-box,
  .hero-promo,
  .footer-cta-band,
  .modal-card,
  .form-panel {
    padding-left: 14px;
    padding-right: 14px;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact-item i {
    margin-bottom: 2px;
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}