* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  cursor: default;
}
a {
  text-decoration: none;
}
:focus,
:active {
  box-shadow: none !important;
}
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --navy: #071a35;
  --cyan: #00daff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gold: #c9a227;
  --gold-light: #e8ce83;
  --gold-dark: #8f701a;
  --champagne: #fbf4e2;
  --bg: #f5f8fc;
  --surface: #ffffff;
  --ink: #0f1b2d;
  --muted: #64748b;
  --line: #e4e9f1;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --shadow-soft: 0 8px 24px rgba(7, 26, 53, 0.08);
  --shadow-strong: 0 20px 48px rgba(7, 26, 53, 0.16);
  --header-h: 92px;
  --header-h-scrolled: 70px;
  --topbar-h: 42px;
  --font-display: "Playfair Display", serif;
  --font-ui: "Plus Jakarta Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --bg: #060d1a;
  --surface: #0e1b30;
  --ink: #eaf0fb;
  --muted: #93a2b8;
  --line: #1d2c46;
}
[data-theme="dark"] body {
  background: var(--bg);
  color: var(--ink);
}
[data-theme="dark"] .main-header {
  background: #0b1526;
}
[data-theme="dark"] #siteHeader.scrolled .main-header {
  background: rgba(11, 21, 38, 0.82);
}
[data-theme="dark"] .main-nav {
  background: #0b1526;
}
[data-theme="dark"] #siteHeader.scrolled .main-nav {
  background: rgba(11, 21, 38, 0.7);
}
[data-theme="dark"] .search-box {
  background: #132038;
  border-color: #22314c;
}
[data-theme="dark"] .hdr-icon-btn {
  background: #132038;
  border-color: #22314c;
  color: var(--ink);
}
[data-theme="dark"] .hdr-icon-btn:hover {
  background: #1b2a47;
}
[data-theme="dark"] .profile-chip {
  background: #132038;
  border-color: #22314c;
}
[data-theme="dark"] .panel-dropdown,
[data-theme="dark"] .dropdown-panel,
[data-theme="dark"] .mega-panel,
[data-theme="dark"] .tb-menu,
[data-theme="dark"] .mobile-panel {
  background: rgba(14, 27, 48, 0.97);
  border-color: #22314c;
  color: var(--ink);
}
[data-theme="dark"] .panel-row:hover,
[data-theme="dark"] .dropdown-panel a:hover,
[data-theme="dark"] .mega-col a:hover,
[data-theme="dark"] .tb-menu a:hover {
  background: #182746;
}
[data-theme="dark"] .dropdown-panel a i,
[data-theme="dark"] .mega-col a i {
  background: #182746;
}
[data-theme="dark"] .filler-body {
  color: var(--muted);
}
[data-theme="dark"] .mp-body a {
  color: var(--ink);
}
[data-theme="dark"] .mobile-row-2 {
  background: #0b1526;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
[data-theme="dark"] .ai-chat-panel,
[data-theme="dark"] .compare-bar-inner {
  background: #0e1b30;
  border-color: #22314c;
  color: var(--ink);
}
[data-theme="dark"] .ai-chat-foot,
[data-theme="dark"] .ai-chat-head {
  border-color: #22314c;
}
[data-theme="dark"] .ai-msg.bot {
  background: #132038;
  color: var(--ink);
}
[data-theme="dark"] .ai-chat-input-wrap {
  background: #132038;
}
[data-theme="dark"] .ai-chat-input-wrap input {
  background: transparent;
  color: var(--ink);
}
[data-theme="dark"] .quick-contact .qc-item {
  background: #0e1b30;
  border-color: #22314c;
  color: var(--ink);
}
[data-theme="dark"] .quick-contact .qc-fab {
  background: linear-gradient(135deg, #0b1526, #1d4ed8);
}
[data-theme="dark"] .dropdown-panel {
  background: rgba(14, 27, 48, 0.92);
  border-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .dropdown-panel a {
  color: var(--ink);
}
[data-theme="dark"] .dropdown-panel a i {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-light);
}
[data-theme="dark"] .dropdown-panel a:hover {
  background: rgba(201, 162, 39, 0.08);
  color: var(--gold-light);
}
[data-theme="dark"] .dropdown-panel a:hover i {
  background: var(--gold-light);
  color: var(--navy);
}
[data-theme="dark"] .mega-panel {
  background: rgba(14, 27, 48, 0.92);
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(201, 162, 39, 0.08);
}
[data-theme="dark"] .mega-col-title {
  color: var(--gold-light);
  border-bottom-color: rgba(201, 162, 39, 0.2);
}
[data-theme="dark"] .mega-col a {
  color: var(--ink);
}
[data-theme="dark"] .mega-col a:hover {
  background: rgba(201, 162, 39, 0.06);
  color: var(--gold-light);
}
[data-theme="dark"] .mega-col a i {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
}
[data-theme="dark"] .mega-col a:hover i {
  background: var(--gold-light);
  color: var(--navy);
}
[data-theme="dark"] .mega-banner::before {
  background: linear-gradient(
    0deg,
    rgba(7, 26, 53, 0.95),
    rgba(7, 26, 53, 0.2)
  );
}
[data-theme="dark"] .mega-tag.hot {
  background: linear-gradient(135deg, #f43f5e, #9f1239);
}
[data-theme="dark"] .mega-tag.best {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
}
[data-theme="dark"] .mega-tag.new {
  background: linear-gradient(135deg, #0891b2, #164e63);
}
[data-theme="dark"] .mega-col {
  border-right-color: rgba(255, 255, 255, 0.04);
}

/* ============================================================
                   HEADER
                   ============================================================ */
#siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* ---- TOP BAR ---- */
.topbar {
  height: var(--topbar-h);
  background: linear-gradient(90deg, var(--navy) 0%, #0d2c56 100%);
  color: #dce6f5;
  font-size: 0.8rem;
  position: relative;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  overflow: visible !important;
  z-index: 1001;
}
.topbar-inner {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
  overflow: visible !important;
}
.topbar-rotator {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
}
.rotator-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--navy);
  flex: none;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}
.rotator-text {
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.rotator-text.fade {
  opacity: 0;
  transform: translateY(6px);
}
.topbar-center {
  align-items: center;
  gap: 16px;
  display: flex;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dce6f5;
  white-space: nowrap;
  transition: color 0.2s ease;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  padding: 4px 12px 4px 8px;
  font-size: 0.78rem;
}
.topbar-item:hover {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.08);
}
.ti-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  flex: none;
}
.topbar-right {
  align-items: center;
  gap: 10px;
  display: flex;
}
.tb-select-wrap {
  position: relative;
  z-index: 60;
}
.tb-select {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 4px 12px 4px 10px;
  color: #e7edf6;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  user-select: none;
}
.tb-select:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 162, 39, 0.45);
}
.tb-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  min-width: 160px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 99999 !important;
}
.tb-select-wrap.open .tb-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tb-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--ink);
  transition: background 0.2s ease;
}
.tb-menu a:hover {
  background: var(--champagne);
  color: var(--gold-dark);
}
.tb-menu a.active {
  color: var(--gold-dark);
  font-weight: 700;
}
.tb-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}
.tb-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px 5px 12px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(4px);
  transition: all 0.2s ease;
}
.tb-btn.login {
  color: #e7edf6;
}
.tb-btn.login:hover {
  background: rgba(255, 255, 255, 0.08);
}
.tb-btn.register {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border-color: transparent;
  font-weight: 700;
  backdrop-filter: none;
}
.tb-btn.register:hover {
  filter: brightness(1.06);
}
.tb-btn i {
  font-size: 0.8rem;
}
.theme-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #e7edf6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: all 0.2s ease;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-light);
}
.topbar-mobile {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.74rem;
  display: none;
}
.topbar-mobile .topbar-item {
  color: #dce6f5;
  font-size: 10px;
  padding: 2px 20px;
}
.topbar-mobile .topbar-item i {
  margin-right: 4px;
  color: var(--gold-light);
}

/* ---- MAIN HEADER ---- */
.main-header {
  height: var(--header-h);
  background: #fff;
  transition:
    height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    box-shadow 0.35s ease;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
#siteHeader.scrolled .main-header {
  height: var(--header-h-scrolled);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 28px rgba(7, 26, 53, 0.1);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}
#siteHeader.scrolled .topbar {
  margin-top: calc(var(--topbar-h) * -1);
}
.main-header-inner {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand-logo-wrap {
  position: relative;
  flex: none;
}
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  object-fit: cover;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 2px var(--gold-light);
}
#siteHeader.scrolled .brand-logo {
  width: 38px;
  height: 38px;
}
.brand-crown {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--navy);
  box-shadow: 0 2px 6px rgba(201, 162, 39, 0.5);
  border: 2px solid #fff;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--navy);
  letter-spacing: 0.2px;
}
[data-theme="dark"] .brand-name {
  color: var(--ink);
}
.brand-tagline {
  font-size: 0.63rem;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* ---- SEARCH ---- */
.search-wrap {
  flex: 1;
  max-width: 560px;
  position: relative;
  margin: 0 auto;
}
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f6fb;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 5px 6px 5px 16px;
  height: 48px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.search-box:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}
.search-icon {
  color: var(--muted);
}
.search-box input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 0.9rem;
  color: var(--ink);
  min-width: 0;
}
.search-box input::placeholder {
  color: var(--muted);
}
.voice-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex: none;
  transition: all 0.2s ease;
}
.voice-btn:hover {
  background: var(--champagne);
  color: var(--gold-dark);
}
.voice-btn.listening {
  color: #fff;
  background: var(--danger);
  animation: pulseMic 1.2s ease-in-out infinite;
}
@keyframes pulseMic {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}
.ai-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.66rem;
  padding: 3px 9px;
  border-radius: 20px;
  flex: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ai-badge:hover {
  transform: scale(1.04);
  filter: brightness(1.05);
}
.search-btn {
  height: 38px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  flex: none;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.search-btn:hover {
  background: var(--primary-dark);
}
.ai-suggestions {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 40;
  border: 1px solid var(--line);
}
.search-wrap.suggestions-open .ai-suggestions {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ai-suggestions-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-suggestions-label i {
  color: var(--gold-dark);
}
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f2f6fb;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 7px 13px;
  font-size: 0.82rem;
  margin: 0 8px 8px 0;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ai-chip:hover {
  background: var(--champagne);
  border-color: var(--gold);
  color: var(--gold-dark);
}

/* ---- HEADER ACTIONS ---- */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
  margin-left: auto;
}
.hdr-icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f2f6fb;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  color: var(--navy);
  transition: all 0.2s ease;
  flex: none;
}
.hdr-icon-btn:hover {
  background: var(--champagne);
  color: var(--gold-dark);
}
[data-theme="dark"] .hdr-icon-btn:hover {
  background: #1b2a47;
  color: var(--gold-light);
}
.hdr-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--danger);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}
.dropdown-wrap {
  position: relative;
}
.panel-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 1450;
}
.dropdown-wrap.open .panel-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 10px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.panel-head strong {
  font-size: 0.9rem;
}
.panel-head span {
  font-size: 0.72rem;
  color: var(--gold-dark);
  font-weight: 600;
  cursor: pointer;
}
.panel-row {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
  cursor: pointer;
  align-items: center;
}
.panel-row:hover {
  background: #f6f9fd;
}
.panel-thumb {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex: none;
}
.panel-row-title {
  font-size: 0.85rem;
  font-weight: 600;
}
.panel-row-sub {
  font-size: 0.75rem;
  color: var(--muted);
}
.profile-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 5px;
  border-radius: 999px;
  background: #f2f6fb;
  border: 1px solid var(--line);
  flex: none;
}
.profile-chip .avatar-wrap {
  position: relative;
  flex: none;
}
.profile-chip img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.online-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  border: 2px solid #fff;
}
.profile-chip .p-name {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.profile-chip .p-name i {
  font-size: 0.68rem;
  color: var(--gold);
}
.profile-chip .p-sub {
  font-size: 0.68rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.tier-card {
  background: linear-gradient(135deg, var(--navy), #123467);
  border-radius: var(--radius-md);
  padding: 14px;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.tier-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 90% 0%,
    rgba(201, 162, 39, 0.35),
    transparent 60%
  );
}
.tier-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.tier-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.tier-name i {
  color: var(--gold-light);
}
.tier-pts {
  font-size: 0.72rem;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  margin-top: 6px;
}
.tier-bar {
  height: 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
  margin-top: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.tier-bar-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  border-radius: 4px;
}
.btn-booknow {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  height: 44px;
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
  flex: none;
  transition: filter 0.2s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}
.btn-booknow:hover {
  filter: brightness(1.08);
}
.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
}
.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #f2f6fb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--navy);
  transition: all 0.2s ease;
}
.menu-toggle:hover {
  background: var(--champagne);
  color: var(--gold-dark);
}
.mobile-row-2 {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 6px 24px;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  z-index: 4;
}
#siteHeader.scrolled .mobile-row-2 {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}
[data-theme="dark"] .mobile-row-2 {
  background: #0b1526;
  border-bottom-color: rgba(255, 255, 255, 0.05);
}
[data-theme="dark"] #siteHeader.scrolled .mobile-row-2 {
  background: rgba(11, 21, 38, 0.82);
}
.mobile-row-2 .row2-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.mobile-row-2 .row2-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-row-2 .hdr-icon-btn {
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
}
.mobile-row-2 .hdr-badge {
  width: 16px;
  height: 16px;
  font-size: 0.55rem;
}
.mobile-row-2 .menu-toggle {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

/* ---- NAVBAR ---- */
.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  display: block;
  position: relative;
  z-index: 3;
}
#siteHeader.scrolled .main-nav {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
}
.nav-list {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 15px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-link i {
  font-size: 0.6rem;
  transition: transform 0.25s ease;
  color: var(--muted);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item.active .nav-link::after {
  transform: scaleX(1);
}
.nav-item.active .nav-link {
  color: var(--gold-dark);
}

/* ============================================================
                   ULTRA PREMIUM MEGA DROPDOWN — SCROLLBAR FIX
                   ============================================================ */

/* --- Regular Dropdown --- */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow:
    0 30px 60px rgba(7, 26, 53, 0.12),
    0 0 0 1px rgba(201, 162, 39, 0.06);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.97);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 60;
  transform-origin: top left;
}
.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.25s ease;
  color: var(--ink);
  position: relative;
}
.dropdown-panel a i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex: none;
  font-size: 0.8rem;
  transition: all 0.25s ease;
}
.dropdown-panel a:hover {
  background: var(--champagne);
  color: var(--gold-dark);
  transform: translateX(4px);
}
.dropdown-panel a:hover i {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.25);
}
.dropdown-panel .dp-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 12px;
  opacity: 0.4;
}

/* --- ULTRA PREMIUM MEGA PANEL --- */
.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 100%;
  transform: translate(-50%, -8px) scale(0.97);
  width: min(1060px, 94vw);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow:
    0 50px 100px rgba(7, 26, 53, 0.15),
    0 0 0 1px rgba(201, 162, 39, 0.08);
  padding: 28px 28px 24px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  transform-origin: top center;
  overflow: hidden;
}

.mega-col {
  padding: 0 4px;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  min-width: 0;
}
.mega-col:last-child {
  border-right: none;
}

.mega-col-title {
  font-family: "Playfair Display", serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--gold-light);
  position: relative;
}
.mega-col-title i {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ===== SCROLLBAR: ONLY SHOWS WHEN 10+ LINKS ===== */
.mega-scroll {
  max-height: 300px;
  /* fits 9 links comfortably, scrollbar appears at 10+ */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.mega-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.mega-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.mega-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
.mega-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  white-space: nowrap;
}
.mega-col a i {
  width: 26px;
  height: 26px;
  background: var(--champagne);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--gold-dark);
  transition: all 0.3s ease;
  flex: none;
}
.mega-col a:hover {
  background: var(--champagne);
  color: var(--gold-dark);
  transform: translateX(4px);
}
.mega-col a:hover i {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.2);
}
.mega-col a .mega-tag {
  font-family: "Sora", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  margin-left: auto;
  text-transform: uppercase;
  transition: all 0.3s ease;
  flex: none;
}
.mega-tag.hot {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  color: #fff;
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.3);
}
.mega-tag.best {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.2);
}
.mega-tag.new {
  background: linear-gradient(135deg, #06b6d4, #0284c7);
  color: #fff;
  box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
}

.mega-banner {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.mega-banner:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.mega-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 26, 53, 0.85) 0%,
    rgba(7, 26, 53, 0.1) 60%,
    transparent 100%
  );
}
.mega-banner-content {
  position: relative;
  z-index: 2;
  padding: 18px 20px 20px;
  color: #fff;
  width: 100%;
}
.mega-banner-content .tag {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--gold-light);
  font-weight: 700;
  display: inline-block;
  background: rgba(201, 162, 39, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 162, 39, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.mega-banner-content h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 4px 0 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}
.mega-banner-content .price {
  font-size: 0.75rem;
  margin-bottom: 10px;
  opacity: 0.9;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.btn-explore-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #fff, var(--champagne));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 8px 18px;
  border-radius: 999px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-explore-mini:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: #fff;
}

/* --- Hover / Open states --- */
.nav-item.open .dropdown-panel,
.nav-item.open .mega-panel {
  opacity: 1;
  visibility: visible;
}
.nav-item.open .dropdown-panel {
  transform: translateY(0) scale(1);
}
.nav-item.open .mega-panel {
  transform: translate(-50%, 0) scale(1);
}
.nav-item.open .nav-link i {
  transform: rotate(180deg);
}
.nav-item.open .nav-link {
  color: var(--gold-dark);
}
.nav-item.open .nav-link::after {
  transform: scaleX(1);
}

@media (hover: hover) and (pointer: fine) {
  .nav-item:hover .dropdown-panel,
  .nav-item:hover .mega-panel {
    opacity: 1;
    visibility: visible;
  }
  .nav-item:hover .dropdown-panel {
    transform: translateY(0) scale(1);
  }
  .nav-item:hover .mega-panel {
    transform: translate(-50%, 0) scale(1);
  }
  .nav-item:hover .nav-link i {
    transform: rotate(180deg);
  }
  .nav-item:hover .nav-link {
    color: var(--gold-dark);
  }
  .nav-item:hover .nav-link::after {
    transform: scaleX(1);
  }
  .nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
  }
}

.nav-cta {
  margin-left: auto;
}
.btn-ai-planner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
  transition: all 0.25s ease;
}
.btn-ai-planner:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
}
.btn-ai-planner i {
  font-size: 0.95rem;
}
.magnetic {
  transition: transform 0.15s ease-out;
}

/* ============================================================
                   MOBILE PANEL
                   ============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 53, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  z-index: 1300;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.18);
}
.mobile-panel.show {
  transform: translateX(0);
}
.mp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, var(--navy), var(--primary));
  color: #fff;
  flex: none;
}
.mp-head .brand-name {
  color: #fff;
}
.mp-head .brand-tagline {
  color: var(--gold-light);
}
.mp-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.mp-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.mp-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  -webkit-overflow-scrolling: touch;
}
.mp-item {
  border-bottom: 1px solid var(--line);
}
.mp-item:last-child {
  border-bottom: none;
}
.mp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 6px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  transition: color 0.2s ease;
}
.mp-link:hover {
  color: var(--gold-dark);
}
.mp-link i.chev {
  transition: transform 0.3s ease;
  font-size: 0.72rem;
  color: var(--muted);
}
.mp-item.open .mp-link i.chev {
  transform: rotate(180deg);
}
.mp-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.mp-item.open .mp-submenu {
  max-height: 2600px;
}
.mp-submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 22px;
  font-size: 0.84rem;
  color: var(--muted);
  transition: all 0.2s ease;
  border-radius: 8px;
}
.mp-submenu a:hover {
  color: var(--gold-dark);
  background: var(--champagne);
}
.mp-submenu a i {
  width: 18px;
  text-align: center;
  font-size: 0.7rem;
  color: var(--gold-dark);
  flex: none;
}
.mp-group-title {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 14px 12px 6px 22px;
  border-top: 1px solid var(--line);
}
.mp-submenu .mp-group-title:first-child {
  border-top: none;
  padding-top: 8px;
}
.mp-foot {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: none;
  background: var(--bg);
}
.mp-foot .btn-booknow {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  height: 48px;
}
.mp-foot .btn-ai-planner {
  justify-content: center;
  width: 100%;
  padding: 12px;
}
.mp-contact {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 4px;
}
.mp-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mp-contact span i {
  width: 20px;
  color: var(--gold-dark);
}
.mp-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6px;
  font-size: 0.85rem;
  font-weight: 600;
}
.mp-theme-row .theme-toggle {
  width: 40px;
  height: 24px;
  border-radius: 20px;
  background: var(--line);
  border: none;
  position: relative;
  padding: 0;
  transition: background 0.25s ease;
}
.mp-theme-row .theme-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.mp-theme-row .theme-toggle.on {
  background: var(--navy);
}
.mp-theme-row .theme-toggle.on::after {
  transform: translateX(16px);
  background: var(--gold-light);
}

/* ============================================================
                   AI WIDGET
                   ============================================================ */
.ai-widget {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 1600;
}
.ai-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(
    135deg,
    var(--navy),
    var(--primary) 60%,
    var(--cyan) 130%
  );
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease;
}
.ai-fab:hover {
  transform: translateY(-2px) scale(1.03);
}
.ai-fab-ping {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  opacity: 0.55;
  animation: aiPing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes aiPing {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.28);
    opacity: 0;
  }
}
.ai-fab .fa-xmark {
  display: none;
}
.ai-widget.open .ai-fab .fa-robot {
  display: none;
}
.ai-widget.open .ai-fab .fa-xmark {
  display: inline-block;
}
.ai-fab-label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ai-fab:hover .ai-fab-label {
  opacity: 1;
  visibility: visible;
}
.ai-chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  width: min(380px, 92vw);
  max-height: 78vh;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.ai-widget.open .ai-chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.ai-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  color: #fff;
  flex: none;
}
.ai-chat-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--cyan);
  flex: none;
}
.ai-chat-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
}
.ai-chat-status {
  font-size: 0.68rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ai-chat-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}
