/* ========================================================
   SiamOntour - Modern Travel Website CSS
   Version: 2.0  |  echoidea studio
   ======================================================== */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --sot-primary:       #E85D3E;   /* Coral Red - main CTA        */
  --sot-primary-dark:  #C44129;   /* Darker coral for hover      */
  --sot-navy:          #0D1B2A;   /* Deep navy - backgrounds     */
  --sot-navy-mid:      #1B3A5C;   /* Mid navy                    */
  --sot-accent:        #F5A623;   /* Thai Gold - accents         */
  --sot-teal:          #00B4A6;   /* Teal - secondary highlight  */
  --sot-teal-dark:     #008F83;
  --sot-light:         #F8F9FC;   /* Light page background       */
  --sot-card-bg:       #FFFFFF;
  --sot-text:          #1A2332;
  --sot-text-muted:    #6C7A8D;
  --sot-border:        #E2E8F0;
  --sot-shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --sot-shadow-md:     0 4px 20px rgba(0,0,0,0.10);
  --sot-shadow-lg:     0 8px 40px rgba(0,0,0,0.14);
  --sot-radius:        14px;
  --sot-radius-lg:     22px;
  --sot-transition:    all 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body.sot-body {
  font-family: 'Poppins', sans-serif;
  background: var(--sot-light);
  color: var(--sot-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.sot-body.font-th {
  font-family: 'Noto Sans Thai', 'Poppins', sans-serif;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── Navbar ─────────────────────────────────────────────── */
.sot-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  padding: 18px 0;
  background: transparent;
  transition: var(--sot-transition);
}

.sot-navbar.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.sot-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sot-brand .brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.sot-brand .brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.sot-brand .brand-accent { color: var(--sot-accent); }

.sot-navbar .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--sot-transition);
}

.sot-navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.10);
}

.sot-lang-btn {
  border: 1px solid rgba(255,255,255,0.30) !important;
  border-radius: 20px !important;
  padding: 5px 12px !important;
  font-size: 0.82rem !important;
}

.sot-lang-menu {
  border-radius: 12px;
  border: none;
  box-shadow: var(--sot-shadow-lg);
  min-width: 160px;
  padding: 8px;
}

.sot-lang-menu .dropdown-item {
  border-radius: 8px;
  font-size: 0.88rem;
  padding: 7px 12px;
}

.sot-lang-menu .dropdown-item.active,
.sot-lang-menu .dropdown-item:active {
  background: var(--sot-primary);
  color: #fff;
}

.sot-btn-primary {
  background: var(--sot-primary);
  color: #fff !important;
  border: none;
  border-radius: 20px;
  padding: 7px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--sot-transition);
}

.sot-btn-primary:hover {
  background: var(--sot-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232,93,62,0.40);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.4) !important;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ── Hero Section ───────────────────────────────────────── */
.sot-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(160deg,
      rgba(13,27,42,0.92) 0%,
      rgba(27,58,92,0.80) 50%,
      rgba(0,100,120,0.70) 100%),
    url('../images/search-bg.jpg') center/cover no-repeat;
}

.sot-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--sot-light), transparent);
  pointer-events: none;
}

.sot-hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sot-hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(245,166,35,0.5);
  border-radius: 50%;
  animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50%       { transform: translateY(-30px) scale(1.5); opacity: 1; }
}

.sot-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.20);
  border: 1px solid rgba(245,166,35,0.40);
  color: var(--sot-accent);
  border-radius: 30px;
  padding: 5px 15px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-heading {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-heading .highlight {
  color: var(--sot-accent);
  position: relative;
}

.hero-heading .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--sot-accent);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Search Box */
.hero-search-box {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 20px;
  padding: 8px;
  max-width: 760px;
}

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
  padding: 0 4px;
}

.search-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--sot-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-tab.active,
.search-tab:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.search-tab.active {
  background: var(--sot-primary);
  color: #fff;
}

.search-form {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.search-field {
  flex: 1;
  min-width: 160px;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--sot-text);
  padding: 4px 0;
  background: transparent;
}