.ai-chat-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex: none;
  transition: background 0.2s ease;
}
.ai-chat-close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.ai-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f7f9fd;
  max-height: 46vh;
}
.ai-msg {
  max-width: 88%;
  font-size: 0.84rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
}
.ai-msg.bot {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  color: var(--ink);
}
.ai-msg.user {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.ai-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}
.ai-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: aiTypingBounce 1.2s infinite ease-in-out;
}
.ai-typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.ai-typing span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes aiTypingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}
.ai-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}
.ai-qa {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.2s ease;
}
.ai-qa:hover {
  background: #eaf1ff;
  border-color: var(--primary);
  transform: translateY(-1px);
}
.ai-qa i {
  color: var(--primary);
  font-size: 0.78rem;
}
.ai-support-row {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.ai-support-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #fff;
  transition: all 0.2s ease;
}
.ai-support-btn.wa {
  color: #128c4a;
}
.ai-support-btn.wa:hover {
  background: #e9f9ef;
  border-color: #25d366;
}
.ai-support-btn.call {
  color: var(--primary);
}
.ai-support-btn.call:hover {
  background: #eaf1ff;
  border-color: var(--primary);
}
.ai-chat-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
  flex: none;
}
.ai-chat-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  background: #f2f6fb;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 6px 4px 14px;
  transition: border-color 0.2s ease;
}
.ai-chat-input-wrap:focus-within {
  border-color: var(--gold);
}
.ai-chat-input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.84rem;
  min-width: 0;
  color: var(--ink);
}
.ai-mic-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex: none;
  transition: all 0.2s ease;
}
.ai-mic-btn:hover {
  background: var(--champagne);
  color: var(--gold-dark);
}
.ai-mic-btn.listening {
  color: #fff;
  background: var(--danger);
  animation: pulseMic 1.2s ease-in-out infinite;
}
.ai-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex: none;
  transition: all 0.2s ease;
}
.ai-send-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.04);
}

/* ============================================================
                   QUICK CONTACT
                   ============================================================ */
.quick-contact {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.qc-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
}
.quick-contact.open .qc-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.qc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}
.qc-item:hover {
  background: var(--champagne);
  border-color: var(--gold);
  transform: translateX(4px);
}
.qc-item i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex: none;
}
.qc-item.wa i {
  background: #25d366;
}
.qc-item.call i {
  background: var(--primary);
}
.qc-item.chat i {
  background: linear-gradient(135deg, var(--navy), var(--gold-dark));
}
.qc-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.25s ease;
}
.qc-fab:hover {
  transform: scale(1.04);
}
.qc-fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  opacity: 0.5;
  animation: qcPing 2.4s ease-out infinite;
}
@keyframes qcPing {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
.quick-contact.open .qc-fab i {
  transform: rotate(135deg);
}
.qc-fab i {
  transition: transform 0.25s ease;
}

/* ============================================================
                   RESPONSIVE
                   ============================================================ */

/* ---- Tablets & below ---- */
@media (max-width: 991.98px) {
  .topbar-center,
  .topbar-right {
    display: none !important;
  }
  .search-wrap,
  .header-actions,
  .main-nav {
    display: none !important;
  }
  .mobile-actions {
    display: flex !important;
  }
  .mobile-row-2 {
    display: flex !important;
  }
  .main-header-inner {
    gap: 12px;
  }
  .topbar-mobile {
    display: flex !important;
  }
  .topbar-rotator {
    display: none !important;
  }
  .mobile-row-2 .dropdown-wrap .panel-dropdown,
  .mobile-actions .dropdown-wrap .panel-dropdown {
    position: fixed;
    top: calc(var(--topbar-h) + var(--header-h) + 48px + 8px);
    right: 12px;
    left: 12px;
    width: auto;
    max-width: 360px;
    margin-left: auto;
    z-index: 1500;
  }
  #siteHeader.scrolled .mobile-row-2 .dropdown-wrap .panel-dropdown,
  #siteHeader.scrolled .mobile-actions .dropdown-wrap .panel-dropdown {
    top: calc(var(--topbar-h) + var(--header-h-scrolled) + 48px + 6px);
  }
  .mobile-row-2 .hdr-badge,
  .mobile-actions .hdr-badge {
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
    top: -2px;
    right: -2px;
  }
  .mobile-row-2 .hdr-icon-btn,
  .mobile-actions .hdr-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  .ai-widget {
    right: 14px;
    bottom: 14px;
  }
  .ai-chat-panel {
    width: min(92vw, 370px);
    right: -6px;
  }
  .quick-contact {
    left: 16px;
    bottom: 16px;
  }
  .qc-fab {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
  .qc-item {
    font-size: 0.72rem;
    padding: 6px 14px 6px 6px;
  }
  .qc-item i {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  .mega-panel {
    display: none !important;
  }
  .dropdown-panel {
    display: none !important;
  }
  .main-nav {
    display: none !important;
  }
}

/* ---- Phones ---- */
@media (max-width: 575.98px) {
  .brand-name {
    font-size: 1.2rem;
  }
  .brand-tagline {
    font-size: 0.5rem;
    letter-spacing: 1px;
  }
  .brand-logo {
    width: 36px;
    height: 36px;
  }
  #siteHeader.scrolled .brand-logo {
    width: 30px;
    height: 30px;
  }
  .brand-crown {
    width: 14px;
    height: 14px;
    font-size: 0.45rem;
    top: -5px;
    right: -5px;
  }
  .main-header-inner {
    padding: 0 12px;
  }
  .mobile-row-2 {
    padding: 4px 12px;
    height: 44px;
  }
  .mobile-row-2 .hdr-icon-btn,
  .mobile-actions .hdr-icon-btn {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .mobile-row-2 .menu-toggle,
  .mobile-actions .menu-toggle {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }
  .mobile-row-2 .panel-dropdown,
  .mobile-actions .panel-dropdown {
    max-width: 94vw;
    right: 8px;
    left: 8px;
  }
  .topbar-mobile {
    font-size: 0.65rem;
  }
  .topbar-mobile .topbar-item i {
    font-size: 0.7rem;
  }
  .topbar-inner {
    padding: 0 12px;
  }
  .ai-widget {
    right: 12px;
    bottom: 14px;
  }
  .ai-fab {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }
  .mobile-panel {
    width: min(300px, 88vw);
  }
  .mp-head .brand-name {
    font-size: 1.1rem;
  }
  .mp-head {
    padding: 14px 16px;
  }
  .mp-body {
    padding: 10px 12px;
  }
  .mp-link {
    font-size: 0.85rem;
    padding: 12px 6px;
  }
  .mp-submenu a {
    font-size: 0.8rem;
    padding: 8px 10px 8px 16px;
  }
  .mobile-row-2 .btn-booknow {
    height: 30px !important;
    padding: 0 10px !important;
    font-size: 0.65rem !important;
  }
  .ai-chat-panel {
    width: 94vw;
    right: -4px;
    max-height: 72vh;
  }
  .ai-chat-body {
    max-height: 38vh;
  }
}

/* ---- Very small phones ---- */
@media (max-width: 400px) {
  .brand-name {
    font-size: 1rem;
  }
  .brand-logo {
    width: 30px;
    height: 30px;
  }
  .brand-crown {
    width: 12px;
    height: 12px;
    font-size: 0.4rem;
  }
  .main-header-inner {
    padding: 0 8px;
    gap: 8px;
  }
  .mobile-row-2 {
    padding: 2px 24px;
  }
  .mobile-row-2 .hdr-icon-btn,
  .mobile-actions .hdr-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  .mobile-row-2 .menu-toggle,
  .mobile-actions .menu-toggle {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  .topbar-mobile {
    font-size: 0.58rem;
  }
  .mobile-row-2 .panel-dropdown,
  .mobile-actions .panel-dropdown {
    max-width: 96vw;
    right: 4px;
    left: 4px;
  }
  .mp-body {
    padding: 8px 8px;
  }
  .mp-link {
    font-size: 0.8rem;
    padding: 10px 4px;
  }
  .mp-submenu a {
    font-size: 0.75rem;
    padding: 6px 8px 6px 14px;
  }
}

/* ---- Small height screens ---- */
@media (max-height: 700px) and (max-width: 991.98px) {
  .mp-body {
    max-height: 50vh;
    overflow-y: auto;
  }
  .mp-link {
    padding: 10px 6px;
    font-size: 0.82rem;
  }
  .mp-submenu a {
    padding: 6px 10px 6px 16px;
    font-size: 0.76rem;
  }
  .mp-head {
    padding: 12px 16px;
  }
  .mp-head .brand-name {
    font-size: 1rem;
  }
  .mp-foot {
    padding: 12px 16px;
  }
  .mp-foot .btn-booknow,
  .mp-foot .btn-ai-planner {
    height: 38px;
    font-size: 0.75rem;
  }
}

/* ---- Landscape phones ---- */
@media (max-width: 767.98px) and (orientation: landscape) {
  .topbar {
    height: 32px;
  }
  :root {
    --topbar-h: 32px;
    --header-h: 64px;
    --header-h-scrolled: 54px;
  }
  .main-header {
    height: var(--header-h);
  }
  #siteHeader.scrolled .main-header {
    height: var(--header-h-scrolled);
  }
  .brand-logo {
    width: 32px;
    height: 32px;
  }
  #siteHeader.scrolled .brand-logo {
    width: 28px;
    height: 28px;
  }
  .brand-name {
    font-size: 1rem;
  }
  .brand-tagline {
    font-size: 0.45rem;
    letter-spacing: 0.8px;
  }
  .brand-crown {
    width: 12px;
    height: 12px;
    font-size: 0.4rem;
    top: -4px;
    right: -4px;
  }
  .mobile-row-2 {
    height: 38px;
    padding: 2px 35px;
  }
  .mobile-row-2 .hdr-icon-btn,
  .mobile-actions .hdr-icon-btn {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  .mobile-row-2 .menu-toggle {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  .topbar-mobile {
    font-size: 0.55rem;
  }
  .mobile-row-2 .btn-booknow {
    height: 26px !important;
    padding: 0 8px !important;
    font-size: 0.6rem !important;
  }
  .main-header-inner {
    padding: 0 10px;
    gap: 8px;
  }
  .topbar-inner {
    padding: 0 10px;
  }
}

/* ---- Tablet landscape & small laptops ---- */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .search-wrap {
    max-width: 320px;
  }
  .search-box {
    height: 40px;
    padding: 3px 4px 3px 12px;
  }
  .search-btn {
    height: 32px;
    font-size: 0.72rem;
    padding: 0 12px;
  }
  .brand-name {
    font-size: 1.3rem;
  }
  .brand-logo {
    width: 38px;
    height: 38px;
  }
  .hdr-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .profile-chip img {
    width: 28px;
    height: 28px;
  }
  .profile-chip .p-name {
    font-size: 0.72rem;
  }
  .profile-chip .p-sub {
    font-size: 0.6rem;
  }
  .btn-booknow {
    height: 38px;
    font-size: 0.75rem;
    padding: 0 16px;
  }
  .nav-link {
    padding: 12px 12px;
    font-size: 0.78rem;
  }
  .mega-panel {
    padding: 20px 16px;
    gap: 12px;
    width: min(90vw, 780px);
    grid-template-columns: repeat(4, 1fr);
  }
  .mega-col-title {
    font-size: 0.7rem;
  }
  .mega-col a {
    font-size: 0.74rem;
    padding: 5px 8px;
  }
  .mega-banner {
    min-height: 180px;
  }
  .mega-banner-content h6 {
    font-size: 1.1rem;
  }
  .dropdown-panel {
    min-width: 220px;
  }
  .dropdown-panel a {
    font-size: 0.76rem;
    padding: 8px 10px;
  }
  .dropdown-panel a i {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
}

/* ---- Large desktops ---- */
@media (min-width: 1400px) {
  .mega-panel {
    padding: 32px 36px 28px;
    gap: 24px;
  }
  .mega-col a {
    font-size: 0.82rem;
    padding: 8px 12px;
  }
  .mega-banner {
    min-height: 260px;
  }
  .dropdown-panel {
    min-width: 280px;
    padding: 12px;
  }
  .dropdown-panel a {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
  .dropdown-panel a i {
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
}

/* ---- Mega panel responsive grid ---- */
@media (max-width: 1199.98px) {
  .mega-panel {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    padding: 20px 16px;
    width: min(94vw, 880px);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .mega-panel {
    grid-template-columns: repeat(4, 1fr);
  }
  .mega-banner {
    grid-column: span 1;
    min-height: 190px;
  }
  .mega-col-title {
    font-size: 0.7rem;
  }
  .mega-col a {
    font-size: 0.74rem;
    padding: 5px 8px;
  }
  .mega-scroll {
    max-height: 240px;
  }
}

/* ---- Filler ---- */
.filler-body {
  padding: 40px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.filler-body h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
}
[data-theme="dark"] .filler-body h1 {
  color: var(--ink);
}
.filler-body p {
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-top: 12px;
}
.filler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.filler-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s ease;
}
.filler-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.filler-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.filler-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
.filler-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
}
/* ============================================================
   VOYARA DATE PICKER — FIXED POSITION (ALWAYS ON TOP)
   ============================================================ */
.vyd-wrap {
  position: relative;
  width: 100%;
}
.vyd-input-trigger {
  width: 100%;
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  padding: 0;
  font-family: var(--font-ui);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vyd-input-trigger::placeholder {
  color: #a7b0c0;
  font-weight: 500;
}
.vyd-input-trigger:focus {
  outline: none;
}

/* FIXED POSITION CALENDAR — ALWAYS ON TOP */
.vyd-calendar-popup {
  position: fixed !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  z-index: 99999999 !important;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(7, 26, 53, 0.45);
  border: 1px solid var(--line);
  padding: 24px 26px 22px;
  width: 340px;
  max-width: 92vw;
  display: none;
  font-family: var(--font-ui);
  transition: all 0.25s cubic-bezier(0.19, 1, 0.22, 1);
}
.vyd-calendar-popup.vyd-open {
  display: block;
  transform: translate(-50%, -50%) scale(1);
}
/* Backdrop overlay */
.vyd-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999998 !important;
  background: rgba(7, 26, 53, 0.3);
  backdrop-filter: blur(4px);
  display: none;
  animation: overlayFade 0.25s ease;
}
.vyd-overlay.vyd-open {
  display: block;
}
@keyframes overlayFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes vydFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.vyd-calendar-popup.vyd-open {
  animation: vydFadeUp 0.3s ease;
}

.vyd-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.vyd-cal-header .vyd-month-year {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}
.vyd-cal-header .vyd-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.vyd-cal-header .vyd-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--champagne);
}
.vyd-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 8px;
}
.vyd-weekdays .vyd-wd {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.5px;
  padding: 4px 0;
}
.vyd-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.vyd-day-btn {
  width: 100%;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-ui);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vyd-day-btn:hover:not(.vyd-empty):not(.vyd-selected) {
  background: var(--champagne);
  color: var(--gold-dark);
}
.vyd-day-btn.vyd-empty {
  cursor: default;
  opacity: 0.3;
}
.vyd-day-btn.vyd-selected {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.3);
}
.vyd-day-btn.vyd-today {
  border: 2px solid var(--gold);
  background: transparent;
}
.vyd-day-btn.vyd-today.vyd-selected {
  border-color: transparent;
}
.vyd-day-btn.vyd-other-month {
  color: var(--muted);
  opacity: 0.4;
}
.vyd-cal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.vyd-cal-footer .vyd-today-btn {
  border: none;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: var(--font-ui);
  cursor: pointer;
}
.vyd-cal-footer .vyd-today-btn:hover {
  background: rgba(37, 99, 235, 0.06);
}
.vyd-cal-footer .vyd-close-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-family: var(--font-ui);
  cursor: pointer;
}
.vyd-cal-footer .vyd-close-btn:hover {
  background: rgba(239, 68, 68, 0.06);
  color: var(--danger);
}

/* ============================================================
   HERO
   ============================================================ */
.atlas-hero {
  position: relative;
  background:
    radial-gradient(
      70% 55% at 88% 6%,
      rgba(201, 162, 39, 0.16) 0%,
      transparent 60%
    ),
    radial-gradient(
      55% 45% at 4% 96%,
      rgba(0, 218, 255, 0.08) 0%,
      transparent 55%
    ),
    linear-gradient(175deg, #04101f 0%, var(--navy) 55%, #0a2244 100%);
  padding: 220px 0 0;
  overflow: hidden;
  width: 100%;
}
.atlas-hero .grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hairline {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0.65),
    rgba(201, 162, 39, 0.05)
  );
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.09) 0%,
    rgba(0, 218, 255, 0.05) 45%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
@media (max-width: 900px) {
  .cursor-glow {
    display: none;
  }
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.atmo-routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.atmo-route-path {
  fill: none;
  stroke: rgba(201, 162, 39, 0.28);
  stroke-width: 1;
  stroke-dasharray: 1 8;
  stroke-linecap: round;
}
.atmo-route-path.cyan {
  stroke: rgba(0, 218, 255, 0.16);
}
.atmo-plane {
  position: absolute;
  filter: drop-shadow(0 0 6px rgba(232, 206, 131, 0.6));
}
.atmo-plane.p1 {
  offset-path: path("M -40,90 C 260,10 520,150 900,60 S 1300,120 1540,40");
  offset-rotate: auto;
  animation: atmoFly1 26s linear infinite;
}
.atmo-plane.p2 {
  offset-path: path("M -40,420 C 300,470 600,360 950,440 S 1350,380 1540,450");
  offset-rotate: auto;
  animation: atmoFly2 34s linear infinite;
  animation-delay: -9s;
}
@keyframes atmoFly1 {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  6% {
    opacity: 0.22;
  }
  94% {
    opacity: 0.22;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
@keyframes atmoFly2 {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  6% {
    opacity: 0.18;
  }
  94% {
    opacity: 0.18;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.atmo-cloud {
  position: absolute;
  opacity: 0.15;
  fill: #ffffff;
  filter: blur(2px);
}
.atmo-cloud.c1 {
  top: 8%;
  left: -15%;
  width: 260px;
  opacity: 0.18;
  animation: atmoDrift 52s linear infinite;
}
.atmo-cloud.c2 {
  top: 32%;
  left: -20%;
  width: 180px;
  opacity: 0.12;
  animation: atmoDrift 68s linear infinite;
  animation-delay: -18s;
}
.atmo-cloud.c3 {
  top: 55%;
  left: -18%;
  width: 150px;
  opacity: 0.15;
  animation: atmoDrift 44s linear infinite;
  animation-delay: -8s;
}
@keyframes atmoDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(150vw);
  }
}

.kicker-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.kicker-txt {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
  font-weight: 500;
}
.kicker-row .hairline {
  flex: 1;
}

.atlas-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--champagne);
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -1px;
  margin: 0 0 26px;
}
.atlas-title .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-line {
  display: block;
  overflow: hidden;
}
.t-line span {
  display: block;
  transform: translateY(112%);
  opacity: 0;
  animation: revealUp 0.95s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.t-line:nth-child(1) span {
  animation-delay: 0.18s;
}
.t-line:nth-child(2) span {
  animation-delay: 0.36s;
}
@keyframes revealUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.atlas-desc {
  font-size: 16.5px;
  line-height: 1.75;
  color: #aab6cf;
  max-width: 440px;
  margin-bottom: 34px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.55s;
}

.atlas-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.72s;
}
.btn-gold {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    105deg,
    var(--gold-light),
    var(--gold) 55%,
    var(--gold-dark)
  );
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  padding: 15px 30px;
  border-radius: 3px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-gold);
  transition:
    transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s ease;
  letter-spacing: 0.2px;
  animation: ctaPulse 3.2s ease-in-out infinite;
}
.btn-gold::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
  animation: ctaShimmer 3.2s ease-in-out infinite;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 162, 39, 0.45);
  color: var(--navy);
  animation-play-state: paused;
}
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: var(--shadow-gold);
  }
  50% {
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.55);
  }
}
@keyframes ctaShimmer {
  0% {
    left: -60%;
  }
  45% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
.btn-ghost-gold {
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 26px;
  border-radius: 3px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}
.btn-ghost-gold:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}
.btn-ghost-gold i {
  font-size: 14px;
  color: var(--gold-light);
}

.trust-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.9s;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
}
.trust-item .stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}
.trust-item .t-txt {
  font-size: 12.5px;
  color: #9aa7c4;
  font-weight: 500;
}
.trust-item .t-txt b {
  color: var(--champagne);
  font-family: var(--font-mono);
  font-weight: 600;
}
.trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.14);
}

/* ============================================================
   GLOBE VISUAL
   ============================================================ */
.globe-wrap {
  position: relative;
  height: 520px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.4s;
}
.globe-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 480px);
  filter: drop-shadow(0 0 10px rgba(224, 169, 109, 0.22));
}
.orbit-ring {
  fill: none;
  stroke: rgba(224, 169, 109, 0.5);
  stroke-width: 1.1;
  stroke-dasharray: 1 7;
  transform-origin: center;
}
.orbit-ring.r2 {
  stroke: rgba(0, 218, 255, 0.26);
  stroke-dasharray: 1 5;
}
.globe-sphere-line {
  fill: none;
  stroke: rgba(224, 169, 109, 0.75);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 6px rgba(224, 169, 109, 0.2));
}
.globe-outline {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 8px rgba(224, 169, 109, 0.45));
}
.plane-orbit {
  offset-path: path("M 240,20 A 220 220 0 1 1 239.9 20");
  offset-rotate: auto;
  animation: orbitFly 16s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  filter: drop-shadow(0 0 6px rgba(232, 206, 131, 0.7));
}
@keyframes orbitFly {
  from {
    offset-distance: 0%;
  }
  to {
    offset-distance: 100%;
  }
}

.orbit-badge {
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
}
.orbit-badge .ob-ring {
  fill: #0d2b52;
  stroke: rgba(232, 206, 131, 0.85);
  stroke-width: 1.6;
}
.orbit-badge .ob-icon {
  fill: var(--gold-light);
  filter: drop-shadow(0 0 4px rgba(232, 206, 131, 0.5));
}

.chip-float {
  position: absolute;
  padding: 11px 15px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 162, 39, 0.32);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.chip-float .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulseDot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.chip-float .c-title {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 1px;
  color: var(--champagne);
  text-transform: uppercase;
  font-weight: 600;
}
.chip-float .c-sub {
  font-size: 10.5px;
  color: #9aa7c4;
  margin-top: 1px;
}
.chip-1 {
  top: 10%;
  left: 0;
  animation: floatY 5.5s ease-in-out infinite;
}
.chip-2 {
  bottom: 12%;
  right: 2%;
  animation: floatY 6.2s ease-in-out infinite;
  animation-delay: 0.6s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 991px) {
  .globe-wrap {
    height: 380px;
    margin-top: 10px;
  }
  .chip-1 {
    top: 2%;
  }
  .chip-2 {
    bottom: 4%;
  }
}

/* ============================================================
   TICKET SEARCH — PROFESSIONAL TABS
   ============================================================ */
.ticket-zone {
  position: relative;
  z-index: 4;
  margin-top: 30px;
}
.ticket-card {
  background: var(--champagne);
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  margin-bottom: -110px;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 1.05s;
  overflow: visible !important;
}

.ticket-tabs {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 12px 12px 0 12px;
  background: #0a1f3a;
  border-radius: 16px 16px 0 0;
}
.ticket-tabs::-webkit-scrollbar {
  display: none;
}
.tk-tab {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 8px 8px 0 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
}
.tk-tab i {
  font-size: 13px;
  width: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease;
}
.tk-tab .tk-tab-badge {
  font-size: 7.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 1px 7px;
  border-radius: 20px;
  background: rgba(201, 162, 39, 0.12);
  color: var(--gold-light);
  letter-spacing: 0.5px;
  border: 1px solid rgba(201, 162, 39, 0.08);
}
.tk-tab:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.03);
}
.tk-tab:hover i {
  color: rgba(255, 255, 255, 0.6);
}
.tk-tab.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}
.tk-tab.active i {
  color: var(--gold-light);
}
.tk-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  border-radius: 2px 2px 0 0;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.tk-tab.active::after {
  width: 50%;
}

.ticket-body {
  display: grid;
  grid-template-columns: auto 1fr;
  position: relative;
}

.tk-stub {
  background: linear-gradient(160deg, #0d2b52, #071a35);
  color: var(--champagne);
  padding: 26px 30px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.tk-stub .stub-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tk-route {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.tk-route .code {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
}
.tk-route .route-line {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-light) 0 4px,
    transparent 4px 8px
  );
  position: relative;
  min-width: 30px;
}
.tk-route .route-line i {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: var(--gold-light);
}
.tk-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #a7b3d0;
  letter-spacing: 0.4px;
}
.tk-meta b {
  color: var(--champagne);
}
.tk-barcode {
  display: flex;
  gap: 2px;
  margin-top: 20px;
  height: 26px;
  align-items: flex-end;
  opacity: 0.85;
}
.tk-barcode span {
  display: block;
  width: 2px;
  background: var(--gold-light);
}

.tk-seam {
  position: relative;
  width: 0;
}
.tk-seam::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: -1px;
  border-left: 2px dashed rgba(7, 26, 53, 0.18);
}
.notch {
  position: absolute;
  left: -11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-800);
  z-index: 2;
}
.notch-top {
  top: -11px;
}
.notch-bottom {
  bottom: -11px;
  background: var(--bg);
}
@media (max-width: 767px) {
  .notch-top {
    background: var(--navy-800);
  }
}

.tk-fields {
  padding: 22px 26px 20px;
}
.tk-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr auto;
  gap: 0;
  border: 1px solid rgba(7, 26, 53, 0.12);
  border-radius: 10px;
  overflow: visible;
  background: #fff;
}
.tk-field {
  padding: 11px 16px;
  border-right: 1px solid rgba(7, 26, 53, 0.1);
  position: relative;
}
.tk-field:last-of-type {
  border-right: none;
}
.tk-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.tk-field label i {
  font-size: 10px;
  color: var(--gold-dark);
}
.tk-field input,
.tk-field .fdisplay {
  border: none;
  width: 100%;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  padding: 0;
  font-family: var(--font-ui);
}
.tk-field input::placeholder {
  color: #a7b0c0;
  font-weight: 500;
}
.tk-field input:focus {
  outline: none;
}
.tk-field.clickable {
  cursor: pointer;
}
.tk-swap {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(7, 26, 53, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.4s ease,
    border-color 0.3s ease;
}
.tk-swap:hover {
  transform: translateY(-50%) rotate(180deg);
  border-color: var(--gold);
}
.tk-swap i {
  font-size: 12px;
  color: var(--gold-dark);
}

.tk-field-search {
  padding: 8px;
  display: flex;
}

.btn-tk-search {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
}
.btn-tk-search:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(201, 162, 39, 0.5);
  filter: brightness(1.05);
}
.btn-tk-search i {
  font-size: 16px;
  color: var(--navy);
}

.tk-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-strong);
  padding: 16px;
  width: 260px;
  margin-top: 12px !important;
}
.tc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}
.tc-row + .tc-row {
  border-top: 1px solid var(--line);
}
.tc-name {
  font-size: 13px;
  font-weight: 700;
}
.tc-sub {
  font-size: 10.5px;
  color: var(--muted);
}
.tc-controls {
  display: flex;
  align-items: center;
  gap: 11px;
}
.tc-btn {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-700);
  transition: all 0.25s ease;
}
.tc-btn:hover:not(:disabled) {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
}
.tc-btn:disabled {
  opacity: 0.3;
}
.tc-btn i {
  font-size: 10px;
}
.tc-val {
  width: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}
.tc-done {
  width: 100%;
  margin-top: 12px;
  border: none;
  border-radius: 8px;
  padding: 9px;
  background: linear-gradient(100deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 12px;
}

.tk-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 26px 22px;
  margin: 16px 26px 0;
  border-top: 1px dashed rgba(7, 26, 53, 0.15);
}
.tk-ai-lbl {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.tk-ai-lbl i {
  font-size: 12px;
  color: var(--gold-dark);
}
.tk-chip-track {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.tk-chip-track::-webkit-scrollbar {
  display: none;
}
.tk-chip {
  flex-shrink: 0;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--champagne);
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(13, 43, 82, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.tk-chip:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 16px rgba(201, 162, 39, 0.35);
  transform: translateY(-2px);
}

.tk-photo-float {
  position: absolute;
  bottom: calc(100% + 26px);
  right: 34px;
  width: 168px;
  z-index: 6;
  border-radius: 14px;
  overflow: hidden;
  background: var(--champagne);
  border: 5px solid var(--champagne);
  box-shadow: var(--shadow-strong);
  transform: rotate(4deg);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 1.25s;
}
.tk-photo-float:hover {
  transform: rotate(0deg) translateY(-6px);
}
.tk-photo-float .tpf-img-wrap {
  position: relative;
  line-height: 0;
  border-radius: 9px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(7, 26, 53, 0.08),
    inset 0 -18px 24px -10px rgba(7, 26, 53, 0.35);
}
.tk-photo-float .tpf-img {
  display: block;
  width: 100%;
  height: 118px;
  object-fit: cover;
}
.tk-photo-float .tpf-cap {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 3px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.6px;
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
}
.tk-photo-float .tpf-cap .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .tk-photo-float {
    right: 10px;
    width: 140px;
  }
}
@media (max-width: 991px) {
  .tk-photo-float {
    display: none;
  }
}

.hero-spacer {
  height: 130px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   EXPERIENCE HIGHLIGHTS
   ============================================================ */
.exp-section {
  background: var(--bg);
  padding: 64px 0 96px;
  position: relative;
}
.exp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}
.exp-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.exp-kicker-txt {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  white-space: nowrap;
}
.hairline-dark {
  height: 1px;
  width: 52px;
  background: linear-gradient(
    90deg,
    rgba(201, 162, 39, 0.7),
    rgba(201, 162, 39, 0.05)
  );
}
.exp-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.exp-h2 .accent-ink {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--gold-dark),
    var(--gold) 55%,
    var(--gold-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.exp-sub-lead {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 360px;
  margin: 10px 0 0;
  line-height: 1.6;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.exp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 18px 26px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
  cursor: pointer;
}
.exp-card:hover {
  transform: translateY(-9px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 26px 50px rgba(7, 26, 53, 0.16);
}
.exp-icon-badge {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(160deg, var(--navy-700), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow:
    0 10px 22px rgba(7, 26, 53, 0.28),
    inset 0 0 0 1px rgba(201, 162, 39, 0.35);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.exp-icon-badge::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 162, 39, 0.45);
}
.exp-icon-badge i {
  font-size: 22px;
  color: var(--gold-light);
}
.exp-card:hover .exp-icon-badge {
  transform: scale(1.08) rotate(-6deg);
}

.exp-title-sm {
  font-family: var(--font-display);
  font-size: 18.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.2px;
}
.exp-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 20px;
  min-height: 38px;
}

.exp-tear {
  position: relative;
  width: 100%;
  margin: 0 -18px 16px;
  border-top: 1px dashed rgba(15, 27, 45, 0.2);
}
.exp-tear::before,
.exp-tear::after {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg);
  z-index: 2;
}
.exp-tear::before {
  left: -10px;
}
.exp-tear::after {
  right: -10px;
}

.exp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
  margin-top: auto;
}
.exp-link i {
  font-size: 11px;
  color: var(--gold-dark);
  transition: transform 0.3s ease;
}
.exp-card:hover .exp-link {
  color: var(--navy);
}
.exp-card:hover .exp-link i {
  transform: translateX(5px);
  color: var(--gold-dark);
}

@media (max-width: 1200px) {
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .exp-card {
    padding: 24px 12px 20px;
    border-radius: 14px;
  }
  .exp-icon-badge {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }
  .exp-icon-badge i {
    font-size: 18px;
  }
  .exp-title-sm {
    font-size: 15.5px;
  }
  .exp-sub {
    font-size: 11px;
    min-height: 0;
    margin-bottom: 16px;
  }
}

@media (max-width: 991px) {
  .ticket-body {
    grid-template-columns: 1fr;
  }
  .tk-stub {
    border-radius: 0;
  }
  .tk-seam {
    display: none;
  }
  .tk-fields-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tk-field {
    border-bottom: 1px solid rgba(7, 26, 53, 0.1);
  }
  .tk-field-search {
    grid-column: 1/-1;
    padding: 12px 4px 4px;
  }
  .tk-swap {
    display: none;
  }
  .hero-spacer {
    height: 250px;
  }
}
@media (max-width: 767px) {
  .atlas-hero {
    padding-top: 160px;
  }
  .tk-fields-grid {
    grid-template-columns: 1fr;
  }
  .atlas-cta {
    flex-direction: column;
  }
  .btn-gold,
  .btn-ghost-gold {
    justify-content: center;
    width: 100%;
  }
  .tk-fields {
    padding: 18px 16px 16px;
  }
  .tk-footer {
    margin: 0 16px;
    padding: 14px 0 18px;
  }
  .hero-spacer {
    height: 150px;
  }
  .trust-strip {
    gap: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/*===========================POPULAR DESTINATION STYLING================================*/

/* ============================================================ SECTION SHELL */
.popular-dest {
  position: relative;
  background: var(--bg);
  padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.pd-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.pd-bg .grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.blur-tl {
  position: absolute;
  top: -180px;
  left: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%);
  filter: blur(14px);
}
.blur-br {
  position: absolute;
  bottom: -200px;
  right: -180px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 206, 131, 0.12),
    transparent 70%
  );
  filter: blur(14px);
}
.pd-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, 90%);
  height: auto;
  opacity: 0.035;
}
.pd-icon-scatter {
  position: absolute;
  opacity: 0.03;
  color: var(--navy);
  font-size: 32px;
}
.pi-1 {
  top: 10%;
  left: 5%;
  transform: rotate(-18deg);
}
.pi-2 {
  top: 74%;
  left: 9%;
  transform: rotate(12deg);
}
.pi-3 {
  top: 16%;
  right: 7%;
  transform: rotate(25deg);
}
.pi-4 {
  top: 68%;
  right: 11%;
  transform: rotate(-10deg);
}

/* ============================================================ HEADER */
.pd-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 2;
}
.pd-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.pd-header.in-view {
  opacity: 1;
  transform: translateY(0);
}
.pd-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.pd-eyebrow .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-dark);
}
.pd-eyebrow .ln {
  width: 38px;
  height: 1px;
  background: var(--gold);
}
.pd-eyebrow .txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.pd-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.03;
  margin: 0 0 14px;
  letter-spacing: -1px;
}
.pd-heading .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--gold-dark),
    var(--gold) 55%,
    var(--gold-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pd-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.75;
  margin: 0;
}
.pd-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.pd-tabs {
  position: relative;
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadow-soft);
}
.pd-tab-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  border-radius: 999px;
  background: linear-gradient(100deg, var(--navy), #0d2c56);
  transition:
    transform 0.45s cubic-bezier(0.65, 0, 0.15, 1),
    width 0.45s cubic-bezier(0.65, 0, 0.15, 1);
  box-shadow: 0 8px 18px rgba(7, 26, 53, 0.22);
}
.pd-tab {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--muted);
  transition: color 0.35s ease;
  white-space: nowrap;
}
.pd-tab.active {
  color: #fff;
}
.pd-tab:not(.active):hover {
  color: var(--gold-dark);
}

/* ============================================================ SLIDER */
.pd-slider-wrap {
  position: relative;
  margin-top: 34px;
}
.pd-slider-outer {
  position: relative;
}

.swiper {
  width: 100%;
  padding: 18px 4px 40px;
  overflow: visible;
}
.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.pd-slide-card {
  width: 100%;
}

/* ============================================================ ULTRA PREMIUM CARD */
.pd-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.5s ease;
  cursor: pointer;
  border: 1px solid var(--line);
}
.swiper-slide-active .pd-card {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(201, 162, 39, 0.15);
}
.pd-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

/* ---- Image ---- */
.pd-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--navy);
}
.pd-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.6s ease;
}
.pd-card:hover .pd-card-img {
  transform: scale(1.08);
  filter: brightness(1.02);
}
.pd-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 26, 53, 0.4) 0%,
    rgba(7, 26, 53, 0.05) 50%
  );
}
.pd-card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.pd-card-badge i {
  font-size: 8px;
  color: var(--gold-light);
}
.pd-card-num {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 3;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 999px;
}
.pd-card-num .ln {
  width: 14px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

/* ---- Card Body ---- */
.pd-card-body {
  padding: 16px 18px 14px;
  background: var(--surface);
}
.pd-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5px;
  letter-spacing: -0.2px;
  line-height: 1.1;
}

/* ---- Row 1: Country + Rating ---- */
.pd-card-row1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.pd-card-country {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.pd-card-country i {
  font-size: 9px;
  color: var(--gold-dark);
}
.pd-card-country .flag {
  font-size: 14px;
  line-height: 1;
}
.pd-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pd-card-rating i {
  font-size: 10px;
  color: var(--gold);
}
.pd-card-rating .score {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}
.pd-card-rating .reviews {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}

/* ---- Divider ---- */
.pd-card-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
  margin-bottom: 11px;
}

/* ---- Row 2: Price + Explore Button ---- */
.pd-card-row2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pd-card-price {
  display: flex;
  flex-direction: column;
}
.pd-card-price .label {
  font-size: 7.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.pd-card-price .amount {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.pd-card-price .amount .currency {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
}

.pd-card-explore {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  border: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.25);
  white-space: nowrap;
}
.pd-card-explore i {
  font-size: 10px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pd-card-explore:hover {
  transform: translateX(4px) scale(1.04);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.35);
}
.pd-card-explore:hover i {
  transform: translateX(4px) rotate(-45deg);
}

/* ---- NAV ARROWS ---- */
.pd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s ease;
  margin-top: -16px;
}
.pd-nav i {
  font-size: 17px;
}
.pd-nav:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.pd-nav:active {
  transform: translateY(-50%) scale(0.94);
}
.pd-nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.pd-nav-prev {
  left: -8px;
}
.pd-nav-next {
  right: -8px;
}

@media (min-width: 1440px) {
  .pd-nav-prev {
    left: -28px;
  }
  .pd-nav-next {
    right: -28px;
  }
}
@media (max-width: 640px) {
  .pd-nav {
    width: 42px;
    height: 42px;
  }
  .pd-nav i {
    font-size: 14px;
  }
  .pd-nav-prev {
    left: 2px;
  }
  .pd-nav-next {
    right: 2px;
  }
}

.pd-progress-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
}
.pd-progress-bar {
  width: 170px;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.pd-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.4s cubic-bezier(0.65, 0, 0.15, 1);
}
.pd-progress-count {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.pd-progress-count b {
  color: var(--navy);
  font-weight: 600;
}

/* ============================================================ BOTTOM STRIP */
.pd-strip {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 28px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.pd-strip:hover {
  border-color: rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-soft);
}
.pd-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pd-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 17px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.pd-strip:hover .pd-strip-icon {
  background: rgba(201, 162, 39, 0.06);
}
.pd-strip-left p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  max-width: 440px;
  line-height: 1.5;
}
.pd-strip-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  background: linear-gradient(100deg, var(--navy), #123467);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.pd-strip-btn i {
  font-size: 12px;
  color: var(--gold-light);
  transition: transform 0.3s ease;
}
.pd-strip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 26, 53, 0.28);
}
.pd-strip-btn:hover i {
  transform: translateX(4px);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .pd-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .pd-header-right {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .pd-card-img-wrap {
    height: 160px;
  }
  .pd-card-title {
    font-size: 17px;
  }
  .pd-header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .pd-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .pd-strip-btn {
    width: 100%;
    justify-content: center;
  }
  .pd-card-body {
    padding: 12px 14px 12px;
  }
  .pd-card-row1 {
    flex-wrap: wrap;
    gap: 4px;
  }
  .pd-card-explore {
    padding: 6px 12px 6px 10px;
    font-size: 10px;
  }
  .pd-card-price .amount {
    font-size: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
/* ================= AI PLANNER SECTION WRAPPER ================= */
.ai-planner-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 90px;
  background:
    radial-gradient(
      900px 500px at 12% 8%,
      rgba(37, 99, 235, 0.1),
      transparent 60%
    ),
    radial-gradient(
      700px 500px at 90% 85%,
      rgba(0, 218, 255, 0.08),
      transparent 55%
    ),
    var(--bg);
}

/* floating particles */
.ai-particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.4;
  filter: blur(0.3px);
  animation: floatParticle linear infinite;
  box-shadow: 0 0 8px 2px rgba(0, 218, 255, 0.3);
}
@keyframes floatParticle {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-620px) translateX(30px);
    opacity: 0;
  }
}

/* plane route svg */
.ai-plane-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.2;
}
.ai-plane-route path {
  fill: none;
  stroke: url(#planeGrad);
  stroke-width: 1.6;
  stroke-dasharray: 6 8;
  animation: dashMove 6s linear infinite;
}
@keyframes dashMove {
  to {
    stroke-dashoffset: -140;
  }
}
.ai-plane-icon {
  position: absolute;
  font-size: 1rem;
  color: var(--primary);
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.5));
  offset-rotate: auto;
  animation: planeFly 9s linear infinite;
}
@keyframes planeFly {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.ai-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 40px;
  align-items: center;
}

/* ================= LEFT SIDE ================= */
.ai-left {
  color: var(--ink);
}
.ai-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--primary);
  margin-bottom: 22px;
}
.ai-top-badge i {
  color: var(--gold);
}
.ai-top-badge .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

.ai-heading {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 3.6vw, 3.15rem);
  line-height: 1.18;
  margin: 0 0 18px;
  background: linear-gradient(
    100deg,
    var(--ink) 25%,
    var(--primary) 55%,
    var(--ink) 80%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shineText 5s linear infinite;
  min-height: 2.4em;
}
@keyframes shineText {
  to {
    background-position: -220% center;
  }
}
.ai-heading .cursor {
  display: inline-block;
  width: 3px;
  margin-left: 2px;
  background: var(--primary);
  animation: blinkCursor 0.85s steps(1) infinite;
}
@keyframes blinkCursor {
  50% {
    opacity: 0;
  }
}

.ai-subtext {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 34px;
}

/* ===== REAL AI ORB ===== */
.ai-orb-stage {
  position: relative;
  width: 210px;
  height: 210px;
  margin: 0 auto 36px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.ai-orb-ring.r1 {
  width: 210px;
  height: 210px;
  animation: ringSpin 14s linear infinite;
}
.ai-orb-ring.r2 {
  width: 170px;
  height: 170px;
  border-style: dashed;
  border-color: rgba(37, 99, 235, 0.25);
  animation: ringSpin 10s linear infinite reverse;
}
.ai-orb-ring.r3 {
  width: 135px;
  height: 135px;
  border-color: rgba(201, 162, 39, 0.2);
  animation: ringSpin 18s linear infinite;
}
@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.ai-orb-core {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 32% 28%,
    rgba(255, 255, 255, 0.9),
    var(--cyan) 35%,
    var(--primary) 65%,
    var(--navy) 100%
  );
  box-shadow:
    0 0 40px 10px rgba(0, 218, 255, 0.25),
    0 0 90px 30px rgba(37, 99, 235, 0.15),
    inset 0 0 24px rgba(255, 255, 255, 0.35);
  animation: orbPulse 3.2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-orb-core i {
  font-size: 1.7rem;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  animation: orbIconFloat 3.2s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,
  100% {
    box-shadow:
      0 0 40px 10px rgba(0, 218, 255, 0.25),
      0 0 90px 30px rgba(37, 99, 235, 0.15),
      inset 0 0 24px rgba(255, 255, 255, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow:
      0 0 55px 18px rgba(0, 218, 255, 0.35),
      0 0 120px 40px rgba(37, 99, 235, 0.25),
      inset 0 0 30px rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
  }
}
@keyframes orbIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.ai-orb-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px 2px rgba(0, 218, 255, 0.6);
  animation: orbitDot 5s linear infinite;
}
.ai-orb-dot.d2 {
  background: var(--gold);
  box-shadow: 0 0 8px 2px rgba(201, 162, 39, 0.6);
  animation-duration: 7s;
  animation-direction: reverse;
}
.ai-orb-dot.d3 {
  background: #fff;
  animation-duration: 9s;
}
@keyframes orbitDot {
  from {
    transform: rotate(0deg) translateX(100px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(100px) rotate(-360deg);
  }
}

/* ===== 4 floating glass chips ===== */
.ai-chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 420px;
}
.ai-glass-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  border-radius: 16px;
  padding: 14px 16px;
  animation: chipFloat 4.5s ease-in-out infinite;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.ai-glass-chip:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-strong);
}
.ai-glass-chip:nth-child(1) {
  animation-delay: 0s;
}
.ai-glass-chip:nth-child(2) {
  animation-delay: 0.6s;
}
.ai-glass-chip:nth-child(3) {
  animation-delay: 1.2s;
}
.ai-glass-chip:nth-child(4) {
  animation-delay: 1.8s;
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
.ai-chip-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.ai-chip-icon.blue {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}
.ai-chip-icon.gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}
.ai-chip-icon.green {
  background: linear-gradient(135deg, #34d399, var(--success));
}
.ai-chip-icon.navy {
  background: linear-gradient(135deg, var(--primary-dark), var(--navy));
}
.ai-chip-text .t1 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.ai-chip-text .t2 {
  font-size: 0.68rem;
  color: var(--muted);
}

/* ===== stats badge ===== */
.ai-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.ai-stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--ink);
}
.ai-stat-pill i {
  color: var(--gold);
}
.ai-stat-pill .num {
  color: var(--primary);
  font-family: "Sora", sans-serif;
}

/* ================= RIGHT SIDE — FORM CARD ================= */
.ai-form-wrap {
  position: relative;
}
.ai-form-card {
  position: relative;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  isolation: isolate;
}
.ai-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle, 0deg),
    var(--cyan),
    var(--primary),
    var(--gold-light),
    var(--cyan)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderSpin 6s linear infinite;
  z-index: -1;
}
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes borderSpin {
  to {
    --angle: 360deg;
  }
}

.ai-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.ai-form-head h3 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.15rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ai-form-head h3 i {
  color: var(--primary);
}
.ai-progress-dots {
  display: flex;
  gap: 6px;
}
.ai-progress-dots span {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  background: var(--line);
  transition: background 0.3s ease;
}
.ai-progress-dots span.done {
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.ai-step {
  margin-bottom: 24px;
}
.ai-step-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.ai-step-label .num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  color: var(--primary);
  flex: none;
}
.ai-step-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}