.search-field::placeholder { color: var(--sot-text-muted); }

.search-divider {
  width: 1px;
  height: 32px;
  background: var(--sot-border);
  flex-shrink: 0;
}

.search-btn {
  background: var(--sot-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--sot-transition);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.search-btn:hover {
  background: var(--sot-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232,93,62,0.40);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.60);
  font-weight: 500;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Section Shared ─────────────────────────────────────── */
.sot-section {
  padding: 72px 0;
}

.sot-section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--sot-text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.sot-section-sub {
  font-size: 1rem;
  color: var(--sot-text-muted);
  margin-bottom: 42px;
}

.sot-tag {
  display: inline-block;
  background: rgba(232,93,62,0.10);
  color: var(--sot-primary);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Featured Destinations ──────────────────────────────── */
.sot-featured { background: #fff; }

.dest-card {
  position: relative;
  border-radius: var(--sot-radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--sot-transition);
  box-shadow: var(--sot-shadow-sm);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sot-shadow-lg);
}

.dest-card-inner {
  padding-top: 68%;  /* 16:11 aspect ratio */
  position: relative;
  overflow: hidden;
}

.dest-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.dest-card:hover .dest-bg {
  transform: scale(1.07);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10,20,40,0.85) 100%);
}

.dest-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 18px;
}