/* step 1: where */
.ai-input-wrap {
  position: relative;
}
.ai-input-wrap input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px 14px 44px;
  color: var(--ink);
  font-size: 0.92rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.ai-input-wrap input::placeholder {
  color: var(--muted);
}
.ai-input-wrap input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}
.ai-input-wrap i.icon-left {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.ai-autocomplete {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  max-height: 210px;
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
}
.ai-autocomplete.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ai-autocomplete .opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 9px;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
}
.ai-autocomplete .opt:hover {
  background: rgba(37, 99, 235, 0.06);
}
.ai-autocomplete .opt i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* step 2: budget slider */
.ai-budget-value {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}
.ai-budget-value .amt {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
}
.ai-budget-value .amt span {
  color: var(--primary);
}
.ai-budget-value .lbl {
  font-size: 0.72rem;
  color: var(--muted);
}
.ai-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--cyan) var(--fill, 50%),
    var(--line) var(--fill, 50%)
  );
  outline: none;
  cursor: pointer;
}
.ai-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow:
    0 0 0 5px rgba(0, 218, 255, 0.25),
    var(--shadow-soft);
  cursor: pointer;
}
.ai-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 6px;
}

/* chip select groups (step 3/4/5) */
.ai-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.ai-option-chip {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-option-chip i {
  font-size: 0.78rem;
  color: var(--muted);
}
.ai-option-chip:hover {
  border-color: var(--primary);
}
.ai-option-chip.selected {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}
.ai-option-chip.selected i {
  color: #fff;
}
.ai-custom-days {
  margin-top: 10px;
  display: none;
  align-items: center;
  gap: 8px;
}
.ai-custom-days.show {
  display: flex;
}
.ai-custom-days input {
  width: 90px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--ink);
  font-size: 0.85rem;
  outline: none;
}
.ai-custom-days span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* generate button */
.ai-generate-btn {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(
    120deg,
    var(--primary),
    var(--cyan),
    var(--primary)
  );
  background-size: 220% auto;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  animation:
    btnGlow 2.4s ease-in-out infinite,
    btnGradient 5s linear infinite;
}
@keyframes btnGradient {
  to {
    background-position: -220% center;
  }
}
@keyframes btnGlow {
  0%,
  100% {
    box-shadow:
      0 8px 24px rgba(37, 99, 235, 0.3),
      0 0 0 rgba(0, 218, 255, 0);
  }
  50% {
    box-shadow:
      0 10px 32px rgba(37, 99, 235, 0.45),
      0 0 26px rgba(0, 218, 255, 0.3);
  }
}
.ai-generate-btn:active {
  transform: scale(0.98);
}
.ai-generate-btn:disabled {
  cursor: progress;
}
.ai-generate-btn .spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
  display: none;
}
.ai-generate-btn.loading .spinner {
  display: inline-block;
}
.ai-generate-btn.loading .btn-label {
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* loading text */
.ai-loading-text {
  display: none;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
}
.ai-loading-text.show {
  display: flex;
}
.ai-loading-text .dots span {
  animation: loadDot 1.2s infinite;
  opacity: 0;
}
.ai-loading-text .dots span:nth-child(1) {
  animation-delay: 0s;
}
.ai-loading-text .dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.ai-loading-text .dots span:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes loadDot {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* result preview */
.ai-result {
  margin-top: 22px;
  padding: 22px;
  background: linear-gradient(
    160deg,
    rgba(37, 99, 235, 0.06),
    rgba(0, 218, 255, 0.04)
  );
  border: 1px solid rgba(0, 218, 255, 0.2);
  border-radius: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.ai-result.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ai-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  gap: 10px;
}
.ai-result-head .match {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}
.ai-result-dest {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.15rem;
}
.ai-result-why {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 2px 0 0;
}
.ai-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 0;
}
.ai-result-item {
  background: var(--bg);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
}
.ai-result-item .v {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}
.ai-result-item .l {
  font-size: 0.66rem;
  color: var(--muted);
  margin-top: 2px;
}
.ai-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 14px;
}
.ai-result-tags span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 4px 10px;
  border-radius: 999px;
}
.ai-result-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.ai-result-actions button {
  flex: 1;
  padding: 11px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
}
.ai-result-actions .primary {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
}
.ai-result-actions .ghost {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
}

.ai-field-error {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--warning);
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 8px;
}
.ai-field-error.show {
  display: flex;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .ai-container {
    grid-template-columns: 1fr;
  }
  .ai-orb-stage {
    margin: 0 auto 30px;
  }
  .ai-chips-grid {
    max-width: 100%;
    margin: 0 auto;
  }
  .ai-left {
    text-align: center;
  }
  .ai-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  .ai-stats-strip {
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .ai-planner-section {
    padding: 70px 16px 60px;
  }
  .ai-orb-stage {
    width: 170px;
    height: 170px;
  }
  .ai-orb-ring.r1 {
    width: 170px;
    height: 170px;
  }
  .ai-orb-ring.r2 {
    width: 138px;
    height: 138px;
  }
  .ai-orb-ring.r3 {
    width: 108px;
    height: 108px;
  }
  .ai-orb-core {
    width: 78px;
    height: 78px;
  }
  .ai-chips-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ai-glass-chip {
    padding: 11px 12px;
  }
  .ai-form-card {
    padding: 20px;
  }
  .ai-result-grid {
    grid-template-columns: 1fr;
  }
  .ai-option-chip {
    font-size: 0.75rem;
    padding: 8px 12px;
  }
}

/* ========================= PACKAGES  SECTION WRAPPER=================== */
.featured-packages {
  position: relative;
  padding: clamp(70px, 10vw, 110px) 0 clamp(80px, 12vw, 130px);
  background: var(--bg);
  overflow: hidden;
}

.fp-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.fp-bg .grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.fp-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}
.fp-blur--1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -100px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
}
.fp-blur--2 {
  width: 400px;
  height: 400px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
}
.fp-blur--3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  opacity: 0.05;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.fp-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  position: relative;
  z-index: 2;
}

/* ============================================================
   HEADER
   ============================================================ */
.fp-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.fp-header.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fp-header-left {
  flex: 1;
  min-width: 240px;
}
.fp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 7px 18px 7px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 16px;
}
.fp-badge i {
  color: var(--gold);
  font-size: 0.85rem;
}
.fp-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  animation: fpDotPulse 1.6s ease-in-out infinite;
}
@keyframes fpDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.fp-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
  color: var(--navy);
}
.fp-heading .accent {
  font-style: italic;
  background: linear-gradient(
    100deg,
    var(--gold-dark),
    var(--gold) 55%,
    var(--gold-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fp-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  margin: 0;
}

/* ===== FILTER TABS ===== */
.fp-tabs-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  flex-shrink: 0;
}
.fp-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadow-soft);
}
.fp-tab {
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: all 0.35s ease;
  white-space: nowrap;
}
.fp-tab:hover {
  color: var(--gold-dark);
}
.fp-tab.active {
  background: linear-gradient(135deg, var(--navy), #0d2c56);
  color: #fff;
  box-shadow: 0 6px 16px rgba(7, 26, 53, 0.25);
}
.fp-tab i {
  margin-right: 5px;
  font-size: 0.7rem;
}

/* ============================================================
   SWIPER SLIDER — 3D CURVE EFFECT
   ============================================================ */
.fp-slider-wrap {
  position: relative;
  margin-top: 12px;
  padding: 20px 0 10px;
}

.fp-swiper {
  width: 100%;
  padding: 18px 0 50px;
  overflow: visible;
}

/* ===== 3D CURVE STYLING ===== */
.fp-swiper .swiper-slide {
  transition: all 0.55s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.35;
  transform: scale(0.88) perspective(800px) rotateY(4deg);
  filter: blur(1.5px);
  transform-origin: center center;
}
.fp-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1) perspective(800px) rotateY(0deg);
  filter: blur(0);
}
.fp-swiper .swiper-slide-next {
  opacity: 0.65;
  transform: scale(0.92) perspective(800px) rotateY(-3deg);
  filter: blur(0.8px);
}
.fp-swiper .swiper-slide-prev {
  opacity: 0.65;
  transform: scale(0.92) perspective(800px) rotateY(3deg);
  filter: blur(0.8px);
}
.fp-swiper
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(
    .swiper-slide-prev
  ) {
  opacity: 0.2;
  transform: scale(0.78) perspective(800px) rotateY(6deg);
  filter: blur(3px);
}

/* shadow beneath cards for depth */
.fp-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(7, 26, 53, 0.12), transparent 70%);
  filter: blur(12px);
  z-index: -1;
  transition: all 0.5s ease;
  opacity: 0.5;
}
.fp-swiper .swiper-slide-active::after {
  opacity: 0.8;
  transform: scale(1.1);
  bottom: -24px;
}

/* ============================================================
   PACKAGE CARD
   ============================================================ */
.fp-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 12px 32px rgba(7, 26, 53, 0.08);
  border: 1px solid var(--line);
  transition:
    box-shadow 0.4s ease,
    transform 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.fp-card:hover {
  box-shadow: 0 24px 56px rgba(7, 26, 53, 0.16);
  transform: translateY(-4px);
}

.fp-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy);
}
.fp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.6s ease;
}
.fp-card:hover .fp-card-img {
  transform: scale(1.06);
  filter: saturate(1.05);
}
.fp-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 26, 53, 0.4) 0%, transparent 50%);
}

.fp-offer-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--danger), #dc2626);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  animation: fpOfferPulse 2.4s ease-in-out infinite;
}
@keyframes fpOfferPulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 4px 24px rgba(239, 68, 68, 0.65);
  }
}
.fp-offer-badge i {
  font-size: 0.6rem;
}

.fp-card-top-right {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.fp-rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
}
.fp-rating-badge i {
  color: var(--gold);
  font-size: 0.6rem;
}
.fp-duration-badge {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fp-card-body {
  padding: 18px 20px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fp-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.2;
}
.fp-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.fp-card-location i {
  font-size: 0.65rem;
  color: var(--gold);
}

.fp-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.fp-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.fp-feature i {
  font-size: 0.6rem;
  color: var(--primary);
}

.fp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.fp-price {
  display: flex;
  flex-direction: column;
}
.fp-price .label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.fp-price .amount {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.fp-price .amount span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}
.fp-book-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}
.fp-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}
.fp-book-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.fp-book-btn:hover i {
  transform: translateX(3px);
}

/* ============================================================
   NAV ARROWS
   ============================================================ */
.fp-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s ease;
}
.fp-nav i {
  font-size: 1.1rem;
}
.fp-nav:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.fp-nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.fp-nav-prev {
  left: -20px;
}
.fp-nav-next {
  right: -20px;
}

@media (min-width: 1200px) {
  .fp-nav-prev {
    left: -28px;
  }
  .fp-nav-next {
    right: -28px;
  }
}
@media (max-width: 768px) {
  .fp-nav {
    width: 40px;
    height: 40px;
  }
  .fp-nav i {
    font-size: 0.9rem;
  }
  .fp-nav-prev {
    left: 4px;
  }
  .fp-nav-next {
    right: 4px;
  }
}

/* ============================================================
   PROGRESS / PAGINATION
   ============================================================ */
.fp-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
}
.fp-pagination-bar {
  width: 160px;
  height: 2.5px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.fp-pagination-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transition: width 0.5s cubic-bezier(0.65, 0, 0.15, 1);
}
.fp-pagination-count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.fp-pagination-count b {
  color: var(--navy);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .fp-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .fp-tabs-wrap {
    align-items: flex-start;
    width: 100%;
  }
  .fp-tabs {
    flex-wrap: wrap;
    width: 100%;
    border-radius: 16px;
    padding: 8px;
  }
  .fp-tab {
    padding: 8px 14px;
    font-size: 0.7rem;
  }
  .fp-swiper .swiper-slide {
    transform: scale(0.92) perspective(800px) rotateY(0deg);
    opacity: 0.6;
    filter: blur(1px);
  }
  .fp-swiper .swiper-slide-active {
    transform: scale(1) perspective(800px) rotateY(0deg);
    opacity: 1;
    filter: blur(0);
  }
  .fp-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.3;
    transform: scale(0.85) perspective(800px) rotateY(0deg);
    filter: blur(2px);
  }
}

@media (max-width: 640px) {
  .featured-packages {
    padding: 50px 0 60px;
  }
  .fp-card-img-wrap {
    height: 180px;
  }
  .fp-card-title {
    font-size: 1rem;
  }
  .fp-features {
    gap: 6px;
  }
  .fp-feature {
    font-size: 0.6rem;
    padding: 3px 8px;
  }
  .fp-price .amount {
    font-size: 1rem;
  }
  .fp-book-btn {
    padding: 7px 14px;
    font-size: 0.7rem;
  }
  .fp-offer-badge {
    font-size: 0.5rem;
    padding: 4px 10px;
  }
  .fp-rating-badge {
    font-size: 0.6rem;
    padding: 3px 8px;
  }
  .fp-duration-badge {
    font-size: 0.5rem;
    padding: 3px 8px;
  }
  .fp-swiper {
    padding: 10px 0 30px;
  }
  .fp-swiper .swiper-slide::after {
    display: none;
  }
  .fp-tabs {
    gap: 4px;
    padding: 6px;
  }
  .fp-tab {
    padding: 6px 12px;
    font-size: 0.65rem;
  }
  .fp-tab i {
    font-size: 0.6rem;
  }
  .fp-pagination-bar {
    width: 100px;
  }
}

@media (max-width: 400px) {
  .fp-card-img-wrap {
    height: 150px;
  }
  .fp-card-body {
    padding: 12px 14px 12px;
  }
  .fp-features {
    flex-wrap: wrap;
    gap: 4px;
  }
  .fp-feature {
    font-size: 0.55rem;
    padding: 2px 6px;
  }
  .fp-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .fp-book-btn {
    justify-content: center;
  }
}

/*===========================WHY CHOOSE SECTION===========================*/
.why-luxury {
  position: relative;
  padding: 120px 0 100px;
  background: var(--bg);
  overflow: hidden;
}

/* ===== subtle background ===== */
.why-luxury .bg-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.why-luxury .bg-decor .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
}
.why-luxury .bg-decor .orb--gold {
  width: 600px;
  height: 600px;
  top: -250px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(200, 162, 98, 0.06),
    transparent 70%
  );
}
.why-luxury .bg-decor .orb--navy {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(10, 22, 40, 0.04), transparent 70%);
}
.why-luxury .bg-decor .grain {
  position: absolute;
  inset: 0;
  opacity: 0.012;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   CONTAINER
   ============================================================ */
.why-luxury .container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============================================================
   HEADER — REFINED
   ============================================================ */
.why-luxury .header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-luxury .header.in-view {
  opacity: 1;
  transform: translateY(0);
}
.why-luxury .header .badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.why-luxury .header .badge .line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.why-luxury .header .badge .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.why-luxury .header .heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.06;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.why-luxury .header .heading .gold {
  color: var(--gold-dark);
  font-style: italic;
}
.why-luxury .header .sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin: 0 auto;
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ============================================================
   BENTO GRID — REFINED
   ============================================================ */
.why-luxury .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(110px, auto);
  gap: 16px;
  position: relative;
}

/* ============================================================
   CARDS — ICON + TITLE SIDE BY SIDE
   ============================================================ */
.why-luxury .card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
  overflow: hidden;
}
.why-luxury .card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.why-luxury .card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
}

/* ===== EXPANDING CIRCLE — TOP-RIGHT ===== */
.why-luxury .card .circle-decor {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(200, 162, 98, 0.08),
    rgba(200, 162, 98, 0.02)
  );
  transition:
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}
.why-luxury .card:hover .circle-decor {
  transform: scale(3.5);
}
.why-luxury .card .circle-decor.gold {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(200, 162, 98, 0.12),
    rgba(200, 162, 98, 0.02)
  );
}
.why-luxury .card .circle-decor.navy {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(10, 22, 40, 0.08),
    rgba(10, 22, 40, 0.01)
  );
}
.why-luxury .card .circle-decor.cream {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(250, 246, 240, 0.3),
    rgba(250, 246, 240, 0.02)
  );
}
.why-luxury .card .circle-decor.green {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(16, 185, 129, 0.08),
    rgba(16, 185, 129, 0.01)
  );
}
.why-luxury .card .circle-decor.cyan {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(0, 218, 255, 0.08),
    rgba(0, 218, 255, 0.01)
  );
}
.why-luxury .card .circle-decor.purple {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(139, 92, 246, 0.08),
    rgba(139, 92, 246, 0.01)
  );
}
.why-luxury .card .circle-decor.orange {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(245, 158, 11, 0.08),
    rgba(245, 158, 11, 0.01)
  );
}

/* ===== ICON + TITLE ROW (side by side) ===== */
.why-luxury .card .title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  width: 100%;
}

/* ===== icon ===== */
.why-luxury .card .icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-luxury .card:hover .icon {
  transform: scale(1.05);
}
.why-luxury .card .icon.gold {
  background: rgba(200, 162, 98, 0.08);
  color: var(--gold-dark);
}
.why-luxury .card .icon.navy {
  background: rgba(10, 22, 40, 0.06);
  color: var(--navy);
}
.why-luxury .card .icon.green {
  background: rgba(16, 185, 129, 0.06);
  color: #0f8b6e;
}
.why-luxury .card .icon.cyan {
  background: rgba(0, 218, 255, 0.06);
  color: #0891b2;
}
.why-luxury .card .icon.purple {
  background: rgba(139, 92, 246, 0.06);
  color: #7c3aed;
}
.why-luxury .card .icon.orange {
  background: rgba(245, 158, 11, 0.06);
  color: #d97706;
}
.why-luxury .card .icon.cream {
  background: rgba(250, 246, 240, 0.06);
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== title ===== */
.why-luxury .card .title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.why-luxury .card .title.large {
  font-size: 1.05rem;
}

/* ===== description ===== */
.why-luxury .card .desc {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
  font-weight: 400;
  padding-left: 46px; /* align with icon+title row */
}
.why-luxury .card .desc.large {
  font-size: 0.85rem;
}

/* ===== subtle shine overlay ===== */
.why-luxury .card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(200, 162, 98, 0.02),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   CARD VARIANTS — REFINED
   ============================================================ */
.why-luxury .card--glass {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.4);
}
.why-luxury .card--glass:hover {
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.5);
}

.why-luxury .card--navy {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.04);
}
.why-luxury .card--navy .title {
  color: #fff;
}
.why-luxury .card--navy .desc {
  color: rgba(255, 255, 255, 0.6);
}
.why-luxury .card--navy .icon {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.why-luxury .card--navy:hover {
  border-color: rgba(200, 162, 98, 0.2);
}
.why-luxury .card--navy .circle-decor {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(200, 162, 98, 0.1),
    rgba(200, 162, 98, 0.01)
  );
}

.why-luxury .card--gold {
  background: linear-gradient(145deg, var(--gold-pale), #f8f0e0);
  border-color: rgba(200, 162, 98, 0.15);
}
.why-luxury .card--gold .icon {
  background: rgba(200, 162, 98, 0.1);
  color: var(--gold-dark);
}
.why-luxury .card--gold:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.why-luxury .card--elevated {
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.04);
  border-color: rgba(200, 162, 98, 0.08);
}
.why-luxury .card--elevated:hover {
  box-shadow: 0 20px 48px rgba(10, 22, 40, 0.08);
  border-color: var(--gold-light);
}

/* ============================================================
   24x7 SUPPORT — PREMIUM TREATMENT
   ============================================================ */
.why-luxury .card--support {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: none;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.06);
  min-height: 240px;
  background: var(--navy);
}
.why-luxury .card--support .support-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-luxury .card--support:hover .support-bg {
  transform: scale(1.05);
}
.why-luxury .card--support .support-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.7) 50%,
    rgba(10, 22, 40, 0.5) 100%
  );
}
.why-luxury .card--support .support-content {
  position: relative;
  z-index: 2;
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 240px;
  justify-content: center;
}
.why-luxury .card--support .support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 4px 14px 4px 10px;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.why-luxury .card--support .support-badge .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.3;
  }
}

/* support card — icon + title row */
.why-luxury .card--support .title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
}
.why-luxury .card--support .icon {
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-light);
  border: 1px solid rgba(255, 255, 255, 0.04);
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  border-radius: 12px;
}
.why-luxury .card--support .title {
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}
.why-luxury .card--support .desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  max-width: 380px;
  line-height: 1.6;
  padding-left: 0;
}
.why-luxury .card--support .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 24px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.78rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(200, 162, 98, 0.15);
}
.why-luxury .card--support .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 162, 98, 0.25);
}
.why-luxury .card--support .cta i {
  font-size: 0.7rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-luxury .card--support .cta:hover i {
  transform: translateX(4px);
}
.why-luxury .card--support .circle-decor {
  background: radial-gradient(
    circle at 70% 30%,
    rgba(200, 162, 98, 0.15),
    rgba(200, 162, 98, 0.01)
  );
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
}
.why-luxury .card--support:hover .circle-decor {
  transform: scale(3);
}

.why-luxury .card--support::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1.5px;
  background: conic-gradient(
    from var(--angle, 0deg),
    var(--gold-light),
    transparent 40%,
    var(--gold),
    transparent 70%,
    var(--gold-light)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 10s linear infinite;
  z-index: 3;
  pointer-events: none;
}
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes borderRotate {
  to {
    --angle: 360deg;
  }
}
.why-luxury .card--support:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(10, 22, 40, 0.12);
}
.why-luxury .card--support::before {
  display: none;
}

/* ============================================================
   GRID POSITIONS
   ============================================================ */
.wc-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.wc-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.wc-3 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.wc-4 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}
.wc-5 {
  grid-column: 1 / 3;
  grid-row: 2 / 4;
}
.wc-6 {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
.wc-7 {
  grid-column: 4 / 5;
  grid-row: 2 / 4;
}
.wc-8 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-luxury .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wc-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .wc-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .wc-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  .wc-4 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .wc-5 {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
  }
  .wc-6 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .wc-7 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .wc-8 {
    grid-column: 2 / 4;
    grid-row: 4 / 5;
  }
  .why-luxury .card--support {
    min-height: 220px;
  }
  .why-luxury .card--support .support-content {
    min-height: 220px;
    padding: 26px 24px;
  }
  .why-luxury .card .circle-decor {
    width: 60px;
    height: 60px;
    top: -20px;
    right: -20px;
  }
  .why-luxury .card .desc {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .why-luxury {
    padding: 80px 0 60px;
  }
  .why-luxury .grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .wc-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .wc-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .wc-3 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .wc-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
  .wc-5 {
    grid-column: 1 / 3;
    grid-row: 3 / 5;
  }
  .wc-6 {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
  }
  .wc-7 {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
  }
  .wc-8 {
    grid-column: 1 / 3;
    grid-row: 6 / 7;
  }
  .why-luxury .card--support {
    min-height: 180px;
  }
  .why-luxury .card--support .support-content {
    min-height: 180px;
    padding: 20px 18px;
  }
  .why-luxury .card--support .title {
    font-size: 1.05rem;
  }
  .why-luxury .card--support .desc {
    font-size: 0.78rem;
    padding-left: 0;
  }
  .why-luxury .card--support .cta {
    padding: 8px 18px;
    font-size: 0.7rem;
  }
  .why-luxury .card {
    padding: 18px 16px 16px;
    border-radius: var(--radius-md);
  }
  .why-luxury .card .icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    border-radius: 8px;
  }
  .why-luxury .card .title {
    font-size: 0.85rem;
  }
  .why-luxury .card .desc {
    font-size: 0.7rem;
    padding-left: 0;
  }
  .why-luxury .card .circle-decor {
    width: 50px;
    height: 50px;
    top: -18px;
    right: -18px;
  }
}
@media (max-width: 480px) {
  .why-luxury .grid {
    gap: 10px;
  }
  .why-luxury .card--support {
    min-height: 160px;
  }
  .why-luxury .card--support .support-content {
    min-height: 160px;
    padding: 16px 14px;
  }
  .why-luxury .card--support .title {
    font-size: 0.9rem;
  }
  .why-luxury .card--support .desc {
    font-size: 0.7rem;
    padding-left: 0;
  }
  .why-luxury .card--support .cta {
    padding: 6px 14px;
    font-size: 0.65rem;
  }
  .why-luxury .card--support .support-badge {
    font-size: 0.5rem;
    padding: 3px 10px 3px 8px;
  }
  .why-luxury .card {
    padding: 14px 12px 12px;
  }
  .why-luxury .card .icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    border-radius: 6px;
  }
  .why-luxury .card .title {
    font-size: 0.78rem;
  }
  .why-luxury .card .desc {
    font-size: 0.65rem;
    padding-left: 0;
  }
  .why-luxury .card .circle-decor {
    width: 40px;
    height: 40px;
    top: -15px;
    right: -15px;
  }
}
@media (max-width: 400px) {
  .why-luxury .grid {
    grid-template-columns: 1fr;
  }
  .wc-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .wc-2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .wc-3 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .wc-4 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .wc-5 {
    grid-column: 1 / 2;
    grid-row: 5 / 7;
  }
  .wc-6 {
    grid-column: 1 / 2;
    grid-row: 7 / 8;
  }
  .wc-7 {
    grid-column: 1 / 2;
    grid-row: 8 / 9;
  }
  .wc-8 {
    grid-column: 1 / 2;
    grid-row: 9 / 10;
  }
  .why-luxury .card--support {
    min-height: 200px;
  }
  .why-luxury .card--support .support-content {
    min-height: 200px;
    padding: 20px 18px;
  }
}

/* ============================================================
   DARK MODE
   ============================================================ */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #080e1a;
    --surface: #0f1a2e;
    --ink: #e4e8f0;
    --ink-soft: #b8c4d8;
    --muted: #8896a8;
    --muted-light: #5a6a7e;
    --line: #1a2a40;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  .why-luxury .card--glass {
    background: rgba(15, 26, 46, 0.5);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 255, 255, 0.03);
  }
  .why-luxury .card--gold {
    background: linear-gradient(145deg, #1a1a2e, #14142a);
    border-color: rgba(200, 162, 98, 0.08);
  }
  .why-luxury .card--support .support-overlay {
    background: linear-gradient(
      135deg,
      rgba(8, 14, 26, 0.92) 0%,
      rgba(8, 14, 26, 0.78) 50%,
      rgba(8, 14, 26, 0.55) 100%
    );
  }
  .why-luxury .header .heading {
    color: var(--ink);
  }
  .why-luxury .card .desc {
    padding-left: 0;
  }
}
[data-theme="dark"] {
  --bg: #080e1a;
  --surface: #0f1a2e;
  --ink: #e4e8f0;
  --ink-soft: #b8c4d8;
  --muted: #8896a8;
  --muted-light: #5a6a7e;
  --line: #1a2a40;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
}
[data-theme="dark"] .why-luxury .card--glass {
  background: rgba(15, 26, 46, 0.5);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.03);
}
[data-theme="dark"] .why-luxury .card--gold {
  background: linear-gradient(145deg, #1a1a2e, #14142a);
  border-color: rgba(200, 162, 98, 0.08);
}
[data-theme="dark"] .why-luxury .card--support .support-overlay {
  background: linear-gradient(
    135deg,
    rgba(8, 14, 26, 0.92) 0%,
    rgba(8, 14, 26, 0.78) 50%,
    rgba(8, 14, 26, 0.55) 100%
  );
}
[data-theme="dark"] .why-luxury .header .heading {
  color: var(--ink);
}
[data-theme="dark"] .why-luxury .card .desc {
  padding-left: 0;
}

/* ============================================================
   STAGGER DELAYS
   ============================================================ */
.why-luxury .card:nth-child(1) {
  transition-delay: 0.02s;
}
.why-luxury .card:nth-child(2) {
  transition-delay: 0.06s;
}
.why-luxury .card:nth-child(3) {
  transition-delay: 0.1s;
}
.why-luxury .card:nth-child(4) {
  transition-delay: 0.14s;
}
.why-luxury .card:nth-child(5) {
  transition-delay: 0.18s;
  border-radius: 50px 50px 50px 0;
}
.why-luxury .card:nth-child(6) {
  transition-delay: 0.22s;
}
.why-luxury .card:nth-child(7) {
  transition-delay: 0.26s;
}
.why-luxury .card:nth-child(8) {
  transition-delay: 0.3s;
}

/* =========================SERVICES SECTION STYLING=================================*/
.svc-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 130px) 0 0;
  background:
    radial-gradient(
      70% 50% at 85% 10%,
      rgba(201, 162, 39, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      60% 40% at 10% 90%,
      rgba(37, 99, 235, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(165deg, #faf8f4 0%, #f0ede8 40%, #e8e4de 70%, #f5f2ed 100%);
  min-height: 100vh;
}
.svc-grain {
  position: absolute;
  inset: 0;
  opacity: 0.018;
  pointer-events: none;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.svc-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

/* ---- header (dark text on light) ---- */
.svc-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}
.svc-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.svc-eyebrow .ln {
  width: 34px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.svc-eyebrow .ln.r {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.svc-eyebrow .txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.svc-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 16px;
  letter-spacing: -1px;
}
.svc-heading .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--gold-dark),
    var(--gold) 60%,
    var(--gold-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  font-weight: 400;
}

/* ============================================================ BENTO GRID */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}

/* ---- small service card: light glass ---- */
.svc-card {
  position: relative;
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 20px rgba(7, 26, 53, 0.04);
  transition:
    transform 0.45s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 0.45s ease,
    background 0.45s ease,
    box-shadow 0.45s ease;
  overflow: hidden;
  min-height: 196px;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    120% 100% at 100% 0%,
    rgba(201, 162, 39, 0.08),
    transparent 60%
  );
  transition: opacity 0.45s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.4);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 48px rgba(7, 26, 53, 0.08);
}
.svc-card:hover::before {
  opacity: 1;
}

.svc-num {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 10px;
}
.svc-icon {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.4px solid rgba(201, 162, 39, 0.4);
  background: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-size: 1.1rem;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    border-color 0.3s ease;
}
.svc-card:hover .svc-icon {
  transform: rotate(-8deg) scale(1.08);
  background: rgba(201, 162, 39, 0.06);
  border-color: var(--gold);
}

.svc-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 7px;
  letter-spacing: -0.2px;
}
.svc-desc {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  flex: 1;
  font-weight: 400;
}
.svc-more {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-dark);
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  width: fit-content;
  transition: border-color 0.3s ease;
}
.svc-more i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}
.svc-card:hover .svc-more {
  border-color: var(--gold);
}
.svc-card:hover .svc-more i {
  transform: translateX(4px);
}

/* ---- large featured card ---- */
.svc-lg {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 200px;
}
.svc-card-lg {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 32px rgba(7, 26, 53, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: var(--surface);
  transition:
    transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
  cursor: pointer;
  min-height: 260px;
}
.svc-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(7, 26, 53, 0.1);
  border-color: rgba(201, 162, 39, 0.3);
}
.svc-lg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.5s ease;
}
.svc-card-lg:hover .svc-lg-img {
  transform: scale(1.06);
}
.svc-lg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.5) 40%,
    rgba(255, 255, 255, 0.1) 70%
  );
}

.svc-lg-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, 0.25);
  color: var(--gold-dark);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
}
.svc-lg-badge i {
  font-size: 0.6rem;
  color: var(--gold);
}

.svc-lg-num {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 3;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-lg-num .ln {
  width: 22px;
  height: 1px;
  background: var(--muted);
}

.svc-lg-icon {
  position: absolute;
  top: 58px;
  left: 24px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.4px solid rgba(201, 162, 39, 0.3);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.4rem;
}

.svc-lg-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 26px 26px 28px;
  color: var(--ink);
  transition: opacity 0.4s ease;
}
.svc-lg-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.4px;
  color: var(--ink);
}
.svc-lg-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 400px;
  font-weight: 400;
}
.svc-lg-hairline {
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.4), transparent);
  margin-bottom: 16px;
}
.svc-lg-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.svc-lg-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}
.svc-lg-stat i {
  font-size: 0.7rem;
  color: var(--gold);
}
.svc-lg-stat.rating span {
  color: var(--ink);
}
.svc-lg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.svc-lg-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  padding: 13px 24px;
  background: linear-gradient(
    100deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.svc-lg-btn i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.svc-lg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(201, 162, 39, 0.25);
}
.svc-lg-btn:hover i {
  transform: translateX(3px);
}

.svc-lg-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.svc-lg-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--line);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-lg-dot.active {
  width: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

/* ---- tall cards ---- */
.svc-card--tall {
  grid-row: span 2;
  min-height: 210px;
}
.svc-card--tall .svc-icon {
  width: 44px;
  height: 44px;
  font-size: 1rem;
}
.svc-card--tall .svc-title {
  font-size: 16px;
}
.svc-card--tall .svc-desc {
  font-size: 11.5px;
}

/* ============================================================ GRID POSITIONS */
.g-pos-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.g-pos-2 {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
}
.g-pos-3 {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}
.g-pos-4 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.g-pos-5 {
  grid-column: 4 / 5;
  grid-row: 2 / 3;
}
.g-pos-6 {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.g-pos-7 {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}
.g-pos-8 {
  grid-column: 3 / 4;
  grid-row: 3 / 4;
}
.g-pos-9 {
  grid-column: 4 / 5;
  grid-row: 3 / 4;
}
.g-pos-10 {
  grid-column: 1 / 2;
  grid-row: 4 / 6;
}
.g-pos-11 {
  grid-column: 2 / 3;
  grid-row: 4 / 6;
}
.g-pos-12 {
  grid-column: 3 / 5;
  grid-row: 4 / 6;
}

/* ============================================================ BOTTOM CTA — LIGHT */
.svc-cta {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
  margin-top: 20px;
}
.svc-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      70% 40% at 20% 20%,
      rgba(201, 162, 39, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      60% 35% at 85% 80%,
      rgba(37, 99, 235, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(160deg, #f5f2ed 0%, #eae6e0 40%, #f0ede8 70%, #faf8f4 100%);
}
.svc-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto;
}
.svc-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.svc-cta-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.svc-cta-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.6px;
}
.svc-cta-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 36px;
  font-weight: 400;
}
.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 18px 36px;
  background: linear-gradient(
    100deg,
    var(--gold-light),
    var(--gold) 55%,
    var(--gold-dark)
  );
  color: var(--navy);
  font-weight: 800;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.25);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  margin-bottom: 34px;
}
.svc-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(201, 162, 39, 0.35);
}
.svc-cta-btn i {
  font-size: 1.1rem;
}
.svc-contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.svc-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 19px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.svc-contact-item i {
  font-size: 1rem;
}
.svc-contact-item.wa i {
  color: #25d366;
}
.svc-contact-item.mail i {
  color: var(--primary);
}
.svc-contact-item.call i {
  color: var(--gold-dark);
}
.svc-contact-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(201, 162, 39, 0.2);
  transform: translateY(-2px);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .g-pos-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .g-pos-2 {
    grid-column: 1 / 3;
    grid-row: 2 / 4;
  }
  .g-pos-3 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .g-pos-4 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .g-pos-5 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  .g-pos-6 {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
  .g-pos-7 {
    grid-column: 2 / 3;
    grid-row: 4 / 5;
  }
  .g-pos-8 {
    grid-column: 1 / 2;
    grid-row: 5 / 6;
  }
  .g-pos-9 {
    grid-column: 2 / 3;
    grid-row: 5 / 6;
  }
  .g-pos-10 {
    grid-column: 1 / 2;
    grid-row: 6 / 7;
  }
  .g-pos-11 {
    grid-column: 2 / 3;
    grid-row: 6 / 7;
  }
  .g-pos-12 {
    grid-column: 1 / 3;
    grid-row: 7 / 9;
  }
  .svc-lg {
    grid-column: span 2;
    grid-row: span 2;
  }
  .svc-card--tall {
    grid-row: span 1;
  }
}
@media (max-width: 640px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .g-pos-1,
  .g-pos-2,
  .g-pos-3,
  .g-pos-4,
  .g-pos-5,
  .g-pos-6,
  .g-pos-7,
  .g-pos-8,
  .g-pos-9,
  .g-pos-10,
  .g-pos-11,
  .g-pos-12 {
    grid-column: 1 / 2;
    grid-row: auto;
  }
  .g-pos-2 {
    grid-row: 2 / 3;
  }
  .g-pos-12 {
    grid-row: 12 / 14;
  }
  .svc-lg {
    grid-column: span 1;
    grid-row: span 1;
    height: 400px;
  }
  .svc-card {
    min-height: 170px;
  }
  .svc-card--tall {
    grid-row: span 1;
    min-height: 150px;
  }
  .svc-cta {
    padding: 50px 16px;
  }
  .svc-contact-row {
    flex-direction: column;
    align-items: stretch;
  }
  .svc-contact-item {
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
/*===============================TRAVEL CATGORIES STYILING=======================================*/
.tc-section {
  position: relative;
  background: var(--surface);
  padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.tc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.tc-blur-tl {
  position: absolute;
  top: -170px;
  left: -170px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  filter: blur(14px);
}
.tc-blur-br {
  position: absolute;
  bottom: -190px;
  right: -170px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 206, 131, 0.11),
    transparent 70%
  );
  filter: blur(14px);
}

.tc-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

/* ---- header ---- */
.tc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.tc-header.in-view {
  opacity: 1;
  transform: translateY(0);
}
.tc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.tc-eyebrow .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-dark);
}
.tc-eyebrow .ln {
  width: 38px;
  height: 1px;
  background: var(--gold);
}
.tc-eyebrow .txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.tc-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.03;
  margin: 0 0 14px;
  letter-spacing: -1px;
}
.tc-heading .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--gold-dark),
    var(--gold) 55%,
    var(--gold-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tc-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin: 0;
}

.tc-filter-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 100px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.tc-filter-hint i {
  color: var(--gold-dark);
  font-size: 13px;
}

/* ============================================================ MASONRY GRID */
.tc-masonry {
  column-count: 4;
  column-gap: 22px;
}
.tc-card {
  break-inside: avoid;
  margin-bottom: 22px;
  display: block;
  position: relative;
  border-radius: 26px 26px 26px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(24px);
  animation: tcCardIn 0.75s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  transition: box-shadow 0.45s ease;
}
@keyframes tcCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tc-card:hover {
  box-shadow: var(--shadow-strong);
}

.tc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 1s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.6s ease;
  filter: saturate(0.92) brightness(0.93);
}
.tc-card:hover .tc-card-img {
  transform: scale(1.1);
  filter: saturate(1.08) brightness(1);
}

.tc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 26, 53, 0.92) 0%,
    rgba(7, 26, 53, 0.38) 45%,
    rgba(7, 26, 53, 0.02) 68%
  );
  transition: background 0.4s ease;
}
.tc-card:hover .tc-card-overlay {
  background: linear-gradient(
    0deg,
    rgba(7, 26, 53, 0.95) 0%,
    rgba(7, 26, 53, 0.5) 45%,
    rgba(7, 26, 53, 0.08) 68%
  );
}

.tc-icon-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.4s ease;
}
.tc-card:hover .tc-icon-badge {
  background: linear-gradient(140deg, var(--gold-light), var(--gold-dark));
  transform: scale(1.1) rotate(-8deg);
  color: var(--navy);
}

.tc-count-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.tc-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 20px;
  color: #fff;
}
.tc-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 5px;
  letter-spacing: -0.2px;
}
.tc-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  margin: 0 0 14px;
  max-width: 92%;
}

.tc-explore {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--gold-light);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.tc-card:hover .tc-explore {
  opacity: 1;
  transform: translateY(0);
}
.tc-explore i {
  font-size: 11px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tc-card:hover .tc-explore i {
  transform: translateX(4px);
}

/* card heights for masonry variety */
.h-xl .tc-card-img {
  height: 520px;
}
.h-lg .tc-card-img {
  height: 420px;
}
.h-md .tc-card-img {
  height: 340px;
}
.h-sm .tc-card-img {
  height: 270px;
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1150px) {
  .tc-masonry {
    column-count: 3;
  }
}
@media (max-width: 900px) {
  .tc-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-masonry {
    column-count: 2;
    column-gap: 16px;
  }
  .tc-card {
    margin-bottom: 16px;
    border-radius: 22px 22px 22px 6px;
  }
  .h-xl .tc-card-img {
    height: 400px;
  }
  .h-lg .tc-card-img {
    height: 330px;
  }
  .h-md .tc-card-img {
    height: 280px;
  }
  .h-sm .tc-card-img {
    height: 220px;
  }
}
@media (max-width: 560px) {
  .tc-masonry {
    column-count: 1;
  }
  .tc-card-title {
    font-size: 19px;
  }
  .h-xl .tc-card-img,
  .h-lg .tc-card-img,
  .h-md .tc-card-img,
  .h-sm .tc-card-img {
    height: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/*==============================FLIGHT DEALS SECTION STYLING=======================================*/
.fd-section {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 90px;
  min-height: 100vh;
  background: var(--bg);
}

/* ---- WORLD MAP ---- */
.fd-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.55;
  background: var(--bg);
}
.fd-map-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.fd-map-bg .continent {
  fill: none;
  stroke: rgba(37, 99, 235, 0.22);
  stroke-width: 2.5;
}
.fd-map-bg .continent.europe {
  stroke: rgba(37, 99, 235, 0.18);
  stroke-width: 2;
}
.fd-map-bg .continent.africa {
  stroke: rgba(37, 99, 235, 0.18);
  stroke-width: 2;
}
.fd-map-bg .continent.asia {
  stroke: rgba(37, 99, 235, 0.2);
  stroke-width: 2.2;
}
.fd-map-bg .continent.america {
  stroke: rgba(37, 99, 235, 0.16);
  stroke-width: 2.2;
}
.fd-map-bg .continent.australia {
  stroke: rgba(37, 99, 235, 0.16);
  stroke-width: 1.8;
}
.fd-map-bg .dot {
  fill: rgba(37, 99, 235, 0.3);
}
.fd-map-bg .dot.gold {
  fill: rgba(201, 162, 39, 0.35);
}
.fd-map-bg .flight-path {
  fill: none;
  stroke-width: 2.8;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  opacity: 0.7;
}
.fd-map-bg .flight-path.blue {
  stroke: rgba(37, 99, 235, 0.4);
}
.fd-map-bg .flight-path.gold {
  stroke: rgba(201, 162, 39, 0.4);
}
.fd-map-bg .flight-path.cyan {
  stroke: rgba(0, 218, 255, 0.35);
}
.fd-map-bg .flight-plane {
  opacity: 0.9;
  filter: drop-shadow(0 0 6px rgba(232, 206, 131, 0.5));
}
.fd-plane-anim {
  offset-rotate: auto;
  animation: fdPlaneFly 14s linear infinite;
}
.fd-plane-anim.d1 {
  animation-duration: 12s;
  animation-delay: -2s;
}
.fd-plane-anim.d2 {
  animation-duration: 16s;
  animation-delay: -5s;
}
.fd-plane-anim.d3 {
  animation-duration: 10s;
  animation-delay: -3s;
}
.fd-plane-anim.d4 {
  animation-duration: 18s;
  animation-delay: -7s;
}
.fd-plane-anim.d5 {
  animation-duration: 13s;
  animation-delay: -1s;
}
.fd-plane-anim.d6 {
  animation-duration: 15s;
  animation-delay: -9s;
}
.fd-plane-anim.d7 {
  animation-duration: 11s;
  animation-delay: -4s;
}
@keyframes fdPlaneFly {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}
.fd-map-bg .pulse-dot {
  animation: fdPulse 2.8s ease-in-out infinite;
}
.fd-map-bg .pulse-dot.d1 {
  animation-delay: 0s;
}
.fd-map-bg .pulse-dot.d2 {
  animation-delay: 0.8s;
}
.fd-map-bg .pulse-dot.d3 {
  animation-delay: 1.6s;
}
.fd-map-bg .pulse-dot.d4 {
  animation-delay: 2.4s;
}
@keyframes fdPulse {
  0%,
  100% {
    r: 3;
    opacity: 0.4;
  }
  50% {
    r: 8;
    opacity: 0.9;
  }
}

/* ---- CARDS (Glass) ---- */
.fd-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(7, 26, 53, 0.06);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
  z-index: 1;
}
.fd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--cyan),
    var(--gold-light)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.fd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(7, 26, 53, 0.1);
  background: rgba(255, 255, 255, 0.88);
}
.fd-card:hover::before {
  opacity: 1;
}
.fd-card.fd-hidden {
  display: none;
}
.fd-card.fd-expired {
  opacity: 0.4;
  filter: grayscale(0.4);
}

.fd-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fd-airline {
  display: flex;
  align-items: center;
  gap: 9px;
}
.fd-airline-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex: none;
}
.fd-airline span {
  font-size: 0.85rem;
  font-weight: 700;
}
.fd-airline small {
  display: block;
  font-size: 0.66rem;
  color: var(--muted);
  font-weight: 500;
}
.fd-wish {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex: none;
  transition: all 0.2s ease;
}
.fd-wish.active {
  background: var(--danger);
  color: #fff;
  border-color: transparent;
}
.fd-wish.active i {
  font-weight: 900;
}
.fd-discount-badge {
  position: absolute;
  top: 16px;
  right: -30px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--danger), #b91c1c);
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  padding: 4px 34px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
.fd-route {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 12px;
}
.fd-route-point {
  text-align: center;
  flex: none;
}
.fd-route-point strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  color: var(--navy);
}
.fd-route-point span {
  font-size: 0.7rem;
  color: var(--muted);
}
.fd-route-line {
  flex: 1;
  text-align: center;
  position: relative;
}
.fd-route-line .fd-duration {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 4px;
}
.fd-line {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 6px,
    transparent 6px 10px
  );
  margin: 0 4px;
}
.fd-line i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
  font-size: 0.8rem;
  padding: 2px;
  border-radius: 50%;
}
.fd-stops {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  margin-top: 4px;
}
.fd-stops.nonstop {
  color: var(--success);
}
.fd-stops.has-stop {
  color: var(--warning);
}
.fd-stops.multi-stop {
  color: var(--danger);
}
.fd-amenities {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.fd-amenities i {
  color: var(--primary);
  font-size: 0.85rem;
}
.fd-amenities span {
  font-size: 0.68rem;
  color: var(--muted);
  margin-left: 4px;
}
.fd-amenity {
  display: flex;
  align-items: center;
}
.fd-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 10px;
}
.fd-price .old {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  text-decoration: line-through;
}
.fd-price strong {
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  color: var(--navy);
}
.fd-price small {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
}
.fd-trend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 8px;
}
.fd-trend.down {
  color: var(--success);
  background: #e7f9f1;
}
.fd-trend.up {
  color: var(--danger);
  background: #fdecec;
}
.fd-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(251, 244, 226, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 9px;
  padding: 7px 10px;
  margin-bottom: 14px;
}
.fd-countdown .fd-timer {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.4px;
}
.fd-card.fd-expired .fd-countdown {
  color: var(--danger);
  background: #fdecec;
}
.fd-btn-row {
  display: flex;
  gap: 10px;
}
.fd-details-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--navy);
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: all 0.2s ease;
}
.fd-details-btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: rgba(251, 244, 226, 0.5);
}
.fd-book-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.82rem;
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.fd-book-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.fd-card.fd-expired .fd-book-btn {
  background: var(--muted);
  pointer-events: none;
}