.dest-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.dest-name-th {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 8px;
}

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-hotel-count {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dest-btn {
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  transition: var(--sot-transition);
}

.dest-card:hover .dest-btn {
  background: var(--sot-primary);
  border-color: var(--sot-primary);
}

/* Destination gradient themes */
.dest-bangkok   { background: linear-gradient(135deg, #1A1A2E 0%, #E85D3E 60%, #F5A623 100%); }
.dest-phuket    { background: linear-gradient(135deg, #0C3547 0%, #006E90 50%, #00B4A6 100%); }
.dest-chiangmai { background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #74C69D 100%); }
.dest-pattaya   { background: linear-gradient(135deg, #2D1B69 0%, #7B2D8B 50%, #E85D3E 100%); }
.dest-krabi     { background: linear-gradient(135deg, #023E58 0%, #0077B6 50%, #48CAE4 100%); }
.dest-samui     { background: linear-gradient(135deg, #004B23 0%, #006400 50%, #80B918 100%); }
.dest-huahin    { background: linear-gradient(135deg, #4A1942 0%, #C77DFF 50%, #E0AAFF 100%); }
.dest-ayutthaya { background: linear-gradient(135deg, #7B2D00 0%, #D4622D 50%, #F5A623 100%); }

/* ── Affiliate Section ──────────────────────────────────── */
.sot-affiliate { background: var(--sot-light); }

.aff-card {
  background: #fff;
  border-radius: var(--sot-radius);
  padding: 28px 24px;
  box-shadow: var(--sot-shadow-sm);
  transition: var(--sot-transition);
  border: 1.5px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.aff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sot-shadow-md);
  border-color: var(--sot-primary);
}

.aff-logo-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 800;
}

.aff-logo-agoda    { background: #E31837; color: #fff; font-size: 1rem; }
.aff-logo-booking  { background: #003580; color: #fff; font-size: 0.85rem; }
.aff-logo-sky      { background: #0770E3; color: #fff; }
.aff-logo-klook    { background: #FF5533; color: #fff; }

.aff-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sot-text);
  margin-bottom: 6px;
}

.aff-desc {
  font-size: 0.875rem;
  color: var(--sot-text-muted);
  margin-bottom: 20px;
  flex: 1;
}

.aff-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sot-navy);
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--sot-transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.aff-btn:hover {
  background: var(--sot-primary);
  color: #fff;
  transform: translateY(-1px);
}

.aff-trust {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--sot-text-muted);
  margin-top: 12px;
}

/* ── Province Section ───────────────────────────────────── */
.sot-provinces { background: #fff; }

.prov-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  align-items: center;
}

.prov-filter-btn {
  background: var(--sot-light);
  border: 1.5px solid var(--sot-border);
  color: var(--sot-text-muted);
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--sot-transition);
  font-family: inherit;
}

.prov-filter-btn:hover,
.prov-filter-btn.active {
  background: var(--sot-primary);
  border-color: var(--sot-primary);
  color: #fff;
}

.prov-search-wrap {
  margin-left: auto;
}

.prov-search {
  border: 1.5px solid var(--sot-border);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  min-width: 200px;
  transition: var(--sot-transition);
}

.prov-search:focus {
  border-color: var(--sot-primary);
  box-shadow: 0 0 0 3px rgba(232,93,62,0.12);
}

/* Province card */
.prov-card {
  display: block;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--sot-border);
  transition: var(--sot-transition);
  color: inherit;
  height: 100%;
}

.prov-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sot-shadow-md);
  border-color: var(--sot-primary);
  color: inherit;
}

.prov-card-thumb {
  height: 80px;
  position: relative;
  overflow: hidden;
}

.prov-card-body {
  padding: 12px 14px;
}

.prov-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--sot-text);
  margin-bottom: 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prov-card-sub {
  font-size: 0.75rem;
  color: var(--sot-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prov-region-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  letter-spacing: 0.3px;
}

/* Province gradient by geography_id */
.prov-geo-1 { background: linear-gradient(135deg, #1B4332 0%, #52B788 100%); }  /* North */
.prov-geo-2 { background: linear-gradient(135deg, #0D3B66 0%, #3A86FF 100%); }  /* Central */
.prov-geo-3 { background: linear-gradient(135deg, #7B2D00 0%, #E07A26 100%); }  /* Northeast */
.prov-geo-4 { background: linear-gradient(135deg, #540D6E 0%, #EE4266 100%); }  /* East */
.prov-geo-5 { background: linear-gradient(135deg, #4A1942 0%, #C77DFF 100%); }  /* West */
.prov-geo-6 { background: linear-gradient(135deg, #023E58 0%, #00B4A6 100%); }  /* South */
.prov-geo-0 { background: linear-gradient(135deg, #555 0%, #888 100%); }        /* Fallback */

/* Province map icon overlay */
.prov-card-thumb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  opacity: 0.40;
  filter: brightness(10);
}

/* No results */
.prov-no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--sot-text-muted);
}

/* ── Why Thailand Banner ─────────────────────────────────── */
.sot-why {
  background: linear-gradient(135deg, var(--sot-navy) 0%, var(--sot-navy-mid) 100%);
  padding: 72px 0;
}

.why-card {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.why-icon {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.10);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  color: var(--sot-accent);
  transition: var(--sot-transition);
}

.why-card:hover .why-icon {
  background: var(--sot-primary);
  color: #fff;
  transform: scale(1.08);
}

.why-title {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* ── Footer ─────────────────────────────────────────────── */
.sot-footer {
  background: var(--sot-navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}

.sot-footer .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-top: 12px;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

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

.footer-links li + li { margin-top: 8px; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--sot-transition);
}

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

.footer-affiliates {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.affiliate-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--sot-transition);
}

.affiliate-link::before {
  content: '→';
  color: var(--sot-accent);
}

.affiliate-link:hover { color: var(--sot-accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 24px 0;
  margin-top: 40px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.40);
}

.footer-copy a {
  color: rgba(255,255,255,0.60);
  transition: var(--sot-transition);
}

.footer-copy a:hover { color: var(--sot-accent); }

.lang-switcher-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang-switcher-footer a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  transition: var(--sot-transition);
}

.lang-switcher-footer a.active,
.lang-switcher-footer a:hover {
  color: var(--sot-accent);
}

/* ── Province Count Badge ───────────────────────────────── */
.prov-count-badge {
  background: var(--sot-primary);
  color: #fff;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  margin-left: 6px;
}

/* ── Scroll Fade In Animation ───────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Loading Skeleton ───────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .sot-navbar { background: rgba(13,27,42,0.96); padding: 12px 0; }
  .hero-search-box { max-width: 100%; }
  .search-form { flex-direction: column; align-items: stretch; }
  .search-divider { display: none; }
  .search-field { min-width: unset; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.3rem; }
}

@media (max-width: 767px) {
  .sot-section { padding: 52px 0; }
  .sot-section-title { font-size: 1.55rem; }
  .hero-heading { font-size: 2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-stat-num { font-size: 1.2rem; }
  .prov-filter-bar { gap: 6px; }
  .prov-search-wrap { width: 100%; margin-left: 0; }
  .prov-search { width: 100%; }
  .lang-switcher-footer { justify-content: flex-start; margin-top: 12px; }
}

@media (max-width: 575px) {
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.1rem; }
  .dest-card-inner { padding-top: 75%; }
}

/* ══════════════════════════════════════════════════════════
   DESTINATION (PROVINCE) PAGE
══════════════════════════════════════════════════════════ */

/* ── Breadcrumb ─────────────────────────────────────────── */
.sot-breadcrumb {
  background: var(--sot-navy);
  padding: 60px 0 0;
}

.sot-breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  flex-wrap: wrap;
}

.sot-breadcrumb-inner a,
.sot-breadcrumb-inner span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: var(--sot-transition);
}

.sot-breadcrumb-inner a:hover { color: var(--sot-accent); }

.sot-breadcrumb-inner .bc-sep {
  color: rgba(255,255,255,0.25);
  font-size: 0.75rem;
}

.sot-breadcrumb-inner .bc-current {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

/* ── Destination Hero ───────────────────────────────────── */
.dest-page-hero {
  background: var(--sot-navy);
  padding: 28px 0 0;
  position: relative;
  overflow: hidden;
}

.dest-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-size: cover;
  background-position: center;
}

/* Geo-based overlay gradients for destination hero */
.dest-hero-geo-1::before { background: linear-gradient(135deg, #1B4332, #52B788); }
.dest-hero-geo-2::before { background: linear-gradient(135deg, #0D3B66, #3A86FF); }
.dest-hero-geo-3::before { background: linear-gradient(135deg, #7B2D00, #E07A26); }
.dest-hero-geo-4::before { background: linear-gradient(135deg, #540D6E, #EE4266); }
.dest-hero-geo-5::before { background: linear-gradient(135deg, #4A1942, #C77DFF); }
.dest-hero-geo-6::before { background: linear-gradient(135deg, #023E58, #00B4A6); }

.dest-hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 0 0;
}

.dest-hero-names {
  margin-bottom: 12px;
}

.dest-hero-name-en {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.dest-hero-name-th {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}

.dest-hero-intro {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ── Category Tabs ──────────────────────────────────────── */
.dest-category-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 16px;
  margin-top: auto;
}

.dest-category-tabs::-webkit-scrollbar { display: none; }

.dest-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 16px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--sot-transition);
  font-family: inherit;
  border-radius: 0;
  text-decoration: none;
}

.dest-cat-tab:hover,
.dest-cat-tab.active {
  color: #fff;
}

.dest-cat-tab.active {
  border-bottom-color: var(--sot-accent);
}

.dest-cat-tab.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.dest-cat-count {
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 7px;
  min-width: 22px;
  text-align: center;
}

.dest-cat-tab.active .dest-cat-count {
  background: var(--sot-accent);
  color: var(--sot-navy);
}

/* ── Affiliate Quick Bar ────────────────────────────────── */
.dest-affiliate-bar {
  background: #fff;
  border-bottom: 1px solid var(--sot-border);
  padding: 12px 0;
}

.dest-aff-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sot-text-muted);
  border: 1.5px solid var(--sot-border);
  border-radius: 20px;
  padding: 6px 14px;
  transition: var(--sot-transition);
  text-decoration: none;
}

.dest-aff-link:hover {
  border-color: var(--sot-primary);
  color: var(--sot-primary);
}

.dest-aff-link.agoda:hover  { border-color: #E31837; color: #E31837; }
.dest-aff-link.booking:hover{ border-color: #003580; color: #003580; }
.dest-aff-link.sky:hover    { border-color: #0770E3; color: #0770E3; }
.dest-aff-link.klook:hover  { border-color: #FF5533; color: #FF5533; }

/* ── Hotel / Place Cards ────────────────────────────────── */
.dest-page-content {
  padding: 36px 0 60px;
  background: var(--sot-light);
  min-height: 400px;
}

.place-card {
  background: #fff;
  border-radius: var(--sot-radius);
  border: 1.5px solid var(--sot-border);
  display: flex;
  overflow: hidden;
  margin-bottom: 16px;
  transition: var(--sot-transition);
  position: relative;
}

.place-card:hover {
  box-shadow: var(--sot-shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.place-card-photo {
  width: 200px;
  min-width: 200px;
  object-fit: cover;
  display: block;
  background: var(--sot-border);
}

.place-card-photo-link {
  width: 200px;
  min-width: 200px;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}

.place-card-photo-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  min-height: 155px;
}

.place-card:hover .place-card-photo-link img {
  transform: scale(1.05);
}

.place-card-body {
  flex: 1;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.place-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sot-text);
  margin-bottom: 3px;
  line-height: 1.3;
}

.place-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.place-card-title a:hover { color: var(--sot-primary); }

.place-card-subtitle {
  font-size: 0.82rem;
  color: var(--sot-text-muted);
  margin-bottom: 8px;
}

.place-card-address {
  font-size: 0.82rem;
  color: var(--sot-text-muted);
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.place-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.place-card-stars { color: #F5A623; font-size: 0.9rem; }

.place-card-review {
  font-size: 0.78rem;
  color: var(--sot-text-muted);
}

.place-card-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 18px;
  border-left: 1px solid var(--sot-border);
  min-width: 140px;
  gap: 8px;
}

.place-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  font-size: 0.83rem;
  font-weight: 600;
  padding: 9px 14px;
  transition: var(--sot-transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.place-card-btn-primary {
  background: var(--sot-primary);
  color: #fff;
}

.place-card-btn-primary:hover {
  background: var(--sot-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}

.place-card-btn-outline {
  background: transparent;
  color: var(--sot-navy-mid);
  border: 1.5px solid var(--sot-border);
}

.place-card-btn-outline:hover {
  border-color: var(--sot-primary);
  color: var(--sot-primary);
}

.place-card-no-photo {
  width: 200px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.2;
  background: var(--sot-light);
}

/* ── Destination Sidebar ────────────────────────────────── */
.dest-sidebar {
  position: sticky;
  top: 80px;
}

.dest-map-box {
  background: #fff;
  border-radius: var(--sot-radius);
  border: 1.5px solid var(--sot-border);
  overflow: hidden;
  margin-bottom: 16px;
}

.dest-map-box-header {
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sot-text);
  border-bottom: 1px solid var(--sot-border);
  background: var(--sot-light);
}

.dest-svg-map {
  padding: 12px;
  max-height: 260px;
  overflow: hidden;
}

.dest-svg-map svg {
  width: 100%;
  height: auto;
  display: block;
}

.dest-aff-sidebar {
  background: #fff;
  border-radius: var(--sot-radius);
  border: 1.5px solid var(--sot-border);
  padding: 18px;
}

.dest-aff-sidebar-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sot-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.dest-aff-sidebar-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sot-light);
  border: 1.5px solid var(--sot-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--sot-text);
  text-decoration: none;
  transition: var(--sot-transition);
  margin-bottom: 8px;
}

.dest-aff-sidebar-btn:hover {
  background: var(--sot-primary);
  color: #fff;
  border-color: var(--sot-primary);
}

/* ── Pagination ─────────────────────────────────────────── */
.sot-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.sot-pagination a,
.sot-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--sot-transition);
}

.sot-pagination a {
  background: #fff;
  color: var(--sot-text-muted);
  border: 1.5px solid var(--sot-border);
}

.sot-pagination a:hover {
  background: var(--sot-primary);
  color: #fff;
  border-color: var(--sot-primary);
}

.sot-pagination .active {
  background: var(--sot-primary);
  color: #fff;
  border: 1.5px solid var(--sot-primary);
}

.sot-pagination .disabled {
  background: var(--sot-light);
  color: var(--sot-border);
  border: 1.5px solid var(--sot-border);
  pointer-events: none;
}

/* ── Place card mobile ──────────────────────────────────── */
@media (max-width: 767px) {
  .place-card { flex-direction: column; }
  .place-card-photo-link,
  .place-card-no-photo { width: 100%; min-width: unset; height: 160px; }
  .place-card-photo-link img { min-height: 160px; }
  .place-card-action {
    border-left: none;
    border-top: 1px solid var(--sot-border);
    min-width: unset;
    flex-direction: row;
    padding: 12px 16px;
    gap: 10px;
  }
  .place-card-btn { flex: 1; }
  .dest-sidebar { position: static; }
  .dest-category-tabs { padding-bottom: 0; }
}


/* ══════════════════════════════════════════════════════════
   HOTEL DETAIL PAGE
══════════════════════════════════════════════════════════ */

/* ── Hotel Page Wrapper ─────────────────────────────────── */
.hotel-page { background: var(--sot-light); padding-bottom: 60px; }

/* ── Hotel Header Band ──────────────────────────────────── */
.hotel-header-band {
  background: var(--sot-navy);
  padding: 70px 0 28px;
}

.hotel-header-name {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 5px;
}

.hotel-header-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
}

.hotel-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hotel-stars { color: var(--sot-accent); font-size: 1rem; }

.hotel-review-count {
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  padding: 3px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hotel-lang-links {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.hotel-lang-links a {
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s;
  display: inline-block;
}

.hotel-lang-links a:hover { transform: scale(1.25); }

/* ── Gallery ────────────────────────────────────────────── */
.hotel-gallery {
  background: var(--sot-navy);
  padding: 0 0 32px;
}

.hotel-main-photo {
  border-radius: var(--sot-radius);
  overflow: hidden;
  background: #111;
  margin-bottom: 12px;
  aspect-ratio: 16/9;
  cursor: zoom-in;
}

.hotel-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hotel-main-photo:hover img { transform: scale(1.03); }

.hotel-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.hotel-thumbs::-webkit-scrollbar { display: none; }

.hotel-thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--sot-transition);
  opacity: 0.65;
}

.hotel-thumb.active,
.hotel-thumb:hover {
  border-color: var(--sot-accent);
  opacity: 1;
}

.hotel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Hotel Content Layout ───────────────────────────────── */
.hotel-content-section {
  margin-top: 28px;
}

/* ── Booking Card ───────────────────────────────────────── */
.booking-card {
  position: sticky;
  top: 80px;
  background: #fff;
  border-radius: var(--sot-radius-lg);
  box-shadow: var(--sot-shadow-lg);
  overflow: hidden;
  border: 1.5px solid var(--sot-border);
}

.booking-card-header {
  background: var(--sot-navy);
  padding: 18px 20px;
  color: #fff;
}

.booking-card-stars { color: var(--sot-accent); font-size: 1rem; margin-bottom: 6px; }

.booking-card-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.booking-card-location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-card-body { padding: 20px; }

.booking-now-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--sot-transition);
  margin-bottom: 10px;
  border: none;
  cursor: pointer;
}

.booking-btn-agoda {
  background: #E31837;
  color: #fff;
}
.booking-btn-agoda:hover {
  background: #c20f2b;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(227,24,55,0.35);
}

.booking-btn-booking {
  background: #003580;
  color: #fff;
}
.booking-btn-booking:hover {
  background: #002560;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,53,128,0.35);
}

.booking-btn-outline {
  background: transparent;
  color: var(--sot-text-muted);
  border: 1.5px solid var(--sot-border) !important;
}
.booking-btn-outline:hover {
  border-color: var(--sot-primary) !important;
  color: var(--sot-primary);
}

.booking-divider {
  border: none;
  border-top: 1px solid var(--sot-border);
  margin: 16px 0;
}

.booking-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.booking-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--sot-text);
  padding: 7px 0;
  border-bottom: 1px solid var(--sot-border);
}

.booking-info-list li:last-child { border-bottom: none; }

.booking-info-list i {
  color: var(--sot-primary);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sot-text-muted);
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 1px;
}

/* ── Hotel Overview Section ─────────────────────────────── */
.hotel-section {
  background: #fff;
  border-radius: var(--sot-radius);
  border: 1.5px solid var(--sot-border);
  padding: 24px 26px;
  margin-bottom: 20px;
}

.hotel-section-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sot-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotel-section-heading i {
  width: 30px;
  height: 30px;
  background: rgba(232,93,62,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sot-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.hotel-overview-text {
  font-size: 0.91rem;
  color: #444;
  line-height: 1.75;
}

/* Map wrapper */
.hotel-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--sot-border);
}

/* ── Lightbox (simple) ──────────────────────────────────── */
.sot-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}

.sot-lightbox.open { display: flex; }

.sot-lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 60px rgba(0,0,0,0.6);
}

.sot-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10000;
}

.sot-lightbox-close:hover { color: #fff; }

@media (max-width: 991px) {
  .booking-card { position: static; }
  .hotel-main-photo { aspect-ratio: 4/3; }
}

@media (max-width: 575px) {
  .hotel-header-name { font-size: 1.5rem; }
  .hotel-section { padding: 18px; }
  .booking-card-body { padding: 16px; }
}

/* ============================================================
   FLIGHT PAGE  —  sot-home.css Phase 3 additions
   ============================================================ */

/* ── Flight Hero ──────────────────────────────────────────── */
.flight-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0D1B2A 0%, #1B3A5C 50%, #0a3d62 100%);
  overflow: hidden;
  padding: 80px 0 60px;
}
.flight-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.flight-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(0,180,166,0.15) 0%, transparent 60%);
}
.flight-hero-content { position: relative; z-index: 2; }

.flight-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.flight-hero-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.flight-hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ── Flight Search Card ───────────────────────────────────── */
.flight-search-card {
  background: #fff;
  border-radius: var(--sot-radius-lg);
  padding: 28px 24px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.flight-type-toggle {
  display: flex;
  gap: 8px;
}
.flight-type-btn {
  background: var(--sot-light);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sot-navy);
  cursor: pointer;
  transition: all .2s;
}
.flight-type-btn.active,
.flight-type-btn:hover {
  background: var(--sot-primary);
  color: #fff;
  border-color: var(--sot-primary);
}
.flight-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 5px;
}
.flight-input-wrap { position: relative; }
.flight-input,
.flight-select {
  width: 100%;
  border: 2px solid #e8eaf0;
  border-radius: 10px;
  padding: 9px 14px;
  font-size: .95rem;
  color: var(--sot-navy);
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  background: #fff;
  appearance: none;
}
.flight-input:focus,
.flight-select:focus {
  border-color: var(--sot-primary);
  box-shadow: 0 0 0 3px rgba(232,93,62,.12);
  outline: none;
}
.flight-swap-btn {
  background: var(--sot-light);
  border: 2px solid #e8eaf0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sot-primary);
  cursor: pointer;
  transition: all .2s;
  margin-bottom: 2px;
}
.flight-swap-btn:hover {
  background: var(--sot-primary);
  color: #fff;
  border-color: var(--sot-primary);
}
.flight-search-btn {
  background: var(--sot-primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 11px 28px;
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.flight-search-btn:hover {
  background: #d44a2e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,93,62,.35);
}

/* Partner chips inside search card */
.flight-partner-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
.flight-partner-label {
  font-size: .8rem;
  color: #999;
  font-weight: 600;
}
.flight-partner-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.flight-partner-chip.skyscanner {
  background: #e8f5ff;
  color: #0770e3;
}
.flight-partner-chip.skyscanner:hover {
  background: #0770e3;
  color: #fff;
}
.flight-partner-chip.kiwi {
  background: #e8fff3;
  color: #00aa77;
}
.flight-partner-chip.kiwi:hover {
  background: #00aa77;
  color: #fff;
}

/* ── Trip.com widget wrapper ─────────────────────────────── */
.flight-widget-wrap {
  border-radius: var(--sot-radius);
  overflow: hidden;
  box-shadow: var(--sot-shadow-sm);
  border: 1px solid #eee;
  background: #f8f9fc;
}

/* ── Route Cards ─────────────────────────────────────────── */
.flight-routes-section { background: var(--sot-light); }
.route-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--sot-radius);
  padding: 16px;
  text-decoration: none;
  color: var(--sot-navy);
  border: 1.5px solid #eef0f5;
  transition: all .25s;
  height: 100%;
}
.route-card:hover {
  border-color: var(--sot-primary);
  box-shadow: 0 8px 24px rgba(232,93,62,.12);
  transform: translateY(-3px);
  color: var(--sot-navy);
}
.route-flag { font-size: 1.6rem; margin-bottom: 8px; }
.route-cities {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: .88rem;
}
.route-arrow { color: var(--sot-primary); font-size: 1rem; }
.route-codes {
  font-size: .75rem;
  color: #999;
  margin-top: 3px;
}
.route-cta {
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--sot-primary);
}

/* ── Flight Tips ─────────────────────────────────────────── */
.flight-tips-section { background: #fff; }
.flight-tip-card {
  background: var(--sot-light);
  border-radius: var(--sot-radius);
  padding: 24px 20px;
  height: 100%;
  transition: box-shadow .2s;
}
.flight-tip-card:hover { box-shadow: var(--sot-shadow-sm); }
.flight-tip-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--sot-primary), #f5a623);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.flight-tip-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--sot-navy);
  margin-bottom: 6px;
}
.flight-tip-desc {
  font-size: .85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ── Partner Cards ───────────────────────────────────────── */
.flight-partners-strip { background: var(--sot-light); }
.flight-partner-card {
  background: #fff;
  border-radius: var(--sot-radius-lg);
  padding: 28px 24px;
  height: 100%;
  border: 2px solid #eef0f5;
  transition: all .25s;
}
.flight-partner-card:hover { border-color: transparent; box-shadow: var(--sot-shadow); }
.flight-partner-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.partner-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.sky-text { color: #0770e3; }
.kiwi-text { color: #00aa77; }
.partner-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--sot-light);
  color: #666;
}
.partner-desc {
  font-size: .9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
.flight-partner-btn {
  display: block;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.sky-btn {
  background: #0770e3;
  color: #fff;
}
.sky-btn:hover {
  background: #055db5;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(7,112,227,.3);
}
.kiwi-btn {
  background: #00aa77;
  color: #fff;
}
.kiwi-btn:hover {
  background: #00895f;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,170,119,.3);
}

/* ── Airport chips ───────────────────────────────────────── */
.flight-airports-section { background: var(--sot-light); }
.airport-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--sot-navy);
  border: 1.5px solid #eef0f5;
  transition: all .2s;
  font-size: .88rem;
}
.airport-chip:hover {
  border-color: var(--sot-primary);
  color: var(--sot-primary);
  box-shadow: 0 4px 12px rgba(232,93,62,.1);
}
.airport-iata {
  background: var(--sot-primary);
  color: #fff;
  font-weight: 800;
  font-size: .75rem;
  padding: 2px 8px;
  border-radius: 6px;
  letter-spacing: .03em;
}
.airport-name { font-weight: 500; font-size: .82rem; }

/* ── Flight CTA Box ──────────────────────────────────────── */
.flight-cta-box {
  background: linear-gradient(135deg, var(--sot-navy) 0%, var(--sot-navy-mid) 100%);
  color: #fff;
  border-radius: var(--sot-radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.flight-cta-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.flight-cta-icon {
  font-size: 2.2rem;
  color: var(--sot-accent);
  display: block;
  margin-bottom: 14px;
}