/* ---- HEADER, TICKER, FILTERS ---- */
.fd-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 34px;
  position: relative;
  z-index: 2;
}
.fd-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}
.fd-badge i {
  color: var(--gold-light);
  animation: fdBoltPulse 1.4s ease-in-out infinite;
}
@keyframes fdBoltPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
.fd-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 0 0 10px;
  color: var(--navy);
}
.fd-header p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}
.fd-ticker-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 0 30px;
  background: linear-gradient(90deg, var(--navy), #0d2c56);
  border-radius: 14px;
  padding: 12px 0;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.fd-ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: fdTickerScroll 26s linear infinite;
  width: max-content;
}
.fd-ticker-wrap:hover .fd-ticker {
  animation-play-state: paused;
}
@keyframes fdTickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.fd-ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dce6f5;
  font-size: 0.82rem;
  font-weight: 600;
}
.fd-ticker-item i {
  color: var(--gold-light);
}
.fd-ticker-item strong {
  color: #fff;
}
.fd-ticker-item .fd-tk-price {
  color: var(--cyan);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}
.fd-ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.fd-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.fd-tabs {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadow-soft);
}
.fd-tab {
  border: none;
  background: transparent;
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted);
  transition: all 0.2s ease;
}
.fd-tab.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.3);
}
.fd-search {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  padding: 8px;
  box-shadow: var(--shadow-soft);
}
.fd-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.4);
  flex: 1;
  min-width: 130px;
}
.fd-search-field i {
  color: var(--primary);
  font-size: 0.85rem;
}
.fd-search-field input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.82rem;
  color: var(--ink);
  width: 100%;
  min-width: 0;
}
.fd-swap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.6);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 0.3s ease;
}
.fd-swap:hover {
  transform: rotate(180deg);
  background: var(--champagne);
}
.fd-class {
  border: none;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 0.8rem;
  color: var(--ink);
  outline: none;
}
.fd-search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  border: none;
  padding: 11px 18px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: filter 0.2s ease;
}
.fd-search-btn:hover {
  filter: brightness(1.06);
}
.fd-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
}
.fd-filter {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.fd-filter i {
  font-size: 0.76rem;
  color: var(--muted);
}
.fd-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.fd-filter.active {
  background: linear-gradient(135deg, var(--navy), var(--primary));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(7, 26, 53, 0.25);
}
.fd-filter.active i {
  color: var(--gold-light);
}
.fd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  position: relative;
  z-index: 2;
}
.fd-viewall {
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}
.fd-viewall button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.fd-viewall button:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}

/* ===== MODAL ===== */
.fd-modal .modal-dialog {
  max-width: 720px;
  margin: 1.75rem auto;
}
.fd-modal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(7, 26, 53, 0.25);
  font-family: "Inter", sans-serif;
  background: #fff;
}
.fd-modal .modal-header {
  border: none;
  padding: 0;
}
.fdm-header {
  position: relative;
  background: linear-gradient(135deg, var(--navy), var(--primary));
  color: #fff;
  padding: 28px 32px 60px;
  overflow: hidden;
}
.fdm-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    500px 250px at 90% 0%,
    rgba(0, 218, 255, 0.2),
    transparent 60%
  );
  pointer-events: none;
}
.fdm-header-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.fdm-airline-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fdm-airline-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.fdm-airline-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.fdm-airline-sub {
  font-size: 0.72rem;
  opacity: 0.75;
}
.fdm-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s ease;
}
.fdm-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.fdm-badge-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fdm-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.fdm-badge i {
  color: var(--gold-light);
}
.fdm-badge.refund {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.35);
}
.fdm-badge.norefund {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.35);
}
.fdm-route-card {
  position: relative;
  z-index: 2;
  margin: -44px 28px 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(7, 26, 53, 0.14);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.fdm-route-point {
  text-align: center;
  flex: none;
}
.fdm-route-point .code {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1.1;
}
.fdm-route-point .time {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}
.fdm-route-point .date {
  font-size: 0.7rem;
  color: var(--muted);
}
.fdm-route-mid {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}
.fdm-route-mid .dur {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
.fdm-route-line {
  position: relative;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--line) 0 6px,
    transparent 6px 10px
  );
  margin: 0 4px;
}
.fdm-route-line i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  color: var(--primary);
  font-size: 0.95rem;
  padding: 2px;
  border-radius: 50%;
}
.fdm-stop-tag {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
}
.fdm-stop-tag.nonstop {
  background: #e7f9f1;
  color: var(--success);
}
.fdm-stop-tag.stop {
  background: #fef3e2;
  color: var(--warning);
}
.fdm-stop-tag.multi {
  background: #fee2e2;
  color: var(--danger);
}
.fd-modal .modal-body {
  padding: 24px 28px 8px;
}
.fdm-layover {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--champagne);
  border: 1px dashed var(--gold);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 20px;
}
.fdm-layover i {
  font-size: 0.9rem;
}
.fdm-section-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fdm-section-title i {
  color: var(--primary);
}
.fdm-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.fdm-info-item {
  background: #f6f9fd;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
}
.fdm-info-item span {
  display: block;
  font-size: 0.64rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.fdm-info-item strong {
  font-size: 0.88rem;
  color: var(--ink);
}
.fdm-amenity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.fdm-amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f6f9fd;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 600;
}
.fdm-amenity i {
  color: var(--primary);
  font-size: 0.9rem;
}
.fdm-amenity.off {
  opacity: 0.4;
}
.fdm-amenity.off i {
  color: var(--muted);
}
.fdm-fare-box {
  background: #f6f9fd;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 6px;
}
.fdm-fare-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--muted);
  padding: 5px 0;
}
.fdm-fare-row.total {
  border-top: 1px dashed var(--line);
  margin-top: 6px;
  padding-top: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}
.fdm-fare-row.discount {
  color: var(--success);
  font-weight: 700;
}
.fd-modal .modal-footer {
  border: none;
  padding: 16px 28px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.fdm-footer-price {
  display: flex;
  flex-direction: column;
}
.fdm-footer-price .lbl {
  font-size: 0.66rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.fdm-footer-price .amt {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
}
.fdm-footer-price .amt small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.fdm-book-now {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: filter 0.2s ease;
}
.fdm-book-now:hover {
  filter: brightness(1.08);
}
.fdm-book-now i {
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 767.98px) {
  .fd-modal .modal-dialog {
    margin: 0.5rem;
    max-width: 100%;
  }
  .fd-modal .modal-content {
    border-radius: 18px;
  }
  .fdm-header {
    padding: 22px 20px 50px;
  }
  .fdm-route-card {
    margin: -38px 16px 0;
    padding: 16px 18px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .fdm-route-point .code {
    font-size: 1.2rem;
  }
  .fdm-route-point .time {
    font-size: 0.78rem;
  }
  .fdm-route-mid .dur {
    font-size: 0.68rem;
  }
  .fd-modal .modal-body {
    padding: 18px 16px 4px;
  }
  .fdm-info-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .fdm-info-item {
    padding: 9px 12px;
  }
  .fdm-info-item strong {
    font-size: 0.8rem;
  }
  .fd-modal .modal-footer {
    padding: 12px 16px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .fdm-footer-price {
    align-items: center;
  }
  .fdm-book-now {
    justify-content: center;
    padding: 12px 20px;
  }
  .fdm-amenity-grid {
    gap: 6px;
  }
  .fdm-amenity {
    font-size: 0.7rem;
    padding: 7px 11px;
  }
  .fdm-badge-row {
    gap: 6px;
  }
  .fdm-badge {
    font-size: 0.6rem;
    padding: 4px 10px;
  }
  .fdm-airline-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .fdm-airline-name {
    font-size: 0.95rem;
  }
  .fdm-layover {
    font-size: 0.72rem;
    padding: 8px 12px;
  }
}
@media (max-width: 575.98px) {
  .fdm-header {
    padding: 18px 16px 44px;
  }
  .fdm-header-top {
    flex-wrap: wrap;
    gap: 8px;
  }
  .fdm-route-card {
    margin: -34px 12px 0;
    padding: 14px 12px;
    gap: 8px;
  }
  .fdm-route-point .code {
    font-size: 1rem;
  }
  .fdm-route-point .time {
    font-size: 0.7rem;
  }
  .fdm-route-mid .dur {
    font-size: 0.62rem;
  }
  .fdm-route-line i {
    font-size: 0.7rem;
  }
  .fdm-info-grid {
    grid-template-columns: 1fr;
  }
  .fdm-fare-box {
    padding: 12px 14px;
  }
  .fdm-fare-row {
    font-size: 0.76rem;
  }
  .fdm-footer-price .amt {
    font-size: 1.2rem;
  }
  .fd-modal .modal-body {
    padding: 14px 12px 0;
  }
  .fd-modal .modal-footer {
    padding: 10px 12px 16px;
  }
  .fdm-amenity {
    font-size: 0.65rem;
    padding: 6px 10px;
  }
  .fdm-badge {
    font-size: 0.55rem;
    padding: 3px 8px;
  }
  .fdm-airline-icon {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
    border-radius: 8px;
  }
  .fdm-airline-name {
    font-size: 0.85rem;
  }
  .fdm-airline-sub {
    font-size: 0.6rem;
  }
  .fdm-close {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}
@media (max-width: 900px) {
  .fd-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .fd-search {
    order: 2;
  }
  .fd-tabs {
    order: 1;
    align-self: flex-start;
  }
}
@media (max-width: 600px) {
  .fd-section {
    padding: 56px 14px 60px;
  }
  .fd-search-field {
    min-width: 100%;
  }
  .fd-search-field.date {
    min-width: 100%;
  }
  .fd-class,
  .fd-search-btn {
    width: 100%;
    justify-content: center;
  }
  .fd-swap {
    align-self: center;
  }
  .fd-grid {
    grid-template-columns: 1fr;
  }
  .fd-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .fd-filters::-webkit-scrollbar {
    height: 4px;
  }
  .fd-filter {
    flex: none;
  }
  .fd-btn-row {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
/*=============================HOTEL SECTION STYLING===============================*/
.hotels-section {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 100px;
  background:
    radial-gradient(
      800px 420px at 8% 0%,
      rgba(201, 162, 39, 0.06),
      transparent 60%
    ),
    radial-gradient(
      700px 460px at 95% 90%,
      rgba(37, 99, 235, 0.05),
      transparent 55%
    ),
    var(--bg);
}

/* ---- Building SVG Background (GOLD, LOW OPACITY) ---- */
.hotels-bg-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.07;
}
.hotels-bg-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hotels-bg-svg .building {
  fill: var(--gold-dark);
}
.hotels-bg-svg .window {
  fill: rgba(201, 162, 39, 0.15);
}
.hotels-bg-svg .window.lit {
  fill: rgba(232, 206, 131, 0.25);
}

/* ---- Header ---- */
.hotels-head {
  max-width: 1360px;
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hotels-head-left {
  max-width: 640px;
}
.hotels-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.hotels-eyebrow i {
  color: var(--gold);
}
.hotels-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.2;
}
.hotels-title span {
  color: var(--gold-dark);
}
.hotels-subtext {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.hotels-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hotels-view-all {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  border-bottom: 1.5px solid rgba(201, 162, 39, 0.3);
  padding-bottom: 2px;
}
.hotels-view-all:hover {
  color: var(--gold);
}
.hotel-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: none;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: all 0.25s ease;
}
.hotel-nav-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.25);
}
.hotel-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* ================= SLIDER ================= */
.hotels-swiper-wrap {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}
.hotels-swiper {
  overflow: visible;
  padding: 6px 4px 10px;
}
.hotels-swiper .swiper-slide {
  height: auto;
}

/* ---- Hotel Card ---- */
.hotel-card {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid var(--line);
}
.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.hotel-media {
  position: relative;
  height: 230px;
  flex: none;
}
.hotel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hotel-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent);
}
.hotel-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.hotel-wish {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--danger);
  font-size: 0.95rem;
  transition: transform 0.2s ease;
  border: none;
}
.hotel-wish:hover {
  transform: scale(1.08);
}
.hotel-wish.active {
  background: var(--danger);
  color: #fff;
}
.hotel-wish.active i {
  font-weight: 900;
}
.hotel-location-overlay {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.hotel-location-overlay i {
  color: var(--gold-light);
}

.hotel-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hotel-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.hotel-stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
}
.hotel-rating-num {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ink);
}
.hotel-reviews {
  font-size: 0.74rem;
  color: var(--muted);
}

.hotel-name {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1.3;
}

.hotel-amenities {
  display: flex;
  gap: 8px;
  margin: 10px 0 14px;
  flex-wrap: wrap;
}
.amenity-chip {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.78rem;
  position: relative;
}
.amenity-chip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s ease;
  pointer-events: none;
}
.amenity-chip:hover::after {
  opacity: 1;
  visibility: visible;
}

.hotel-price-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.hotel-price {
  display: flex;
  flex-direction: column;
}
.hotel-price .amt {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}
.hotel-price .per {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
}

.hotel-actions {
  display: flex;
  gap: 8px;
}
.btn-hotel-view {
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  background: var(--bg);
  color: var(--navy);
  border: 1px solid var(--line);
  white-space: nowrap;
  transition: all 0.2s ease;
}
.btn-hotel-view:hover {
  background: var(--line);
}
.btn-hotel-book {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
  transition:
    filter 0.2s ease,
    transform 0.2s ease;
}
.btn-hotel-book:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* ---- Pagination ---- */
.hotels-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 34px;
}
.hotels-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--line);
  opacity: 1;
  transition: all 0.25s ease;
  margin: 0 !important;
}
.hotels-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 767.98px) {
  .hotels-section {
    padding: 60px 16px 70px;
  }
  .hotels-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hotels-controls {
    align-self: flex-end;
  }
  .hotel-media {
    height: 190px;
  }
  .hotel-body {
    padding: 15px;
  }
  .hotels-bg-svg {
    opacity: 0.04;
  }
}
@media (max-width: 420px) {
  .hotel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
  .hotel-price .amt {
    font-size: 1rem;
  }
  .btn-hotel-view,
  .btn-hotel-book {
    padding: 8px 10px;
    font-size: 0.7rem;
  }
}
/* ================================================================
       LIVE OFFERS — UNIQUE CLASS NAMES (prefix "lo-")
       ================================================================ */
.lo-offers-section {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 0;
  background: linear-gradient(160deg, #eaf1ff 0%, #f6faff 40%, #fdf8ec 100%);
}
.lo-offers-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.lo-offers-decor path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.4;
  stroke-dasharray: 7 9;
  opacity: 0.22;
  animation: loDashFlow 7s linear infinite;
}
@keyframes loDashFlow {
  to {
    stroke-dashoffset: -160;
  }
}
.lo-offers-plane {
  position: absolute;
  font-size: 1rem;
  color: var(--primary);
  opacity: 0.55;
  filter: drop-shadow(0 0 6px rgba(37, 99, 235, 0.4));
  offset-rotate: auto;
  animation: loOfferPlaneFly 10s linear infinite;
}
@keyframes loOfferPlaneFly {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  8% {
    opacity: 0.6;
  }
  92% {
    opacity: 0.6;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.lo-offers-head {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 42px;
  text-align: center;
}
.lo-offers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--danger);
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
}
.lo-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
  animation: loLiveDotPulse 1.4s ease-in-out infinite;
}
@keyframes loLiveDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}
.lo-offers-title {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin: 0 0 10px;
  color: var(--navy);
}
.lo-offers-title span {
  color: var(--primary);
}
.lo-offers-subtext {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ----- BENTO GRID ----- */
.lo-bento-grid {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 22px;
}
.lo-offer-card.lo-span-2c2r {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 28px;
}
.lo-offer-card.lo-span-1c2r {
  grid-row: span 2;
  border-radius: 24px;
}
.lo-offer-card.lo-span-2c1r {
  grid-column: span 2;
  border-radius: 20px;
}
.lo-offer-card.lo-span-1c1r {
  border-radius: 18px;
}

.lo-offer-card {
  position: relative;
  overflow: hidden;
  background: #0b2140;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.lo-offer-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}
.lo-offer-card .lo-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.lo-offer-card:hover .lo-bg-img {
  transform: scale(1.06);
}
.lo-offer-card .lo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.lo-offer-card.lo-cat-flight .lo-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 53, 0.15) 0%,
    rgba(29, 78, 216, 0.55) 55%,
    rgba(7, 26, 53, 0.92) 100%
  );
}
.lo-offer-card.lo-cat-hotel .lo-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 53, 0.15) 0%,
    rgba(143, 112, 26, 0.5) 55%,
    rgba(7, 26, 53, 0.92) 100%
  );
}
.lo-offer-card.lo-cat-package .lo-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 53, 0.15) 0%,
    rgba(5, 150, 105, 0.5) 55%,
    rgba(7, 26, 53, 0.92) 100%
  );
}

.lo-offer-top-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px 0;
}
.lo-ai-deal-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
}
.lo-ai-deal-badge i {
  color: var(--gold-light);
}
.lo-discount-badge {
  background: linear-gradient(135deg, var(--danger), #b91c1c);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.lo-offer-content {
  position: relative;
  z-index: 2;
  padding: 14px 18px 18px;
}
.lo-offer-cat-label {
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  opacity: 0.85;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lo-offer-route {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 2px;
}
.lo-offer-sub {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-bottom: 10px;
}
.lo-offer-extra {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: -4px;
  opacity: 0.9;
}
.lo-offer-extra i {
  color: var(--success);
  font-size: 0.7rem;
}

.lo-countdown-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 7px 10px;
  width: fit-content;
}
.lo-countdown-row i {
  color: var(--warning);
  font-size: 0.78rem;
}
.lo-cd-label {
  font-size: 0.68rem;
  opacity: 0.85;
  margin-right: 2px;
}
.lo-cd-time {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
}

.lo-offer-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.lo-offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.lo-old {
  font-size: 0.8rem;
  text-decoration: line-through;
  opacity: 0.6;
}
.lo-new {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  animation: loPriceHighlight 3.2s ease-in-out infinite;
}
@keyframes loPriceHighlight {
  0%,
  80%,
  100% {
    color: #fff;
    text-shadow: none;
  }
  88% {
    color: var(--success);
    text-shadow: 0 0 12px rgba(16, 185, 129, 0.7);
  }
}
.lo-btn-offer-book {
  padding: 9px 16px;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  background: #fff;
  color: var(--navy);
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.lo-btn-offer-book:hover {
  transform: translateY(-2px);
}

/* ----- TICKER (MARQUEE) ----- */
.lo-offer-ticker-wrap {
  position: relative;
  z-index: 1;
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.lo-offer-ticker-wrap marquee {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e7edf6;
}
.lo-offer-ticker-wrap marquee span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.lo-offer-ticker-wrap marquee span i {
  color: var(--gold-light);
}

/* ----- LIVE BOOKING POPUP (static messages) ----- */
.lo-live-booking-popup {
  position: fixed;
  right: 18px;
  top: 110px;
  z-index: 1400;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-strong);
  padding: 12px 16px 12px 12px;
  max-width: 300px;
  transform: translateY(-140%);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.4s ease;
  pointer-events: none;
  overflow: hidden;
}
.lo-live-booking-popup.lo-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.lo-popup-msg {
  display: none;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.lo-popup-msg.lo-active {
  display: flex;
}
.lo-lb-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
}
.lo-lb-text {
  font-size: 0.78rem;
  color: var(--ink);
  line-height: 1.4;
}
.lo-lb-text b {
  font-weight: 800;
}
.lo-lb-time {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lo-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
  display: inline-block;
  animation: loPulseDot 1.6s ease-in-out infinite;
}
@keyframes loPulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1100px) {
  .lo-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .lo-offer-card.lo-span-2c2r {
    grid-column: span 2;
    grid-row: span 2;
  }
  .lo-offer-card.lo-span-1c2r {
    grid-column: span 1;
    grid-row: span 2;
  }
  .lo-offer-card.lo-span-2c1r {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 640px) {
  .lo-offers-section {
    padding: 60px 16px 0;
  }
  .lo-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }
  .lo-offer-card {
    min-height: 280px;
    border-radius: 18px !important;
  }
  .lo-offer-card.lo-span-2c2r,
  .lo-offer-card.lo-span-1c2r,
  .lo-offer-card.lo-span-2c1r {
    grid-column: span 1;
    grid-row: span 1;
  }
  .lo-live-booking-popup {
    left: 10px;
    right: 10px;
    top: 80px;
    max-width: none;
  }
  .lo-offer-ticker-wrap marquee {
    font-size: 0.78rem;
  }
  .lo-offer-ticker-wrap marquee span {
    padding: 0 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* =========================GALLERY SECTION========================= */
.dsp-section {
  position: relative;
  background: var(--bg);
  padding: 90px 0 90px;
  overflow: hidden;
  font-family: var(--font-ui);
  color: var(--ink);
  isolation: isolate;
}

/* ---------- atmosphere ---------- */
.dsp-bgfx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.dsp-glow-gold {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  opacity: 0.18;
  filter: blur(100px);
}
.dsp-blob-blue {
  position: absolute;
  bottom: -200px;
  left: -180px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0.07;
  filter: blur(120px);
}
.dsp-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.25;
}

.dsp-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- header ---------- */
.dsp-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.dsp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary-dark);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.dsp-badge i {
  color: var(--gold);
  font-size: 13px;
}
.dsp-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--navy);
}
.dsp-heading em {
  color: var(--gold);
  font-style: italic;
}
.dsp-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
  margin: 0 auto;
  max-width: 520px;
}

/* ---------- filter tabs - TRAVEL THEMED ---------- */
.dsp-tabs-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 32px;
}
.dsp-tabs-wrap::-webkit-scrollbar {
  display: none;
}
.dsp-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  min-width: max-content;
  padding: 2px;
  margin: 0 auto;
}
.dsp-tab {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.35s var(--ease);
  box-shadow: var(--shadow-soft);
}
.dsp-tab:hover {
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}
.dsp-tab.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.3);
}
.dsp-tab i {
  margin-right: 7px;
  font-size: 13px;
}

/* ================= BENTO GALLERY ================= */
.dsp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 175px;
  grid-auto-flow: dense;
  gap: 18px;
  margin-bottom: 40px;
}
.dsp-tile {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.dsp-tile:hover {
  box-shadow: var(--shadow-strong);
}
.dsp-tile.size-xl {
  grid-column: span 2;
  grid-row: span 2;
}
.dsp-tile.size-tall {
  grid-column: span 1;
  grid-row: span 2;
}
.dsp-tile.size-wide {
  grid-column: span 2;
  grid-row: span 1;
}
.dsp-tile.size-sm {
  grid-column: span 1;
  grid-row: span 1;
}
.dsp-tile.dsp-hidden {
  display: none;
}

.dsp-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.dsp-tile:hover .dsp-tile-img {
  transform: scale(1.08);
}

.dsp-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 26, 53, 0.02) 25%,
    rgba(7, 26, 53, 0.7) 100%
  );
  transition: background 0.5s var(--ease);
}
.dsp-tile:hover .dsp-tile-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 53, 0.08) 15%,
    rgba(7, 26, 53, 0.8) 100%
  );
}

.dsp-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.dsp-cat-badge i {
  margin-right: 5px;
  color: var(--gold);
  font-size: 11px;
}

.dsp-tile-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 20px 20px;
}
.dsp-tile-title {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px;
  font-size: clamp(16px, 1.5vw, 21px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.dsp-view-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  backdrop-filter: blur(4px);
}
.dsp-view-cta i {
  font-size: 12px;
  transition: transform 0.35s var(--ease);
}
.dsp-view-cta i:last-child {
  font-size: 11px;
}
.dsp-tile:hover .dsp-view-cta {
  background: var(--gold-light);
  color: var(--navy);
  border-color: transparent;
}
.dsp-tile:hover .dsp-view-cta i {
  color: var(--navy);
}
.dsp-tile:hover .dsp-view-cta i:last-child {
  transform: translateX(4px);
}
.dsp-gallery-hidden {
  display: none;
}

/* ---------- bottom strip ---------- */
.dsp-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  margin-bottom: 0;
}
.dsp-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dsp-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}
.dsp-strip-text b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
  font-weight: 700;
}
.dsp-strip-text span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.dsp-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.dsp-strip-btn i {
  font-size: 12px;
  transition: transform 0.35s var(--ease);
}
.dsp-strip-btn:hover {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--navy);
}
.dsp-strip-btn:hover i {
  transform: translateX(4px);
}

/* ============================================================ */
/* ============ RESPONSIVE ============ */
/* ============================================================ */

@media (max-width: 1024px) {
  .dsp-grid {
    grid-auto-rows: 150px;
  }
}

@media (max-width: 860px) {
  .dsp-section {
    padding: 70px 0 60px;
  }
  .dsp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .dsp-tile.size-xl {
    grid-column: span 2;
    grid-row: span 2;
  }
  .dsp-tile.size-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  .dsp-tile.size-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .dsp-tile.size-sm {
    grid-column: span 1;
    grid-row: span 1;
  }
  .dsp-tabs {
    gap: 6px;
  }
  .dsp-tab {
    font-size: 12px;
    padding: 8px 16px;
  }
}

@media (max-width: 640px) {
  .dsp-container {
    padding: 0 16px;
  }
  .dsp-header {
    margin-bottom: 28px;
  }
  .dsp-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }
  .dsp-tile {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    min-height: 210px;
    border-radius: 14px;
  }
  .dsp-tile.size-xl {
    min-height: 270px;
  }
  .dsp-tile.size-tall {
    min-height: 270px;
  }
  .dsp-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }
  .dsp-strip-btn {
    width: 100%;
    justify-content: center;
  }
  .dsp-tab {
    font-size: 11.5px;
    padding: 7px 14px;
  }
  .dsp-tab i {
    margin-right: 4px;
    font-size: 11px;
  }
  .dsp-tabs {
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/*==========================TRAVELLERS REVSIES STYLING==========================*/
.ts-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(60px, 8vw, 120px) 0;
  background:
    radial-gradient(
      800px 500px at 85% 10%,
      rgba(37, 99, 235, 0.06),
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 10% 90%,
      rgba(201, 162, 39, 0.06),
      transparent 55%
    ),
    linear-gradient(175deg, #f5f8fc 0%, #eef3fb 45%, #eaf1ff 100%);
}

.ts-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  position: relative;
  z-index: 2;
}

/* ----- HEADER ROW ----- */
.ts-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.ts-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ts-eyebrow .ts-ln {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ts-eyebrow .ts-txt {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 11px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.ts-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.4px;
}
.ts-heading em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(
    100deg,
    var(--gold-dark),
    var(--gold) 60%,
    var(--gold-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ts-intro {
  font-size: clamp(13px, 1.4vw, 14.5px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0;
  font-weight: 400;
}

.ts-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: clamp(10px, 1.2vw, 13px) clamp(16px, 2vw, 22px);
  color: var(--navy);
  font-size: clamp(12px, 1.1vw, 13px);
  font-weight: 600;
  background: var(--surface);
  transition: all 0.3s var(--ease);
  text-decoration: none;
  box-shadow: var(--shadow-soft);
}
.ts-cta i {
  color: var(--gold);
  font-size: 13px;
  transition: transform 0.3s var(--ease);
}
.ts-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}
.ts-cta:hover i {
  transform: translateX(4px);
}

/* ----- TRUST ROW ----- */
.ts-trust-row {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: clamp(16px, 2vw, 22px) clamp(18px, 2.5vw, 26px);
  margin-bottom: clamp(32px, 5vw, 52px);
}
.ts-score {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 20px;
  border-right: 1px solid var(--line);
  margin-right: 20px;
  flex-shrink: 0;
}
.ts-ring-wrap {
  position: relative;
  width: clamp(52px, 6vw, 64px);
  height: clamp(52px, 6vw, 64px);
  flex-shrink: 0;
}
.ts-ring-wrap svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ts-ring-track {
  fill: none;
  stroke: var(--line);
  stroke-width: 5;
}
.ts-ring-fill {
  fill: none;
  stroke: url(#tsScoreGrad);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 182;
  stroke-dashoffset: 182;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.ts-ring-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--gold-dark);
}
.ts-score-text .ts-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--navy);
  line-height: 1.1;
}
.ts-score-text .ts-lbl {
  font-size: clamp(10px, 1vw, 11px);
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
}

.ts-platform-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.ts-platform-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: clamp(7px, 0.8vw, 10px) clamp(12px, 1.4vw, 15px);
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  flex: 0 1 auto;
}
.ts-platform-chip:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.ts-platform-chip .ts-ic {
  width: clamp(24px, 2.8vw, 30px);
  height: clamp(24px, 2.8vw, 30px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 26, 53, 0.04);
  color: var(--gold-dark);
  flex-shrink: 0;
  font-size: clamp(13px, 1.4vw, 15px);
}
.ts-platform-chip .ts-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.ts-platform-chip .ts-name {
  font-size: clamp(10px, 1.1vw, 11.5px);
  font-weight: 700;
  color: var(--navy);
}
.ts-platform-chip .ts-rating {
  font-family: var(--font-mono);
  font-size: clamp(8.5px, 0.9vw, 10px);
  color: var(--muted);
}

/* ----- SLIDER (NO SCROLL-SNAP) ----- */
.ts-slider-wrap {
  position: relative;
}
.ts-track {
  display: flex;
  gap: clamp(16px, 2vw, 22px);
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 12px 4px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.ts-track::-webkit-scrollbar {
  display: none;
}

.ts-slide {
  flex: 0 0 auto;
  width: min(380px, 85vw);
  scroll-snap-align: start;
}
.ts-card {
  position: relative;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 24px)
    clamp(18px, 2vw, 26px);
  transition:
    transform 0.5s var(--ease),
    border-color 0.5s ease,
    box-shadow 0.5s ease,
    opacity 0.5s ease;
  transform: scale(0.92);
  opacity: 0.5;
  cursor: pointer;
}
.ts-slide.is-active .ts-card {
  transform: scale(1);
  opacity: 1;
  border-color: var(--gold-light);
  box-shadow: var(--shadow-strong);
}

.ts-quote-icon {
  position: absolute;
  top: 2px;
  left: 14px;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.4rem);
  font-style: italic;
  color: rgba(7, 26, 53, 0.04);
  pointer-events: none;
  line-height: 1;
}
.ts-trip-badge {
  position: absolute;
  top: clamp(12px, 1.5vw, 18px);
  right: clamp(12px, 1.5vw, 18px);
  font-size: clamp(8px, 0.9vw, 9.5px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(201, 162, 39, 0.3);
  background: rgba(201, 162, 39, 0.08);
  padding: clamp(4px, 0.5vw, 6px) clamp(8px, 1vw, 12px);
  border-radius: 999px;
}

.ts-top-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-right: clamp(60px, 8vw, 96px);
  flex-wrap: wrap;
}
.ts-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}
.ts-stars i {
  font-size: clamp(11px, 1.2vw, 13px);
}
.ts-stars .ts-num {
  font-family: var(--font-mono);
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(10px, 1.1vw, 12px);
  margin-left: 4px;
}
.ts-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(9px, 0.9vw, 10px);
  font-weight: 600;
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: clamp(3px, 0.4vw, 4px) clamp(6px, 0.7vw, 9px);
  border-radius: 999px;
}
.ts-verified i {
  font-size: clamp(8px, 0.8vw, 9px);
  color: #10b981;
}

.ts-quote-text {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 16px;
}

.ts-trip-info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(10.5px, 1.1vw, 11.5px);
  color: var(--muted);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.ts-trip-info i {
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--gold-dark);
  flex-shrink: 0;
}

.ts-guest-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ts-guest-photo {
  width: clamp(36px, 4vw, 44px);
  height: clamp(36px, 4vw, 44px);
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(201, 162, 39, 0.4);
  flex-shrink: 0;
}
.ts-guest-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.ts-guest-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(13px, 1.3vw, 14px);
  color: var(--navy);
}
.ts-member-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: clamp(8px, 0.8vw, 9px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  padding: clamp(2px, 0.3vw, 3px) clamp(6px, 0.7vw, 8px);
  border-radius: 999px;
}
.ts-member-badge i {
  font-size: clamp(7px, 0.7vw, 8px);
}
.ts-guest-meta {
  font-size: clamp(9.5px, 1vw, 10.5px);
  color: var(--muted);
  margin-top: 2px;
}

/* ----- CONTROLS ----- */
.ts-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(20px, 3vw, 32px);
}
.ts-arrow {
  width: clamp(38px, 4vw, 44px);
  height: clamp(38px, 4vw, 44px);
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  font-size: clamp(14px, 1.4vw, 16px);
}
.ts-arrow:hover {
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}
.ts-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ts-dot {
  width: clamp(5px, 0.6vw, 6px);
  height: clamp(5px, 0.6vw, 6px);
  border-radius: 2px;
  background: var(--line);
  transform: rotate(45deg);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  border: none;
  padding: 0;
}
.ts-dot.active {
  width: clamp(8px, 0.9vw, 10px);
  height: clamp(8px, 0.9vw, 10px);
  background: linear-gradient(100deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.4);
}

/* ----- BOTTOM STRIP ----- */
.ts-bottom-strip {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: clamp(16px, 2vw, 24px) clamp(16px, 2.5vw, 28px);
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}
.ts-bstat {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  flex: 1;
}
.ts-bstat .ts-bic {
  width: clamp(32px, 3.5vw, 40px);
  height: clamp(32px, 3.5vw, 40px);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.2);
  color: var(--gold-dark);
  font-size: clamp(13px, 1.4vw, 16px);
}
.ts-bstat .ts-bnum {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--navy);
  line-height: 1.2;
}
.ts-bstat .ts-blbl {
  font-size: clamp(9px, 1vw, 10.5px);
  color: var(--muted);
  white-space: nowrap;
}

/* ================================================================
       RESPONSIVE BREAKPOINTS
       ================================================================ */
@media (max-width: 991.98px) {
  .ts-bottom-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .ts-bstat {
    flex: none;
  }
}

@media (max-width: 700px) {
  .ts-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ts-cta {
    width: 100%;
    justify-content: center;
  }
  .ts-platform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
  }
  .ts-platform-chip {
    flex: none;
    justify-content: center;
    padding: 8px 12px;
  }
  .ts-trust-row {
    padding: 16px 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .ts-score {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 14px;
    margin-right: 0;
    margin-bottom: 14px;
    width: 100%;
  }
  .ts-bottom-strip {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 14px 16px;
  }
  .ts-slide {
    width: min(320px, 82vw);
  }
  .ts-card {
    padding: 18px 16px 16px;
    border-radius: 16px;
  }
  .ts-top-row {
    padding-right: 60px;
  }
  .ts-trip-badge {
    font-size: 7.5px;
    padding: 3px 8px;
  }
  .ts-quote-icon {
    font-size: 3rem;
    top: 0;
    left: 10px;
  }
  .ts-controls {
    gap: 12px;
    margin-top: 18px;
  }
  .ts-arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .ts-platform-row {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .ts-platform-chip {
    padding: 6px 10px;
    gap: 6px;
  }
  .ts-platform-chip .ts-ic {
    width: 20px;
    height: 20px;
    font-size: 11px;
    border-radius: 6px;
  }
  .ts-platform-chip .ts-name {
    font-size: 9px;
  }
  .ts-platform-chip .ts-rating {
    font-size: 7.5px;
  }
  .ts-slide {
    width: min(280px, 78vw);
  }
  .ts-card {
    padding: 14px 12px 14px;
    border-radius: 14px;
  }
  .ts-top-row {
    padding-right: 50px;
    gap: 6px;
    margin-bottom: 10px;
  }
  .ts-stars i {
    font-size: 10px;
  }
  .ts-stars .ts-num {
    font-size: 9px;
  }
  .ts-verified {
    font-size: 8px;
    padding: 2px 6px;
  }
  .ts-verified i {
    font-size: 7px;
  }
  .ts-quote-text {
    font-size: 12.5px;
    margin: 0 0 12px;
  }
  .ts-trip-info {
    font-size: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .ts-trip-info i {
    font-size: 10px;
  }
  .ts-guest-photo {
    width: 32px;
    height: 32px;
  }
  .ts-guest-name {
    font-size: 12px;
  }
  .ts-member-badge {
    font-size: 7px;
    padding: 2px 5px;
  }
  .ts-member-badge i {
    font-size: 6px;
  }
  .ts-guest-meta {
    font-size: 8.5px;
  }
  .ts-trip-badge {
    font-size: 7px;
    padding: 2px 6px;
  }
  .ts-bottom-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
  }
  .ts-bstat .ts-bic {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }
  .ts-bstat .ts-bnum {
    font-size: 0.8rem;
  }
  .ts-bstat .ts-blbl {
    font-size: 8px;
  }
  .ts-dot {
    width: 4px;
    height: 4px;
  }
  .ts-dot.active {
    width: 7px;
    height: 7px;
  }
  .ts-controls {
    gap: 10px;
    margin-top: 14px;
  }
  .ts-arrow {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  .ts-quote-icon {
    font-size: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
/*=========================PARTNERS SECTION STYLING============================*/
.partners-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 50px;
  background:
    radial-gradient(
      700px 400px at 90% 0%,
      rgba(37, 99, 235, 0.04),
      transparent 55%
    ),
    radial-gradient(
      650px 400px at 6% 100%,
      rgba(201, 162, 39, 0.05),
      transparent 55%
    ),
    var(--bg);
}

.partners-head {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  padding: 0 24px;
}
.partners-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(7, 26, 53, 0.04);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--primary);
  margin-bottom: 12px;
}
.partners-eyebrow i {
  color: var(--gold);
}
.partners-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin: 0 0 8px;
  color: var(--navy);
}
.partners-title span {
  color: var(--gold-dark);
}
.partners-subtext {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= SEAMLESS MARQUEE ROWS ================= */
.partners-marquee-wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

.marquee-row {
  position: relative;
  padding: 8px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 39, 0.04);
}
.marquee-row:last-child {
  border-bottom: none;
}

.marquee-row marquee {
  width: 100%;
  display: block;
}
.marquee-row marquee:hover {
  animation-play-state: paused;
}

.partner-logo-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 20px;
  padding: 6px 14px;
  border-radius: 10px;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.partner-logo-card:hover {
  transform: scale(1.04);
}
.partner-logo-card img {
  height: 28px;
  width: auto;
  max-width: 85px;
  object-fit: contain;
  display: block;
  filter: grayscale(0.6) brightness(0.9);
  opacity: 0.7;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}
.partner-logo-card:hover img {
  filter: grayscale(0) brightness(1);
  opacity: 1;
}
.partner-logo-card .p-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.3s ease;
  white-space: nowrap;
}
.partner-logo-card:hover .p-title {
  color: var(--ink);
}

/* ================= BOTTOM STRIP ================= */
.partners-bottom-strip {
  margin-top: 30px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(7, 26, 53, 0.03);
  padding: 18px 24px;
}
.partners-bottom-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.strip-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.strip-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
}
.strip-left h5 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
}
.strip-left p {
  margin: 1px 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}
.strip-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(201, 162, 39, 0.18);
  transition: all 0.3s ease;
}
.strip-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(201, 162, 39, 0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 767.98px) {
  .partners-section {
    padding: 60px 0 30px;
  }
  .marquee-row {
    padding: 6px 0;
  }
  .partner-logo-card {
    margin: 0 10px;
    padding: 4px 8px;
  }
  .partner-logo-card img {
    height: 20px;
    max-width: 60px;
  }
  .partner-logo-card .p-title {
    font-size: 0.58rem;
  }
  .partners-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .strip-cta {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 420px) {
  .partner-logo-card {
    margin: 0 6px;
    padding: 3px 6px;
  }
  .partner-logo-card img {
    height: 16px;
    max-width: 45px;
  }
  .partner-logo-card .p-title {
    font-size: 0.5rem;
  }
  .strip-icon {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }
}
/*======================BLOG SECTION STYLING=============================*/
.travel-insights {
  position: relative;
  background:
    radial-gradient(
      700px 400px at 90% 0%,
      rgba(37, 99, 235, 0.04),
      transparent 55%
    ),
    radial-gradient(
      650px 400px at 6% 100%,
      rgba(201, 162, 39, 0.05),
      transparent 55%
    ),
    var(--bg);
  padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.ti-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ti-bg .grain {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ti-blur-tr {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  filter: blur(14px);
}
.ti-blur-bl {
  position: absolute;
  bottom: -180px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 206, 131, 0.08),
    transparent 70%
  );
  filter: blur(14px);
}

.ti-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

/* ============================================================
   HEADER
   ============================================================ */
.ti-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.ti-header.in-view {
  opacity: 1;
  transform: translateY(0);
}
.ti-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ti-eyebrow .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-dark);
}
.ti-eyebrow .ln {
  width: 38px;
  height: 1px;
  background: var(--gold);
}
.ti-eyebrow .txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.ti-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.03;
  margin: 0 0 14px;
  letter-spacing: -1px;
}
.ti-heading .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--gold-dark),
    var(--gold) 55%,
    var(--gold-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ti-intro {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   TABS (with sliding indicator)
   ============================================================ */
.ti-tabs {
  position: relative;
  display: flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}
.ti-tab-indicator {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  border-radius: 999px;
  background: linear-gradient(100deg, var(--navy), #0d2c56);
  transition:
    transform 0.45s cubic-bezier(0.65, 0, 0.15, 1),
    width 0.45s cubic-bezier(0.65, 0, 0.15, 1);
  box-shadow: 0 8px 18px rgba(7, 26, 53, 0.22);
}
.ti-tab {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  transition: color 0.35s ease;
  white-space: nowrap;
}
.ti-tab.active {
  color: #fff;
}
.ti-tab:not(.active):hover {
  color: var(--gold-dark);
}
.ti-tab i {
  margin-right: 5px;
  font-size: 0.7rem;
}

/* ============================================================
   BLOG GRID — ALL STATIC HTML
   ============================================================ */
.ti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ti-card {
  opacity: 1;
  transform: translateY(0);
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* hidden state for filtering */
.ti-card.hidden {
  display: none;
}

.ti-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 30px 30px 30px 6px;
  aspect-ratio: 16/11.5;
  box-shadow: 0 14px 30px rgba(7, 26, 53, 0.08);
  transition: box-shadow 0.45s ease;
}
.ti-card:hover .ti-card-media {
  box-shadow: 0 26px 50px rgba(7, 26, 53, 0.18);
}
.ti-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.ti-card:hover .ti-card-img {
  transform: scale(1.09);
}
.ti-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 26, 53, 0.62) 0%,
    rgba(7, 26, 53, 0) 42%
  );
  pointer-events: none;
}

/* badges — category specific */
.ti-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 100px;
  background: linear-gradient(
    100deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(201, 162, 39, 0.35);
}
.ti-badge.cat-tips {
  background: linear-gradient(100deg, #8fd6ff, var(--cyan) 65%, #00a8cc);
  color: var(--navy);
}
.ti-badge.cat-culture {
  background: linear-gradient(100deg, #8be0c1, var(--success) 65%, #0a8f68);
  color: #fff;
}
.ti-badge.cat-adventure {
  background: linear-gradient(
    100deg,
    var(--gold-light),
    var(--gold) 60%,
    var(--gold-dark)
  );
  color: var(--navy);
}
.ti-badge.cat-guides {
  background: linear-gradient(
    100deg,
    #8fa8ff,
    var(--primary) 65%,
    var(--primary-dark)
  );
  color: #fff;
}
.ti-badge i {
  font-size: 0.6rem;
}

.ti-readtime {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
}
.ti-readtime i {
  font-size: 0.65rem;
  color: var(--gold-light);
}

.ti-card-body {
  padding: 20px 6px 0;
}
.ti-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.ti-card-date i {
  font-size: 0.65rem;
  color: var(--gold-dark);
}
.ti-card-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.ti-card:hover .ti-card-title {
  color: var(--gold-dark);
}
.ti-card-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ti-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--gold);
}
.ti-read-more i {
  font-size: 0.7rem;
  color: var(--gold-dark);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ti-card:hover .ti-read-more {
  color: var(--gold-dark);
}
.ti-card:hover .ti-read-more i {
  transform: translateX(5px);
}

/* ============================================================
   BOTTOM STRIP
   ============================================================ */
.ti-strip {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 28px;
  box-shadow: var(--shadow-soft);
}
.ti-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ti-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.ti-strip-left p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  max-width: 460px;
  line-height: 1.5;
}
.ti-strip-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  border: none;
  border-radius: 999px;
  padding: 13px 26px;
  background: linear-gradient(100deg, var(--navy), #123467);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.ti-strip-btn i {
  font-size: 0.7rem;
  color: var(--gold-light);
  transition: transform 0.25s ease;
}
.ti-strip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 26, 53, 0.28);
}
.ti-strip-btn:hover i {
  transform: translateX(4px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .ti-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .ti-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .ti-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ti-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .ti-strip-btn {
    width: 100%;
    justify-content: center;
  }
  .ti-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
    max-width: 100%;
  }
  .ti-tabs::-webkit-scrollbar {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
/*======================MOBILE APP STYLING===================================*/
.app-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background:
    radial-gradient(
      800px 500px at 85% 10%,
      rgba(37, 99, 235, 0.08),
      transparent 55%
    ),
    radial-gradient(
      700px 500px at 10% 90%,
      rgba(201, 162, 39, 0.08),
      transparent 55%
    ),
    linear-gradient(175deg, #f5f8fc 0%, #eef3fb 45%, #eaf1ff 100%);
}

.app-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}
.app-blob.b1 {
  width: 380px;
  height: 380px;
  background: var(--primary);
  top: 5%;
  right: 4%;
  animation: blobFloat 9s ease-in-out infinite;
}
.app-blob.b2 {
  width: 300px;
  height: 300px;
  background: var(--gold-light);
  bottom: 2%;
  left: 3%;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}

.app-container {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ================= LEFT — CONTENT ================= */
.app-left {
  display: flex;
  flex-direction: column;
}

.app-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 7px 15px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--primary-dark);
  margin-bottom: 18px;
  width: fit-content;
}
.app-eyebrow i {
  color: var(--gold);
}
.app-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy);
}
.app-title span {
  color: var(--primary);
  font-style: italic;
}
.app-subtext {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 28px;
}

/* ===== FEATURES — 3x3 grid (desktop) / 2 columns (mobile) ===== */
.app-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  max-width: 540px;
}
.app-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: var(--shadow-soft);
  transition: all 0.35s var(--ease);
  cursor: default;
}
.app-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold-light);
  background: linear-gradient(135deg, #ffffff, #faf8f0);
}
.app-feature:hover .ico {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: scale(1.08) rotate(-4deg);
}
.app-feature:hover .ico i {
  color: var(--navy);
}
.app-feature .ico {
  width: 22px;
  height: 22px;
  border-radius: 9px;
  flex: none;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  transition: all 0.35s var(--ease);
}
.app-feature .txt {
  font-size: 10px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

/* ===== STORE BADGES WITH IMAGES — side by side on mobile ===== */
.app-store-row {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 28px;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 9px 16px;
  border-radius: 12px;
  color: #fff;
  transition: all 0.35s var(--ease);
  flex: 1;
  max-width: 200px;
}
.store-badge:hover {
  background: #0b2a54;
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7, 26, 53, 0.25);
}
.store-badge .badge-icon {
  width: auto;
  height: 35px;
  background-color: #ffffff;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-badge .badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.store-badge .st-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store-badge .st-small {
  font-size: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.store-badge .st-big {
  font-size: 10px;
  font-weight: 700;
}

/* ===== BOTTOM ROW ===== */
.app-bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.app-qr-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 10px 14px;
  border-radius: 14px;
  transition: all 0.35s var(--ease);
}
.app-qr-card:hover {
  box-shadow: var(--shadow-strong);
  border-color: var(--gold-light);
}
.app-qr-card img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  border: 1px solid var(--line);
}
.app-qr-card .qr-txt {
  font-size: 0.74rem;
  color: var(--muted);
}
.app-qr-card .qr-txt b {
  display: block;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
}

.app-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.app-stat .num {
  font-family: var(--font-sora);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold-dark);
}
.app-stat .lbl {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
}

/* ================= RIGHT — PHONE MOCKUP ================= */
.app-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.phone-frame {
  position: relative;
  width: 260px;
  height: 520px;
  background: #0a1830;
  border-radius: 36px;
  border: 8px solid #1a2a4a;
  box-shadow:
    0 40px 80px rgba(7, 26, 53, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
  animation: phoneFloat 5s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* floating cards */
.float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  padding: 9px 13px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.3);
  animation: cardFloat 4.5s ease-in-out infinite;
}
.float-card .ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #ffffff;
}
.float-card .ft-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: #000;
}
.float-card .ft-sub {
  font-size: 0.62rem;
  color: rgb(0 0 0 / 70%);
}

.fc1 {
  top: 6%;
  left: -12%;
  animation-delay: 0s;
}
.fc1 .ico {
  background: linear-gradient(135deg, var(--success), #34d399);
}
.fc2 {
  top: 32%;
  right: -16%;
  animation-delay: 0.8s;
}
.fc2 .ico {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
}
.fc3 {
  bottom: 10%;
  left: -10%;
  animation-delay: 1.6s;
}
.fc3 .ico {
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================================ */
/* ============ RESPONSIVE ============ */
/* ============================================================ */

@media (max-width: 991.98px) {
  .app-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .app-left {
    order: 2;
    align-items: center;
    text-align: center;
  }
  .app-visual {
    order: 1;
    min-height: 440px;
  }
  .app-eyebrow {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .app-title {
    text-align: center;
  }
  .app-subtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .app-features {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .app-store-row {
    justify-content: center;
  }
  .app-bottom-row {
    justify-content: center;
  }
  .fc1 {
    left: 2%;
  }
  .fc2 {
    right: 0%;
  }
  .fc3 {
    left: 0%;
  }
}

@media (max-width: 575.98px) {
  .app-section {
    padding: 60px 14px;
  }

  /* FEATURES — 2 columns on mobile */
  .app-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 100%;
    width: 100%;
  }
  .app-feature {
    padding: 10px 12px;
    border-radius: 10px;
  }
  .app-feature .ico {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    border-radius: 7px;
  }
  .app-feature .txt {
    font-size: 0.72rem;
  }

  /* STORE BADGES — side by side in one row */
  .app-store-row {
    gap: 8px;
    width: 100%;
    justify-content: center;
  }
  .store-badge {
    padding: 8px 12px;
    flex: 0 1 auto;
    max-width: 160px;
    min-width: 130px;
  }
  .store-badge .badge-icon {
    width: 22px;
    height: 22px;
  }
  .store-badge .st-big {
    font-size: 0.75rem;
  }
  .store-badge .st-small {
    font-size: 0.5rem;
  }

  /* PHONE */
  .phone-frame {
    width: 180px;
    height: 360px;
    border-radius: 28px;
    border-width: 5px;
  }
  .float-card {
    padding: 7px 10px;
    border-radius: 10px;
  }
  .float-card .ico {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    border-radius: 6px;
  }
  .float-card .ft-title {
    font-size: 0.65rem;
  }
  .float-card .ft-sub {
    font-size: 0.55rem;
  }
  .fc1 {
    top: 4%;
    left: -4%;
  }
  .fc2 {
    top: 28%;
    right: -6%;
  }
  .fc3 {
    bottom: 8%;
    left: -4%;
  }

  .app-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }
  .app-qr-card {
    padding: 8px 12px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .app-qr-card img {
    width: 40px;
    height: 40px;
  }
  .app-qr-card .qr-txt {
    font-size: 0.7rem;
  }
  .app-qr-card .qr-txt b {
    font-size: 0.74rem;
  }
  .app-stats {
    justify-content: center;
    gap: 14px;
  }
  .app-stat .num {
    font-size: 1rem;
  }
  .app-stat .lbl {
    font-size: 0.62rem;
  }
  .app-subtext {
    font-size: 0.88rem;
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .store-badge {
    padding: 6px 10px;
    min-width: 110px;
    max-width: 140px;
  }
  .store-badge .badge-icon {
    width: 18px;
    height: 18px;
  }
  .store-badge .st-big {
    font-size: 0.68rem;
  }
  .store-badge .st-small {
    font-size: 0.45rem;
  }
  .app-feature .txt {
    font-size: 0.66rem;
  }
  .app-feature .ico {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }
  .app-feature {
    padding: 8px 10px;
  }
  .phone-frame {
    width: 160px;
    height: 320px;
    border-radius: 24px;
    border-width: 4px;
  }
  .float-card {
    padding: 5px 8px;
  }
  .float-card .ico {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }
  .float-card .ft-title {
    font-size: 0.58rem;
  }
  .float-card .ft-sub {
    font-size: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
/* =======================FAQ SECTION STYLING================================ */
.faq-section {
  position: relative;
  background: var(--surface);
  padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.fq-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.fq-blur-tl {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  filter: blur(14px);
}
.fq-blur-br {
  position: absolute;
  bottom: -200px;
  right: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 206, 131, 0.1),
    transparent 70%
  );
  filter: blur(14px);
}

.fq-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

/* ---- header ---- */
.fq-header {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}
.fq-header.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fq-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}
.fq-eyebrow .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-dark);
}
.fq-eyebrow .ln {
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.fq-eyebrow .txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.fq-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 14px;
  letter-spacing: -1px;
}
.fq-heading .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--gold-dark),
    var(--gold) 55%,
    var(--gold-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fq-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

/* ============================================================ 70/30 LAYOUT */
.fq-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.85fr;
  gap: 44px;
  align-items: start;
}

/* ---- LEFT: accordion ---- */
.fq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fqItemIn 0.7s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes fqItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fq-item.open {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-strong);
}

.fq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
}
.fq-ic {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(228, 200, 140, 0.28),
    rgba(37, 99, 235, 0.06) 70%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.4s ease;
  color: var(--gold-dark);
  font-size: 1.05rem;
}
.fq-item.open .fq-ic {
  background: linear-gradient(140deg, var(--gold-light), var(--gold-dark));
  transform: scale(1.08) rotate(-6deg);
  color: var(--navy);
}

.fq-q-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.1px;
}

.fq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  color: var(--navy);
  font-size: 0.9rem;
}
.fq-item.open .fq-toggle {
  background: var(--navy);
  border-color: var(--navy);
  transform: rotate(135deg);
  color: #fff;
}

.fq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.fq-item.open .fq-a-wrap {
  grid-template-rows: 1fr;
}
.fq-a-inner {
  overflow: hidden;
}
.fq-a-text {
  padding: 0 22px 22px 82px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

/* ---- RIGHT: sticky visual + contact card ---- */
.fq-side {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fq-photo-frame {
  position: relative;
  border-radius: 30px 30px 30px 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-strong);
}
.fq-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fq-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 26, 53, 0.75) 0%,
    rgba(7, 26, 53, 0) 44%
  );
}
.fq-photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}
.fq-photo-badge .p-ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(140deg, var(--gold-light), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.8rem;
}
.fq-photo-badge .p-title {
  font-size: 12.5px;
  font-weight: 700;
}
.fq-photo-badge .p-sub {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.75);
}

.fq-contact-card {
  background: linear-gradient(160deg, var(--navy), #0d2b52);
  border-radius: 24px;
  padding: 26px 24px;
  color: #fff;
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}
.fq-contact-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.35),
    transparent 70%
  );
  filter: blur(10px);
}
.fq-contact-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  position: relative;
}
.fq-contact-sub {
  font-size: 12.5px;
  color: #a7b3d0;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.6;
}
.fq-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}
.fq-contact-row:hover {
  transform: translateX(4px);
}
.fq-contact-row .c-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(201, 162, 39, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
}
.fq-contact-row .c-text .c-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a97b8;
  margin-bottom: 2px;
}
.fq-contact-row .c-text .c-val {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
}

.fq-book-btn {
  width: 100%;
  margin-top: 20px;
  border: none;
  border-radius: 14px;
  padding: 15px;
  position: relative;
  background: linear-gradient(
    100deg,
    var(--gold-light),
    var(--gold) 55%,
    var(--gold-dark)
  );
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: var(--shadow-gold);
  transition:
    transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s ease;
}
.fq-book-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 162, 39, 0.42);
}
.fq-book-btn i {
  font-size: 1.1rem;
  color: var(--navy);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 991px) {
  .fq-layout {
    grid-template-columns: 1fr;
  }
  .fq-side {
    position: static;
    flex-direction: row;
    align-items: stretch;
  }
  .fq-photo-frame {
    flex: 0 0 42%;
    aspect-ratio: auto;
  }
  .fq-contact-card {
    flex: 1;
  }
}
@media (max-width: 700px) {
  .fq-side {
    flex-direction: column;
  }
  .fq-photo-frame {
    aspect-ratio: 16/9;
  }
  .fq-q {
    padding: 17px 16px;
    gap: 12px;
  }
  .fq-ic {
    width: 22px;
    height: 22px;
    font-size: 0.9rem;
  }
  .fq-q-text {
    font-size: 12px;
  }
  .fq-a-text {
    padding: 0 16px 18px 10px;
    font-size: 12px;
    line-height: 1.7;
    text-align: justify;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
/* ===================== CTA SECTION============================== */
.cta-section {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 90px 0;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(4, 10, 22, 0.94) 0%,
      rgba(4, 10, 22, 0.82) 32%,
      rgba(4, 10, 22, 0.55) 58%,
      rgba(4, 10, 22, 0.28) 100%
    ),
    linear-gradient(
      0deg,
      rgba(4, 10, 22, 0.5) 0%,
      transparent 30%,
      transparent 70%,
      rgba(4, 10, 22, 0.35) 100%
    );
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}
.cta-blob-1 {
  width: 420px;
  height: 420px;
  top: -140px;
  left: 10%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.18;
  animation: ctaFloat1 22s ease-in-out infinite;
}
.cta-blob-2 {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: 40%;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  opacity: 0.1;
  animation: ctaFloat2 26s ease-in-out infinite;
}
@keyframes ctaFloat1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 25px);
  }
}
@keyframes ctaFloat2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-25px, -20px);
  }
}

.cta-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 2;
  width: 100%;
}
.cta-content {
  max-width: 820px;
}

/* ---- badge ---- */
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 24px;
  opacity: 0;
  animation: ctaFadeUp 0.7s ease forwards;
}
.cta-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: ctaPulse 1.8s infinite;
}
@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
  }
}
.cta-badge i {
  font-size: 0.75rem;
}

/* ---- heading ---- */
.cta-heading {
  font-family: var(--font-display);
  font-weight: 600;
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.8px;
  margin: 0 0 20px;
  opacity: 0;
  animation: ctaFadeUp 0.7s ease forwards;
  animation-delay: 0.12s;
}
.cta-heading .accent {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(
    100deg,
    var(--gold-light),
    var(--gold) 55%,
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #c3ccdf;
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  animation: ctaFadeUp 0.7s ease forwards;
  animation-delay: 0.24s;
}

/* ---- CTAs ---- */
.cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  opacity: 0;
  animation: ctaFadeUp 0.7s ease forwards;
  animation-delay: 0.36s;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(
    100deg,
    var(--gold-light),
    var(--gold) 55%,
    var(--gold-dark)
  );
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: var(--shadow-gold);
  transition:
    transform 0.35s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.35s ease;
}
.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(201, 162, 39, 0.5);
}
.cta-btn-primary i {
  font-size: 1rem;
}

.cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.35s ease;
}
.cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
}
.cta-btn-ghost i {
  font-size: 1rem;
  color: var(--gold-light);
}

/* ---- glass feature cards ---- */
.cta-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  opacity: 0;
  animation: ctaFadeUp 0.7s ease forwards;
  animation-delay: 0.48s;
}
.cta-feat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-dark);
  transition:
    transform 0.4s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.4s ease,
    border-color 0.4s ease;
}
.cta-feat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(201, 162, 39, 0.4);
}
.cta-feat-ic {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(
    140deg,
    rgba(228, 200, 140, 0.3),
    rgba(0, 218, 255, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.95rem;
}
.cta-feat-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.cta-feat-sub {
  font-size: 10.5px;
  color: #9aa7c4;
}

@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================ RESPONSIVE */
@media (max-width: 991px) {
  .cta-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .cta-section {
    min-height: auto;
    padding: 70px 0;
  }
  .cta-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 10, 22, 0.7) 0%,
      rgba(4, 10, 22, 0.88) 55%,
      rgba(4, 10, 22, 0.96) 100%
    );
  }
  .cta-btns {
    flex-direction: column;
  }
  .cta-btn-primary,
  .cta-btn-ghost {
    justify-content: center;
    width: 100%;
  }
  /* Mobile: 2x2 grid */
  .cta-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cta-feat-card {
    padding: 12px 10px;
    gap: 10px;
  }
  .cta-feat-ic {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  .cta-feat-title {
    font-size: 11px;
  }
  .cta-feat-sub {
    font-size: 9.5px;
  }
}
@media (max-width: 400px) {
  .cta-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cta-feat-card {
    padding: 10px 8px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .cta-feat-ic {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
/* =================================== FOOTER =========================== */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, #04101f 100%);
  overflow: hidden;
  padding-top: 2px;
}

/* gradient glow top border */
.ft-glow-border {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary) 20%,
    var(--purple) 50%,
    var(--cyan) 80%,
    transparent
  );
  position: relative;
}
.ft-glow-border::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.5) 20%,
    rgba(124, 58, 237, 0.6) 50%,
    rgba(0, 218, 255, 0.4) 80%,
    transparent
  );
  filter: blur(12px);
}

/* background layers */
.ft-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ft-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1300px, 120%);
  opacity: 0.03;
}
.ft-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.ft-blob-1 {
  width: 480px;
  height: 480px;
  top: -160px;
  left: -100px;
  background: radial-gradient(circle, var(--primary), transparent 70%);
  opacity: 0.35;
  animation: ftFloat1 22s ease-in-out infinite;
}
.ft-blob-2 {
  width: 420px;
  height: 420px;
  bottom: -140px;
  right: -100px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  opacity: 0.3;
  animation: ftFloat2 26s ease-in-out infinite;
}
@keyframes ftFloat1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 30px);
  }
}
@keyframes ftFloat2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-40px, -25px);
  }
}

.ft-route-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ft-route-path {
  fill: none;
  stroke: rgba(232, 206, 131, 0.25);
  stroke-width: 1;
  stroke-dasharray: 1 8;
  stroke-linecap: round;
}
.ft-plane {
  position: absolute;
  filter: drop-shadow(0 0 6px rgba(232, 206, 131, 0.6));
  offset-path: path("M -30,60 C 260,-10 520,130 900,50 S 1300,110 1540,30");
  offset-rotate: auto;
  animation: ftFly 24s linear infinite;
  font-size: 20px;
  color: var(--gold-light);
}
@keyframes ftFly {
  0% {
    offset-distance: 0%;
    opacity: 0;
  }
  6% {
    opacity: 0.9;
  }
  94% {
    opacity: 0.9;
  }
  100% {
    offset-distance: 100%;
    opacity: 0;
  }
}

.ft-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: ftTwinkle ease-in-out infinite;
}
@keyframes ftTwinkle {
  0%,
  100% {
    opacity: 0.15;
  }
  50% {
    opacity: 0.9;
  }
}

.ft-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
  position: relative;
  z-index: 2;
}

/* ============================================================ MAIN GRID */
.ft-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 70px 0 50px;
}

/* --- col 1: company --- */
.ft-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ft-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  flex-shrink: 0;
  background: linear-gradient(
    140deg,
    var(--gold-light),
    var(--gold) 55%,
    var(--gold-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  font-size: 19px;
  box-shadow: 0 10px 24px rgba(201, 162, 39, 0.3);
}
.ft-logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.3px;
  color: #fff;
}
.ft-logo-word span {
  font-style: italic;
  color: var(--gold-light);
}

.ft-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: #9aa7c4;
  max-width: 290px;
  margin-bottom: 20px;
}

.ft-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 9px 15px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11.5px;
  font-weight: 600;
  color: #dbe2f2;
}
.ft-badge .b-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, var(--primary), var(--cyan));
  font-size: 13px;
  color: #fff;
}
.ft-badge .b-ic.gold {
  background: linear-gradient(140deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
}
.ft-badge b {
  color: #fff;
  font-family: var(--font-mono);
}

/* --- col headings --- */
.ft-col-title {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 22px;
  position: relative;
  padding-bottom: 12px;
}
.ft-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.ft-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #9aa7c4;
  font-weight: 500;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
  width: fit-content;
}
.ft-links a i {
  font-size: 11px;
  color: var(--gold-light);
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.ft-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.ft-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* --- col 5: contact --- */
.ft-contact-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ft-contact-ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(201, 162, 39, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gold-light);
  transition: all 0.3s ease;
}
.ft-contact-item:hover .ft-contact-ic {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.ft-contact-text {
  font-size: 13px;
  color: #9aa7c4;
  line-height: 1.6;
  padding-top: 6px;
}
.ft-contact-text b {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ft-social-row {
  display: flex;
  gap: 10px;
}
.ft-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #dbe2f2;
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}
.ft-social:hover {
  background: linear-gradient(140deg, var(--gold-light), var(--gold-dark));
  border-color: transparent;
  transform: translateY(-4px) rotate(-8deg);
  color: var(--navy);
}

/* ============================================================ GLASS STRIP */
.ft-strip {
  display: grid;
  grid-template-columns: 1.1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px 30px;
  border-radius: 20px;
  margin-bottom: 44px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ft-newsletter-label {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.ft-newsletter-sub {
  font-size: 11.5px;
  color: #8a97b8;
  margin-bottom: 12px;
}
.ft-newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 340px;
}
.ft-newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 13px;
  color: #fff;
  outline: none;
  font-family: var(--font-ui);
}
.ft-newsletter-form input::placeholder {
  color: #7382a3;
}
.ft-newsletter-form input:focus {
  border-color: var(--gold-light);
}
.ft-sub-btn {
  border: none;
  border-radius: 10px;
  padding: 0 18px;
  background: linear-gradient(100deg, var(--gold-light), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 12.5px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.ft-sub-btn:hover {
  transform: translateY(-2px);
}

.ft-apps {
  display: flex;
  gap: 12px;
}
.ft-app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.3s ease;
}
.ft-app-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}
.ft-app-btn i {
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.ft-app-btn .a-sub {
  font-size: 8.5px;
  color: #9aa7c4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}
.ft-app-btn .a-main {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.ft-payments {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.ft-payments-label {
  font-size: 10.5px;
  color: #7382a3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
}
.ft-pay-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ft-pay-chip {
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: #dbe2f2;
  letter-spacing: 0.03em;
}

/* ============================================================ BOTTOM BAR */
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ft-copy {
  font-size: 12.5px;
  color: #7382a3;
}
.ft-made {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(201, 162, 39, 0.3);
  font-size: 12px;
  color: #dbe2f2;
  transition: all 0.3s ease;
}
.ft-made:hover {
  border-color: var(--gold-light);
  background: rgba(201, 162, 39, 0.08);
}
.ft-made i {
  font-size: 13px;
  color: #ef4444;
}
.ft-made b {
  color: var(--gold-light);
  font-weight: 700;
}
.ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #7382a3;
  flex-wrap: wrap;
}
.ft-bottom-links a {
  transition: color 0.25s ease;
}
.ft-bottom-links a:hover {
  color: #fff;
}
.ft-bottom-links .sep {
  color: #3a4560;
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1150px) {
  .ft-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .ft-strip {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
  }
  .ft-payments {
    align-items: flex-start;
  }
  .ft-pay-row {
    justify-content: flex-start;
  }
}
@media (max-width: 760px) {
  .ft-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
    padding: 54px 0 40px;
  }
  .ft-newsletter-form {
    max-width: 100%;
  }
  .ft-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .ft-main {
    grid-template-columns: 1fr;
  }
  .ft-apps {
    flex-direction: column;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
