/*
 * Travel Network World — consolidated production CSS bundle R15
 * Generated from the audited shared cascade plus public page modules. Account/admin CSS stays isolated.
 * Do not edit historical component files: they are removed from production.
 */

/* ===== CORE DESIGN SYSTEM ===== */
/* Travel Network World — Production Core
   Shared foundation and reusable page components. Header/footer are owned by the global shell section below. */

/* ===== base-reset.css ===== */
/* ============================================================================
   BASE RESET & LAYOUT - 2026 Standards
   Travel Network World - Foundation Styles
   Version: 2.0 | Updated: January 2026
   ============================================================================ */

/* ============================================================================
   MODERN CSS RESET
   ============================================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default margins */
body,
h1, h2, h3, h4, h5, h6,
p,
figure,
blockquote,
dl, dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* ============================================================================
   HTML & BODY
   ============================================================================ */

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
               "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background-color: #f8f9fa;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============================================================================
   UTILITY CONTAINERS
   ============================================================================ */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 800px;
}

.container-wide {
  max-width: 1400px;
}

.container-fluid {
  width: 100%;
  padding: 0 1.25rem;
}

/* ============================================================================
   PAGE CONTENT
   ============================================================================ */

.page-content {
  min-height: 60vh;
  padding: 2rem 0;
}

main {
  display: block;
  isolation: isolate;
}

/* ============================================================================
   ACCESSIBLE SKIP LINK
   ============================================================================ */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background: #1e3c72;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 10000;
  border-radius: 0 0 4px 0;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #ffc107;
  outline-offset: 2px;
}

/* ============================================================================
   IMAGES & MEDIA
   ============================================================================ */

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

img {
  border-style: none;
}

/* Prevent images from overflowing */
img,
svg {
  vertical-align: middle;
}

/* ============================================================================
   FORMS
   ============================================================================ */

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

/* Remove default button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Remove spinner from number inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* Remove default search input styles */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

/* ============================================================================
   TABLES
   ============================================================================ */

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* ============================================================================
   LINKS
   ============================================================================ */

a {
  background-color: transparent;
  text-decoration-skip-ink: auto;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* ============================================================================
   TEXT SELECTION
   ============================================================================ */

::selection {
  background: #ffc107;
  color: #1e3c72;
  text-shadow: none;
}

::-moz-selection {
  background: #ffc107;
  color: #1e3c72;
  text-shadow: none;
}

/* ============================================================================
   SCROLLBAR STYLING (Webkit)
   ============================================================================ */

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 6px;
  border: 2px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 #f1f5f9;
}

/* ============================================================================
   FOCUS STYLES
   ============================================================================ */

:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

/* Display */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }

/* Visibility */
.visible { visibility: visible !important; }
.invisible { visibility: hidden !important; }

/* Overflow */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-scroll { overflow: scroll !important; }

/* Position */
.position-static { position: static !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

/* Width & Height */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.w-auto { width: auto !important; }
.h-auto { height: auto !important; }

/* Spacing utilities */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mr-0 { margin-right: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }

.m-1 { margin: 0.5rem !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mr-1 { margin-right: 0.5rem !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.ml-1 { margin-left: 0.5rem !important; }

.m-2 { margin: 1rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mr-2 { margin-right: 1rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.ml-2 { margin-left: 1rem !important; }

.m-3 { margin: 1.5rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mr-3 { margin-right: 1.5rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.ml-3 { margin-left: 1.5rem !important; }

.m-4 { margin: 2rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mr-4 { margin-right: 2rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.ml-4 { margin-left: 2rem !important; }

.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pr-0 { padding-right: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.pl-0 { padding-left: 0 !important; }

.p-1 { padding: 0.5rem !important; }
.pt-1 { padding-top: 0.5rem !important; }
.pr-1 { padding-right: 0.5rem !important; }
.pb-1 { padding-bottom: 0.5rem !important; }
.pl-1 { padding-left: 0.5rem !important; }

.p-2 { padding: 1rem !important; }
.pt-2 { padding-top: 1rem !important; }
.pr-2 { padding-right: 1rem !important; }
.pb-2 { padding-bottom: 1rem !important; }
.pl-2 { padding-left: 1rem !important; }

.p-3 { padding: 1.5rem !important; }
.pt-3 { padding-top: 1.5rem !important; }
.pr-3 { padding-right: 1.5rem !important; }
.pb-3 { padding-bottom: 1.5rem !important; }
.pl-3 { padding-left: 1.5rem !important; }

.p-4 { padding: 2rem !important; }
.pt-4 { padding-top: 2rem !important; }
.pr-4 { padding-right: 2rem !important; }
.pb-4 { padding-bottom: 2rem !important; }
.pl-4 { padding-left: 2rem !important; }

/* Margin auto */
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

/* ============================================================================
   FLEXBOX UTILITIES
   ============================================================================ */

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.justify-start { justify-content: flex-start !important; }
.justify-end { justify-content: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.justify-evenly { justify-content: space-evenly !important; }

.align-start { align-items: flex-start !important; }
.align-end { align-items: flex-end !important; }
.align-center { align-items: center !important; }
.align-baseline { align-items: baseline !important; }
.align-stretch { align-items: stretch !important; }

.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.5rem !important; }
.gap-2 { gap: 1rem !important; }
.gap-3 { gap: 1.5rem !important; }
.gap-4 { gap: 2rem !important; }

/* ============================================================================
   GRID UTILITIES
   ============================================================================ */

.grid-cols-1 { grid-template-columns: repeat(1, 1fr) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }

/* ============================================================================
   SCREEN READER ONLY
   ============================================================================ */

.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================================
   RESPONSIVE UTILITIES
   ============================================================================ */

@media (max-width: 768px){
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
}

@media (min-width: 769px){
  .hide-desktop { display: none !important; }
  .show-desktop { display: block !important; }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print{
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .no-print {
    display: none !important;
  }
}

/* ============================================================================
   REDUCED MOTION (Accessibility)
   ============================================================================ */

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

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================================
   HIGH CONTRAST MODE (Accessibility)
   ============================================================================ */

@media (prefers-contrast: high){
  * {
    border-color: currentColor !important;
  }

  a {
    text-decoration: underline;
  }
}

/* ============================================================================
   DARK MODE (Optional)
   ============================================================================ */



/* ============================================================================
   RESPONSIVE CONTAINERS
   ============================================================================ */

@media (max-width: 1400px){
  .container-wide {
    max-width: 1200px;
  }
}

@media (max-width: 1200px){
  .container {
    max-width: 1024px;
  }
}

@media (max-width: 1024px){
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px){
  .container,
  .container-narrow,
  .container-wide,
  .container-fluid {
    padding: 0 1rem;
  }

  .page-content {
    padding: 1.5rem 0;
  }
}

@media (max-width: 480px){
  .container,
  .container-narrow,
  .container-wide,
  .container-fluid {
    padding: 0 0.875rem;
  }

  .page-content {
    padding: 1rem 0;
  }
}

/* ===== typography-buttons.css ===== */
/* ============================================================================
   TYPOGRAPHY, LINKS & BUTTONS - 2026 Standards
   Travel Network World - Text & Interactive Elements
   Version: 2.0 | Updated: January 2026
   ============================================================================ */

/* ============================================================================
   BASE TYPOGRAPHY
   ============================================================================ */

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, 
               "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ============================================================================
   HEADINGS
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1e3c72;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

/* ============================================================================
   PARAGRAPHS & TEXT
   ============================================================================ */

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #4b5563;
}

.text-small {
  font-size: 0.875rem;
}

.text-large {
  font-size: 1.125rem;
}

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Text colors */
.text-primary { color: #1e3c72; }
.text-secondary { color: #6b7280; }
.text-success { color: #16a34a; }
.text-warning { color: #f59e0b; }
.text-error { color: #dc2626; }
.text-muted { color: #9ca3af; }
.text-white { color: #ffffff; }

/* Font weights */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Text transforms */
.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

/* Text decoration */
.text-underline { text-decoration: underline; }
.text-line-through { text-decoration: line-through; }
.text-no-decoration { text-decoration: none; }

/* ============================================================================
   LINKS
   ============================================================================ */

a {
  color: #1e3c72;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover {
  color: #2a5298;
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 2px;
  border-radius: 2px;
}

a:active {
  color: #1b355f;
}

/* Link variants */
.link-primary {
  color: #1e3c72;
}

.link-primary:hover {
  color: #2a5298;
}

.link-secondary {
  color: #6b7280;
}

.link-secondary:hover {
  color: #4b5563;
}

.link-white {
  color: #ffffff;
}

.link-white:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Link with icon */
.link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.link-icon:hover {
  text-decoration: none;
  gap: 0.75rem;
}

/* External link indicator */
a[target="_blank"]::after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75em;
  margin-left: 0.375rem;
  opacity: 0.6;
}

a[target="_blank"]:hover::after {
  opacity: 1;
}

/* ============================================================================
   BUTTONS - Base Styles
   ============================================================================ */

.btn,
.btn-primary,
.btn-secondary,
.btn-tertiary,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  font-family: inherit;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* ============================================================================
   BUTTON VARIANTS
   ============================================================================ */

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #1b355f 0%, #24457f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 60, 114, 0.4);
  text-decoration: none;
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(30, 60, 114, 0.3);
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #1e3c72;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.btn-secondary:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
  text-decoration: none;
}

.btn-secondary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

/* Tertiary Button (Outline) */
.btn-tertiary {
  background: transparent;
  color: #1e3c72;
  border: 2px solid #1e3c72;
  box-shadow: none;
}

.btn-tertiary:hover:not(:disabled) {
  background: #1e3c72;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: #1e3c72;
  border: none;
  box-shadow: none;
}

.btn-ghost:hover:not(:disabled) {
  background: rgba(30, 60, 114, 0.08);
  text-decoration: none;
}

/* White Button */
.btn-white {
  background: #ffffff;
  color: #1e3c72;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-white:hover:not(:disabled) {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Success Button */
.btn-success {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-success:hover:not(:disabled) {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

/* Danger Button */
.btn-danger {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-danger:hover:not(:disabled) {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* ============================================================================
   BUTTON SIZES
   ============================================================================ */

.btn-small,
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-large,
.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

/* ============================================================================
   BUTTON STATES
   ============================================================================ */

.btn:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 2px;
}

/* Loading state */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* ============================================================================
   BUTTON GROUPS
   ============================================================================ */

.btn-group {
  display: inline-flex;
  gap: 0.5rem;
}

.btn-group-vertical {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
}

.btn-group-attached {
  display: inline-flex;
  gap: 0;
}

.btn-group-attached .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-attached .btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* ============================================================================
   FONT AWESOME ALIGNMENT
   ============================================================================ */

.fa,
.fas,
.fa-solid,
.fa-regular,
.fa-brands,
.fa-light,
.fa-thin {
  vertical-align: middle;
  line-height: 1;
}

/* Icon sizes */
.fa-xs { font-size: 0.75em; }
.fa-sm { font-size: 0.875em; }
.fa-lg { font-size: 1.25em; }
.fa-xl { font-size: 1.5em; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }

/* ============================================================================
   LISTS
   ============================================================================ */

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-inline {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================================
   BLOCKQUOTES
   ============================================================================ */

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  border-left: 4px solid #ffc107;
  background: #f8fafc;
  font-style: italic;
  color: #4b5563;
}

blockquote p:last-child {
  margin-bottom: 0;
}

blockquote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  color: #6b7280;
}

blockquote cite::before {
  content: "- ";
}

/* ============================================================================
   CODE & PRE
   ============================================================================ */

code {
  padding: 0.2em 0.4em;
  background: #f3f4f6;
  border-radius: 4px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.875em;
  color: #dc2626;
}

pre {
  padding: 1rem;
  background: #1f2937;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1rem 0;
}

pre code {
  padding: 0;
  background: transparent;
  color: #f9fafb;
  font-size: 0.875rem;
}

/* ============================================================================
   HORIZONTAL RULE
   ============================================================================ */

hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

/* ============================================================================
   SELECTION
   ============================================================================ */

::selection {
  background: #ffc107;
  color: #1e3c72;
}

::-moz-selection {
  background: #ffc107;
  color: #1e3c72;
}

/* ============================================================================
   RESPONSIVE TYPOGRAPHY
   ============================================================================ */

@media (max-width: 768px){
  body {
    font-size: 15px;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-small,
  .btn-sm {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
  }

  .btn-large,
  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px){
  body {
    font-size: 14px;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print{
  a {
    text-decoration: underline;
  }

  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.875em;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  blockquote {
    border-left-color: #000;
    background: none;
  }
}

/* ============================================================================
   REDUCED MOTION (Accessibility)
   ============================================================================ */

@media (prefers-reduced-motion: reduce){
  .btn,
  .btn-primary,
  .btn-secondary,
  a {
    transition: none;
  }

  .btn:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}

/* ============================================================================
   HIGH CONTRAST MODE (Accessibility)
   ============================================================================ */

@media (prefers-contrast: high){
  .btn,
  .btn-primary,
  .btn-secondary {
    border: 2px solid currentColor;
  }

  a {
    text-decoration: underline;
  }
}
/* ===== layout-components.css ===== */
/* ============================================================================
   LAYOUT & GRID SYSTEMS - 2026 Standards
   ============================================================================ */

/* ============================================================================
   GRID LAYOUTS
   ============================================================================ */

/* Two-column grid with asymmetric sizing */
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* Equal two-column grid */
.grid-2-equal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Three-column cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

/* Four-column grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Auto-fit grid (responsive) */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

/* ============================================================================
   CARDS - Base Styles
   ============================================================================ */

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(30, 60, 114, 0.1);
}

/* Card with icon */
.card-icon {
  font-size: 2rem;
  color: #2a5298;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(42, 82, 152, 0.1);
  border-radius: 10px;
}

/* Card heading */
.card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3c72;
  margin: 0;
  line-height: 1.3;
}

/* Card text */
.card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Card link/CTA */
.card-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e3c72;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  padding-top: 0.5rem;
}

.card-link::after {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.card-link:hover {
  color: #2a5298;
  text-decoration: none;
  gap: 0.75rem;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.card-link:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================================
   CARD VARIANTS
   ============================================================================ */

/* Highlighted card */
.card-highlight {
  border: 2px solid #ffc107;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

/* Featured card */
.card-featured {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
}

.card-featured h3,
.card-featured p,
.card-featured .card-link {
  color: #ffffff;
}

.card-featured .card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Compact card */
.card-compact {
  padding: 1.25rem;
  gap: 0.5rem;
}

.card-compact h3 {
  font-size: 1rem;
}

.card-compact p {
  font-size: 0.875rem;
}

/* ============================================================================
   IMAGE CARDS
   ============================================================================ */

.image-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  position: relative;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.image-card img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

/* Image card with overlay */
.image-card-overlay {
  position: relative;
}

.image-card-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-card-overlay:hover::after {
  opacity: 1;
}

.image-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-card-overlay:hover .image-card-content {
  transform: translateY(0);
}

/* ============================================================================
   LISTS
   ============================================================================ */

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

.bullet-list li::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.5rem;
  color: #ffc107;
  position: absolute;
  left: 0;
  top: 0.6rem;
}

/* Checkmark list */
.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.875rem;
  color: #16a34a;
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Numbered list (styled) */
.numbered-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  counter-reset: item;
}

.numbered-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
  counter-increment: item;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ============================================================================
   WIDGET BLOCKS
   ============================================================================ */

.widget-block {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 2px dashed rgba(30, 60, 114, 0.2);
  transition: all 0.2s ease;
}

.widget-block:hover {
  background: #f1f5f9;
  border-color: rgba(30, 60, 114, 0.3);
}

.widget-block-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1e3c72;
  margin: 0 0 0.75rem;
}

.widget-block-content {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Info widget */
.widget-info {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #3b82f6;
}

/* Warning widget */
.widget-warning {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #f59e0b;
}

/* Success widget */
.widget-success {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #16a34a;
}

/* ============================================================================
   PWA INSTALL BANNER
   ============================================================================ */



@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}





.pwa-install-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

.pwa-install-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.pwa-install-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pwa-install-btn {
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pwa-install-btn-primary {
  background: #ffc107;
  color: #1e3c72;
}

.pwa-install-btn-primary:hover {
  background: #ffb300;
  transform: translateY(-2px);
}

.pwa-install-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.pwa-install-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ============================================================================
   CONTAINER UTILITIES
   ============================================================================ */

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-fluid {
  width: 100%;
  padding: 0 1.5rem;
}

/* ============================================================================
   SECTION SPACING
   ============================================================================ */

.section-spacing {
  padding: 4rem 0;
}

.section-spacing-sm {
  padding: 2rem 0;
}

.section-spacing-lg {
  padding: 6rem 0;
}

/* ============================================================================
   RESPONSIVE BREAKPOINTS
   ============================================================================ */

@media (max-width: 1024px){
  .grid-2,
  .grid-2-equal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

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

@media (max-width: 768px){
  .cards-grid,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .card {
    padding: 1.5rem;
  }

  

  .section-spacing {
    padding: 3rem 0;
  }

  .section-spacing-lg {
    padding: 4rem 0;
  }
}

@media (max-width: 480px){
  .card {
    padding: 1.25rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }

  

  .pwa-install-title {
    font-size: 1rem;
  }

  .pwa-install-desc {
    font-size: 0.875rem;
  }

  .pwa-install-actions {
    flex-direction: column;
  }

  .pwa-install-btn {
    width: 100%;
  }
}

/* ============================================================================
   DESKTOP SPECIFIC
   ============================================================================ */



/* ============================================================================
   LARGE SCREENS
   ============================================================================ */

@media (min-width: 1400px){
  .cards-grid {
    gap: 2rem;
  }

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

  .section-spacing {
    padding: 5rem 0;
  }

  .section-spacing-lg {
    padding: 8rem 0;
  }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print{
  .widget-block{
    display: none;
  }

  .card {
    box-shadow: none;
    border: 1px solid #e5e7eb;
    page-break-inside: avoid;
  }

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

/* ============================================================================
   REDUCED MOTION (Accessibility)
   ============================================================================ */

@media (prefers-reduced-motion: reduce){
  .card,.image-card{
    transition: none;
    animation: none;
  }

  .card:hover,
  .image-card:hover {
    transform: none;
  }
}

/* ===== home.css ===== */
/* ===================================================== */
/* WORLD LANDING (HOMEPAGE STYLES) */
/* ===================================================== */

/* Skip link accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #111827;
  color: #ffffff;
  padding: 8px 12px;
  z-index: 10000;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
}

/* Main content area */
main[role="main"],
.page-content {
  padding: 0;
  background: transparent;
}

/* Stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.75rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: #6b7280;
  font-size: 0.9rem;
}

.widget-placeholder {
  background: #f3f4f6;
  border: 1px dashed #d1d5db;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Category grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.category-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-image {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  font-weight: 700;
}

.category-image i {
  margin-right: 0.4rem;
}

.category-content {
  padding: 1.4rem;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1e3c72;
}

.category-desc {
  color: #4b5563;
  font-size: 0.92rem;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

/* Multiple buttons in category cards */
.category-card .btn-secondary {
  display: inline-block;
  margin-top: 0.5rem;
}

/* Blog grid (homepage cards) */
.home-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.home-blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.home-blog-image {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 700;
}

.home-blog-content {
  padding: 1.4rem;
}

.home-blog-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1e3c72;
  line-height: 1.4;
}

.home-blog-date {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
  display: block;
}

.home-blog-excerpt {
  color: #4b5563;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: white;
  padding: 1.75rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-left: 4px solid #ffc107;
}

.stars {
  color: #fbbf24;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.testimonial-text {
  color: #111827;
  margin-bottom: 0.9rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: #1e3c72;
  font-size: 0.95rem;
}

/* Newsletter section */
.newsletter-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2.75rem 2rem;
  border-radius: 8px;
  text-align: center;
}

.newsletter-title {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.newsletter-text {
  font-size: 0.98rem;
  opacity: 0.95;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  font-size: 0.95rem;
}

.newsletter-form input[type="email"]:focus {
  outline: 2px solid #fffb9c;
  outline-offset: 2px;
}

/* Visually hidden (for labels) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Responsive styles for landing (homepage) */
@media (max-width: 768px){
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"] {
    min-width: 100%;
  }

  .brand span {
    display: none;
  }

  .category-grid,
  .home-blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px){
  

  .category-grid,
  .home-blog-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
/* ===== hero-section.css ===== */
/* ============================================================================
   HERO SECTION - Complete Styling with Background Image
   Travel Network World - Version 2.0 | January 2026
   ============================================================================ */

/* ============================================================================
   HERO CONTAINER WITH BACKGROUND
   ============================================================================ */

.hero {
  position: relative;
  color: #ffffff;
  padding: 6rem 1.5rem;
  margin: 1.5rem auto;
  max-width: 1200px;
  border-radius: 12px;
  overflow: hidden;
  
  /* Self-contained background; no missing image dependency. */
  background: linear-gradient(135deg, #16365f 0%, #24568a 52%, #1c6d72 100%);
  
  /* Ensure background doesn't repeat */
  background-attachment: scroll;
  background-size: cover;
  background-position: center center;
}

/* Subtle pattern overlay for depth */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================================
   HERO TEXT CONTENT
   ============================================================================ */

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin: 0 auto 3rem;
  max-width: 800px;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* ============================================================================
   HERO SEARCH BOX
   ============================================================================ */

.hero-search {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 2rem;
  margin: 0 auto 2.5rem;
  max-width: 850px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.hero-search form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Search Fields Grid */
.search-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Form Group */
.hero-search .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* ============================================================================
   INPUT STYLING
   ============================================================================ */

.hero-search input[type="text"],
.hero-search input[type="date"],
.hero-search .airport-input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #1a202c;
  transition: all 0.2s ease;
  outline: none;
}

.hero-search input::placeholder {
  color: #a0aec0;
}

/* Hover State */
.hero-search input:hover {
  border-color: #cbd5e0;
}

/* Focus State */
.hero-search input:focus {
  border-color: #1e3c72;
  box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

/* Focus-visible for keyboard navigation */
.hero-search input:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 2px;
}

/* ============================================================================
   INPUT VALIDATION STATES
   ============================================================================ */

/* Error State */
.hero-search input.error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

.hero-search input.error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Valid State */
.hero-search input.valid {
  border-color: #16a34a;
  background-color: #f0fdf4;
}

.hero-search input.valid:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* Disabled State */
.hero-search input:disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ============================================================================
   ERROR MESSAGES
   ============================================================================ */

.error-message {
  display: none;
  font-size: 0.75rem;
  color: #dc2626;
  font-weight: 500;
  margin-top: 0.25rem;
  padding-left: 0.25rem;
}

.error-message:not(:empty) {
  display: block;
}

/* ============================================================================
   SEARCH BUTTONS
   ============================================================================ */

.search-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.search-buttons button {
  flex: 1;
  min-width: 180px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
}

/* Primary Button */
.search-buttons .btn-primary {
  background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
  color: #1e3c72;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.search-buttons .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
}

.search-buttons .btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.search-buttons .btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Secondary Button */
.search-buttons .btn-secondary {
  background: #ffffff;
  color: #1e3c72;
  border: 2px solid #1e3c72;
}

.search-buttons .btn-secondary:hover:not(:disabled) {
  background: #1e3c72;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Button Focus State */
.search-buttons button:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 2px;
}

/* ============================================================================
   BUTTON LOADING STATE
   ============================================================================ */

.btn-loading {
  display: none;
}

.btn-primary[disabled] .btn-text {
  display: none;
}

.btn-primary[disabled] .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(30, 60, 114, 0.3);
  border-top-color: #1e3c72;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================================
   SEARCH RESULTS
   ============================================================================ */

.search-results {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  display: none;
  color: #1a202c;
}

.search-results:not(:empty) {
  display: block;
}

.search-results.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.loading-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #64748b;
  font-size: 0.95rem;
}

.loading-message .spinner {
  border-color: #cbd5e0;
  border-top-color: #1e3c72;
}

/* ============================================================================
   HERO CTAs
   ============================================================================ */

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-ctas .btn-primary,
.hero-ctas .btn-secondary {
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.hero-ctas .btn-primary {
  background: #ffffff;
  color: #1e3c72;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-ctas .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.hero-ctas .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.hero-ctas .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-ctas .btn-primary:focus-visible,
.hero-ctas .btn-secondary:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 2px;
}

/* ============================================================================
   TRUST BADGES
   ============================================================================ */

.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3c72;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trust-badges .badge i {
  font-size: 1rem;
}

/* ============================================================================
   GENERIC SECTIONS
   ============================================================================ */

.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
}

.section-alt {
  background-color: #f8fafc;
  border-radius: 12px;
  margin: 2rem auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  text-align: center;
  color: #1e3c72;
  font-weight: 700;
  line-height: 1.2;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* Tablet and below */
@media (max-width: 768px){
  .hero {
    padding: 4rem 1.25rem;
    margin: 1rem;
    border-radius: 10px;
  }

  .hero-headline {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-search {
    padding: 1.5rem;
    border-radius: 10px;
  }

  .search-fields {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-search input {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }

  .search-buttons {
    flex-direction: column;
  }

  .search-buttons button {
    width: 100%;
    min-width: auto;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .trust-badges {
    gap: 0.5rem;
  }

  .trust-badges .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .section {
    padding: 3rem 1.25rem;
  }
}

/* Mobile */
@media (max-width: 480px){
  .hero {
    padding: 3rem 1rem;
  }

  .hero-headline {
    font-size: 1.75rem;
  }

  .hero-subheadline {
    font-size: 0.95rem;
  }

  .hero-search {
    padding: 1.25rem;
  }

  .search-buttons button {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }

  .trust-badges .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.625rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px){
  .search-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-search {
    max-width: 750px;
  }
}

/* Large Screens */
@media (min-width: 1400px){
  .hero {
    max-width: 1400px;
    padding: 7rem 2rem;
  }

  .hero-inner {
    max-width: 1000px;
  }

  .hero-search {
    max-width: 950px;
    padding: 2.5rem;
  }

  .section {
    max-width: 1400px;
    padding: 5rem 2rem;
  }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print{
  .hero {
    background: none !important;
    color: #000 !important;
    padding: 2rem 0;
    box-shadow: none;
  }

  .hero::before {
    display: none;
  }

  .hero-headline,
  .hero-subheadline {
    color: #000 !important;
    text-shadow: none !important;
  }

  .hero-search,
  .hero-ctas,
  .trust-badges,
  .search-buttons {
    display: none !important;
  }
}

/* ============================================================================
   REDUCED MOTION (Accessibility)
   ============================================================================ */

@media (prefers-reduced-motion: reduce){
  .hero,
  .hero-search,
  .search-buttons button,
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary,
  .spinner {
    animation: none;
    transition: none;
  }

  .search-buttons button:hover,
  .hero-ctas .btn-primary:hover,
  .hero-ctas .btn-secondary:hover {
    transform: none;
  }
}

/* ============================================================================
   HIGH CONTRAST MODE (Accessibility)
   ============================================================================ */

@media (prefers-contrast: high){
  .hero-search input {
    border-width: 3px;
  }

  .search-buttons button {
    border: 2px solid currentColor;
  }

  .hero-headline,
  .hero-subheadline {
    text-shadow: none;
  }
}
/* ===== search-forms.css ===== */
/* ============================================================================
   FORMS & INPUTS - 2026 Standards
   Travel Network World - Form Elements & Validation
   Version: 2.0 | Updated: January 2026
   ============================================================================ */

/* ============================================================================
   BASE FORM STYLES
   ============================================================================ */

form {
  width: 100%;
}

fieldset {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

legend {
  font-weight: 600;
  color: #1e3c72;
  padding: 0 0.5rem;
  font-size: 1.125rem;
}

/* ============================================================================
   FORM GROUPS & LABELS
   ============================================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label,
label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-label-required::after,
.required::after {
  content: "*";
  color: #dc2626;
  margin-left: 0.25rem;
}

.form-label-optional {
  font-weight: 400;
  color: #9ca3af;
  font-size: 0.875rem;
  margin-left: 0.5rem;
}

/* ============================================================================
   INPUT FIELDS
   ============================================================================ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.5;
  color: #1a202c;
  background-color: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.2s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Placeholder */
input::placeholder,
textarea::placeholder {
  color: #a0aec0;
  opacity: 1;
}

/* Hover state */
input:hover,
select:hover,
textarea:hover {
  border-color: #cbd5e0;
}

/* Focus state */
input:focus,
select:focus,
textarea:focus {
  border-color: #1e3c72;
  box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

/* Focus-visible for keyboard navigation */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffc107;
  outline-offset: 2px;
}

/* ============================================================================
   INPUT VALIDATION STATES
   ============================================================================ */

/* Valid state */
input.valid,
select.valid,
textarea.valid {
  border-color: #16a34a;
  background-color: #f0fdf4;
}

input.valid:focus,
select.valid:focus,
textarea.valid:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* Error state */
input.error,
select.error,
textarea.error {
  border-color: #dc2626;
  background-color: #fef2f2;
}

input.error:focus,
select.error:focus,
textarea.error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Warning state */
input.warning,
select.warning,
textarea.warning {
  border-color: #f59e0b;
  background-color: #fffbeb;
}

input.warning:focus,
select.warning:focus,
textarea.warning:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

/* Disabled state */
input:disabled,
select:disabled,
textarea:disabled {
  background-color: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
  border-color: #e5e7eb;
}

/* Read-only state */
input:read-only,
textarea:read-only {
  background-color: #f8fafc;
  cursor: default;
}

/* ============================================================================
   VALIDATION MESSAGES
   ============================================================================ */

.form-message,
.error-message,
.success-message,
.warning-message,
.helper-text {
  font-size: 0.875rem;
  margin-top: 0.375rem;
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
}

.error-message {
  color: #dc2626;
  font-weight: 500;
}

.error-message::before {
  content: "⚠";
  flex-shrink: 0;
}

.success-message {
  color: #16a34a;
  font-weight: 500;
}

.success-message::before {
  content: "✓";
  flex-shrink: 0;
}

.warning-message {
  color: #f59e0b;
  font-weight: 500;
}

.warning-message::before {
  content: "⚠";
  flex-shrink: 0;
}

.helper-text {
  color: #6b7280;
}

.helper-text::before {
  content: "ℹ";
  flex-shrink: 0;
}

/* Hide empty messages */
.error-message:empty,
.success-message:empty,
.warning-message:empty,
.helper-text:empty {
  display: none;
}

/* ============================================================================
   TEXTAREA
   ============================================================================ */

textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

textarea.no-resize {
  resize: none;
}

textarea.resize-horizontal {
  resize: horizontal;
}

/* ============================================================================
   SELECT DROPDOWN
   ============================================================================ */

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  cursor: pointer;
}

select:disabled {
  cursor: not-allowed;
}

select[multiple] {
  background-image: none;
  padding-right: 1rem;
  min-height: 120px;
}

/* ============================================================================
   CHECKBOXES & RADIO BUTTONS
   ============================================================================ */

input[type="checkbox"],
input[type="radio"] {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  cursor: pointer;
  accent-color: #1e3c72;
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Checkbox/Radio with label */
.form-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-check input {
  flex-shrink: 0;
}

.form-check label {
  font-weight: 400;
  cursor: pointer;
  user-select: none;
}

.form-check input:disabled + label {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ============================================================================
   FILE INPUT
   ============================================================================ */

input[type="file"] {
  padding: 0.625rem 1rem;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  background: #1e3c72;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

input[type="file"]::file-selector-button:hover {
  background: #2a5298;
}

input[type="file"]:disabled::file-selector-button {
  background: #9ca3af;
  cursor: not-allowed;
}

/* ============================================================================
   RANGE INPUT
   ============================================================================ */

input[type="range"] {
  padding: 0;
  height: 0.5rem;
  background: #e5e7eb;
  border: none;
  border-radius: 999px;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  background: #1e3c72;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #2a5298;
  transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb {
  width: 1.25rem;
  height: 1.25rem;
  background: #1e3c72;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  background: #2a5298;
  transform: scale(1.1);
}

/* ============================================================================
   SEARCH FORMS
   ============================================================================ */

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.search-form .form-group {
  flex: 1;
  min-width: 200px;
  margin-bottom: 0;
}

.search-form input,
.search-form select {
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.search-form .btn {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
}

/* Compact search form */
.search-form-compact {
  gap: 0.5rem;
}

.search-form-compact input,
.search-form-compact select {
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
}

.search-form-compact .btn {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================================================
   INPUT GROUPS (with icons/buttons)
   ============================================================================ */

.input-group {
  display: flex;
  position: relative;
}

.input-group input {
  flex: 1;
}

.input-group-prepend,
.input-group-append {
  display: flex;
  align-items: center;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  color: #6b7280;
  font-size: 0.95rem;
  white-space: nowrap;
}

.input-group-prepend .input-group-text {
  border-right: none;
  border-radius: 8px 0 0 8px;
}

.input-group-append .input-group-text {
  border-left: none;
  border-radius: 0 8px 8px 0;
}

.input-group input:first-child {
  border-radius: 8px 0 0 8px;
}

.input-group input:last-child {
  border-radius: 0 8px 8px 0;
}

/* ============================================================================
   FLOATING LABELS
   ============================================================================ */

.form-floating {
  position: relative;
}

.form-floating input,
.form-floating textarea {
  padding: 1.25rem 1rem 0.5rem;
}

.form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  pointer-events: none;
  transform-origin: 0 0;
  transition: all 0.2s ease;
  color: #9ca3af;
  font-weight: 400;
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:focus ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: #1e3c72;
  font-weight: 600;
}

/* ============================================================================
   INLINE FORMS
   ============================================================================ */

.form-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.form-inline .form-group {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.form-inline label {
  margin-right: 0.5rem;
}

/* ============================================================================
   FORM GRID
   ============================================================================ */

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

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

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

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

/* ============================================================================
   RESPONSIVE FORMS
   ============================================================================ */

@media (max-width: 768px){
  .search-form {
    flex-direction: column;
    gap: 1rem;
  }

  .search-form .form-group {
    min-width: 100%;
  }

  .search-form .btn {
    width: 100%;
  }

  .form-grid,
  .form-grid-2,
  .form-grid-3,
  .form-grid-4 {
    grid-template-columns: 1fr;
  }

  .form-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .form-inline .form-group {
    width: 100%;
  }

  .input-group {
    flex-direction: column;
  }

  .input-group input,
  .input-group-text {
    border-radius: 8px !important;
    border: 2px solid #e2e8f0 !important;
  }

  .input-group-prepend,
  .input-group-append {
    margin: 0;
  }
}

@media (max-width: 480px){
  input,
  select,
  textarea {
    padding: 0.75rem 0.875rem;
    font-size: 0.95rem;
  }

  .search-form input,
  .search-form select {
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
  }

  fieldset {
    padding: 1rem;
  }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print{
  input,
  select,
  textarea {
    border: 1px solid #000;
    background: none;
  }

  .btn {
    display: none;
  }

  .form-message,
  .error-message,
  .success-message,
  .warning-message {
    display: none;
  }
}

/* ============================================================================
   REDUCED MOTION (Accessibility)
   ============================================================================ */

@media (prefers-reduced-motion: reduce){
  input,
  select,
  textarea,
  .form-floating label {
    transition: none;
  }
}

/* ============================================================================
   HIGH CONTRAST MODE (Accessibility)
   ============================================================================ */

@media (prefers-contrast: high){
  input,
  select,
  textarea {
    border-width: 2px;
  }

  input:focus,
  select:focus,
  textarea:focus {
    outline: 3px solid currentColor;
  }
}
/* ===== countries.css ===== */
/* Country page root */
.country-page {}

/* Country-specific branding */
.country-page .country-hero {
    background:
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        var(--country-hero-image) center/cover no-repeat;
}

.country-page .country-accent {
    color: var(--country-primary);
}

.country-page .country-btn {
    background: var(--country-primary);
}

.country-page .country-btn:hover {
    background: var(--country-accent);
    color: var(--country-primary);
}

.country-page .country-border {
    border-left: 4px solid var(--country-primary);
}

/* Flight tabs – matches existing card/layout style */
.country-page .flight-tabs {
    margin-top: 1.5rem;
}

.country-page .flight-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.country-page .flight-tab-btn {
    padding: 0.4rem 0.9rem;
    border-radius: 999px 999px 0 0;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.country-page .flight-tab-btn:hover {
    background-color: #f3f4f6;
}

.country-page .flight-tab-btn.is-active {
    background-color: #ffffff;
    border-color: #e5e7eb;
    border-bottom-color: #ffffff;
    color: #1e3c72;
}

.country-page .flight-tabs-panels {
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.country-page .flight-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.country-page .flight-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 0.9rem 0.85rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.country-page .flight-card-airport {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.country-page .flight-card-route {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e3c72;
}

.country-page .flight-card-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

.country-page .flight-card a.btn-primary {
    margin-top: 0.45rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
    border-radius: 999px;
    box-shadow: none;
}

.country-page .flight-card a.btn-primary:hover {
    box-shadow: 0 4px 10px rgba(30, 60, 114, 0.25);
}

@media (max-width: 960px){
    .country-page .flight-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px){
    .country-page .flight-cards-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Country-specific gradient variant using CSS variables */
.country-page .newsletter-section--country {
    background: linear-gradient(
        135deg,
        var(--country-primary, #2563EB) 0%,
        var(--country-accent, #F97316) 100%
    );
    color: #ffffff;
}

/* ===== blog.css ===== */
/* Blog layout – legacy list view (used only where .blog-grid is alone) */
.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-grid article {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.blog-grid article:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
  border-color: #0ea5e9;
}

.blog-grid h1,
.blog-grid h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  line-height: 1.3;
}

.blog-grid h2 a {
  color: #0f172a;
  text-decoration: none;
}

.blog-grid h2 a:hover {
  color: #0ea5e9;
}

.blog-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #1e293b;
  line-height: 1.6;
}

/* Single post */
.post {
  background: #ffffff;
}

.post h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.post .post-meta {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.post .content {
  font-size: 1rem;
  color: #0f172a;
  line-height: 1.7;
}

.post .content p {
  margin-bottom: 1.1rem;
}

/* Comments */
.comments {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.6);
  margin-top: 3rem;
}

.comments h2,
.comments h3 {
  margin: 2rem 0 1rem;
  font-size: 1.25rem;
}

.comment {
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background-color: #f8fafc;
  padding: 0.9rem 1rem;
  margin-bottom: 0.85rem;
}

.comment strong {
  font-size: 0.95rem;
  color: #0f172a;
}

.comment small,
.comment time {
  font-size: 0.8rem;
  color: #64748b;
}

/* Comment form */
#commentForm {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}

#commentForm input[type="text"],
#commentForm input[type="email"],
#commentForm textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#commentForm input[type="text"]:focus,
#commentForm input[type="email"]:focus,
#commentForm textarea:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.2);
}

#commentForm textarea {
  min-height: 120px;
  grid-column: 1 / -1;
  resize: vertical;
}

#commentForm .g-recaptcha,
#commentForm #g-recaptcha-response {
  grid-column: 1 / -1;
}

#commentForm button[type="submit"] {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: #0ea5e9;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  justify-self: flex-start;
  transition: background 0.15s ease, transform 0.1s ease;
  grid-column: 1 / -1;
}

#commentForm button[type="submit"]:hover {
  background: #0284c7;
  transform: translateY(-1px);
}

/* Empty states */
.blog-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #64748b;
  font-size: 0.98rem;
}

/* Blog index page layout */
.blog-grid-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.blog-header {
  margin-bottom: 2.5rem;
  text-align: left;
}

/* Filters on index – card style with background */
.blog-filters {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

/* Make search wide, category + buttons on the right */
.blog-filters-row {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(200px, auto) auto;
  gap: 1rem 1.5rem;
  align-items: flex-end;
}

.blog-filter {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.blog-filter label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.blog-filter input[type="search"],
.blog-filter select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.blog-filter input[type="search"]:focus,
.blog-filter select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.15);
}

.blog-filter-actions {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

/* Index cards grid – 3 columns */
.blog-grid-page .blog-grid.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Individual blog cards on index */
.blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card-inner {
  padding: 1.3rem 1.4rem 1.2rem;
  gap: 0.65rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border-color: #0ea5e9;
}

.blog-card-title {
  font-size: 1.05rem;
  margin: 0 0 0.3rem;
  color: #0f172a;
  line-height: 1.3;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.blog-date {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

/* Button inside blog card */
.blog-card .btn {
  margin-top: auto;
  align-self: flex-start;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}

/* Post layout with sidebar */
.post-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.post-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.post-main {
  min-width: 0;
}

/* Sidebar */
.post-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.sidebar-card h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #0f172a;
  font-weight: 700;
}

/* Table of Contents */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  margin-bottom: 0.65rem;
}

.toc-list a {
  color: #475569;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  display: block;
  transition: color 0.15s ease, padding-left 0.15s ease;
}

.toc-list a:hover {
  color: #0ea5e9;
  padding-left: 0.5rem;
}

/* AdSense placeholder */
.adsense-card {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.adsense-placeholder {
  width: 100%;
  min-height: 250px;
}

/* Recent posts */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.recent-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-item a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.recent-post-title {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.15s ease;
}

.recent-post-item a:hover .recent-post-title {
  color: #0ea5e9;
}

.recent-post-date {
  color: #64748b;
  font-size: 0.8rem;
}

/* Indent h3 items in TOC */
.toc-item.toc-level-3 {
  padding-left: 1.2rem;
}

.toc-item.toc-level-3 a {
  font-size: 0.85rem;
  color: #64748b;
}

/* ========== NEW: Blog categories layout with sidebar ========== */

.blog-layout-with-sidebar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

/* Sidebar */
.blog-sidebar {
  position: relative;
}

.blog-sidebar .sidebar-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
}

/* Category tabs list */
.category-tabs {
  list-style: none;
  padding: 0.5rem;
  margin: 0 0 1.5rem;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.category-tab {
  margin: 0.1rem 0;
}

.category-tab a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #0f172a;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
}

.category-tab a:hover {
  background: #eff6ff;
  color: #0ea5e9;
  padding-left: 0.95rem;
}

.category-tab.is-active a {
  background: #0ea5e9;
  color: #ffffff;
  font-weight: 600;
}

/* Active tab subtle left border (optional) */
.category-tab.is-active a {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* Category intro blurb */
.category-intro {
  background: #f8fafc;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  color: #475569;
  border: 1px solid rgba(148, 163, 184, 0.35);
  margin-bottom: 1.5rem;
}

/* Date filter form in sidebar */
.category-date-filters {
  background: #ffffff;
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.category-date-filters fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.category-date-filters legend {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.8rem;
}

.date-filter-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.date-filter-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.date-filter-field input[type="date"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.9rem;
  font-family: inherit;
  background: #ffffff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.date-filter-field input[type="date"]:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.15);
}

.date-filter-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.date-filter-actions .btn-primary,
.date-filter-actions .btn-secondary {
  font-size: 0.85rem;
  padding: 0.5rem 0.9rem;
}

/* Main content area on categories page */
.blog-layout-with-sidebar .blog-main {
  min-width: 0;
}

/* Reuse card grid for categories page */
.blog-layout-with-sidebar .blog-grid.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

/* Responsive tweaks */
@media (max-width: 1024px){
  .blog-grid-page .blog-grid.cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-filters-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .post-container {
    grid-template-columns: 1fr;
  }

  .sidebar-sticky {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .blog-layout-with-sidebar {
    grid-template-columns: minmax(0, 1fr);
    padding: 2.5rem 1.25rem;
  }

  .blog-layout-with-sidebar .blog-main {
    order: 1;
  }

  .blog-layout-with-sidebar .blog-sidebar {
    order: 2;
  }

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

@media (max-width: 768px){
  .blog-grid-page {
    padding: 2rem 1rem;
  }

  .blog-filters {
    padding: 1.25rem 1.5rem;
  }

  .blog-filter-actions {
    justify-content: flex-start;
  }

  .blog-grid {
    padding: 2rem 1rem;
  }

  .post-layout {
    padding: 2rem 1rem;
  }

  .sidebar-sticky {
    grid-template-columns: 1fr;
  }

  #commentForm {
    grid-template-columns: 1fr;
  }

  #commentForm button[type="submit"] {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .blog-layout-with-sidebar {
    padding: 2rem 1rem;
  }

  .blog-layout-with-sidebar .blog-grid.cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px){
  .blog-grid-page .blog-grid.cards-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026 editorial blog system */
.blog-shell{width:min(1180px,calc(100% - 2rem));margin-inline:auto}.blog-hero{padding:clamp(3rem,7vw,6rem) 0;background:linear-gradient(135deg,#061b2d,#0b3954 55%,#0e7490);color:#fff}.blog-hero.compact{padding:3.25rem 0}.blog-hero .eyebrow{display:block;font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#a5f3fc;margin-bottom:.75rem}.blog-hero h1{max-width:850px;margin:0;font-size:clamp(2.2rem,5vw,4.8rem);line-height:1.03;color:#fff}.blog-hero p{max-width:760px;margin:1.2rem 0 0;font-size:clamp(1rem,1.6vw,1.25rem);color:#dbeafe}.blog-index-section{padding:3rem 0 5rem}.blog-toolbar{display:grid;grid-template-columns:2fr 1fr auto auto;gap:1rem;align-items:end;padding:1.25rem;background:#fff;border:1px solid #dbe4ec;border-radius:16px;box-shadow:0 12px 32px rgba(15,23,42,.07);margin-top:-4.5rem;position:relative}.blog-toolbar label{display:grid;gap:.4rem;font-weight:700;font-size:.85rem}.blog-toolbar input,.blog-toolbar select{width:100%;min-height:46px;border:1px solid #b8c5d1;border-radius:9px;padding:.7rem .8rem;background:#fff}.blog-results-heading{display:flex;justify-content:space-between;gap:1rem;align-items:end;margin:3rem 0 1.4rem}.blog-results-heading h2{margin:0}.blog-results-heading p{margin:.35rem 0 0;color:#64748b}.editorial-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.5rem}.editorial-blog-card{display:flex;flex-direction:column;overflow:hidden;background:#fff;border:1px solid #dbe4ec;border-radius:16px;box-shadow:0 8px 24px rgba(15,23,42,.06)}.editorial-card-media{display:block;aspect-ratio:16/9;background:linear-gradient(135deg,#dbeafe,#cffafe);overflow:hidden}.editorial-card-media img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.editorial-blog-card:hover img{transform:scale(1.035)}.editorial-card-media.image-missing:after{content:"Travel Network World";display:grid;place-items:center;height:100%;font-weight:800;color:#164e63}.editorial-card-body{display:flex;flex-direction:column;flex:1;padding:1.25rem}.editorial-card-meta{display:flex;flex-wrap:wrap;gap:.55rem 1rem;color:#64748b;font-size:.78rem;text-transform:uppercase;letter-spacing:.04em}.editorial-card-body h2{font-size:1.25rem;line-height:1.25;margin:.75rem 0}.editorial-card-body h2 a{color:#0f172a;text-decoration:none}.editorial-card-body p{color:#475569;line-height:1.65}.text-link{margin-top:auto;color:#0369a1;font-weight:800;text-decoration:none}.blog-pagination{display:flex;justify-content:center;align-items:center;gap:1rem;margin-top:2.5rem}.blog-pagination a,.blog-pagination span{padding:.65rem 1rem;border:1px solid #cbd5e1;border-radius:8px;background:#fff}.article-shell{width:min(1240px,calc(100% - 2rem));margin:0 auto;padding:2rem 0 5rem;display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:3rem}.breadcrumbs{display:flex;gap:.55rem;flex-wrap:wrap;font-size:.84rem;color:#64748b;margin-bottom:1.5rem}.breadcrumbs a{color:#0369a1}.travel-article{background:#fff}.article-header h1{font-size:clamp(2.2rem,5vw,4.4rem);line-height:1.05;margin:.7rem 0 1rem}.article-categories{display:flex;gap:.5rem;flex-wrap:wrap}.article-categories a{padding:.3rem .65rem;border-radius:999px;background:#e0f2fe;color:#075985;text-decoration:none;font-size:.78rem;font-weight:800}.article-deck{font-size:1.2rem;line-height:1.65;color:#475569;max-width:850px}.article-byline{display:flex;flex-wrap:wrap;gap:.75rem 1.25rem;color:#64748b;font-size:.9rem;border-top:1px solid #e2e8f0;padding-top:1rem}.article-featured{margin:2rem 0 0}.article-featured img{width:100%;max-height:560px;object-fit:cover;border-radius:16px}.affiliate-note{margin:2rem 0;padding:1rem 1.2rem;background:#f8fafc;border-left:4px solid #0891b2;border-radius:8px;color:#475569}.article-content{font-size:1.08rem;line-height:1.8;color:#263442}.article-content h2{font-size:1.8rem;margin:2.5rem 0 .8rem;color:#0f172a;scroll-margin-top:110px}.article-content h3{font-size:1.35rem;margin:2rem 0 .65rem;scroll-margin-top:110px}.article-content a{color:#0369a1;font-weight:700}.article-content li+li{margin-top:.45rem}.article-sidebar{min-width:0}.article-sidebar .sidebar-sticky{position:sticky;top:100px}.article-sidebar .sidebar-card h2{font-size:1rem}.related-mini-list{display:grid}.related-mini-list a{display:grid;gap:.25rem;padding:.8rem 0;border-bottom:1px solid #e2e8f0;text-decoration:none;color:#0f172a}.related-mini-list small{color:#64748b}.article-booking-hub{margin-top:3rem;padding:2rem;background:#06243a;border-radius:18px;color:#fff}.article-booking-hub h2{color:#fff}.booking-link-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.75rem}.booking-link-grid a{display:grid;gap:.2rem;padding:1rem;border:1px solid rgba(255,255,255,.2);border-radius:10px;color:#fff;text-decoration:none;background:rgba(255,255,255,.06)}.booking-link-grid span{font-size:.82rem;color:#cbd5e1}.comments{margin-top:3rem;border-top:1px solid #e2e8f0;padding-top:2rem}.comment{padding:1rem 0;border-bottom:1px solid #e2e8f0}.comment time{margin-left:.5rem;color:#64748b;font-size:.85rem}.comment-policy{color:#64748b}.hp-field{position:absolute!important;left:-9999px!important}.category-directory{padding:3rem 0 5rem}.category-directory-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.25rem}.category-directory-grid article{padding:1.5rem;border:1px solid #dbe4ec;border-radius:14px;background:#fff}.category-directory-grid h2{margin:.5rem 0}.category-directory-grid h2 a{text-decoration:none;color:#0f172a}.category-count{font-size:.78rem;font-weight:800;color:#0e7490;text-transform:uppercase}.category-directory-grid small{color:#64748b}@media (max-width:900px){.blog-toolbar{grid-template-columns:1fr 1fr;margin-top:-2rem}.editorial-card-grid,.category-directory-grid{grid-template-columns:repeat(2,1fr)}.article-shell{grid-template-columns:1fr}.article-sidebar .sidebar-sticky{position:static}.booking-link-grid{grid-template-columns:repeat(2,1fr)}}@media (max-width:600px){.blog-toolbar,.editorial-card-grid,.category-directory-grid,.booking-link-grid{grid-template-columns:1fr}.blog-results-heading{align-items:start;flex-direction:column}.article-shell{width:min(100% - 1.25rem,1240px)}.article-header h1{font-size:2.35rem}}

/* ===== ai-trip-inquiry.css ===== */
/* Travel Network World AI Trip Inquiry */
.tnw-ai-inquiry{--ai-navy:#071a33;--ai-blue:#0f3f78;--ai-blue2:#1e67b1;--ai-gold:#ffc247;--ai-ink:#111827;--ai-muted:#64748b;--ai-line:#dbe3ee;--ai-soft:#f5f8fc;font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;color:var(--ai-ink)}
.tnw-ai-inquiry *{box-sizing:border-box}.tnw-ai-shell{display:grid;grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);gap:28px;padding:34px;border-radius:30px;background:linear-gradient(135deg,var(--ai-navy),var(--ai-blue) 58%,var(--ai-blue2));color:#fff;box-shadow:0 28px 60px rgba(15,23,42,.18)}
.tnw-ai-kicker{display:inline-flex;margin-bottom:10px;color:var(--ai-gold);font-size:12px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.tnw-ai-copy h2{margin:0 0 12px;font-size:clamp(30px,3vw,46px);line-height:1.05;letter-spacing:-.045em}.tnw-ai-copy>p{margin:0;color:#dbeafe}.tnw-ai-points{display:grid;gap:11px;margin:22px 0 0;padding:0;list-style:none}.tnw-ai-points li{display:grid;grid-template-columns:32px 1fr;gap:10px;align-items:start;padding:13px;border:1px solid rgba(255,255,255,.16);border-radius:16px;background:rgba(255,255,255,.08)}.tnw-ai-points i{display:grid;place-items:center;width:32px;height:32px;border-radius:50%;background:var(--ai-gold);color:var(--ai-navy)}
.tnw-ai-card{padding:24px;border:1px solid rgba(255,255,255,.2);border-radius:24px;background:rgba(255,255,255,.12);backdrop-filter:blur(12px)}.tnw-ai-form{display:grid;gap:14px}.tnw-ai-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.tnw-ai-field{display:grid;gap:7px}.tnw-ai-field label{font-size:13px;font-weight:900;color:#fff}.tnw-ai-field input,.tnw-ai-field select,.tnw-ai-field textarea{width:100%;min-height:46px;padding:11px 13px;border:1px solid transparent;border-radius:14px;background:#fff;color:var(--ai-ink);font:inherit}.tnw-ai-field textarea{min-height:126px;resize:vertical}.tnw-ai-field input:focus,.tnw-ai-field select:focus,.tnw-ai-field textarea:focus{outline:3px solid rgba(255,194,71,.45);border-color:var(--ai-gold)}.tnw-ai-help{margin:0;color:#bfdbfe;font-size:12px}.tnw-ai-consent{display:flex;gap:9px;align-items:flex-start;color:#e5efff;font-size:12px}.tnw-ai-consent input{margin-top:3px}.tnw-ai-submit{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:48px;padding:11px 18px;border:0;border-radius:999px;background:var(--ai-gold);color:var(--ai-navy);font:inherit;font-weight:900;cursor:pointer}.tnw-ai-submit:disabled{opacity:.65;cursor:wait}.tnw-ai-status{min-height:20px;margin:0;font-size:13px;color:#fff}.tnw-ai-status[data-state="error"]{padding:10px 12px;border-radius:12px;background:#fee2e2;color:#7f1d1d}.tnw-ai-status[data-state="success"]{color:#dcfce7}.tnw-ai-result{display:none;margin-top:16px;padding:20px;border-radius:18px;background:#fff;color:var(--ai-ink);box-shadow:0 16px 34px rgba(0,0,0,.15)}.tnw-ai-result.is-visible{display:block}.tnw-ai-result h3{margin:0 0 10px;color:var(--ai-navy);font-size:20px}.tnw-ai-answer{white-space:pre-wrap;line-height:1.65}.tnw-ai-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:16px}.tnw-ai-link{display:inline-flex;align-items:center;justify-content:center;min-height:40px;padding:8px 14px;border-radius:999px;background:var(--ai-navy);color:#fff!important;font-weight:800;text-decoration:none}.tnw-ai-disclaimer{margin:14px 0 0;color:var(--ai-muted);font-size:12px}.tnw-ai-hp{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
@media (max-width:900px){.tnw-ai-shell{grid-template-columns:1fr}}@media (max-width:620px){.tnw-ai-shell{padding:20px;border-radius:22px}.tnw-ai-row{grid-template-columns:1fr}.tnw-ai-card{padding:18px}}
@media (prefers-reduced-motion:reduce){.tnw-ai-inquiry *{scroll-behavior:auto!important;transition:none!important}}

/* ===== travel-insurance.css ===== */
/* assets/css/travel-insurance.css */

/* Page-level tweaks for travel insurance section */
body.travel-insurance-page {
  background-color: #020617;
  color: #e5e7eb;
}

/* Hero styling (builds on .hero, .country-hero from global CSS) */
.hero.country-hero {
  position: relative;
  padding: 3rem 0 2.5rem;
  color: #f9fafb;
  background: radial-gradient(900px 500px at 10% 0%, rgba(250,112,154,0.5), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(254,225,64,0.35), transparent 60%),
              linear-gradient(135deg, #0b1220 0%, #020617 100%);
}

.hero.country-hero h1 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero.country-hero .lead {
  max-width: 60rem;
  font-size: 1.02rem;
  color: rgba(226,232,240,0.9);
}

/* Widget container in hero */
.hero.country-hero .hero-widget-box {
  margin-top: 1.25rem;
  max-width: 560px;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.55);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 14px 32px rgba(15,23,42,0.75);
  backdrop-filter: blur(12px);
}

.hero.country-hero .hero-widget-box iframe {
  width: 100% !important;
  border: 0;
}

@media (max-width: 768px){
  .hero.country-hero {
    padding: 2.4rem 0 2rem;
  }
  .hero.country-hero .hero-widget-box {
    max-width: 100%;
  }
}

/* Main content area */
.content-section {
  padding: 2rem 0 3rem;
  background: radial-gradient(900px 500px at 0% 100%, rgba(37,99,235,0.24), transparent 65%),
              linear-gradient(180deg, #020617 0%, #020617 100%);
}

/* Info cards consistently styled */
.content-section .info-card {
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(15,23,42,0.9);
  padding: 1.2rem 1.4rem;
  margin-top: 1.5rem;
  box-shadow: 0 18px 40px rgba(15,23,42,0.7);
}

.content-section .info-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.content-section .info-card p {
  margin: 0 0 0.5rem;
  color: rgba(226,232,240,0.9);
}

/* Lists */
.content-section .why-list,
.content-section .checklist {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.content-section .why-list li,
.content-section .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  margin: 0.35rem 0;
  color: rgba(226,232,240,0.9);
}

.content-section .why-list i,
.content-section .checklist i {
  color: #4ade80;
  margin-top: 0.15rem;
}

/* Providers grid */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 1rem 0 1.75rem;
}

.provider-card.insurance-card {
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.4);
  background: rgba(15,23,42,0.95);
  padding: 1.1rem 1.25rem;
  box-shadow: 0 18px 40px rgba(15,23,42,0.8);
}

.provider-card.insurance-card h3 {
  margin: 0 0 0.45rem;
}

.provider-card .provider-details p {
  margin: 0.25rem 0;
  color: rgba(226,232,240,0.9);
}

.provider-card .feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0.6rem 0;
}

.provider-card .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0.25rem 0;
  color: rgba(226,232,240,0.9);
}

.provider-card .feature-list i {
  color: #facc15;
  margin-top: 0.1rem;
}

.provider-card .btn.btn-primary {
  margin-top: 0.6rem;
}

@media (max-width: 900px){
  .provider-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.content-section .faq-item h3 {
  font-size: 1rem;
}

.content-section .faq-item p {
  color: rgba(203,213,225,0.95);
}

/* Optional: subtle divider between sections */
.content-section h2 {
  margin-top: 2rem;
}
/* ===== route-hubs.css ===== */

/* Travel Network World route hubs and final layout fixes - 2026-07-22 */
.route-hero{position:relative;overflow:hidden;padding:clamp(3.5rem,8vw,6.5rem) 0;background:linear-gradient(135deg,#071b33 0%,#123f67 58%,#176b87 100%);color:#fff}
.route-hero:after{content:"";position:absolute;inset:auto -8rem -12rem auto;width:28rem;height:28rem;border-radius:50%;background:rgba(255,255,255,.08)}
.route-hero .container{position:relative;z-index:1;max-width:1180px}
.route-eyebrow{display:inline-flex;align-items:center;gap:.5rem;margin:0 0 1rem;padding:.45rem .8rem;border:1px solid rgba(255,255,255,.35);border-radius:999px;background:rgba(255,255,255,.1);font-size:.84rem;font-weight:800;letter-spacing:.055em;text-transform:uppercase}
.route-hero h1{max-width:850px;margin:0;font-size:clamp(2.15rem,5vw,4.2rem);line-height:1.04;letter-spacing:-.035em;color:#fff}
.route-hero p{max-width:760px;margin:1.25rem 0 0;font-size:clamp(1rem,2vw,1.22rem);line-height:1.75;color:#e6f4fb}
.route-actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.65rem}.route-actions a{min-height:48px}
.route-section{padding:clamp(3rem,6vw,5.5rem) 0}.route-section.alt{background:#f4f8fb}.route-section .container{max-width:1180px}
.route-heading{max-width:760px;margin-bottom:2rem}.route-heading h2{margin:0 0 .7rem;font-size:clamp(1.75rem,3vw,2.65rem);line-height:1.15;color:#102a43}.route-heading p{margin:0;color:#52677b;line-height:1.75}
.route-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.2rem}.route-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}.route-grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}
.route-card{display:flex;flex-direction:column;min-width:0;padding:1.4rem;border:1px solid #d9e5ee;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(15,41,64,.07)}
.route-card .icon{display:grid;place-items:center;width:46px;height:46px;margin-bottom:1rem;border-radius:13px;background:#e6f5fa;color:#086a83;font-size:1.15rem}.route-card h3{margin:0 0 .6rem;color:#12314c;font-size:1.16rem}.route-card p{margin:0 0 1rem;color:#5a6d7e;line-height:1.65}.route-card ul{margin:.2rem 0 1rem;padding-left:1.2rem;color:#455d70}.route-card li+li{margin-top:.45rem}.route-card a:last-child{margin-top:auto}
.answer-panel{padding:1.5rem;border-left:5px solid #0c829f;border-radius:0 16px 16px 0;background:#eaf7fa}.answer-panel h2,.answer-panel h3{margin-top:0;color:#12314c}.answer-panel p:last-child{margin-bottom:0}
.quick-nav{display:flex;gap:.55rem;flex-wrap:wrap;margin:-1.45rem auto 0;position:relative;z-index:3;padding:1rem;border:1px solid #dbe6ed;border-radius:16px;background:#fff;box-shadow:0 14px 34px rgba(15,41,64,.12);max-width:1180px}.quick-nav a{display:inline-flex;align-items:center;min-height:42px;padding:.55rem .85rem;border-radius:10px;color:#16425f;font-weight:750;text-decoration:none}.quick-nav a:hover,.quick-nav a:focus-visible{background:#e9f6fa;color:#075f78}
.currency-table-wrap{overflow-x:auto;border:1px solid #d9e5ee;border-radius:16px;background:#fff}.currency-table{width:100%;border-collapse:collapse;min-width:720px}.currency-table th,.currency-table td{padding:1rem;text-align:left;border-bottom:1px solid #e8eef2}.currency-table th{background:#edf6f9;color:#153a55;font-size:.82rem;letter-spacing:.04em;text-transform:uppercase}.currency-table tr:last-child td{border-bottom:0}
.package-card .package-meta{display:flex;gap:.45rem;flex-wrap:wrap;margin:.2rem 0 1rem}.package-meta span{padding:.3rem .55rem;border-radius:999px;background:#edf5f8;color:#28546d;font-size:.8rem;font-weight:750}
.faq-list{display:grid;gap:.8rem}.faq-item{border:1px solid #d9e5ee;border-radius:14px;background:#fff;padding:1.15rem 1.25rem}.faq-item h3{margin:0 0 .5rem;color:#153a55;font-size:1.06rem}.faq-item p{margin:0;color:#53697a;line-height:1.68}
.route-cta{padding:clamp(2rem,5vw,3.5rem);border-radius:24px;background:#0c2d48;color:#fff}.route-cta h2{margin-top:0;color:#fff}.route-cta p{max-width:750px;color:#d9edf5}.route-cta .btn-secondary{border-color:#fff;color:#fff}
.search-intent{font-size:.92rem;color:#667a8a}.notice{padding:1rem 1.15rem;border-radius:12px;background:#fff7dd;border:1px solid #ead799;color:#584812}
@media (max-width:960px){.route-grid.four,.route-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:680px){.route-hero{padding:3.25rem 0 4rem}.route-grid,.route-grid.two,.route-grid.four{grid-template-columns:1fr}.route-actions{display:grid}.route-actions a{width:100%;justify-content:center}.quick-nav{margin:-1rem 1rem 0;overflow-x:auto;flex-wrap:nowrap}.quick-nav a{white-space:nowrap}.route-card{padding:1.2rem}.route-section{padding:2.75rem 0}}

/* ===== Partner widget presentation ===== */
.partner-widget{width:min(1180px,calc(100% - 2rem));margin:clamp(2.25rem,5vw,4.5rem) auto;padding:clamp(1.25rem,3.5vw,2.35rem);border:1px solid #d9e3ef;border-radius:24px;background:#fff;box-shadow:0 20px 55px rgba(15,23,42,.09)}
.partner-widget__heading{display:flex;align-items:flex-start;justify-content:space-between;gap:1.5rem;margin-bottom:1.35rem}.partner-widget__heading h2{margin:.2rem 0 .55rem;font-size:clamp(1.65rem,3vw,2.35rem);line-height:1.15}.partner-widget__heading p{max-width:760px;margin-bottom:0;color:#475569}.partner-widget__badge{flex:none;padding:.5rem .8rem;border:1px solid #bbf7d0;border-radius:999px;background:#ecfdf5;color:#166534;font-size:.78rem;font-weight:800;white-space:nowrap}.partner-widget__embed{position:relative;min-height:250px;overflow:hidden;border:1px solid #dbe4ef;border-radius:18px;background:#f8fafc}.partner-widget__embed iframe{display:block;width:100%!important;max-width:100%!important;border:0}.partner-widget__embed--gyg{padding:1rem}.partner-widget__fallback{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;padding:clamp(1.1rem,3vw,1.75rem);border:1px solid #dbeafe;border-radius:18px;background:linear-gradient(135deg,#eff6ff,#f0fdf4)}.partner-widget__fallback h3{margin:.1rem 0 .4rem;font-size:1.35rem}.partner-widget__fallback p{margin:0;color:#475569}.partner-widget__kicker{font-size:.75rem!important;font-weight:850;text-transform:uppercase;letter-spacing:.1em;color:#1d4ed8!important}.partner-widget__status{display:inline-flex;max-width:360px;padding:.75rem .9rem;border:1px solid #fed7aa;border-radius:12px;background:#fff7ed;color:#9a3412;font-size:.86rem;font-weight:700}.partner-widget__trust{display:flex;flex-wrap:wrap;gap:.65rem 1.25rem;margin-top:1rem;color:#334155;font-size:.84rem;font-weight:650}.partner-widget__trust span{display:inline-flex;align-items:center;gap:.4rem}.partner-widget__trust i{color:#16794b}.partner-widget__disclosure{margin:1rem 0 0;color:#64748b;font-size:.8rem;line-height:1.55}.partner-planning-card{padding:clamp(1.25rem,3vw,1.85rem);border:1px solid #dbe4ef;border-radius:22px;background:#fff;box-shadow:0 14px 38px rgba(15,23,42,.07)}.partner-planning-card h2{margin:.2rem 0 .4rem;font-size:clamp(1.35rem,2.5vw,1.85rem)}.partner-planning-card__intro{margin:0 0 1.15rem;color:#64748b}.partner-planning-card__links{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.7rem}.partner-planning-card__links a{display:flex;align-items:center;gap:.65rem;min-height:52px;padding:.8rem .85rem;border:1px solid #e2e8f0;border-radius:13px;background:#fff;color:#0f172a;text-decoration:none;font-weight:750;transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.partner-planning-card__links a:hover,.partner-planning-card__links a:focus-visible{transform:translateY(-2px);border-color:#93c5fd;box-shadow:0 9px 22px rgba(37,99,235,.1);outline:none}.partner-planning-card__links i:first-child{width:1.15rem;color:#2563eb;text-align:center}.partner-planning-card__arrow{margin-left:auto;color:#94a3b8;font-size:.7rem}.service-trip-tools{padding-top:0}.partner-widget[data-widget-loading="true"]:after{content:"Loading current activities…";display:block;padding:.8rem;color:#64748b;text-align:center;font-size:.85rem}@media (max-width:820px){.partner-planning-card__links{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (max-width:720px){.partner-widget{width:min(100% - 1rem,1180px);border-radius:18px}.partner-widget__heading,.partner-widget__fallback{align-items:stretch;flex-direction:column}.partner-widget__badge{align-self:flex-start}.partner-widget__fallback .btn-primary{width:100%;text-align:center}.partner-widget__embed{min-height:220px}.partner-widget__trust{display:grid;grid-template-columns:1fr}.partner-planning-card__links{grid-template-columns:1fr}}

/* ===== Growth and lead-capture presentation ===== */
:root{--tnw-content:1180px;--tnw-gutter:clamp(1rem,3vw,2rem);--tnw-radius:16px;--tnw-shadow:0 18px 45px rgba(15,23,42,.10)}
.container{width:min(var(--tnw-content),calc(100% - (var(--tnw-gutter)*2)));margin-inline:auto}
main{overflow:clip}.section{padding-block:clamp(2.75rem,6vw,5.5rem)}
.travel-search-panel{width:100%;margin:clamp(1.5rem,4vw,3rem) auto;padding:clamp(1rem,3vw,1.5rem);border:1px solid #dbe4ee;border-radius:var(--tnw-radius);background:#fff;box-shadow:var(--tnw-shadow)}
.travel-search-form .search-fields{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:1rem;align-items:end}.travel-search-form .search-field{grid-column:span 3;min-width:0}.travel-search-form .search-field--compact{grid-column:span 2}.travel-search-form label{display:block;margin-bottom:.4rem;font-weight:700;color:#172033}.travel-search-form input,.travel-search-form select{width:100%;min-height:48px;border:1px solid #b9c6d4;border-radius:10px;padding:.7rem .8rem;background:#fff;color:#172033}.travel-search-form input:focus,.travel-search-form select:focus{outline:3px solid rgba(11,95,165,.18);border-color:#0b5fa5}.search-buttons{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:1rem}.search-results{margin-top:1rem;padding:1rem;border-radius:12px;background:#f7fafc}.search-results-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:1rem}.search-card{padding:1rem;border:1px solid #dbe4ee;border-radius:12px;background:#fff}
.form-honeypot{position:absolute!important;left:-9999px!important;width:1px!important;height:1px!important;overflow:hidden!important}
@media (max-width:900px){.travel-search-form .search-field,.travel-search-form .search-field--compact{grid-column:span 6}}
@media (max-width:600px){.travel-search-form .search-field,.travel-search-form .search-field--compact{grid-column:1/-1}.search-buttons>*{width:100%}}



/* ===== GLOBAL SHELL + RESPONSIVE LAYOUT ===== */
/* Travel Network World — Platform UI/UX + Search/GEO foundation
   Authoritative public geometry. Loaded after page-specific styles. */
:root{
  color-scheme:light;
  --tnw-shell:1180px;--tnw-reading:780px;--tnw-gutter:clamp(18px,3vw,34px);
  --tnw-section:clamp(50px,6.5vw,84px);--tnw-section-tight:clamp(32px,4vw,52px);
  --tnw-header:80px;--tnw-radius:16px;--tnw-radius-lg:24px;
  --tnw-navy:#0b2239;--tnw-blue:#0c658f;--tnw-blue-dark:#074765;--tnw-red:#c9282d;
  --tnw-text:#203346;--tnw-muted:#607387;--tnw-line:#d9e3ea;--tnw-soft:#f4f7f9;--tnw-sky:#eef7fb;
  --tnw-white:#fff;--tnw-focus:#f1b928;--tnw-shadow:0 14px 38px rgba(11,34,57,.09);--tnw-shadow-sm:0 6px 20px rgba(11,34,57,.07);
}
html{scroll-behavior:smooth;scroll-padding-top:calc(var(--tnw-header) + 20px);overflow-x:hidden;background:#fff}
body.tnw-site{margin:0;min-width:320px;overflow-x:clip;background:#fff;color:var(--tnw-text);font:400 16px/1.65 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
body.tnw-site *,body.tnw-site *::before,body.tnw-site *::after{box-sizing:border-box}
body.tnw-site :where(img,svg,video,canvas){max-width:100%;height:auto}
body.tnw-site iframe{max-width:100%;border:0}
body.tnw-site :where(.container,.site-container,.content-container,.page-container,.blog-shell){width:min(calc(100% - (2 * var(--tnw-gutter))),var(--tnw-shell));max-width:none;margin-inline:auto;padding-inline:0}
body.tnw-site :where(.container-narrow,.content-narrow,.prose){width:min(calc(100% - (2 * var(--tnw-gutter))),var(--tnw-reading));max-width:var(--tnw-reading);margin-inline:auto}
body.tnw-site main{display:block;min-width:0;min-height:46vh;overflow:clip}
body.tnw-site :where(.site-main,.page-content,.main-content,.legal-main,.article-main){margin:0;padding:0;max-width:none;background:transparent}
body.tnw-site .skip-link{position:fixed;left:12px;top:-80px;z-index:20000;padding:10px 14px;border-radius:0 0 8px 8px;background:var(--tnw-navy);color:#fff;font-weight:800;text-decoration:none}
body.tnw-site .skip-link:focus{top:0}

/* header */



body.tnw-site .logo{display:flex;align-items:center;gap:10px;flex:0 0 auto;min-width:0;color:var(--tnw-navy)!important;text-decoration:none!important}
body.tnw-site .logo img{display:block;width:48px;height:48px;flex:0 0 48px;object-fit:contain}
body.tnw-site .logo-copy{display:grid;min-width:0;line-height:1.12;white-space:nowrap}
body.tnw-site .logo-copy strong{font-size:1rem;color:var(--tnw-navy)}
body.tnw-site .logo-copy small{margin-top:4px;color:var(--tnw-muted);font-size:.72rem;font-weight:650}














body.tnw-site .dropdown-divider{height:1px;margin:7px;background:var(--tnw-line)}
body.tnw-site .header-cta{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:10px 16px;border-radius:999px;background:var(--tnw-navy);color:#fff!important;font-size:.9rem;font-weight:800;text-decoration:none!important;white-space:nowrap}

body.nav-open{overflow:hidden}

/* typography and section rhythm */
body.tnw-site :where(h1,h2,h3,h4){margin-top:0;color:var(--tnw-navy);font-weight:800;line-height:1.13;letter-spacing:-.025em;text-wrap:balance}
body.tnw-site h1{font-size:clamp(2.15rem,5vw,4.25rem)} body.tnw-site h2{font-size:clamp(1.6rem,3vw,2.6rem)} body.tnw-site h3{font-size:clamp(1.12rem,1.8vw,1.42rem)}
body.tnw-site p{margin-top:0;color:inherit} body.tnw-site :where(.lead,.hero-subtitle,.hero-subheadline,.page-subtitle){max-width:66ch;font-size:clamp(1.03rem,1.6vw,1.22rem);line-height:1.65}
body.tnw-site .eyebrow{margin:0 0 10px;color:var(--tnw-blue);font-size:.78rem;font-weight:850;letter-spacing:.1em;text-transform:uppercase}
body.tnw-site :where(.section,.content-section,.page-section,.company-section,.route-section,.widget-section){padding-block:var(--tnw-section)}
body.tnw-site :where(.section-alt,.alternate-section,.section.alt,.company-section--soft){background:var(--tnw-soft)}
body.tnw-site :where(.section-heading,.section-title){max-width:780px;margin:0 0 28px}
body.tnw-site :where(.section-heading,.section-title)>*:last-child{margin-bottom:0}

/* heroes */
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero){margin:0;padding-block:clamp(52px,7vw,88px);background:linear-gradient(135deg,#081f35,#0a557c);color:#fff}
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero) :where(h1,h2,h3,p,.lead,.eyebrow){color:#fff}
body.tnw-site .page-hero-compact{padding-block:clamp(38px,5vw,58px)}
body.tnw-site .hero{margin:0;min-height:0;padding-block:clamp(58px,7.5vw,96px)}
body.tnw-site .hero-inner{width:min(calc(100% - (2 * var(--tnw-gutter))),var(--tnw-shell));max-width:none;margin-inline:auto;padding:0}
body.tnw-site .breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:8px;padding-block:16px;color:var(--tnw-muted);font-size:.88rem}
body.tnw-site .breadcrumb a{color:var(--tnw-blue-dark)}

/* grids/cards */
body.tnw-site :where(.content-card-grid,.cards-grid,.feature-grid,.service-grid,.destination-grid,.country-answer-grid,.country-service-grid,.blog-grid,.editorial-card-grid,.marketplace-grid,.route-grid,.widget-grid,.reviews-grid,.hotel-country-grid){display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;align-items:stretch}
body.tnw-site :where(.content-card,.card,.feature-card,.service-card,.destination-card,.hotel-card,.blog-card,.editorial-blog-card,.marketplace-card,.route-card,.review-card,.step-card,.support-card,.info-section,.company-card){min-width:0;height:100%;border:1px solid var(--tnw-line);border-radius:var(--tnw-radius);background:#fff;box-shadow:var(--tnw-shadow-sm);overflow:hidden}
body.tnw-site :where(.content-card,.card,.feature-card,.service-card,.destination-card,.blog-card,.marketplace-card,.route-card,.review-card,.step-card,.support-card,.info-section){padding:22px}
body.tnw-site :where(.content-card,.card,.feature-card,.service-card,.destination-card,.blog-card,.marketplace-card,.route-card) h3{margin-bottom:9px}
body.tnw-site :where(.content-card,.card,.feature-card,.service-card,.destination-card,.blog-card,.marketplace-card,.route-card) p:last-child{margin-bottom:0}

/* hotel/service specific structure previously unowned */
body.tnw-site .hotel-country-hero__inner{display:grid;grid-template-columns:auto minmax(0,1fr);gap:22px;align-items:center}
body.tnw-site .hotel-country-hero__logo{width:74px;height:74px;object-fit:contain;border-radius:16px;background:#fff;padding:8px}
body.tnw-site .hotel-search-shell{margin-top:24px;padding:18px;border:1px solid rgba(255,255,255,.22);border-radius:16px;background:rgba(255,255,255,.10);backdrop-filter:blur(8px)}
body.tnw-site .hotel-country-card{display:flex;align-items:center;gap:12px;min-height:78px;padding:14px 16px;border:1px solid var(--tnw-line);border-radius:14px;background:#fff;color:var(--tnw-navy);font-weight:800;text-decoration:none;box-shadow:var(--tnw-shadow-sm)}
body.tnw-site .hotel-country-card img{width:44px;height:44px;object-fit:contain;flex:0 0 44px}
body.tnw-site .filter-buttons{display:flex;flex-wrap:wrap;gap:9px;margin:18px 0}
body.tnw-site .filter-btn{min-height:42px;padding:8px 14px;border:1px solid var(--tnw-line);border-radius:999px;background:#fff;color:var(--tnw-navy);font-weight:750;cursor:pointer}
body.tnw-site .filter-btn:is(.active,[aria-pressed="true"]){background:var(--tnw-navy);border-color:var(--tnw-navy);color:#fff}
body.tnw-site .widget-block{padding:18px;border:1px solid var(--tnw-line);border-radius:var(--tnw-radius);background:#fff;box-shadow:var(--tnw-shadow-sm);overflow:hidden}
body.tnw-site .widget-note{margin-top:10px;color:var(--tnw-muted);font-size:.9rem}
body.tnw-site .route-card{display:flex;flex-direction:column}
body.tnw-site .route-card :where(.route-price,.route-main){font-weight:800;color:var(--tnw-navy)}

/* country/destination */
body.tnw-site .country-growth-hero{padding-block:clamp(52px,7vw,84px);background:linear-gradient(180deg,#f5fafc,#fff)}
body.tnw-site .country-growth-hero__grid{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(280px,.75fr);gap:38px;align-items:center}
body.tnw-site .country-decision-card{padding:24px;border:1px solid var(--tnw-line);border-radius:var(--tnw-radius-lg);background:#fff;box-shadow:var(--tnw-shadow)}
body.tnw-site .country-onpage-nav{display:flex;flex-wrap:wrap;gap:10px 16px;align-items:center;padding-block:16px;border-block:1px solid var(--tnw-line)}
body.tnw-site .country-onpage-nav a{color:var(--tnw-blue-dark);font-weight:750}
body.tnw-site .country-service-grid>a{display:grid;gap:4px;padding:18px;border:1px solid var(--tnw-line);border-radius:14px;background:#fff;color:var(--tnw-navy);text-decoration:none}

/* forms */
body.tnw-site form{min-width:0;max-width:100%}
body.tnw-site :where(.form-group,.form-field,.search-field){min-width:0}
body.tnw-site label{display:inline-block;margin-bottom:6px;color:var(--tnw-navy);font-weight:700}
body.tnw-site :where(input:not([type=checkbox]):not([type=radio]),select,textarea,.form-control,.form-input,.form-select,.form-textarea){width:100%;max-width:100%;min-height:48px;padding:11px 13px;border:1px solid #b9c8d4;border-radius:10px;background:#fff;color:var(--tnw-text);font:inherit;line-height:1.35;box-shadow:none}
body.tnw-site textarea,body.tnw-site .form-textarea{min-height:132px;resize:vertical}
body.tnw-site :where(input,select,textarea):focus{outline:3px solid rgba(241,185,40,.30);outline-offset:1px;border-color:#6f9bb2}
body.tnw-site :where(.form-grid,.search-grid,.transfer-search-grid){display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:15px}
body.tnw-site .hero-search form{display:block}
body.tnw-site .hero-search .search-fields{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
body.tnw-site .search-buttons{display:flex;flex-wrap:wrap;gap:10px;margin-top:12px}
body.tnw-site .marketplace-search{display:flex;gap:10px;align-items:end;max-width:760px}
body.tnw-site .marketplace-search input{flex:1}

/* buttons */
body.tnw-site :where(.btn,.btn-primary,.btn-secondary,.submit-btn,button[type=submit],input[type=submit],.company-button){display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:46px;padding:10px 17px;border:1px solid transparent;border-radius:10px;font:inherit;font-weight:800;line-height:1.15;text-align:center;text-decoration:none!important;cursor:pointer;transition:background-color .15s ease,border-color .15s ease,transform .15s ease}
body.tnw-site :where(.btn-primary,.submit-btn,button[type=submit],input[type=submit],.company-button--primary){background:var(--tnw-blue);border-color:var(--tnw-blue);color:#fff!important}
body.tnw-site :where(.btn-primary,.submit-btn,button[type=submit],input[type=submit],.company-button--primary):hover{background:var(--tnw-blue-dark);border-color:var(--tnw-blue-dark);transform:translateY(-1px)}
body.tnw-site .btn-secondary{background:#fff;border-color:#a9c0ce;color:var(--tnw-blue-dark)!important}
body.tnw-site .button-row{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
body.tnw-site :where(a,button,input,select,textarea):focus-visible{outline:3px solid var(--tnw-focus)!important;outline-offset:3px!important}

/* tables/widgets */
body.tnw-site :where(.table-wrap,.table-responsive){width:100%;max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;border-radius:12px}
body.tnw-site table{width:100%;min-width:620px;border-collapse:separate;border-spacing:0;border:1px solid var(--tnw-line);border-radius:12px;background:#fff;overflow:hidden}
body.tnw-site th,body.tnw-site td{padding:12px 14px;border:0;border-bottom:1px solid var(--tnw-line);text-align:left;vertical-align:top}
body.tnw-site th{background:var(--tnw-navy);color:#fff}
body.tnw-site :where(.tn-widget,.widget-section,.widget-block,.tp-widget-container,[data-travelpayouts-widget],.travel-marketplace,.partner-widget__embed){min-width:0;max-width:100%;overflow:hidden}
body.tnw-site :where(.tn-widget,.widget-block,.tp-widget-container,[data-travelpayouts-widget],.partner-widget__embed) iframe{display:block;width:100%!important;max-width:100%!important}

/* blog/legal/contact reading layouts */
body.tnw-site .blog-index-section{padding-block:var(--tnw-section)}
body.tnw-site .article-main{width:min(calc(100% - (2 * var(--tnw-gutter))),var(--tnw-shell));margin-inline:auto;padding-block:var(--tnw-section-tight);overflow:visible}
body.tnw-site .article-content{max-width:var(--tnw-reading)}
body.tnw-site .article-content :where(p,ul,ol,blockquote){max-width:72ch}
body.tnw-site .legal-content>.container,body.tnw-site .legal-content .content{max-width:var(--tnw-reading)}
body.tnw-site .legal-content{padding-block:var(--tnw-section-tight)}
body.tnw-site .contact-page{margin:0;padding-block:var(--tnw-section)}
body.tnw-site .contact-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(280px,.75fr);gap:28px;align-items:start}

/* footer matches actual footer.php markup */

body.tnw-site .footer-shell{display:grid;grid-template-columns:minmax(260px,1.05fr) minmax(0,1.8fr);gap:clamp(34px,5vw,70px);padding-block:52px 40px}
body.tnw-site .footer-intro{max-width:430px}
body.tnw-site .footer-logo{display:flex;align-items:center;gap:12px;margin-bottom:18px;color:#fff!important;text-decoration:none!important}
body.tnw-site .footer-logo img{width:48px;height:48px;object-fit:contain}
body.tnw-site .footer-logo span{display:grid;line-height:1.15}.footer-logo small{margin-top:4px;color:#afc0cd}
body.tnw-site .footer-intro p{color:#c3d1dc}
body.tnw-site .footer-trust{display:grid;gap:8px;margin-top:18px;color:#dce7ee;font-size:.88rem}
body.tnw-site .footer-nav{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px}
body.tnw-site .footer-column h2{margin:0 0 12px;color:#fff;font-size:.95rem;letter-spacing:0}
body.tnw-site .footer-column ul{margin:0;padding:0;list-style:none}.footer-column li+li{margin-top:7px}

body.tnw-site .footer-bottom{margin:0;padding:0;border-top:1px solid rgba(255,255,255,.12);background:transparent}
body.tnw-site .footer-bottom-inner{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:22px;align-items:start;padding-block:20px 24px}
body.tnw-site .footer-bottom p{margin:0;color:#aebfcb;font-size:.84rem}.footer-disclosure{text-align:right}

body.tnw-site .scroll-to-top{position:fixed;right:20px;bottom:20px;z-index:9000;width:46px;height:46px;border:0;border-radius:50%;background:var(--tnw-navy);color:#fff;box-shadow:var(--tnw-shadow);cursor:pointer}

.pwa-install-actions{display:flex;gap:8px}

/* responsive: one breakpoint contract for shell + JS */
@media (max-width:1024px){
 :root{--tnw-header:70px}
 body.tnw-site .logo-copy small{display:none}
 body.tnw-site .header-cta{display:none}
 
 
 
 
 
 
 
 
 
 body.tnw-site :where(.content-card-grid,.cards-grid,.feature-grid,.service-grid,.destination-grid,.country-answer-grid,.country-service-grid,.blog-grid,.editorial-card-grid,.marketplace-grid,.route-grid,.widget-grid,.reviews-grid,.hotel-country-grid){grid-template-columns:repeat(2,minmax(0,1fr))}
 body.tnw-site .country-growth-hero__grid,body.tnw-site .contact-grid{grid-template-columns:1fr}
 body.tnw-site .footer-shell{grid-template-columns:1fr}.footer-intro{max-width:620px!important}
}
@media (max-width:700px){
 :root{--tnw-gutter:18px;--tnw-section:46px;--tnw-section-tight:32px}
 body.tnw-site{font-size:15.75px}
 body.tnw-site .logo img{width:42px;height:42px;flex-basis:42px}.logo-copy strong{font-size:.92rem!important}
 body.tnw-site h1{font-size:clamp(2rem,10vw,3rem)} body.tnw-site h2{font-size:clamp(1.5rem,7vw,2.15rem)}
 body.tnw-site :where(.content-card-grid,.cards-grid,.feature-grid,.service-grid,.destination-grid,.country-answer-grid,.country-service-grid,.blog-grid,.editorial-card-grid,.marketplace-grid,.route-grid,.widget-grid,.reviews-grid,.hotel-country-grid){grid-template-columns:1fr}
 body.tnw-site :where(.form-grid,.search-grid,.transfer-search-grid){grid-template-columns:1fr}
 body.tnw-site .hero-search .search-fields{grid-template-columns:1fr 1fr}
 body.tnw-site .button-row{align-items:stretch}.button-row>:where(a,button){width:100%}
 body.tnw-site .marketplace-search{display:grid;grid-template-columns:1fr}
 body.tnw-site .footer-nav{grid-template-columns:1fr 1fr}.footer-bottom-inner{grid-template-columns:1fr}.footer-disclosure{text-align:left!important}
 .pwa-install-actions{width:100%}.pwa-install-actions button{flex:1}
 body.tnw-site .hotel-country-hero__inner{grid-template-columns:1fr}.hotel-country-hero__logo{width:60px!important;height:60px!important}
}
@media (max-width:460px){body.tnw-site .hero-search .search-fields{grid-template-columns:1fr}body.tnw-site .footer-nav{grid-template-columns:1fr}}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}body.tnw-site *,body.tnw-site *::before,body.tnw-site *::after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}
/* Small page semantics that previously had no loaded stylesheet owner. */
body.tnw-site .legal-meta{display:flex;flex-wrap:wrap;gap:8px 16px;margin-top:14px;color:rgba(255,255,255,.82);font-size:.9rem}
body.tnw-site .support-note{margin-top:18px;padding:14px 16px;border-left:4px solid var(--tnw-blue);background:var(--tnw-sky);border-radius:10px;color:var(--tnw-text)}
body.tnw-site .card-actions{display:flex;flex-wrap:wrap;gap:9px;margin-top:16px}
body.tnw-site .hotel-card__location,body.tnw-site .route-from{color:var(--tnw-muted);font-size:.88rem;font-weight:750}
body.tnw-site .route-desc,body.tnw-site .review-text{color:var(--tnw-muted)}
body.tnw-site .route-price{margin:.45rem 0;color:var(--tnw-blue-dark);font-weight:750}
body.tnw-site .company-contact-card{padding:22px;border:1px solid var(--tnw-line);border-radius:var(--tnw-radius);background:#fff;box-shadow:var(--tnw-shadow-sm)}
body.tnw-site .comments-empty{padding:18px;border:1px dashed var(--tnw-line);border-radius:12px;background:var(--tnw-soft);color:var(--tnw-muted)}


/* --------------------------------------------------------------------------
   Search intent, answer clarity, long-page usability and responsive polish
   -------------------------------------------------------------------------- */
body.tnw-site :where(h1,h2,h3,h4,[id]){scroll-margin-top:calc(var(--tnw-header) + 22px)}
body.tnw-site :where(p,li,dd,td,th,a){overflow-wrap:anywhere}
body.tnw-site .section-intro{max-width:72ch;color:var(--tnw-muted);font-size:1.04rem}
body.tnw-site .page-hero .lead{margin-bottom:0}
body.tnw-site .service-hub-page>.breadcrumb{margin-bottom:0}

body.tnw-site .answer-summary{
  margin-block:0;padding-block:var(--tnw-section-tight);background:#fff;border-bottom:1px solid var(--tnw-line)
}
body.tnw-site .answer-summary__inner{
  display:grid;grid-template-columns:minmax(0,.72fr) minmax(0,1.28fr);gap:clamp(22px,4vw,52px);align-items:start
}
body.tnw-site .answer-summary__label{margin:0 0 7px;color:var(--tnw-blue-dark);font-size:.78rem;font-weight:850;letter-spacing:.08em;text-transform:uppercase}
body.tnw-site .answer-summary h2{margin-bottom:0;font-size:clamp(1.45rem,2.7vw,2.2rem)}
body.tnw-site .answer-summary p{margin:0;max-width:74ch;font-size:1.05rem}

body.tnw-site .intent-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;margin-top:24px}
body.tnw-site .intent-card{min-width:0;padding:20px;border:1px solid var(--tnw-line);border-radius:14px;background:#fff;box-shadow:var(--tnw-shadow-sm)}
body.tnw-site .intent-card h3{font-size:1.08rem;margin-bottom:7px}.intent-card p{margin:0;color:var(--tnw-muted);font-size:.94rem}

body.tnw-site .topic-jump{padding-block:14px;border-bottom:1px solid var(--tnw-line);background:#fff}
body.tnw-site .topic-jump__inner{display:flex;align-items:center;gap:10px 18px;flex-wrap:wrap}
body.tnw-site .topic-jump strong{color:var(--tnw-navy);font-size:.9rem}
body.tnw-site .topic-jump a{color:var(--tnw-blue-dark);font-size:.9rem;font-weight:750;text-decoration:none}
body.tnw-site .topic-jump a:hover{text-decoration:underline}

body.tnw-site .trust-strip{padding-block:18px;background:var(--tnw-sky);border-block:1px solid #d7eaf3}
body.tnw-site .trust-strip__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
body.tnw-site .trust-strip__item{display:flex;gap:10px;align-items:flex-start;min-width:0;color:var(--tnw-text);font-size:.9rem}
body.tnw-site .trust-strip__item i{margin-top:.2rem;color:var(--tnw-blue)}
body.tnw-site .trust-strip__item strong{display:block;color:var(--tnw-navy)}

body.tnw-site .faq-list{display:grid;gap:12px;max-width:900px}
body.tnw-site .faq-item{padding:18px 20px;border:1px solid var(--tnw-line);border-radius:14px;background:#fff}
body.tnw-site .faq-item h3{margin-bottom:7px;font-size:1.06rem}.faq-item p{margin:0;color:var(--tnw-muted)}

body.tnw-site .source-note{padding:15px 17px;border-left:4px solid var(--tnw-blue);border-radius:10px;background:var(--tnw-sky);font-size:.92rem}
body.tnw-site .source-note p:last-child{margin-bottom:0}

body.tnw-site .content-card{display:flex;flex-direction:column}
body.tnw-site .content-card :where(.btn-primary,.btn-secondary,.btn){margin-top:auto;align-self:flex-start}
body.tnw-site .content-card p{color:var(--tnw-muted)}

body.tnw-site .partner-marketplace{content-visibility:auto;contain-intrinsic-size:700px}
body.tnw-site .partner-disclosure{max-width:82ch;color:var(--tnw-muted);font-size:.86rem}
body.tnw-site .widget-block{min-height:120px}

body.tnw-site .article-content{font-size:1.03rem;line-height:1.76}
body.tnw-site .article-content :where(h2,h3){margin-top:1.65em}
body.tnw-site .article-byline{display:flex;flex-wrap:wrap;gap:8px 16px;color:var(--tnw-muted);font-size:.9rem}
body.tnw-site .breadcrumbs{display:flex;flex-wrap:wrap;gap:8px;align-items:center;color:var(--tnw-muted);font-size:.88rem}
body.tnw-site .breadcrumbs a{color:var(--tnw-blue-dark)}



body.tnw-site.nav-open{touch-action:none}

@media (max-width:1024px){
  body.tnw-site .answer-summary__inner{grid-template-columns:1fr}
  body.tnw-site .intent-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.tnw-site .trust-strip__grid{grid-template-columns:1fr}
}
@media (max-width:700px){
  body.tnw-site .intent-grid{grid-template-columns:1fr}
  body.tnw-site .answer-summary{padding-block:28px}
  body.tnw-site .topic-jump{overflow-x:auto;-webkit-overflow-scrolling:touch}
  body.tnw-site .topic-jump__inner{flex-wrap:nowrap;width:max-content;min-width:100%;padding-right:8px}
  body.tnw-site .content-card :where(.btn-primary,.btn-secondary,.btn){width:100%}
  body.tnw-site .hero-search{padding:16px;border-radius:14px}
}

/* Page-specific shell corrections after source comparison. */
body.tnw-site main.contact-page{padding-block:0}
body.tnw-site .blog-hero .breadcrumbs{margin-bottom:1rem;color:rgba(255,255,255,.78)}
body.tnw-site .blog-hero .breadcrumbs a{color:#fff}
body.tnw-site .blog-answer-summary{border:1px solid var(--tnw-line);border-radius:16px;padding:clamp(20px,3vw,30px);margin-bottom:1rem}
body.tnw-site .blog-topic-jump{margin-bottom:1.25rem;border:1px solid var(--tnw-line);border-radius:14px}
body.tnw-site .page-hero+.answer-summary{border-top:0}
body.tnw-site .widget-grid>.widget-block{height:100%}
body.tnw-site .partner-marketplace__head{max-width:780px}
@media (max-width:700px){body.tnw-site .blog-answer-summary{padding:20px}body.tnw-site .blog-toolbar{margin-top:0}}

/* ========================================================================== 
   Authoritative responsive, widget and form alignment corrections
   ========================================================================== */

/* Closed mobile navigation must stay inside the viewport. Translating a fixed
   panel beyond the right edge enlarged the document's horizontal scroll area. */


/* Keep flexible controls inside their own grid tracks. */
body.tnw-site :where(.search-fields,.form-grid,.search-grid,.transfer-search-grid,.marketplace-search)>*{min-width:0}





/* Partner widgets use the same shell as every other public section. Direct
   widgets receive normal site gutters; widgets already inside .container do
   not add a second set of gutters. */
body.tnw-site .partner-widget{
  width:min(var(--tnw-shell),calc(100% - (2 * var(--tnw-gutter))));
  max-width:var(--tnw-shell);
  margin:var(--tnw-section-tight) auto;
  box-sizing:border-box;
}
body.tnw-site .container>.partner-widget,
body.tnw-site .partner-live-section .partner-widget{
  width:100%;
  max-width:100%;
  margin:0;
}
body.tnw-site .partner-widget__embed{
  width:100%;
  min-width:0;
  max-width:100%;
  min-height:0;
  overflow:visible;
}
body.tnw-site .partner-widget[data-widget-loading="true"] .partner-widget__embed{min-height:220px}
body.tnw-site .partner-widget__embed iframe{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  border:0!important;
}
body.tnw-site .partner-widget__fallback[data-widget-fallback]{display:none}
body.tnw-site .partner-widget[data-widget-state="unavailable"] .partner-widget__embed{display:none}
body.tnw-site .partner-widget[data-widget-state="unavailable"] .partner-widget__fallback[data-widget-fallback]{display:flex}

/* Travelpayouts and marketplace cards own their inner padding. The shell must
   not inset the card again or break edge-to-edge media. */
body.tnw-site .marketplace-card{padding:0}
body.tnw-site .marketplace-card>.marketplace-card__body{padding:1.1rem}
body.tnw-site .marketplace-search{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
  align-items:end;
  width:100%;
  max-width:760px;
}
body.tnw-site .marketplace-search input{width:100%;min-width:0}
@media (max-width:700px){body.tnw-site .marketplace-search{grid-template-columns:1fr}}

/* Do not clip an entire provider widget just because it carries a tracking
   attribute; the embed itself controls its rendering boundary. */
body.tnw-site [data-travelpayouts-widget]{max-width:100%;min-width:0;overflow:visible}

/* On phones, topic shortcuts wrap instead of creating an extra horizontal UI
   band that visually competes with page scrolling. */
@media (max-width:700px){
  body.tnw-site .topic-jump__inner,
  body.tnw-site .quick-nav{flex-wrap:wrap;overflow:visible}
  body.tnw-site .topic-jump__inner a,
  body.tnw-site .quick-nav a{white-space:normal}
}

/* The embedded Travelpayouts section already contains a standard .container;
   remove the legacy .section horizontal padding/max-width so it does not
   create a second, narrower content shell. */
body.tnw-site .partner-live-section{
  width:100%;
  max-width:none;
  margin-inline:0;
  padding-inline:0;
}

/* ========================================================================== 
   Production homepage/search ownership
   The homepage hero and search module have one final owner here. These rules
   intentionally outrank earlier broad component declarations in this consolidated bundle.
   ========================================================================== */
body.tnw-site.section-home .hero{
  width:100%;
  max-width:none;
  margin:0;
  padding:clamp(56px,6.5vw,88px) 0;
  border-radius:0;
  overflow:hidden;
  background:linear-gradient(135deg,#16365f 0%,#24568a 52%,#1c6d72 100%);
}
body.tnw-site.section-home .hero-inner{
  width:min(calc(100% - (2 * var(--tnw-gutter))),var(--tnw-shell));
  max-width:var(--tnw-shell);
  margin-inline:auto;
  padding:0;
  text-align:center;
}
body.tnw-site.section-home .hero-headline{
  max-width:900px;
  margin:0 auto 18px;
  color:#fff!important;
  font-size:clamp(2.35rem,5.2vw,4.5rem);
  line-height:1.05;
  text-shadow:0 2px 12px rgba(0,0,0,.28);
}
body.tnw-site.section-home .hero-subheadline{
  max-width:760px;
  margin:0 auto clamp(28px,4vw,42px);
  color:rgba(255,255,255,.96)!important;
  font-size:clamp(1.02rem,1.5vw,1.2rem);
  line-height:1.62;
  text-shadow:none;
}
body.tnw-site.section-home .hero-search{
  width:min(100%,920px);
  max-width:920px;
  margin:0 auto 26px;
  padding:clamp(18px,2.4vw,28px);
  border:1px solid rgba(255,255,255,.45);
  border-radius:18px;
  background:rgba(255,255,255,.98);
  box-shadow:0 20px 46px rgba(4,25,45,.24);
  backdrop-filter:blur(14px);
}
body.tnw-site.section-home .hero-search form{display:grid;gap:14px}
body.tnw-site.section-home .hero-search .search-fields{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
body.tnw-site.section-home .hero-search .form-group{min-width:0;gap:0}
body.tnw-site.section-home .hero-search :where(input[type="text"],input[type="date"],.airport-input){
  width:100%;
  min-width:0;
  min-height:50px;
  padding:11px 14px;
  border:1px solid #c6d3dc!important;
  border-radius:10px;
  background:#fff!important;
  color:#172b3d;
  box-shadow:none;
}
body.tnw-site.section-home .hero-search :where(input[type="text"],input[type="date"],.airport-input):hover{border-color:#91a9b8!important}
body.tnw-site.section-home .hero-search :where(input[type="text"],input[type="date"],.airport-input):focus{border-color:#0c658f!important;box-shadow:0 0 0 3px rgba(12,101,143,.14)!important}
body.tnw-site.section-home .hero-search input.error{border-color:#c9282d!important;background:#fff8f8!important}
body.tnw-site.section-home .hero-search input.valid{border-color:#238653!important;background:#f7fff9!important}
body.tnw-site.section-home .search-buttons{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin:0;
}
body.tnw-site.section-home .search-buttons button{
  width:100%;
  min-width:0;
  min-height:50px;
  margin:0;
  padding:11px 16px;
  border-radius:10px;
  font-size:.98rem;
  font-weight:800;
  box-shadow:none;
}
body.tnw-site.section-home .search-buttons .btn-primary{
  background:#f1b928!important;
  border:1px solid #d89d08!important;
  color:#102b42!important;
}
body.tnw-site.section-home .search-buttons .btn-primary:hover:not(:disabled){background:#ffc83d!important;border-color:#e1a616!important;color:#102b42!important}
body.tnw-site.section-home .search-buttons .btn-secondary{
  background:#fff!important;
  border:1px solid #7ea3b8!important;
  color:#0b4665!important;
}
body.tnw-site.section-home .search-buttons .btn-secondary:hover:not(:disabled){background:#eef7fb!important;border-color:#0c658f!important;color:#073c56!important}
body.tnw-site.section-home .hero-search .btn-loading[hidden]{display:none!important}
body.tnw-site.section-home .hero-search .btn-text[hidden]{display:none!important}
body.tnw-site.section-home .hero-ctas{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 24px;
}
body.tnw-site.section-home .hero-ctas :where(.btn-primary,.btn-secondary){
  min-width:190px;
  min-height:48px;
  margin:0;
  padding:11px 18px;
  border-radius:10px;
  font-weight:800;
}
body.tnw-site.section-home .hero-ctas .btn-primary{
  background:#fff!important;
  border:1px solid rgba(255,255,255,.94)!important;
  color:#123a58!important;
  box-shadow:0 8px 22px rgba(4,25,45,.18);
}
body.tnw-site.section-home .hero-ctas .btn-primary:hover{background:#f4f9fb!important;color:#0b2f49!important}
body.tnw-site.section-home .hero-ctas .btn-secondary{
  background:rgba(7,32,53,.22)!important;
  border:1px solid rgba(255,255,255,.72)!important;
  color:#fff!important;
  box-shadow:none;
}
body.tnw-site.section-home .hero-ctas .btn-secondary:hover{background:rgba(7,32,53,.38)!important;border-color:#fff!important;color:#fff!important}
body.tnw-site.section-home .trust-badges{gap:10px 12px}
body.tnw-site.section-home .trust-badges .badge{
  min-height:38px;
  padding:7px 13px;
  background:rgba(255,255,255,.96);
  border-color:rgba(255,255,255,.78);
  color:#173f5d;
  box-shadow:0 5px 15px rgba(4,25,45,.13);
}
body.tnw-site.section-home .search-results{
  width:100%;
  margin-top:14px;
  padding:16px;
  border:1px solid var(--tnw-line);
  border-radius:12px;
  background:#f7fafc;
  color:var(--tnw-text);
  text-align:left;
}
body.tnw-site.section-home .search-results:empty{display:none!important}
@media (max-width:900px){
  body.tnw-site.section-home .hero-search .search-fields{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:620px){
  body.tnw-site.section-home .hero{padding:44px 0}
  body.tnw-site.section-home .hero-search{padding:16px;border-radius:14px}
  body.tnw-site.section-home .hero-search .search-fields,
  body.tnw-site.section-home .search-buttons{grid-template-columns:1fr}
  body.tnw-site.section-home .hero-ctas{display:grid;grid-template-columns:1fr;width:100%;max-width:420px;margin-inline:auto;margin-bottom:22px}
  body.tnw-site.section-home .hero-ctas :where(.btn-primary,.btn-secondary){width:100%;min-width:0}
  body.tnw-site.section-home .trust-badges{display:grid;grid-template-columns:1fr;justify-items:stretch;width:100%;max-width:420px;margin-inline:auto}
  body.tnw-site.section-home .trust-badges .badge{justify-content:center;white-space:normal;text-align:center}
}



/* ===== PLATFORM EXPERIENCE ===== */
/* Travel Network World — Public Platform Experience foundation
   Loaded last. This is the authoritative alignment/interaction layer. */
:root{
  --px-shell:1200px;--px-reading:760px;--px-gutter:clamp(16px,3vw,34px);
  --px-ink:#162b3d;--px-navy:#071c31;--px-navy-2:#0b2e4c;--px-blue:#0b6f9f;--px-blue-2:#1185ba;
  --px-sky:#eef7fb;--px-soft:#f5f7f9;--px-line:#dbe4ea;--px-muted:#65798a;--px-gold:#f3bd36;--px-red:#bd3036;
  --px-radius-sm:12px;--px-radius:18px;--px-radius-lg:26px;--px-shadow:0 16px 42px rgba(7,28,49,.09);--px-shadow-soft:0 7px 22px rgba(7,28,49,.06);
}
body.tnw-site{background:#fff;color:var(--px-ink);font-size:16px;line-height:1.62}
body.tnw-site :where(.container,.site-container,.content-container,.page-container,.blog-shell){width:min(calc(100% - (2 * var(--px-gutter))),var(--px-shell))}
body.tnw-site :where(h1,h2,h3,h4){color:var(--px-navy);letter-spacing:-.03em}
body.tnw-site h1{font-size:clamp(2.2rem,4.6vw,4rem)}body.tnw-site h2{font-size:clamp(1.65rem,2.9vw,2.55rem)}body.tnw-site h3{font-size:clamp(1.08rem,1.7vw,1.35rem)}
body.tnw-site :where(.section-intro,.route-heading p,.content-section>.container>p,.page-hero .lead,.service-hero p){max-width:72ch;color:var(--px-muted)}
body.tnw-site :where(.section-title,.section-heading,.route-heading){margin-bottom:24px}
body.tnw-site :where(.section,.content-section,.route-section,.page-section,.company-section,.widget-section){padding-block:clamp(44px,5.4vw,72px)}
body.tnw-site :where(.section-alt,.route-section.alt,.content-section.section-alt){border-radius:0;background:#f6f8fa}
body.tnw-site :where(a,button,input,select,textarea,summary):focus-visible{outline:3px solid rgba(243,189,54,.65)!important;outline-offset:3px}

/* Header refinement */

body.tnw-site .logo img{width:44px;height:44px;flex-basis:44px}.logo-copy strong{letter-spacing:-.01em}

body.tnw-site .header-cta{min-height:42px;padding:9px 14px!important}



/* Consistent internal page hero */
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero){position:relative;overflow:hidden;padding-block:clamp(48px,6vw,78px)!important;background:linear-gradient(128deg,#071b30 0%,#0a4164 62%,#0a6c86 100%)!important}
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero)::after{content:"";position:absolute;right:-10%;top:-60%;width:46%;aspect-ratio:1;border-radius:50%;background:radial-gradient(circle,rgba(255,255,255,.12),rgba(255,255,255,0) 68%);pointer-events:none}
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero)>.container{position:relative;z-index:1}
body.tnw-site :where(.page-hero,.service-hero) h1{max-width:16ch;margin-bottom:14px}.service-hero p{color:#d9eaf4!important}
body.tnw-site .breadcrumb{min-height:50px;padding-block:12px!important;font-size:.83rem!important}

/* Card and grid normalization across legacy/internal pages */
body.tnw-site :where(.cards-grid,.category-grid,.feature-grid,.service-grid,.destination-grid,.content-card-grid,.intent-grid,.route-grid,.marketplace-grid,.hotel-country-grid,.country-service-grid,.editorial-card-grid,.testimonials-grid,.home-blog-grid,.stats-grid){display:grid;gap:18px!important;align-items:stretch}
body.tnw-site :where(.cards-grid,.category-grid,.feature-grid,.service-grid,.destination-grid,.content-card-grid,.intent-grid,.route-grid,.marketplace-grid,.hotel-country-grid,.country-service-grid,.editorial-card-grid,.testimonials-grid,.home-blog-grid){grid-template-columns:repeat(3,minmax(0,1fr))}
body.tnw-site .stats-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
body.tnw-site :where(.card,.category-card,.feature-card,.service-card,.destination-card,.content-card,.intent-card,.route-card,.marketplace-card,.hotel-card,.country-service-card,.testimonial-card,.home-blog-card,.stat-card,.faq-item){min-width:0;height:100%;border:1px solid var(--px-line)!important;border-radius:var(--px-radius)!important;background:#fff!important;box-shadow:var(--px-shadow-soft)!important;overflow:hidden}
body.tnw-site :where(.card,.content-card,.intent-card,.route-card,.marketplace-card,.testimonial-card,.stat-card,.faq-item){padding:clamp(18px,2.4vw,24px)!important}
body.tnw-site :where(.category-card,.feature-card,.service-card,.destination-card,.content-card,.intent-card,.route-card,.marketplace-card,.home-blog-card){display:flex;flex-direction:column}
body.tnw-site :where(.category-content,.home-blog-content){display:flex!important;flex:1;flex-direction:column;min-width:0;padding:22px!important}
body.tnw-site :where(.category-card,.feature-card,.service-card,.destination-card,.content-card,.intent-card,.route-card,.marketplace-card,.home-blog-card) :where(.card-actions,.button-row,.route-actions){margin-top:auto;padding-top:14px}
body.tnw-site :where(.category-card,.feature-card,.service-card,.destination-card,.content-card,.intent-card,.route-card,.marketplace-card,.home-blog-card):hover{border-color:#b7d1dc!important;box-shadow:0 16px 34px rgba(7,28,49,.09)!important;transform:translateY(-2px)}
body.tnw-site :where(.category-card,.feature-card,.service-card,.destination-card,.content-card,.intent-card,.route-card,.marketplace-card,.home-blog-card){transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
body.tnw-site :where(.card-icon,.intent-card>i,.feature-icon){display:grid;place-items:center;width:44px;height:44px;border-radius:13px;background:var(--px-sky);color:var(--px-blue)!important;font-size:1.12rem}
body.tnw-site :where(.route-list,.faq-list){display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
body.tnw-site .route-list>article{height:100%;padding:20px;border:1px solid var(--px-line);border-radius:var(--px-radius);background:#fff;box-shadow:var(--px-shadow-soft)}
body.tnw-site .faq-section details{margin:10px 0;border:1px solid var(--px-line);border-radius:14px;background:#fff;overflow:hidden}.faq-section summary{padding:16px 18px;color:var(--px-navy);font-weight:800;cursor:pointer}.faq-section details p{padding:0 18px 18px;margin:0;color:var(--px-muted)}
body.tnw-site :where(.btn-primary,.btn-secondary,.route-actions a,.button-row a){min-height:44px;border-radius:11px!important;font-weight:800!important}

/* Search forms on internal service pages */
body.tnw-site .service-hero :where(.travel-search-form,.search-form,.hero-search,.hotel-search-shell){max-width:none;margin-top:26px;padding:16px;border:1px solid rgba(255,255,255,.22);border-radius:18px;background:rgba(255,255,255,.98);box-shadow:0 18px 42px rgba(0,0,0,.16);color:var(--px-ink)}
body.tnw-site .service-hero :where(.travel-search-form,.search-form,.hero-search,.hotel-search-shell) :where(label,h2,h3,p){color:var(--px-ink)!important}
body.tnw-site :where(input,select,textarea){font:inherit}
body.tnw-site :where(.travel-search-form,.search-form,.hero-search,.hotel-search-shell) :where(input,select){min-height:48px;border:1px solid #cbd8e1;border-radius:11px;background:#fff}

/* Homepage */
body.tnw-site.section-home .site-main{background:#fff}
body.tnw-site.section-home .hero{max-width:none!important;margin:0!important;padding:clamp(48px,6vw,78px) 0 92px!important;border-radius:0!important;background:linear-gradient(120deg,#06192c 0%,#083b5d 58%,#08738a 100%)!important}
body.tnw-site.section-home .hero::before{background:radial-gradient(circle at 12% 20%,rgba(34,155,198,.28),transparent 32%),radial-gradient(circle at 88% 70%,rgba(243,189,54,.12),transparent 30%)}
body.tnw-site.section-home .hero-inner{text-align:left!important;width:min(calc(100% - (2 * var(--px-gutter))),var(--px-shell))!important;max-width:none!important}
body.tnw-site.section-home .hero-copy{max-width:780px;margin:0 auto 30px;text-align:center}
body.tnw-site.section-home .hero-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:12px;padding:7px 11px;border:1px solid rgba(255,255,255,.18);border-radius:999px;background:rgba(255,255,255,.09);color:#dceefa;font-size:.78rem;font-weight:850;letter-spacing:.06em;text-transform:uppercase}
body.tnw-site.section-home .hero-headline{max-width:18ch;margin:0 auto 14px!important;font-size:clamp(2.35rem,5.2vw,4.65rem)!important;line-height:1.03!important;text-align:center;text-shadow:none!important}
body.tnw-site.section-home .hero-subheadline{max-width:70ch;margin:0 auto!important;color:#d7e7f0!important;text-align:center;text-shadow:none!important;font-size:clamp(1rem,1.5vw,1.16rem)!important}
body.tnw-site.section-home .hero-trust-row{display:flex;justify-content:center;flex-wrap:wrap;gap:10px;margin-top:20px}.hero-trust-row span{display:inline-flex;align-items:center;gap:7px;color:#e8f4f8;font-size:.84rem}.hero-trust-row i{color:var(--px-gold)}

/* Homepage booking hub */




.tnw-location-field{position:relative}

.home-service-strip{position:relative;z-index:12;width:min(calc(100% - (2 * var(--px-gutter))),var(--px-shell));margin:-50px auto 0;display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:10px}.home-service-strip a{display:grid;place-items:center;gap:7px;min-height:94px;padding:12px;border:1px solid var(--px-line);border-radius:15px;background:#fff;color:#2c4559!important;font-size:.78rem;font-weight:800;text-align:center;text-decoration:none!important;box-shadow:var(--px-shadow-soft)}.home-service-strip a:hover{border-color:#afd1df;background:#f8fcfd;transform:translateY(-2px)}.home-service-strip i{color:var(--px-blue);font-size:1.2rem}
.home-section-heading{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:24px}.home-section-heading>div{max-width:760px}.home-section-heading h2{margin-bottom:8px}.home-section-heading p{margin:0;color:var(--px-muted)}.home-section-heading>a{flex:0 0 auto;font-weight:800}
.home-destination-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.home-destination-card{position:relative;display:flex;min-height:190px;align-items:flex-end;padding:18px;border-radius:20px;overflow:hidden;color:#fff!important;text-decoration:none!important;background:linear-gradient(145deg,#0a3554,#0a7187);box-shadow:var(--px-shadow-soft)}.home-destination-card::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 80% 10%,rgba(255,255,255,.18),transparent 34%),linear-gradient(to top,rgba(4,21,34,.8),rgba(4,21,34,.08))}.home-destination-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.62;transform:scale(1.02);transition:transform .25s ease}.home-destination-card:hover img{transform:scale(1.06)}.home-destination-card div{position:relative;z-index:1}.home-destination-card strong{display:block;color:#fff;font-size:1.17rem}.home-destination-card span{color:#dcecf4;font-size:.8rem}.home-destination-card:hover{transform:translateY(-3px);box-shadow:0 18px 35px rgba(7,28,49,.15)}
.home-value-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.home-value-card{padding:22px;border:1px solid var(--px-line);border-radius:18px;background:#fff}.home-value-card i{display:grid;place-items:center;width:42px;height:42px;margin-bottom:14px;border-radius:12px;background:var(--px-sky);color:var(--px-blue)}.home-value-card h3{margin-bottom:7px}.home-value-card p{margin:0;color:var(--px-muted)}

/* AI planner + result modal */
.tnw-ai-section{background:linear-gradient(180deg,#f5f8fa,#fff)}
.tnw-ai-inquiry{--ai-navy:#071c31;--ai-blue:#0b6f9f;--ai-gold:#f3bd36;--ai-muted:#66798a;color:var(--ai-navy)}
.tnw-ai-shell{display:grid;grid-template-columns:minmax(0,.86fr) minmax(390px,1.14fr);gap:28px;padding:clamp(26px,4vw,40px);border-radius:28px;background:linear-gradient(135deg,#071c31,#0a456a 66%,#0a7187);box-shadow:0 24px 56px rgba(7,28,49,.16);color:#fff}.tnw-ai-copy h2{max-width:12ch;margin-bottom:14px;color:#fff;font-size:clamp(2rem,3.6vw,3.4rem);line-height:1.03}.tnw-ai-copy>p{max-width:58ch;color:#d8eaf2}.tnw-ai-kicker{display:inline-flex;margin-bottom:10px;color:var(--ai-gold);font-size:.76rem;font-weight:900;letter-spacing:.09em;text-transform:uppercase}.tnw-ai-feature-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:9px;margin-top:22px}.tnw-ai-feature-grid span{display:grid;grid-template-columns:32px 1fr;column-gap:9px;align-items:center;padding:11px;border:1px solid rgba(255,255,255,.13);border-radius:13px;background:rgba(255,255,255,.07)}.tnw-ai-feature-grid i{grid-row:1/3;display:grid;place-items:center;width:32px;height:32px;border-radius:10px;background:rgba(243,189,54,.14);color:var(--ai-gold)}.tnw-ai-feature-grid b{color:#fff;font-size:.82rem}.tnw-ai-feature-grid small{color:#bcd5e1;font-size:.69rem}.tnw-ai-card{padding:22px;border:1px solid rgba(255,255,255,.18);border-radius:20px;background:rgba(255,255,255,.1);backdrop-filter:blur(8px)}.tnw-ai-form{display:grid;gap:13px}.tnw-ai-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:11px}.tnw-ai-field{display:grid;gap:6px}.tnw-ai-field label{color:#fff;font-size:.76rem;font-weight:850}.tnw-ai-field :where(input,select,textarea){width:100%;min-height:47px;padding:10px 12px;border:1px solid rgba(255,255,255,.4);border-radius:11px;background:#fff;color:#1b3042;font:inherit}.tnw-ai-field textarea{min-height:112px;resize:vertical}.tnw-ai-help,.tnw-ai-consent,.tnw-ai-account-note{margin:0;color:#cce0ea;font-size:.72rem}.tnw-ai-consent{display:flex;gap:8px;align-items:flex-start}.tnw-ai-account-note a{color:#fff!important;font-weight:800}.tnw-ai-submit{display:inline-flex;align-items:center;justify-content:center;min-height:49px;border:0;border-radius:11px;background:var(--ai-gold);color:var(--ai-navy);font:inherit;font-weight:900;cursor:pointer}.tnw-ai-submit:disabled{opacity:.68;cursor:wait}.tnw-ai-submit-loading{display:inline-flex;align-items:center;gap:8px}.tnw-ai-status{min-height:18px;margin:0;color:#fff;font-size:.76rem}.tnw-ai-status[data-state="error"]{padding:9px 10px;border-radius:9px;background:#feecec;color:#8d2328}.tnw-ai-status[data-state="success"]{color:#d9fbe7}
body.tnw-ai-modal-open{overflow:hidden}.tnw-ai-modal{position:fixed;inset:0;z-index:30000;display:grid;place-items:center;padding:20px}.tnw-ai-modal[hidden]{display:none!important}.tnw-ai-modal-backdrop{position:absolute;inset:0;background:rgba(3,14,24,.72);backdrop-filter:blur(5px)}.tnw-ai-dialog{position:relative;z-index:1;display:flex;flex-direction:column;width:min(920px,100%);max-height:min(88vh,860px);border:1px solid rgba(255,255,255,.2);border-radius:22px;background:#fff;box-shadow:0 30px 90px rgba(0,0,0,.38);overflow:hidden;outline:0}.tnw-ai-dialog-header{display:flex;justify-content:space-between;gap:20px;padding:22px 24px;border-bottom:1px solid var(--px-line);background:linear-gradient(135deg,#071c31,#0b5177);color:#fff}.tnw-ai-dialog-header h3{margin:4px 0 3px;color:#fff;font-size:clamp(1.45rem,2.5vw,2rem)}.tnw-ai-dialog-header p{margin:0;color:#cde1eb;font-size:.83rem}.tnw-ai-result-kicker{display:inline-flex;align-items:center;gap:7px;color:#f5c84e;font-size:.72rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}.tnw-ai-modal-close{flex:0 0 40px;width:40px;height:40px;border:1px solid rgba(255,255,255,.22);border-radius:12px;background:rgba(255,255,255,.08);color:#fff;font-size:1rem;cursor:pointer}.tnw-ai-dialog-body{padding:clamp(20px,3vw,30px);overflow:auto}.tnw-ai-answer{color:#24394b;line-height:1.72}.tnw-ai-answer h4{margin:24px 0 8px;color:#0a3655;font-size:1.08rem}.tnw-ai-answer h4:first-child{margin-top:0}.tnw-ai-answer p{margin:0 0 12px}.tnw-ai-answer ul{margin:8px 0 18px;padding-left:22px}.tnw-ai-answer li{margin:6px 0}.tnw-ai-result-note{display:grid;grid-template-columns:30px 1fr;gap:10px;padding:13px 14px;margin-top:24px;border-radius:13px;background:#f3f7f9;color:#617687}.tnw-ai-result-note i{color:#0b6f9f;margin-top:2px}.tnw-ai-result-note p{margin:0;font-size:.8rem}.tnw-ai-dialog-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap;padding:14px 18px;border-top:1px solid var(--px-line);background:#f9fbfc}.tnw-ai-modal-actions{display:flex;flex-wrap:wrap;gap:8px}.tnw-ai-modal-button{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-height:40px;padding:8px 11px;border:1px solid #cad8e1;border-radius:10px;background:#fff;color:#224259!important;font:inherit;font-size:.77rem;font-weight:800;text-decoration:none!important;cursor:pointer}.tnw-ai-modal-button:hover{background:#eef7fb;border-color:#a8cbd9}.tnw-ai-save-button{border-color:#0b6f9f;background:#0b6f9f;color:#fff!important}.tnw-ai-modal-status{color:#537083;font-size:.76rem}.tnw-ai-modal-status a{font-weight:850}

/* Search results */
body.tnw-site .search-results-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:12px}.search-card{display:grid;gap:8px;padding:14px;border:1px solid var(--px-line);border-radius:12px;background:#fff}.search-card h4{margin:0}.search-card p{margin:0;color:var(--px-muted);font-size:.85rem}.search-result-cta{justify-self:start;margin-top:3px}

/* Utility content structures that appear across routes */
body.tnw-site :where(.answer-summary,.answer-panel){border:0!important;background:#eef7fb!important}.answer-summary__inner{display:grid;grid-template-columns:minmax(230px,.7fr) minmax(0,1.3fr);gap:26px;align-items:center;padding-block:28px}.answer-summary__inner h2{margin-bottom:0;font-size:clamp(1.35rem,2vw,1.9rem)}.answer-summary__inner>p{margin:0;color:#526c7e}.answer-summary__label{margin:0 0 5px!important;color:#0b6f9f!important;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.topic-jump{position:sticky;top:74px;z-index:700;border-bottom:1px solid var(--px-line);background:rgba(255,255,255,.96);backdrop-filter:blur(10px)}.topic-jump__inner{display:flex;align-items:center;gap:16px;min-height:48px;overflow-x:auto;white-space:nowrap;font-size:.81rem}.topic-jump__inner a{font-weight:750;text-decoration:none}.planning-cta .container,.route-cta{padding:clamp(24px,4vw,40px)!important;border-radius:22px!important;background:linear-gradient(135deg,#071c31,#0a5779)!important;color:#fff!important}.planning-cta :where(h2,p),.route-cta :where(h2,p){color:#fff!important}

/* Footer tightening */
.footer-shell{gap:30px!important}.footer-nav{gap:20px!important}.footer-column a{line-height:1.35}

@media (max-width:1120px){body.tnw-site .logo-copy small{display:none}.home-service-strip{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media (max-width:1024px){body.tnw-site .header-cta{display:none}.home-destination-grid{grid-template-columns:repeat(2,minmax(0,1fr))}body.tnw-site :where(.cards-grid,.category-grid,.feature-grid,.service-grid,.destination-grid,.content-card-grid,.intent-grid,.route-grid,.marketplace-grid,.hotel-country-grid,.country-service-grid,.editorial-card-grid,.testimonials-grid,.home-blog-grid){grid-template-columns:repeat(2,minmax(0,1fr))}body.tnw-site .stats-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.tnw-ai-shell{grid-template-columns:1fr}.tnw-ai-copy h2{max-width:18ch}}
@media (max-width:760px){body.tnw-site :where(.section,.content-section,.route-section,.page-section,.company-section,.widget-section){padding-block:40px}.home-service-strip{margin-top:-44px}.home-value-grid{grid-template-columns:1fr}.tnw-ai-row,.tnw-ai-feature-grid{grid-template-columns:1fr}.answer-summary__inner{grid-template-columns:1fr;gap:8px}.topic-jump{top:74px}.tnw-ai-dialog{max-height:92vh;border-radius:17px}.tnw-ai-dialog-footer{align-items:stretch;flex-direction:column}.tnw-ai-modal-actions{width:100%}.tnw-ai-modal-button{flex:1}.search-results-grid{grid-template-columns:1fr!important}}
@media (max-width:560px){body.tnw-site.section-home .hero{padding-top:38px!important;padding-bottom:82px!important}.home-service-strip{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.home-service-strip a{min-height:86px}.home-destination-grid{grid-template-columns:1fr}body.tnw-site :where(.cards-grid,.category-grid,.feature-grid,.service-grid,.destination-grid,.content-card-grid,.intent-grid,.route-grid,.marketplace-grid,.hotel-country-grid,.country-service-grid,.editorial-card-grid,.testimonials-grid,.home-blog-grid,.stats-grid,.route-list,.faq-list){grid-template-columns:1fr!important}.home-section-heading{align-items:flex-start;flex-direction:column;gap:8px}.tnw-ai-shell{padding:20px;border-radius:20px}.tnw-ai-card{padding:16px}.tnw-ai-modal{padding:10px}.tnw-ai-dialog-header{padding:17px}.tnw-ai-dialog-body{padding:18px}.tnw-ai-modal-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (prefers-reduced-motion:reduce){body.tnw-site :where(.category-card,.feature-card,.service-card,.destination-card,.content-card,.intent-card,.route-card,.marketplace-card,.home-blog-card,.home-destination-card){transition:none!important}.tnw-ai-modal-backdrop{backdrop-filter:none}}

/* Extended alignment ownership for older route/company/support templates */
body.tnw-site :where(.company-card-grid,.company-grid,.country-info-grid,.country-practical-grid,.destination-directory-grid,.region-country-grid,.support-route-grid,.support-contact-grid,.contact-grid,.editorial-grid,.widget-grid,.hotels-grid,.trust-strip__grid,.tn-grid){display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;align-items:stretch}
body.tnw-site :where(.company-card,.company-panel,.support-route-card,.support-contact-card,.legal-card,.editorial-card,.destination-directory-card,.region-country-card,.country-decision-card,.tn-card,.contact-form-panel,.contact-info-panel,.sidebar-card){min-width:0;height:100%;border:1px solid var(--px-line)!important;border-radius:var(--px-radius)!important;background:#fff!important;box-shadow:var(--px-shadow-soft)!important}
body.tnw-site :where(.company-card,.company-panel,.support-route-card,.support-contact-card,.legal-card,.editorial-card,.destination-directory-card,.region-country-card,.country-decision-card,.tn-card,.contact-form-panel,.contact-info-panel,.sidebar-card){padding:clamp(18px,2.3vw,24px)}
body.tnw-site :where(.company-card-grid,.company-grid,.country-info-grid,.country-practical-grid,.destination-directory-grid,.region-country-grid,.support-route-grid,.support-contact-grid,.contact-grid,.editorial-grid,.widget-grid,.hotels-grid,.trust-strip__grid,.tn-grid)>*{min-width:0}
body.tnw-site :where(.company-panel,.company-card,.support-route-card,.legal-card,.editorial-card,.destination-directory-card,.region-country-card,.tn-card){display:flex;flex-direction:column}
body.tnw-site :where(.company-panel,.company-card,.support-route-card,.legal-card,.editorial-card,.destination-directory-card,.region-country-card,.tn-card) :where(.button-row,.card-actions,.company-actions,.destination-directory-card__link){margin-top:auto}
@media (max-width:1024px){body.tnw-site :where(.company-card-grid,.company-grid,.country-info-grid,.country-practical-grid,.destination-directory-grid,.region-country-grid,.support-route-grid,.support-contact-grid,.contact-grid,.editorial-grid,.widget-grid,.hotels-grid,.trust-strip__grid,.tn-grid){grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:620px){body.tnw-site :where(.company-card-grid,.company-grid,.country-info-grid,.country-practical-grid,.destination-directory-grid,.region-country-grid,.support-route-grid,.support-contact-grid,.contact-grid,.editorial-grid,.widget-grid,.hotels-grid,.trust-strip__grid,.tn-grid){grid-template-columns:1fr}}





/* ===== COMPONENT SYSTEM ===== */
/* Travel Network World — full platform release layer. */
:root{
  --tnw-deep:#0b1f3a;
  --tnw-blue:#1463ff;
  --tnw-sky:#5ac8fa;
  --tnw-green:#16a34a;
  --tnw-cloud:#f7f9fc;
  --tnw-sand:#f4f1ea;
  --tnw-ink:#12212f;
  --tnw-muted:#5c6b7a;
  --tnw-line:#dce4ee;
  --tnw-white:#fff;
  --tnw-radius:16px;
  --tnw-shadow:0 18px 55px rgba(11,31,58,.11);
}
html{scroll-behavior:smooth}
body.tnw-site{color:var(--tnw-ink);background:#fff}
a{color:inherit}











.tnw-destination-menu{min-width:min(860px,calc(100vw - 40px))}

/* Global page system */
.tnw-page-hero{position:relative;overflow:hidden;background:linear-gradient(135deg,var(--tnw-deep),#103c77);color:#fff;padding:72px 0 60px}
.tnw-page-hero:after{content:"";position:absolute;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(90,200,250,.28),rgba(20,99,255,0));right:-120px;top:-170px;pointer-events:none}
.tnw-page-hero .container{position:relative;z-index:1}
.tnw-eyebrow{display:inline-flex;gap:8px;align-items:center;font-size:.78rem;text-transform:uppercase;letter-spacing:.14em;font-weight:800;color:#b9ddff;margin-bottom:14px}
.tnw-page-hero h1{font-size:clamp(2.25rem,5vw,4.3rem);line-height:1.02;max-width:900px;margin:0 0 18px}
.tnw-page-hero p{font-size:clamp(1.05rem,2vw,1.25rem);line-height:1.7;max-width:800px;color:#e9f2ff;margin:0}
.tnw-hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.tnw-hero-actions .btn-primary,.tnw-hero-actions .btn-secondary{min-height:48px}
.tnw-page-hero .btn-secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}
.tnw-page-hero .btn-secondary:hover{background:rgba(255,255,255,.1)}
.tnw-section{padding:64px 0}
.tnw-section--alt{background:var(--tnw-cloud)}
.tnw-section-heading{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:28px}
.tnw-section-heading h2{font-size:clamp(1.7rem,3vw,2.5rem);margin:0 0 8px;color:var(--tnw-deep)}
.tnw-section-heading p{max-width:760px;margin:0;color:var(--tnw-muted);line-height:1.7}
.tnw-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.tnw-grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.tnw-grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}
.tnw-card{border:1px solid var(--tnw-line);background:#fff;border-radius:var(--tnw-radius);padding:24px;box-shadow:0 8px 30px rgba(11,31,58,.05);display:flex;flex-direction:column;gap:10px;min-height:100%}
.tnw-card:hover{border-color:#b9c9dd;box-shadow:var(--tnw-shadow)}
.tnw-card__icon{width:48px;height:48px;border-radius:14px;display:grid;place-items:center;background:#eef4ff;color:var(--tnw-blue);font-size:1.2rem}
.tnw-card h3{margin:2px 0 0;font-size:1.18rem;color:var(--tnw-deep)}
.tnw-card p{margin:0;color:var(--tnw-muted);line-height:1.65}
.tnw-card a.tnw-card__link{margin-top:auto;padding-top:8px;color:var(--tnw-blue);font-weight:800;text-decoration:none}
.tnw-card a.tnw-card__link:hover{text-decoration:underline}
.tnw-status{display:inline-flex;width:max-content;align-items:center;gap:6px;padding:6px 10px;border-radius:999px;font-size:.77rem;font-weight:800;background:#ecfdf3;color:#167d5a}
.tnw-status--pending{background:#fff7ed;color:#9a5800}
.tnw-note{border-left:4px solid var(--tnw-blue);background:#eef4ff;padding:18px 20px;border-radius:0 12px 12px 0;color:#25394d;line-height:1.65}
.tnw-note strong{color:var(--tnw-deep)}
.tnw-disclosure{border:1px solid #c8d7ea;background:#f8fbff;border-radius:14px;padding:18px 20px;color:#42566c;font-size:.92rem;line-height:1.6}
.tnw-disclosure strong{color:var(--tnw-deep)}
.tnw-chip-list{display:flex;gap:8px;flex-wrap:wrap}
.tnw-chip{display:inline-flex;align-items:center;gap:7px;border:1px solid var(--tnw-line);border-radius:999px;padding:8px 12px;background:#fff;font-size:.88rem;text-decoration:none}
.tnw-chip:hover{border-color:var(--tnw-blue);color:var(--tnw-blue)}
.tnw-steps{counter-reset:step;display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.tnw-step{counter-increment:step;border-top:3px solid var(--tnw-blue);padding:18px 0 0}
.tnw-step:before{content:counter(step);display:grid;place-items:center;width:34px;height:34px;border-radius:50%;background:var(--tnw-blue);color:#fff;font-weight:800;margin-bottom:12px}
.tnw-step h3{margin:0 0 7px}.tnw-step p{color:var(--tnw-muted);margin:0;line-height:1.6}
.tnw-search-box{background:#fff;border:1px solid var(--tnw-line);border-radius:18px;padding:18px;box-shadow:var(--tnw-shadow);display:grid;grid-template-columns:1fr auto;gap:10px;max-width:820px}
.tnw-search-box input{min-height:50px;border:1px solid #b9c7d8;border-radius:12px;padding:0 15px;font:inherit;width:100%}
.tnw-search-box button{min-width:130px}
.tnw-search-results{display:grid;gap:12px;margin-top:22px}
.tnw-search-result{display:block;border:1px solid var(--tnw-line);border-radius:14px;padding:18px;text-decoration:none;background:#fff}
.tnw-search-result:hover{border-color:var(--tnw-blue)}
.tnw-search-result strong{display:block;color:var(--tnw-deep);margin-bottom:5px}.tnw-search-result span{color:var(--tnw-muted)}
.tnw-empty{padding:26px;border:1px dashed #b9c7d8;border-radius:14px;text-align:center;color:var(--tnw-muted)}

/* New homepage */


















.tnw-deal-strip{display:grid;grid-template-columns:1.15fr .85fr;gap:20px;align-items:stretch}
.tnw-deal-panel{border-radius:22px;padding:30px;background:linear-gradient(135deg,#0b1f3a,#153b6f);color:#fff;min-height:260px;display:flex;flex-direction:column;justify-content:center}
.tnw-deal-panel h2{font-size:2rem;margin:0 0 10px}.tnw-deal-panel p{color:#dceaff;line-height:1.65}.tnw-deal-panel .btn-primary{width:max-content;margin-top:10px}
.tnw-planner-panel{border:1px solid var(--tnw-line);border-radius:22px;padding:30px;background:#fff;display:flex;flex-direction:column;justify-content:center}

/* Footer */


/* Consent */


/* Account enhancements */



/* Admin release polish */
.admin-topbar-avatar{background:linear-gradient(135deg,var(--tnw-blue),var(--tnw-green));color:#fff}


@media (max-width:900px){
  
  .tnw-grid,.tnw-grid--2,.tnw-grid--4{grid-template-columns:1fr 1fr}.tnw-steps{grid-template-columns:1fr 1fr}.tnw-deal-strip{grid-template-columns:1fr}
  
}
@media (max-width:640px){
  .tnw-page-hero{padding:48px 0 42px}.tnw-section{padding:46px 0}
  .tnw-search-box{grid-template-columns:1fr}.tnw-search-box button{width:100%}.tnw-section-heading{align-items:flex-start;flex-direction:column}
  
  
}

@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}



/* ===== EXPERIENCE ENHANCEMENTS ===== */
/* Travel Network World — experience layer
   Production polish layer. Loaded after all legacy/release styles so it can
   normalize the visual system without forcing a destructive CSS rewrite. */

:root{
  --tnw-r3-navy:#081f36;
  --tnw-r3-navy-2:#0c3154;
  --tnw-r3-blue:#0f6f9f;
  --tnw-r3-blue-2:#1687b7;
  --tnw-r3-sky:#eaf7fc;
  --tnw-r3-red:#d33d3f;
  --tnw-r3-red-dark:#b92d31;
  --tnw-r3-gold:#f2bd3e;
  --tnw-r3-ink:#172b3c;
  --tnw-r3-text:#344b5f;
  --tnw-r3-muted:#667b8d;
  --tnw-r3-line:#d9e4eb;
  --tnw-r3-line-strong:#bfd0dc;
  --tnw-r3-soft:#f5f8fa;
  --tnw-r3-white:#fff;
  --tnw-r3-success:#147a52;
  --tnw-r3-danger:#b4232b;
  --tnw-r3-shell:1240px;
  --tnw-r3-reading:780px;
  --tnw-r3-gutter:clamp(16px,3vw,32px);
  --tnw-r3-radius-sm:10px;
  --tnw-r3-radius:16px;
  --tnw-r3-radius-lg:24px;
  --tnw-r3-shadow-xs:0 3px 12px rgba(8,31,54,.06);
  --tnw-r3-shadow-sm:0 9px 26px rgba(8,31,54,.08);
  --tnw-r3-shadow:0 20px 55px rgba(8,31,54,.13);
  --tnw-r3-shadow-lg:0 30px 80px rgba(4,24,42,.21);
  --tnw-r3-ease:cubic-bezier(.2,.7,.2,1);
}

html{scroll-padding-top:96px;background:#fff}
body.tnw-site{
  background:#fff;
  color:var(--tnw-r3-text);
  font-size:16px;
  line-height:1.65;
}
body.tnw-site :where(.container,.site-container,.content-container,.page-container,.blog-shell){
  width:min(calc(100% - (2 * var(--tnw-r3-gutter))),var(--tnw-r3-shell));
}
body.tnw-site main{overflow:clip}
body.tnw-site :where(h1,h2,h3,h4,h5,h6){color:var(--tnw-r3-navy);letter-spacing:-.025em}
body.tnw-site :where(p,li){text-wrap:pretty}
body.tnw-site :where(a,button,input,select,textarea,summary){-webkit-tap-highlight-color:transparent}
body.tnw-site :where(a,button,input,select,textarea,summary):focus-visible{
  outline:3px solid rgba(15,111,159,.34)!important;
  outline-offset:3px!important;
}
body.tnw-site :where(input,select,textarea){accent-color:var(--tnw-r3-blue)}
body.tnw-site ::selection{background:#d8eff8;color:var(--tnw-r3-navy)}

/* ---- Header / navigation ------------------------------------------------ */





















body.tnw-site.nav-open::before{
  content:"";position:fixed;inset:0;z-index:9990;background:rgba(4,20,35,.48);backdrop-filter:blur(2px);
}

/* ---- Global buttons and controls --------------------------------------- */
body.tnw-site :where(.btn-primary,.button-primary,.primary-button){
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:46px;padding:10px 18px;border:1px solid #075a84;border-radius:11px;
  background:linear-gradient(135deg,#0f78aa,#08658f);color:#fff!important;
  font-weight:820;text-decoration:none!important;box-shadow:0 8px 20px rgba(15,111,159,.18);
  transition:transform .18s var(--tnw-r3-ease),box-shadow .18s var(--tnw-r3-ease),background .18s var(--tnw-r3-ease);
}
body.tnw-site :where(.btn-primary,.button-primary,.primary-button):hover{
  transform:translateY(-1px);background:linear-gradient(135deg,#0d6d9b,#075b83);box-shadow:0 12px 24px rgba(15,111,159,.24);
}
body.tnw-site :where(.btn-secondary,.button-secondary,.secondary-button){
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  min-height:46px;padding:10px 18px;border:1px solid #b9ccd8;border-radius:11px;
  background:#fff;color:#163c57!important;font-weight:800;text-decoration:none!important;
  transition:background .18s var(--tnw-r3-ease),border-color .18s var(--tnw-r3-ease),transform .18s var(--tnw-r3-ease);
}
body.tnw-site :where(.btn-secondary,.button-secondary,.secondary-button):hover{background:#f2f8fb;border-color:#8fb8cc;transform:translateY(-1px)}
body.tnw-site button:disabled,body.tnw-site [aria-disabled="true"]{cursor:not-allowed;opacity:.62;transform:none!important}
body.tnw-site :where(input[type="text"],input[type="email"],input[type="password"],input[type="search"],input[type="tel"],input[type="url"],input[type="date"],input[type="number"],select,textarea){
  border-color:#c7d6df;background:#fff;color:var(--tnw-r3-ink);box-shadow:inset 0 1px 2px rgba(8,31,54,.025);
}
body.tnw-site :where(input,select,textarea):focus{border-color:#4b9fc2!important;box-shadow:0 0 0 4px rgba(15,111,159,.105)!important;outline:none!important}
body.tnw-site :where(input,textarea)::placeholder{color:#8ba0af;opacity:1}
body.tnw-site .error,body.tnw-site [aria-invalid="true"]{border-color:#d06569!important}

/* ---- Breadcrumbs / generic page rhythm -------------------------------- */
body.tnw-site .breadcrumb{
  min-height:48px;padding-block:12px;color:#718697;font-size:.84rem;
}
body.tnw-site .breadcrumb a{color:#38627d;text-decoration:none}
body.tnw-site .breadcrumb a:hover{text-decoration:underline}
body.tnw-site :where(.section,.content-section,.page-section,.company-section,.route-section,.widget-section){padding-block:clamp(48px,6vw,78px)}
body.tnw-site :where(.section-alt,.alternate-section,.section.alt,.company-section--soft){background:#f6f9fb}
body.tnw-site :where(.section,.content-section,.page-section,.route-section)>.container>h2:first-child{margin-bottom:20px}
body.tnw-site .section>.container>p:first-of-type:not(.eyebrow){max-width:75ch;color:var(--tnw-r3-muted)}

/* ---- Standard service / page heroes ----------------------------------- */
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero){
  position:relative;overflow:hidden;
  padding-block:clamp(58px,7vw,92px);
  background:
    radial-gradient(circle at 88% 10%,rgba(39,160,201,.24),transparent 33%),
    radial-gradient(circle at 12% 94%,rgba(211,61,63,.10),transparent 30%),
    linear-gradient(130deg,#071b30 0%,#0a3558 55%,#0b6380 100%);
}
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero)::after{
  content:"";position:absolute;right:-120px;bottom:-230px;width:420px;height:420px;border:1px solid rgba(255,255,255,.11);border-radius:50%;pointer-events:none;
}
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero) .container{position:relative;z-index:1}
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero) h1{
  max-width:18ch;color:#fff!important;font-size:clamp(2.25rem,4.8vw,4.5rem);line-height:1.03;
}
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero)>div>p:not(.eyebrow),
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero) .container>p:not(.eyebrow){
  max-width:72ch;color:#d8e8f2!important;font-size:clamp(1rem,1.5vw,1.16rem);line-height:1.72;
}
body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero) .eyebrow{
  color:#9fd7ec!important;font-weight:850;letter-spacing:.1em;
}

/* ---- Homepage hero ----------------------------------------------------- */












/* ---- Search / booking hub --------------------------------------------- */


























/* ---- Product rail ------------------------------------------------------ */





/* ---- Section headings/cards ------------------------------------------- */
body.tnw-site .tnw-section{padding:clamp(52px,6vw,78px) 0}
body.tnw-site .tnw-section-heading{align-items:flex-end;margin-bottom:30px}
body.tnw-site .tnw-section-heading h2{color:var(--tnw-r3-navy);font-size:clamp(1.8rem,3vw,2.75rem);letter-spacing:-.035em}
body.tnw-site .tnw-section-heading p{color:#63798b}
body.tnw-site .tnw-section-heading .tnw-eyebrow{color:#0b719f;margin-bottom:8px}
body.tnw-site .tnw-card,
body.tnw-site :where(.card,.content-card,.feature-card,.service-card,.route-card,.marketplace-card,.company-card,.legal-card,.support-card){
  border-color:#dbe5eb;border-radius:18px;box-shadow:var(--tnw-r3-shadow-xs);
  transition:transform .2s var(--tnw-r3-ease),box-shadow .2s var(--tnw-r3-ease),border-color .2s var(--tnw-r3-ease);
}
@media (hover:hover) and (pointer:fine){
  body.tnw-site .tnw-card:hover,
  body.tnw-site :where(.card,.content-card,.feature-card,.service-card,.route-card,.marketplace-card,.company-card,.legal-card,.support-card):hover{
    transform:translateY(-3px);border-color:#bdd1dc;box-shadow:var(--tnw-r3-shadow-sm);
  }
}
body.tnw-site .tnw-card__icon{background:#e9f6fb;color:#0c72a1}
body.tnw-site .tnw-card h3{color:#112f46}
body.tnw-site .tnw-card p{color:#657b8c}
body.tnw-site .tnw-card a.tnw-card__link{color:#0a6b98}

/* ---- Destination imagery --------------------------------------------- */









/* ---- Feature/deal panels ---------------------------------------------- */
body.tnw-site .tnw-deal-strip{gap:18px}
body.tnw-site .tnw-deal-panel{
  position:relative;overflow:hidden;min-height:285px;border-radius:24px;padding:clamp(26px,4vw,38px);
  background:radial-gradient(circle at 90% 20%,rgba(46,161,201,.26),transparent 34%),linear-gradient(135deg,#071b30,#0b3d67);
  box-shadow:var(--tnw-r3-shadow-sm);
}
body.tnw-site .tnw-deal-panel::after{content:"";position:absolute;right:-100px;bottom:-180px;width:320px;height:320px;border:1px solid rgba(255,255,255,.12);border-radius:50%}
body.tnw-site .tnw-deal-panel>*{position:relative;z-index:1}
body.tnw-site .tnw-deal-panel h2{color:#fff}
body.tnw-site .tnw-deal-panel .tnw-eyebrow{color:#9dd8ec}
body.tnw-site .tnw-planner-panel{border-color:#dbe5eb;border-radius:24px;padding:clamp(26px,4vw,38px);box-shadow:var(--tnw-r3-shadow-xs)}
body.tnw-site .tnw-planner-panel .tnw-eyebrow{color:#0d719e}

/* ---- Steps / disclosure / FAQ ----------------------------------------- */
body.tnw-site .tnw-step{border-top-color:#abd2e2;padding-top:20px}
body.tnw-site .tnw-step::before{background:linear-gradient(135deg,#107cac,#075d87);box-shadow:0 7px 16px rgba(15,111,159,.18)}
body.tnw-site .tnw-disclosure{
  border-color:#ccdce6;background:#f5fafd;border-radius:15px;color:#4e687b;
}
body.tnw-site .faq-section{max-width:900px}
body.tnw-site .faq-section>h2{margin-bottom:20px}
body.tnw-site .faq-section details{
  margin:0 0 11px;border:1px solid #d8e4eb;border-radius:14px;background:#fff;box-shadow:var(--tnw-r3-shadow-xs);overflow:hidden;
}
body.tnw-site .faq-section summary{
  position:relative;display:flex;align-items:center;min-height:58px;padding:16px 52px 16px 18px;color:#17354b;font-weight:800;cursor:pointer;list-style:none;
}
body.tnw-site .faq-section summary::-webkit-details-marker{display:none}
body.tnw-site .faq-section summary::after{
  content:"+";position:absolute;right:18px;display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#edf7fb;color:#0a6e9b;font-size:1.15rem;font-weight:600;
}
body.tnw-site .faq-section details[open] summary{background:#f7fbfd}
body.tnw-site .faq-section details[open] summary::after{content:"−"}
body.tnw-site .faq-section details>p{padding:0 18px 18px;color:#607789;line-height:1.7}

/* ---- Route lists ------------------------------------------------------- */
body.tnw-site .route-list{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
body.tnw-site .route-list>article{
  min-width:0;padding:20px;border:1px solid #dbe5eb;border-radius:16px;background:#fff;box-shadow:var(--tnw-r3-shadow-xs);
}
body.tnw-site .route-list>article h3{margin-bottom:7px;color:#17344b;font-size:1.08rem}
body.tnw-site .route-list>article p{margin:0;color:#667c8d;font-size:.92rem;line-height:1.62}

/* ---- Search forms on service pages ------------------------------------ */
body.tnw-site :where(.travel-search-form,.search-form,.hero-search,.hotel-search-shell){
  margin-top:28px;border-radius:18px!important;box-shadow:0 18px 45px rgba(3,19,34,.19)!important;
}
body.tnw-site :where(.travel-search-form,.search-form,.hero-search,.hotel-search-shell) :where(input,select){
  min-height:50px;border-color:#cad8e0!important;background:#fff!important;
}

/* ---- Newsletter -------------------------------------------------------- */
body.tnw-site .newsletter-section{
  position:relative;overflow:hidden;max-width:960px;margin-inline:auto;padding:clamp(28px,5vw,48px);border-radius:24px;
  background:radial-gradient(circle at 92% 8%,rgba(72,180,218,.22),transparent 35%),linear-gradient(135deg,#071d33,#0b4a70);color:#fff;box-shadow:var(--tnw-r3-shadow-sm);
}
body.tnw-site .newsletter-section :where(h2,p,.eyebrow){color:#fff}
body.tnw-site .newsletter-section .eyebrow{color:#9ed8ed}
body.tnw-site .newsletter-text{max-width:62ch;color:#d8e8f1!important}
body.tnw-site .newsletter-form{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:10px;max-width:650px;margin-top:20px}
body.tnw-site .newsletter-form input{min-height:50px;border:1px solid rgba(255,255,255,.5);border-radius:11px;padding:10px 14px;background:#fff;color:#183047}
body.tnw-site .newsletter-form .btn-primary{min-width:145px}


/* ---- Footer ------------------------------------------------------------ */









/* ---- Tables / content -------------------------------------------------- */
body.tnw-site .table-wrap{border:1px solid #d8e3ea;border-radius:14px;box-shadow:var(--tnw-r3-shadow-xs);background:#fff}
body.tnw-site .table-wrap table{min-width:620px}
body.tnw-site table th{background:#f3f7f9;color:#29475c;font-weight:800}
body.tnw-site table :where(th,td){padding:11px 13px;border-bottom:1px solid #e4ebef;text-align:left}
body.tnw-site table tbody tr:hover{background:#fbfdfe}
body.tnw-site :where(.prose,.article-content,.post-content,.legal-content){color:#384f61}
body.tnw-site :where(.prose,.article-content,.post-content,.legal-content) :where(h2,h3){scroll-margin-top:100px}
body.tnw-site :where(.prose,.article-content,.post-content,.legal-content) a{color:#076c9a;text-decoration-thickness:1px;text-underline-offset:3px}

/* ---- Account visual consistency --------------------------------------- */
body.tnw-site.section-account{background:#f6f9fb}





/* ---- Consent ----------------------------------------------------------- */




/* ---- Loading / interaction state -------------------------------------- */
body.tnw-site .is-loading{cursor:wait!important;pointer-events:none;opacity:.76}
body.tnw-site .tnw-form-message{margin-top:10px;padding:10px 12px;border-radius:10px;background:#eef7fb;color:#28546c;font-size:.86rem}
body.tnw-site .tnw-form-message--error{background:#fff2f2;color:#8d252a}
body.tnw-site .tnw-form-message--success{background:#eff9f3;color:#176944}
body.tnw-site .tnw-interactive-ready [data-card-link]{cursor:pointer}

/* Improve offscreen rendering on long editorial/landing pages. */
@supports (content-visibility:auto){
  body.tnw-site main>section:not(:first-child):not(.tnw-ai-section){content-visibility:auto;contain-intrinsic-size:1px 620px}
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width:1180px){
  
  
  
  
  
  
  
  
  body.tnw-site .route-list{grid-template-columns:repeat(2,minmax(0,1fr))}
}



@media (max-width:760px){
  
  
  
  
  
  
  
  
  
  
  
  
  
  body.tnw-site .route-list{grid-template-columns:1fr 1fr}
  body.tnw-site .newsletter-form{grid-template-columns:1fr}
  body.tnw-site .newsletter-form .btn-primary{width:100%}
  
}

@media (max-width:560px){
  html{scroll-padding-top:78px}
  
  
  
  
  body.tnw-site .tnw-section{padding:44px 0}
  body.tnw-site .tnw-section-heading{align-items:flex-start;flex-direction:column;gap:13px;margin-bottom:22px}
  
  
  
  
  
  
  
  
  
  
  
  
  
  body.tnw-site .route-list{grid-template-columns:1fr}
  body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero){padding-block:46px}
  body.tnw-site :where(.page-hero,.service-hero,.legal-hero,.company-hero,.blog-hero,.hotel-country-hero,.destination-hero) h1{font-size:clamp(2.15rem,10vw,3.2rem)}
  body.tnw-site .faq-section summary{padding-left:15px;padding-right:48px}
  body.tnw-site .newsletter-section{border-radius:18px;padding:24px 18px}
  
  
}



@media (prefers-reduced-motion:reduce){
  body.tnw-site *,body.tnw-site *::before,body.tnw-site *::after{transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}
  
}

@media (prefers-contrast:more){
  body.tnw-site :where(.tnw-card,.card,.content-card,.feature-card,.service-card,.route-card,.marketplace-card,.faq-section details){border-color:#8fa5b4}
  body.tnw-site :where(input,select,textarea){border-color:#7f98a9}
}

.tnw-network-status{position:fixed;left:50%;bottom:18px;z-index:16000;transform:translateX(-50%);width:min(calc(100% - 28px),720px);padding:11px 15px;border:1px solid #e3c36c;border-radius:12px;background:#fff8df;color:#6e5510;box-shadow:0 12px 35px rgba(8,31,54,.18);font-size:.86rem;font-weight:750;text-align:center}
.tnw-network-status[hidden]{display:none}
@media (max-width:560px){.tnw-network-status{bottom:8px;font-size:.8rem}}




body.tnw-site .hotel-country-hero__flag{display:grid;place-items:center;min-width:72px;min-height:72px;font-size:3rem;line-height:1}
body.tnw-site .hotel-country-card__flag{display:grid;place-items:center;width:42px;height:32px;font-size:1.65rem;line-height:1}



/* ===== TRAVELER + BUSINESS FUNCTIONALITY ===== */
/* Travel Network World — traveler and business functionality
   Original TNW UI for Road Trip Garage, Traveler Hub preferences and Partner Studio.
   Integrated into the consolidated production cascade. */

:root{
  --r4-ocean:#0b1f3a;
  --r4-ocean-2:#0f355f;
  --r4-blue:#1463ff;
  --r4-blue-deep:#0d4fd4;
  --r4-sky:#eaf5ff;
  --r4-green:#16805c;
  --r4-green-soft:#e9f7f1;
  --r4-amber:#a96100;
  --r4-amber-soft:#fff6e5;
  --r4-red:#b42318;
  --r4-red-soft:#fff0ee;
  --r4-ink:#12212f;
  --r4-muted:#617285;
  --r4-line:#dce5ed;
  --r4-cloud:#f6f9fc;
  --r4-white:#fff;
  --r4-radius-sm:12px;
  --r4-radius:18px;
  --r4-radius-lg:26px;
  --r4-shadow:0 14px 38px rgba(11,31,58,.09);
  --r4-shadow-lg:0 28px 68px rgba(11,31,58,.16);
}

/* ---------- Shared functionality primitives ---------- */
.r4-section-heading{max-width:760px;margin:0 auto clamp(24px,4vw,42px);text-align:center}
.r4-section-heading h2{margin:.2rem 0 .75rem;color:var(--r4-ocean);font-size:clamp(1.8rem,3.5vw,3rem);line-height:1.08}
.r4-section-heading p{margin:0;color:var(--r4-muted);font-size:clamp(1rem,1.6vw,1.12rem)}
.r4-form-grid{display:grid;gap:16px}
.r4-form-grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.r4-form-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}

/* R15: Partner Studio owns its forms/status messages; account CSS is not a dependency. */
.r4-business-form{display:grid;gap:16px}
.r4-business-form>label,.r4-business-form .r4-form-grid label{display:grid;gap:7px;color:var(--r4-ink);font-weight:750}
.r4-business-form>label :where(input,select,textarea),.r4-business-form>.r4-form-grid :where(input,select,textarea){width:100%;min-width:0;min-height:48px;padding:11px 13px;border:1px solid #cfdbe5;border-radius:11px;background:#fff;color:var(--r4-ink);font:inherit;box-shadow:0 1px 0 rgba(11,31,58,.02);transition:border-color .16s ease,box-shadow .16s ease,background-color .16s ease}
.r4-business-form textarea{min-height:116px;resize:vertical}
.r4-business-form :where(input,select,textarea):focus{outline:0;border-color:var(--r4-blue);box-shadow:0 0 0 4px rgba(20,99,255,.12)}
.r4-business-form>button{justify-self:start}
.r4-alert{margin:0 0 16px;padding:12px 14px;border:1px solid transparent;border-radius:12px;font-weight:700;line-height:1.5}
.r4-alert--success{border-color:#bfe6ce;background:#eefaf3;color:#12653a}
.r4-alert--error{border-color:#f1c2c4;background:#fff1f1;color:#8f1f24}
.r4-alert--info{border-color:#c9e3ee;background:#eef7fb;color:#0a5277}
.r4-muted{color:var(--r4-muted)}
.r4-form-grid label,.r4-vehicle-form label,.r4-trip-form label,.r4-business-form-card label,.r4-onboarding-form label{display:grid;gap:7px;color:var(--r4-ink);font-weight:750}
.r4-form-grid input,.r4-form-grid select,.r4-form-grid textarea,.r4-vehicle-form input,.r4-vehicle-form select,.r4-trip-form input,.r4-trip-form select,.r4-business-form-card input,.r4-business-form-card select,.r4-business-form-card textarea,.r4-onboarding-form input,.r4-onboarding-form select,.r4-onboarding-form textarea{
  width:100%;min-height:48px;padding:11px 13px;border:1px solid #cfdbe5;border-radius:11px;background:#fff;color:var(--r4-ink);font:inherit;box-shadow:0 1px 0 rgba(11,31,58,.02);transition:border-color .16s ease,box-shadow .16s ease,background-color .16s ease
}
.r4-form-grid textarea,.r4-business-form-card textarea,.r4-onboarding-form textarea{min-height:116px;resize:vertical}
.r4-form-grid input:focus,.r4-form-grid select:focus,.r4-form-grid textarea:focus,.r4-vehicle-form input:focus,.r4-vehicle-form select:focus,.r4-trip-form input:focus,.r4-trip-form select:focus,.r4-business-form-card input:focus,.r4-business-form-card select:focus,.r4-business-form-card textarea:focus,.r4-onboarding-form input:focus,.r4-onboarding-form select:focus,.r4-onboarding-form textarea:focus{outline:0;border-color:var(--r4-blue);box-shadow:0 0 0 4px rgba(20,99,255,.12)}
.r4-optional{color:#788a9c;font-size:.82rem;font-weight:600}
.r4-form-actions{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-top:18px}
.r4-microcopy{margin:.65rem 0 0;color:#728496;font-size:.86rem;line-height:1.55}
.r4-chip,.r4-chip-row span{display:inline-flex;align-items:center;gap:5px;width:max-content;max-width:100%;padding:6px 9px;border:1px solid #d6e3ec;border-radius:999px;background:#f8fbfd;color:#40566a;font-size:.78rem;font-weight:800;line-height:1.15}
.r4-chip-row{display:flex;flex-wrap:wrap;gap:7px}
.r4-status{display:inline-flex;align-items:center;width:max-content;padding:6px 9px;border-radius:999px;background:#edf2f6;color:#536779;font-size:.78rem;font-weight:850;text-transform:capitalize}
.r4-status--success{background:var(--r4-green-soft);color:#116746}
.r4-status--warning{background:var(--r4-amber-soft);color:#8d5200}
.r4-status--danger{background:var(--r4-red-soft);color:#982118}
.r4-callout{display:grid;grid-template-columns:36px minmax(0,1fr);gap:12px;align-items:start;margin-top:18px;padding:15px 16px;border:1px solid #cfe0ee;border-radius:14px;background:#f6fbff;color:#345168}
.r4-callout>i{display:grid;place-items:center;width:36px;height:36px;border-radius:10px;background:#e4f2ff;color:var(--r4-blue)}
.r4-callout p{margin:0;line-height:1.55}
.r4-text-action{display:inline-flex;align-items:center;gap:7px;border:0;background:transparent;color:var(--r4-blue);font:inherit;font-weight:800;text-decoration:none;cursor:pointer}
.r4-text-action:hover{text-decoration:underline}
.r4-text-action--danger{color:var(--r4-red)}
.r4-icon-button{display:inline-grid;place-items:center;width:42px;height:42px;border:1px solid #d6e1e9;border-radius:11px;background:#fff;color:#536779;cursor:pointer}
.r4-icon-button:hover{border-color:#a8c2d5;background:#f6fbff;color:var(--r4-blue)}
.r4-icon-button--danger:hover{border-color:#f0b9b4;background:var(--r4-red-soft);color:var(--r4-red)}
.r4-empty-feature{display:flex;gap:16px;align-items:flex-start;padding:24px;border:1px dashed #cbd9e4;border-radius:16px;background:#f9fbfd}
.r4-empty-feature h3{margin:0 0 5px;color:var(--r4-ocean)}
.r4-empty-feature p{margin:0;color:var(--r4-muted)}
.r4-empty-icon{display:grid;place-items:center;flex:0 0 52px;width:52px;height:52px;border-radius:15px;background:#eaf5ff;color:var(--r4-blue);font-size:1.25rem}
.r4-check-list{display:grid;gap:10px;margin:16px 0 0;padding:0;list-style:none}
.r4-check-list li{display:flex;gap:10px;align-items:flex-start;color:#445b70}
.r4-check-list li::before{content:"✓";display:grid;place-items:center;flex:0 0 22px;width:22px;height:22px;border-radius:50%;background:var(--r4-green-soft);color:var(--r4-green);font-weight:900}
.r4-check-list--light li{color:rgba(255,255,255,.88)}
.r4-check-list--light li::before{background:rgba(255,255,255,.13);color:#8ff0c9}
.r4-table-wrap{overflow:auto;border:1px solid var(--r4-line);border-radius:15px;background:#fff}
.r4-table{width:100%;border-collapse:collapse;min-width:720px}
.r4-table th,.r4-table td{padding:13px 15px;border-bottom:1px solid #e5ecf1;text-align:left;vertical-align:top}
.r4-table th{background:#f5f8fb;color:#40566a;font-size:.78rem;text-transform:uppercase;letter-spacing:.035em}
.r4-table tbody tr:last-child td{border-bottom:0}

/* ---------- Traveler Hub: Road Trip Garage ---------- */

.r4-garage-layout{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:20px;align-items:start}
.r4-add-card,.r4-garage-guide,.r4-business-form-card,.r4-app-panel{padding:clamp(20px,3vw,28px);border:1px solid var(--r4-line);border-radius:var(--r4-radius);background:#fff;box-shadow:0 8px 28px rgba(11,31,58,.055)}
.r4-add-card h2,.r4-garage-guide h2,.r4-business-form-card h2,.r4-app-panel h2{margin:.15rem 0 .55rem;color:var(--r4-ocean)}
.r4-add-card>p,.r4-garage-guide>p,.r4-business-form-card>p,.r4-app-panel>p{color:var(--r4-muted)}
.r4-garage-guide{position:sticky;top:104px;background:linear-gradient(160deg,#f7fbff,#fff)}
.r4-benefit-list{display:grid;gap:13px;margin-top:20px}
.r4-benefit-list article{display:grid;grid-template-columns:38px minmax(0,1fr);gap:11px;align-items:start}
.r4-benefit-list i{display:grid;place-items:center;width:38px;height:38px;border-radius:11px;background:#eaf5ff;color:var(--r4-blue)}
.r4-benefit-list strong{display:block;color:var(--r4-ocean)}
.r4-benefit-list span{display:block;margin-top:2px;color:var(--r4-muted);font-size:.9rem}
.r4-vehicle-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.r4-vehicle-card{position:relative;display:grid;gap:16px;padding:20px;border:1px solid var(--r4-line);border-radius:17px;background:#fff;box-shadow:0 7px 22px rgba(11,31,58,.055)}
.r4-vehicle-card.is-primary{border-color:#a9c9ff;box-shadow:0 10px 28px rgba(20,99,255,.10)}
.r4-vehicle-card__top{display:grid;grid-template-columns:52px minmax(0,1fr) auto;gap:12px;align-items:center}
.r4-vehicle-icon{display:grid;place-items:center;width:52px;height:52px;border-radius:15px;background:linear-gradient(135deg,#e6f2ff,#f6fbff);color:var(--r4-blue);font-size:1.25rem}
.r4-vehicle-card h3{margin:0;color:var(--r4-ocean);font-size:1.08rem}
.r4-vehicle-card h3 small{display:block;margin-top:2px;color:var(--r4-muted);font-size:.82rem;font-weight:650}
.r4-data-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.r4-data-list div{padding:10px 12px;border-radius:11px;background:#f6f9fc}
.r4-data-list span{display:block;color:#738597;font-size:.75rem;text-transform:uppercase;letter-spacing:.035em}
.r4-data-list strong{display:block;margin-top:2px;color:var(--r4-ink);font-size:.94rem}
.r4-card-actions{display:flex;align-items:center;gap:9px;flex-wrap:wrap;padding-top:3px}

.r4-calculator-layout{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(280px,.88fr);gap:20px;align-items:start}
.r4-trip-form{display:grid;gap:16px}
.r4-live-estimate{position:sticky;top:104px;display:grid;gap:16px;padding:24px;border-radius:20px;background:linear-gradient(145deg,var(--r4-ocean),#0c4b78);color:#fff;box-shadow:var(--r4-shadow-lg)}
.r4-live-estimate h2,.r4-live-estimate h3,.r4-live-estimate strong{color:#fff}
.r4-live-estimate p,.r4-live-estimate small{color:#d9ebf6}
.r4-live-estimate__icon{display:grid;place-items:center;width:54px;height:54px;border-radius:16px;background:rgba(255,255,255,.12);color:#9dd7ff;font-size:1.4rem}
.r4-live-estimate [data-road-trip-cost]{font-size:clamp(2.1rem,4vw,3.3rem);font-weight:900;line-height:1}
.r4-live-estimate [data-road-trip-consumption]{font-size:.9rem;color:#c9e5f5}
.r4-calculator-note{padding:14px;border:1px solid rgba(255,255,255,.16);border-radius:12px;background:rgba(255,255,255,.07);font-size:.86rem;line-height:1.55}

/* ---------- For Business public landing ---------- */
.r4-business-landing .site-main{overflow:clip}
.r4-business-hero{position:relative;isolation:isolate;padding:clamp(58px,8vw,108px) 0;background:radial-gradient(circle at 82% 15%,rgba(90,200,250,.22),transparent 31%),linear-gradient(135deg,#07182c 0%,#0b3159 55%,#0b5275 100%);color:#fff}
.r4-business-hero::after{content:"";position:absolute;inset:auto -10% -45% 35%;z-index:-1;height:70%;border-radius:50%;background:radial-gradient(circle,rgba(20,99,255,.24),transparent 68%);filter:blur(10px)}
.r4-business-hero__inner{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);gap:clamp(32px,6vw,72px);align-items:center}
.r4-business-hero .eyebrow{color:#8ed6ff}
.r4-business-hero h1{max-width:760px;margin:.2rem 0 1rem;color:#fff;font-size:clamp(2.5rem,5.5vw,5.2rem);line-height:.98;letter-spacing:-.035em}
.r4-business-hero__lead{max-width:65ch;color:#d8eaf6;font-size:clamp(1.04rem,1.6vw,1.2rem);line-height:1.65}
.r4-business-actions{display:flex;flex-wrap:wrap;gap:11px;align-items:center;margin-top:22px}
.r4-business-hero .btn-primary{background:#fff;color:var(--r4-ocean)!important}
.r4-business-hero .btn-secondary{border-color:rgba(255,255,255,.35);background:rgba(255,255,255,.08);color:#fff!important}
.r4-business-preview{overflow:hidden;border:1px solid rgba(255,255,255,.2);border-radius:24px;background:rgba(255,255,255,.97);box-shadow:0 30px 70px rgba(0,0,0,.24);color:var(--r4-ink);transform:rotate(1.2deg)}
.r4-business-preview__bar{display:flex;align-items:center;justify-content:space-between;padding:14px 16px;border-bottom:1px solid #e2e9ee;background:#f7fafc}
.r4-business-preview__bar strong{color:var(--r4-ocean)}
.r4-business-preview__bar span{display:inline-flex;gap:5px}.r4-business-preview__bar i{font-size:.56rem;color:#adc0ce}
.r4-business-preview__metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:0;border-bottom:1px solid #e2e9ee}
.r4-business-preview__metrics article{padding:18px;border-right:1px solid #e2e9ee}.r4-business-preview__metrics article:last-child{border-right:0}
.r4-business-preview__metrics span{display:block;color:#758698;font-size:.72rem;text-transform:uppercase}.r4-business-preview__metrics strong{display:block;margin-top:3px;color:var(--r4-ocean);font-size:1.35rem}.r4-business-preview__metrics small{display:block;margin-top:2px;color:#7a8b9b}
.r4-business-preview__row{display:grid;grid-template-columns:42px minmax(0,1fr) auto;gap:11px;align-items:center;padding:14px 16px;border-bottom:1px solid #edf1f4}
.r4-business-preview__row:last-child{border-bottom:0}.r4-business-preview__row>i{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#eaf5ff;color:var(--r4-blue)}
.r4-business-preview__row strong{display:block;color:var(--r4-ocean)}.r4-business-preview__row small{color:#728496}
.r4-business-proof{padding:clamp(58px,8vw,92px) 0;border-bottom:1px solid #e5ebf0;background:#fff}
.r4-business-proof .container{display:block}
.r4-business-proof i{color:var(--r4-blue)}
.r4-business-section{padding:clamp(58px,8vw,96px) 0;background:#fff}
.r4-business-section--soft{background:var(--r4-cloud)}
.r4-business-section--dark{background:linear-gradient(135deg,#081a2f,#0c3558);color:#fff}
.r4-business-section--dark h2,.r4-business-section--dark h3,.r4-business-section--dark .eyebrow{color:#fff}.r4-business-section--dark .r4-section-heading p{color:#c9dfed}
.r4-feature-grid{display:grid;gap:18px}.r4-feature-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}.r4-feature-grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}
.r4-feature-grid>article,.r4-feature-grid>div{padding:24px;border:1px solid var(--r4-line);border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(11,31,58,.045)}
.r4-feature-grid>article>i,.r4-feature-grid>div>i{display:grid;place-items:center;width:46px;height:46px;margin-bottom:16px;border-radius:13px;background:#eaf5ff;color:var(--r4-blue);font-size:1.2rem}
.r4-feature-grid h3{margin:0 0 7px;color:var(--r4-ocean)}.r4-feature-grid p{margin:0;color:var(--r4-muted);line-height:1.62}
.r4-business-section--dark .r4-feature-grid>article,.r4-business-section--dark .r4-feature-grid>div{border-color:rgba(255,255,255,.14);background:rgba(255,255,255,.065);box-shadow:none}.r4-business-section--dark .r4-feature-grid p{color:#c9dfed}.r4-business-section--dark .r4-feature-grid>article>i,.r4-business-section--dark .r4-feature-grid>div>i{background:rgba(255,255,255,.11);color:#8ed6ff}
.r4-workflow{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;counter-reset:r4-step}
.r4-workflow>div{position:relative;display:grid;grid-template-columns:42px minmax(0,1fr);gap:13px;align-items:start;padding:22px;border:1px solid rgba(255,255,255,.13);border-radius:18px;background:rgba(255,255,255,.065);counter-increment:r4-step}
.r4-workflow>div>b{display:grid;place-items:center;width:38px;height:38px;border-radius:11px;background:#fff;color:var(--r4-ocean);font-weight:900}.r4-workflow>div strong{display:block;color:#fff}.r4-workflow>div small{display:block;margin-top:4px;color:#c9dfed;line-height:1.45}
.r4-business-split{display:grid;grid-template-columns:minmax(0,1fr) minmax(350px,.9fr);gap:clamp(28px,5vw,64px);align-items:start}
.r4-business-split--form{align-items:center}
.r4-business-form-card{box-shadow:var(--r4-shadow)}
.r4-faq-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;max-width:960px;margin:0 auto}
.r4-faq-grid details{padding:0 18px;border:1px solid var(--r4-line);border-radius:14px;background:#fff}
.r4-faq-grid summary{display:flex;align-items:center;justify-content:space-between;gap:15px;min-height:64px;color:var(--r4-ocean);font-weight:850;cursor:pointer}
.r4-faq-grid summary::after{content:"+";font-size:1.4rem;color:var(--r4-blue)}.r4-faq-grid details[open] summary::after{content:"−"}
.r4-faq-grid details p{margin:0 0 18px;color:var(--r4-muted);line-height:1.65}
.r4-partner-cta{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:24px;align-items:center;padding:clamp(24px,4vw,38px);border:1px solid #cfe0ee;border-radius:22px;background:linear-gradient(135deg,#f3f9ff,#fff);box-shadow:var(--r4-shadow)}
.r4-partner-cta h2{margin:.2rem 0 .6rem;color:var(--r4-ocean)}.r4-partner-cta p:last-child{margin-bottom:0;color:var(--r4-muted)}
.r4-partner-cta__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}

/* ---------- Private Partner Studio ---------- */
.r4-business-app{background:#f4f7fa}
.r4-business-app-shell{display:grid;grid-template-columns:270px minmax(0,1fr);gap:26px;align-items:start;padding-top:30px!important;padding-bottom:72px!important}
.r4-business-sidebar{position:sticky;top:100px;display:flex;flex-direction:column;min-height:620px;padding:17px;border:1px solid var(--r4-line);border-radius:20px;background:#fff;box-shadow:0 12px 36px rgba(11,31,58,.07)}
.r4-business-sidebar__brand{display:grid;grid-template-columns:42px minmax(0,1fr);gap:10px;align-items:center;padding:8px 10px 16px;border-bottom:1px solid #e6edf2;color:var(--r4-ocean)}
.r4-business-sidebar__brand>span{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#eaf5ff;color:var(--r4-blue)}.r4-business-sidebar__brand>div{display:grid}.r4-business-sidebar__brand small{color:var(--r4-muted);font-weight:650}
.r4-business-sidebar__profile{display:grid;gap:5px;margin:14px 0;padding:12px;border-radius:13px;background:#f5f9fc}
.r4-business-sidebar__profile strong{color:var(--r4-ocean);overflow:hidden;text-overflow:ellipsis}
.r4-business-sidebar__profile span{color:var(--r4-muted);font-size:.82rem;text-transform:capitalize}
.r4-business-sidebar nav{display:grid;gap:5px}
.r4-business-sidebar nav a,.r4-business-sidebar__secondary a{display:flex;align-items:center;gap:10px;min-height:44px;padding:9px 11px;border-radius:11px;color:#40566a!important;text-decoration:none!important;font-weight:780}
.r4-business-sidebar nav a i,.r4-business-sidebar__secondary a i{width:18px;text-align:center;color:#74889a}
.r4-business-sidebar nav a:hover,.r4-business-sidebar nav a.is-active{background:#edf5ff;color:#0e55cf!important}.r4-business-sidebar nav a.is-active i{color:var(--r4-blue)}
.r4-business-sidebar__secondary{display:grid;gap:4px;margin-top:auto;padding-top:14px;border-top:1px solid #e6edf2}
.r4-business-sidebar-toggle{display:none;align-items:center;gap:8px;width:max-content;min-height:44px;padding:9px 13px;border:1px solid var(--r4-line);border-radius:11px;background:#fff;color:var(--r4-ocean);font:inherit;font-weight:800}
.r4-business-app-content{min-width:0;display:grid;gap:20px}
.r4-app-header{display:flex;justify-content:space-between;gap:22px;align-items:end;padding:clamp(24px,4vw,36px);border-radius:22px;background:linear-gradient(135deg,var(--r4-ocean),#0c527c);color:#fff;box-shadow:0 18px 45px rgba(11,31,58,.14)}
.r4-app-header h1,.r4-app-header p,.r4-app-header .eyebrow{color:#fff}.r4-app-header h1{margin:.15rem 0 .5rem}.r4-app-header p{margin:0;max-width:70ch;color:#d8eaf6}.r4-app-actions{display:flex;flex-wrap:wrap;gap:9px;justify-content:flex-end}
.r4-business-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.r4-business-metrics article{padding:18px;border:1px solid var(--r4-line);border-radius:16px;background:#fff;box-shadow:0 6px 20px rgba(11,31,58,.045)}
.r4-business-metrics span{display:block;color:#728496;font-size:.78rem;text-transform:uppercase;letter-spacing:.03em}.r4-business-metrics strong{display:block;margin-top:4px;color:var(--r4-ocean);font-size:1.55rem;line-height:1.1}.r4-business-metrics small{display:block;margin-top:4px;color:#8292a0}
.r4-business-dashboard-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.r4-app-panel--wide{grid-column:1/-1}
.r4-app-panel__head{display:flex;justify-content:space-between;gap:16px;align-items:start;margin-bottom:18px}
.r4-completeness-badge{display:grid;place-items:center;min-width:68px;height:68px;padding:8px;border:6px solid #d9e9ff;border-radius:50%;background:#fff;color:var(--r4-blue);font-size:1rem;font-weight:900}
.r4-progress{overflow:hidden;height:9px;margin:12px 0;border-radius:999px;background:#e9eef3}.r4-progress>span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,var(--r4-blue),#4cb9ee)}
.r4-task-list,.r4-review-list{display:grid;gap:9px;margin:0;padding:0;list-style:none}
.r4-task-list a{display:grid;grid-template-columns:38px minmax(0,1fr) auto;gap:11px;align-items:center;padding:12px;border:1px solid transparent;border-radius:12px;background:#f7f9fb;color:#43586b!important;text-decoration:none!important}.r4-task-list a:hover{border-color:#cfe0ee;background:#f3f8ff}.r4-task-list a>span{display:grid;place-items:center;width:38px;height:38px;border-radius:11px;background:#eaf5ff;color:var(--r4-blue)}.r4-task-list a strong{display:block;color:var(--r4-ocean)}.r4-task-list a small{display:block;margin-top:2px;color:var(--r4-muted)}.r4-task-list a>i:last-child{color:#8ba0b1}
.r4-review-list li{display:flex;align-items:flex-start;gap:10px;padding:11px 12px;border-radius:11px;background:#f7f9fb;color:#43586b}.r4-review-list li.is-done{background:#eef8f3;color:#245f49}.r4-review-list li.is-done i{color:var(--r4-green)}
.r4-review-list i{margin-top:2px;color:#98a7b4}
.r4-onboarding-card{display:grid;grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);gap:24px;align-items:start;padding:clamp(24px,4vw,38px);border:1px solid var(--r4-line);border-radius:22px;background:#fff;box-shadow:var(--r4-shadow)}
.r4-onboarding-copy .r4-big-icon{display:grid;place-items:center;width:64px;height:64px;margin-bottom:18px;border-radius:18px;background:#eaf5ff;color:var(--r4-blue);font-size:1.55rem}.r4-onboarding-copy h2{margin:.2rem 0 .75rem;color:var(--r4-ocean)}.r4-onboarding-copy p{color:var(--r4-muted)}
.r4-onboarding-form{display:grid;gap:15px}
.r4-data-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.r4-data-grid>div{padding:13px;border:1px solid #e2e9ef;border-radius:12px;background:#fafcfd}.r4-data-grid span{display:block;color:#768899;font-size:.77rem;text-transform:uppercase}.r4-data-grid strong{display:block;margin-top:3px;color:var(--r4-ocean);overflow-wrap:anywhere}
.r4-location-list,.r4-offer-list{display:grid;gap:12px}
.r4-location-list article,.r4-offer-list article{padding:17px;border:1px solid #dfe7ed;border-radius:14px;background:#fff}
.r4-location-list h3,.r4-offer-list h3{margin:.3rem 0 .35rem;color:var(--r4-ocean)}.r4-location-list p,.r4-offer-list p{margin:.2rem 0;color:var(--r4-muted)}
.r4-offer-list__top{display:flex;align-items:center;justify-content:space-between;gap:10px}.r4-offer-meta{display:flex;flex-wrap:wrap;gap:8px 18px;margin:12px 0;color:#6b7d8f;font-size:.86rem}

/* ---------- Public verified business profile ---------- */
.r4-public-business-hero{padding:clamp(44px,7vw,82px) 0;background:linear-gradient(135deg,#f3f8ff,#fff 58%,#eef9f5)}
.r4-public-business-hero .breadcrumb{margin-bottom:28px}
.r4-public-business-hero__grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.8fr);gap:clamp(30px,6vw,64px);align-items:start}
.r4-public-business-hero h1{margin:.3rem 0 1rem;color:var(--r4-ocean);font-size:clamp(2.3rem,5vw,4.5rem);line-height:1.02}.r4-public-business-hero p{max-width:70ch;color:#50667a;line-height:1.7}
.r4-verified-line{display:flex;gap:8px;flex-wrap:wrap}.r4-verified-line span{display:inline-flex;align-items:center;gap:6px;padding:6px 9px;border-radius:999px;background:#e7f6ef;color:#126c4a;font-size:.79rem;font-weight:850;text-transform:capitalize}.r4-verified-line span+span{background:#edf4ff;color:#2354a4}
.r4-public-business-facts{display:grid;gap:0;overflow:hidden;border:1px solid var(--r4-line);border-radius:18px;background:#fff;box-shadow:var(--r4-shadow)}
.r4-public-business-facts div{padding:15px 18px;border-bottom:1px solid #e5ecf1}.r4-public-business-facts div:last-child{border-bottom:0}.r4-public-business-facts span{display:block;color:#7a8b9b;font-size:.75rem;text-transform:uppercase}.r4-public-business-facts strong{display:block;margin-top:3px;color:var(--r4-ocean)}
.r4-public-location,.r4-public-offer{min-height:100%}.r4-public-location>i{display:grid;place-items:center;width:44px;height:44px;margin-bottom:14px;border-radius:13px;background:#eaf5ff;color:var(--r4-blue)}
.r4-public-offer .btn-primary{margin-top:16px}
.r4-empty-public{padding:22px;border:1px dashed #cbd9e4;border-radius:15px;background:#f9fbfd;text-align:center;color:var(--r4-muted)}

/* ---------- Responsive & accessibility ---------- */
@media (max-width:1100px){
  .r4-business-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}
  .r4-feature-grid--4,.r4-workflow{grid-template-columns:repeat(2,minmax(0,1fr))}
  .r4-business-hero__inner{grid-template-columns:minmax(0,1fr) minmax(300px,.8fr)}
}
@media (max-width:960px){
  .r4-garage-layout,.r4-calculator-layout,.r4-business-split,.r4-public-business-hero__grid,.r4-onboarding-card{grid-template-columns:1fr}
  .r4-garage-guide,.r4-live-estimate{position:static}
  .r4-business-app-shell{grid-template-columns:1fr;padding-top:22px!important}
  .r4-business-sidebar-toggle{display:inline-flex}
  .r4-business-sidebar{position:fixed;left:0;top:0;bottom:0;z-index:15020;width:min(320px,88vw);min-height:100vh;border-radius:0 20px 20px 0;transform:translateX(-105%);transition:transform .2s ease;box-shadow:0 25px 70px rgba(0,0,0,.24)}
  body.r4-business-sidebar-open .r4-business-sidebar{transform:translateX(0)}
  .r4-business-sidebar-backdrop{position:fixed;inset:0;z-index:15010;background:rgba(5,18,31,.56);backdrop-filter:blur(2px)}
  .r4-business-hero__inner{grid-template-columns:1fr}.r4-business-preview{max-width:680px;transform:none}
  .r4-partner-cta{grid-template-columns:1fr}.r4-partner-cta__actions{justify-content:flex-start}
}
@media (max-width:760px){
  .r4-form-grid--2,.r4-form-grid--3,.r4-vehicle-grid,.r4-feature-grid--3,.r4-feature-grid--4,.r4-workflow,.r4-business-dashboard-grid,.r4-data-grid,.r4-faq-grid{grid-template-columns:1fr}
  .r4-app-panel--wide{grid-column:auto}
  .r4-business-metrics{grid-template-columns:1fr 1fr}
  .r4-app-header{align-items:flex-start;flex-direction:column}.r4-app-actions{justify-content:flex-start}
  .r4-business-preview__metrics{grid-template-columns:1fr}.r4-business-preview__metrics article{border-right:0;border-bottom:1px solid #e2e9ee}.r4-business-preview__metrics article:last-child{border-bottom:0}
  .r4-business-preview__row{grid-template-columns:42px minmax(0,1fr)}.r4-business-preview__row>span:last-child{grid-column:2}
  .r4-table{min-width:620px}
}
@media (max-width:520px){
  .r4-business-metrics{grid-template-columns:1fr}
  .r4-vehicle-card__top{grid-template-columns:46px minmax(0,1fr)}.r4-vehicle-card__top>.r4-status{grid-column:2}
  .r4-data-list{grid-template-columns:1fr}
  .r4-business-hero{padding-top:48px}.r4-business-hero h1{font-size:clamp(2.35rem,13vw,3.5rem)}
  .r4-feature-grid>article,.r4-add-card,.r4-garage-guide,.r4-business-form-card,.r4-app-panel{padding:19px}
  .r4-public-business-hero{padding-top:34px}
  .r4-partner-cta__actions,.r4-business-actions,.r4-form-actions{display:grid;width:100%}.r4-partner-cta__actions a,.r4-business-actions a,.r4-form-actions a,.r4-form-actions button{width:100%;justify-content:center}
}

@media (prefers-reduced-motion:reduce){
  .r4-business-sidebar,.r4-form-grid input,.r4-form-grid select,.r4-form-grid textarea,.r4-vehicle-form input,.r4-vehicle-form select,.r4-trip-form input,.r4-trip-form select{transition:none!important}
  .r4-business-preview{transform:none!important}
}
@media (prefers-contrast:more){
  .r4-add-card,.r4-garage-guide,.r4-vehicle-card,.r4-business-form-card,.r4-app-panel,.r4-public-business-facts,.r4-feature-grid>article{border-color:#8fa3b4}
}

/* Avoid duplicate decorative check icons when markup already includes an icon. */
.r4-check-list li > i { display: none; }



/* ===== AUTH + PRODUCTION INTEGRATIONS ===== */








.comment-auth-state{display:flex;align-items:center;flex-wrap:wrap;gap:8px 12px;margin:0 0 16px;padding:12px 14px;border:1px solid #cfe3ed;border-radius:12px;background:#f2f9fc;color:#24445a}
.comment-auth-state i{color:#0c658f}.comment-auth-state a{margin-left:auto;font-weight:800;color:#0c658f}
.comment-social-auth{display:flex;align-items:center;flex-wrap:wrap;gap:8px;margin:0 0 16px;padding:12px 14px;border:1px solid #dce5eb;border-radius:12px;background:#f8fafc;color:#5f7183;font-size:.92rem}
.comment-social-auth a{display:inline-flex;align-items:center;min-height:38px;padding:7px 12px;border:1px solid #cad7e0;border-radius:999px;background:#fff;color:#183a55;text-decoration:none;font-weight:800}
.comment-social-auth a:hover{border-color:#7fa1b7}.comment-social-auth a:focus-visible{outline:3px solid rgba(20,99,255,.25);outline-offset:2px}
.form-security-note{font-size:.78rem;line-height:1.45;color:#66788a}
@media (max-width:600px){.comment-auth-state,.comment-social-auth{align-items:flex-start;flex-direction:column}.comment-auth-state a{margin-left:0}}

@media (prefers-contrast:more){.comment-social-auth,.comment-auth-state{border-width:2px}}



/* ===== COMPANY PAGES ===== */
.company-page{--company-ink:#10233f;--company-muted:#53657a;--company-blue:#0b63ce;--company-blue-dark:#073f87;--company-sky:#eaf4ff;--company-border:#dce6f0;color:var(--company-ink);background:#fff;overflow:hidden}.company-page *{box-sizing:border-box}.company-hero{position:relative;padding:clamp(4.5rem,9vw,8rem) 0;background:linear-gradient(135deg,#061f3f 0%,#0b4f9f 58%,#1687d9 100%);color:#fff}.company-hero:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 85% 20%,rgba(255,255,255,.18),transparent 28%),linear-gradient(120deg,transparent 0 65%,rgba(255,255,255,.06) 65%);pointer-events:none}.company-hero__inner{position:relative;z-index:1;max-width:980px}.company-eyebrow{margin:0 0 .75rem;font-size:.78rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase}.company-hero .company-eyebrow{color:#bfe3ff}.company-hero h1{max-width:900px;margin:0;font-size:clamp(2.45rem,6vw,5.25rem);line-height:1.02;letter-spacing:-.045em;color:#fff}.company-hero__lead{max-width:790px;margin:1.4rem 0 0;font-size:clamp(1.05rem,2vw,1.3rem);line-height:1.7;color:rgba(255,255,255,.9)}.company-actions{display:flex;flex-wrap:wrap;gap:.85rem;margin-top:2rem}.company-button{display:inline-flex;align-items:center;justify-content:center;gap:.55rem;min-height:48px;padding:.82rem 1.15rem;border:1px solid transparent;border-radius:10px;font-weight:750;line-height:1.2;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease,background .2s ease}.company-button:hover{transform:translateY(-2px);text-decoration:none}.company-button--primary{background:#fff;color:#0b4f9f;box-shadow:0 12px 30px rgba(1,23,49,.24)}.company-button--secondary{border-color:rgba(255,255,255,.45);background:rgba(255,255,255,.1);color:#fff}.company-section{padding:clamp(3.5rem,7vw,6.5rem) 0}.company-section--soft{background:#f4f8fc}.company-grid{display:grid;gap:1.5rem}.company-grid--intro{grid-template-columns:minmax(0,1.35fr) minmax(280px,.85fr)}.company-panel,.company-card{border:1px solid var(--company-border);border-radius:18px;background:#fff;box-shadow:0 12px 35px rgba(18,47,77,.07)}.company-panel{padding:clamp(1.5rem,3vw,2.4rem)}.company-panel--featured{border-top:5px solid var(--company-blue)}.company-panel h2,.company-section-heading h2,.company-cta h2{margin:.65rem 0 .8rem;color:var(--company-ink);font-size:clamp(1.55rem,3vw,2.35rem);line-height:1.15}.company-panel p,.company-card p,.company-section-heading p,.company-cta p{color:var(--company-muted);line-height:1.75}.company-icon{display:inline-grid;place-items:center;width:48px;height:48px;border-radius:12px;background:var(--company-sky);color:var(--company-blue);font-size:1.2rem}.company-details{margin:1.2rem 0 0}.company-details>div{padding:1rem 0;border-top:1px solid var(--company-border)}.company-details dt{font-size:.75rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#718096}.company-details dd{margin:.3rem 0 0;color:var(--company-ink);overflow-wrap:anywhere}.company-details a{color:var(--company-blue);font-weight:700}.company-section-heading{max-width:760px;margin-bottom:2rem}.company-section-heading .company-eyebrow{color:var(--company-blue)}.company-card-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}.company-card-grid--three{grid-template-columns:repeat(3,minmax(0,1fr))}.company-card{padding:1.45rem}.company-card>i{font-size:1.45rem;color:var(--company-blue)}.company-card h3{margin:1rem 0 .55rem;font-size:1.16rem;color:var(--company-ink)}.company-card p{margin:0}.company-check-list{display:grid;gap:.8rem;margin:1.2rem 0 0;padding:0;list-style:none}.company-check-list li{position:relative;padding-left:1.65rem;color:var(--company-muted);line-height:1.5}.company-check-list li:before{content:"✓";position:absolute;left:0;color:var(--company-blue);font-weight:900}.company-cta{display:flex;align-items:center;justify-content:space-between;gap:2rem;padding:clamp(1.6rem,4vw,3rem);border-radius:20px;background:linear-gradient(135deg,#082d5b,#0b63ce);color:#fff;box-shadow:0 18px 40px rgba(7,63,135,.22)}.company-cta h2,.company-cta p{color:#fff}.company-cta p{margin-bottom:0;opacity:.9}.company-cta .company-eyebrow{color:#bfe3ff}.company-button--light{flex:0 0 auto;background:#fff;color:#0b4f9f}.company-page img,.company-page svg,.company-page video,.company-page iframe{max-width:100%;height:auto}@media (max-width:900px){.company-grid--intro,.company-card-grid,.company-card-grid--three{grid-template-columns:repeat(2,minmax(0,1fr))}.company-grid--intro{grid-template-columns:1fr}.company-cta{align-items:flex-start;flex-direction:column}.company-button--light{width:100%}}@media (max-width:600px){.company-hero{padding:3.8rem 0}.company-hero h1{font-size:clamp(2.2rem,12vw,3.35rem)}.company-actions{flex-direction:column}.company-button{width:100%}.company-card-grid,.company-card-grid--three{grid-template-columns:1fr}.company-section{padding:3.25rem 0}.company-panel,.company-card{border-radius:14px}.company-cta{border-radius:16px}.company-page .container{width:min(100% - 2rem,1200px)}}@media (prefers-reduced-motion:reduce){.company-button{transition:none}.company-button:hover{transform:none}}


/* Company/trust refinements */
.company-breadcrumb{padding-top:18px;padding-bottom:18px}.company-page .breadcrumb{font-size:.92rem}.company-page .breadcrumb a{font-weight:700}.company-text-link{display:inline-flex;margin-top:1rem;font-weight:800;color:var(--company-blue);text-decoration:none}.company-text-link:hover{text-decoration:underline}.company-check-list--neutral li:before{content:"•"}.partnerships-page .company-card-grid{align-items:stretch}.company-page .company-card a{overflow-wrap:anywhere}.company-page .company-panel>p:last-child,.company-page .company-card>p:last-child{margin-bottom:0}
@media (max-width:1024px){.company-hero h1{font-size:clamp(2.35rem,7vw,4.6rem)}.company-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:680px){.company-card-grid,.company-card-grid--three{grid-template-columns:1fr}.company-breadcrumb{padding-top:14px;padding-bottom:14px}.company-hero__lead{font-size:1.05rem}}


/* ===== CONTACT EXPERIENCE ===== */
/* Contact page components. Global page geometry remains owned by the shared shell. */
.contact-grid{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(280px,.85fr);gap:clamp(1.5rem,4vw,4rem);align-items:start}
.contact-form-panel,.contact-info-panel{border:1px solid var(--border-color,#dbe4ec);border-radius:var(--radius-lg,18px);background:#fff;box-shadow:0 10px 30px rgba(15,23,42,.06)}
.contact-form-panel{padding:clamp(1.25rem,3vw,2.25rem)}
.contact-form-panel>p{margin-top:-.35rem;color:var(--text-muted,#5f6b7a)}
.contact-info-panel{padding:clamp(1.25rem,3vw,2rem)}
.contact-info-panel h2,.contact-form-panel h2{margin-top:0}
.contact-info-panel .info-section{padding:1rem 0;border-bottom:1px solid #edf1f5}
.contact-info-panel .info-section:first-of-type{padding-top:.25rem}
.contact-info-panel .info-section h3{margin:0 0 .3rem;font-size:1rem}
.contact-info-panel .info-section p{margin:0}
.contact-info-panel a{font-weight:750;overflow-wrap:anywhere}
.contact-location{margin-top:1.25rem;padding:1rem 1.1rem;border-radius:14px;background:#f6f8fb}
.contact-location h3{margin-top:0}.contact-location p{margin-bottom:0}
.contact-form-panel .form-group{display:grid;gap:.45rem;margin-bottom:1rem}
.contact-form-panel .form-label{font-weight:750}
.contact-form-panel .form-input,.contact-form-panel .form-select,.contact-form-panel .form-textarea{width:100%;min-height:48px;padding:.75rem .85rem;border:1px solid #b8c5d1;border-radius:10px;background:#fff;color:#172033;font:inherit}
.contact-form-panel .form-textarea{min-height:150px;resize:vertical}
.contact-form-panel .form-input:focus,.contact-form-panel .form-select:focus,.contact-form-panel .form-textarea:focus{border-color:#173f7a;box-shadow:0 0 0 3px rgba(23,63,122,.14);outline:0}
.contact-form-panel .submit-btn{width:100%;justify-content:center}
.form-status{margin-top:1rem;padding:.85rem 1rem;border-radius:10px;border:1px solid transparent}
.form-status.is-success{background:#ecfdf3;border-color:#bbf7d0;color:#166534}.form-status.is-error{background:#fff1f2;border-color:#fecdd3;color:#991b1b}
.honeypot-field{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
@media (max-width:820px){.contact-grid{grid-template-columns:1fr}.contact-info-panel{order:2}}


/* ===== COUNTRY DISCOVERY ===== */
.country-page{background:#fff}.country-growth-hero{padding:clamp(2.7rem,6vw,5.7rem) 0;background:linear-gradient(135deg,#edf6ff 0%,#fff 54%,#eefbf7 100%);border-bottom:1px solid #d9e4ee}.country-growth-hero__grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:clamp(2rem,5vw,4.5rem);align-items:center}.country-growth-hero__content{min-width:0}.country-growth-hero h1{max-width:18ch;margin:.35rem 0 1rem}.country-growth-hero .lead{max-width:68ch}.country-growth-hero__note{max-width:72ch;margin-top:1rem;font-size:.875rem;color:#526273}.country-decision-card{padding:1.5rem;border:1px solid #cbd9e6;border-radius:1rem;background:#fff;box-shadow:0 18px 42px rgba(17,48,77,.09)}.country-decision-card__label,.card-kicker{margin:0 0 .45rem;color:#0b5f8f;font-size:.76rem;font-weight:850;text-transform:uppercase;letter-spacing:.07em}.country-decision-card h2{font-size:1.2rem;margin:.2rem 0 .75rem}.country-decision-card ul{display:flex;flex-wrap:wrap;gap:.5rem;padding:0;list-style:none}.country-decision-card li{padding:.42rem .7rem;border-radius:999px;background:#edf6ff;font-weight:700;font-size:.86rem}.country-onpage-nav{display:flex;gap:.4rem;align-items:center;flex-wrap:wrap;padding-top:.75rem;padding-bottom:.75rem;border-bottom:1px solid #dde6ee;background:#fff}.country-onpage-nav strong{margin-right:.2rem}.country-onpage-nav a{min-height:42px;display:inline-flex;align-items:center;padding:.45rem .65rem;border-radius:.65rem;font-weight:750;text-decoration:none}.country-onpage-nav a:hover,.country-onpage-nav a:focus-visible{background:#edf6ff}.section-heading{max-width:780px;margin-bottom:1.6rem}.country-answer-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:1rem}.country-answer-grid article,.entry-advice{min-width:0;padding:1.35rem;border:1px solid #dce5ed;border-radius:.9rem;background:#fff}.country-answer-grid h3{font-size:1.05rem;margin-top:0}.entry-advice{margin-top:1rem;background:#fff9e8;border-color:#ecd99b}.country-practical-grid{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:2rem}.country-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem}.country-facts div{min-width:0;padding:1rem;border-radius:.75rem;background:#f5f8fb}.country-facts dt{font-size:.78rem;text-transform:uppercase;letter-spacing:.06em;font-weight:800;color:#586879}.country-facts dd{margin:.25rem 0 0;font-weight:700;overflow-wrap:anywhere}.check-list{padding:0;list-style:none}.check-list li{position:relative;padding:.5rem 0 .5rem 1.7rem}.check-list li:before{content:"✓";position:absolute;left:0;font-weight:900;color:#08775b}.country-booking-section{background:#0e2f4e;color:#fff}.country-booking-section .eyebrow,.country-booking-section p{color:#dceaf5}.country-service-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem}.country-service-grid a{display:flex;flex-direction:column;gap:.25rem;min-width:0;min-height:96px;padding:1.15rem;border-radius:.85rem;background:#fff;color:#13334f;text-decoration:none;transition:transform .2s ease,box-shadow .2s ease}.country-service-grid a:hover,.country-service-grid a:focus-visible{transform:translateY(-2px);box-shadow:0 14px 28px rgba(0,0,0,.18)}.country-service-grid span{font-size:.88rem;color:#526273}.booking-responsibility{max-width:850px;margin:1.25rem 0 0;font-size:.9rem}.section-followup{margin-top:1.25rem}.text-link{display:inline-flex;gap:.35rem;align-items:center;font-weight:800;text-decoration:none}.region-country-grid .region-country-card{display:flex;flex-direction:column}.region-country-card .text-link{margin-top:auto;padding-top:.75rem}.template-region-guide .country-growth-hero h1{max-width:16ch}.template-region-guide .country-decision-card{background:linear-gradient(180deg,#fff,#f7fbff)}.template-region-guide .content-card-grid{align-items:stretch}.template-region-guide .content-card{display:flex;flex-direction:column;min-width:0}.template-region-guide .content-card .text-link{margin-top:auto;padding-top:.7rem}
@media (max-width:1024px){.country-answer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.country-service-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:900px){.country-growth-hero__grid,.country-practical-grid{grid-template-columns:1fr}.country-growth-hero h1,.template-region-guide .country-growth-hero h1{max-width:22ch}.country-decision-card{max-width:none}.country-onpage-nav{overflow-x:auto;flex-wrap:nowrap;scrollbar-width:thin}.country-onpage-nav strong{display:none}.country-onpage-nav a{flex:0 0 auto}}
@media (max-width:620px){.country-growth-hero{padding-top:2.25rem}.country-answer-grid,.country-service-grid,.country-facts{grid-template-columns:1fr}.country-service-grid a{min-height:84px}.country-decision-card,.country-answer-grid article,.entry-advice{padding:1.15rem}.country-onpage-nav{margin-inline:0;width:100%;padding-inline:var(--tnw-gutter,20px)}}
@media (prefers-reduced-motion:reduce){.country-service-grid a{transition:none}.country-service-grid a:hover,.country-service-grid a:focus-visible{transform:none}}


/* ===== DESTINATIONS HUB ===== */
/* Destination directory — scoped page styles. Shared shell remains authoritative. */
body.template-destinations-hub .destination-directory-hero .container{max-width:980px}
body.template-destinations-hub .destination-directory-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
body.template-destinations-hub .decision-panel{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(260px,.8fr);gap:28px;align-items:center;padding:clamp(24px,4vw,40px);border:1px solid var(--tnw-line,#dbe5ee);border-radius:22px;background:#fff;box-shadow:var(--tnw-shadow,0 16px 40px rgba(11,34,57,.08))}
body.template-destinations-hub .decision-panel h2{margin-top:0}
body.template-destinations-hub .destination-directory-stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:0}
body.template-destinations-hub .destination-directory-stats div{padding:18px;border:1px solid var(--tnw-line,#dbe5ee);border-radius:16px;background:var(--tnw-soft,#f5f9fc)}
body.template-destinations-hub .destination-directory-stats dt{color:var(--tnw-muted,#5e7184);font-size:.78rem;font-weight:800;letter-spacing:.04em;text-transform:uppercase}
body.template-destinations-hub .destination-directory-stats dd{margin:5px 0 0;color:var(--tnw-navy,#0b2239);font-size:clamp(1.7rem,4vw,2.45rem);font-weight:900;line-height:1}
body.template-destinations-hub .destination-filter{display:grid;grid-template-columns:minmax(0,1.6fr) minmax(220px,.8fr) auto;gap:14px;align-items:end;margin:22px 0 14px;padding:18px;border:1px solid var(--tnw-line,#dbe5ee);border-radius:18px;background:#fff}
body.template-destinations-hub .destination-filter .form-group{margin:0}
body.template-destinations-hub .destination-filter-actions{display:flex;align-items:flex-end}
body.template-destinations-hub .destination-filter-actions .btn-secondary{min-height:48px}
body.template-destinations-hub .input-with-icon{position:relative}
body.template-destinations-hub .input-with-icon>i{position:absolute;left:15px;top:50%;transform:translateY(-50%);color:var(--tnw-muted,#5e7184);pointer-events:none}
body.template-destinations-hub .input-with-icon input{padding-left:42px}
body.template-destinations-hub .destination-result-summary{margin:0 0 18px;color:var(--tnw-muted,#5e7184);font-size:.95rem}
body.template-destinations-hub .destination-result-summary strong{color:var(--tnw-navy,#0b2239)}
body.template-destinations-hub .destination-directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;align-items:stretch}
body.template-destinations-hub .destination-directory-card{display:flex;flex-direction:column;min-width:0;padding:22px;border:1px solid var(--tnw-line,#dbe5ee);border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(11,34,57,.06)}
body.template-destinations-hub .destination-directory-card[hidden]{display:none!important}
body.template-destinations-hub .destination-directory-card__meta{display:flex;flex-wrap:wrap;gap:7px 10px;margin-bottom:11px;color:var(--tnw-muted,#5e7184);font-size:.78rem;font-weight:750}
body.template-destinations-hub .destination-directory-card__meta span{display:inline-flex;align-items:center;gap:6px}
body.template-destinations-hub .destination-directory-card h3{margin:0 0 9px;font-size:1.18rem;line-height:1.25}
body.template-destinations-hub .destination-directory-card h3 a{color:var(--tnw-navy,#0b2239);text-decoration:none}
body.template-destinations-hub .destination-directory-card h3 a:hover{text-decoration:underline;text-underline-offset:3px}
body.template-destinations-hub .destination-directory-card p{margin:0 0 16px;color:var(--tnw-muted,#5e7184)}
body.template-destinations-hub .destination-directory-tags{display:flex;flex-wrap:wrap;gap:7px;margin:auto 0 16px;padding:0;list-style:none}
body.template-destinations-hub .destination-directory-tags li{padding:6px 9px;border-radius:999px;background:var(--tnw-soft,#f5f9fc);color:var(--tnw-navy,#0b2239);font-size:.76rem;font-weight:750}
body.template-destinations-hub .destination-directory-card__link{display:inline-flex;align-items:center;gap:8px;font-weight:800;text-decoration:none}
body.template-destinations-hub .destination-directory-card__link i{font-size:.8em;transition:transform .18s ease}
body.template-destinations-hub .destination-directory-card__link:hover i{transform:translateX(3px)}
body.template-destinations-hub .destination-empty{margin-top:18px;padding:30px;text-align:center;border:1px dashed var(--tnw-line,#dbe5ee);border-radius:18px;background:var(--tnw-soft,#f5f9fc)}
body.template-destinations-hub .destination-empty[hidden]{display:none!important}
body.template-destinations-hub .destination-directory-next{border-top:1px solid var(--tnw-line,#dbe5ee)}
@media (max-width:1024px){
  body.template-destinations-hub .destination-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.template-destinations-hub .destination-filter{grid-template-columns:1fr 1fr}
  body.template-destinations-hub .destination-filter-actions{grid-column:1/-1}
}
@media (max-width:720px){
  body.template-destinations-hub .decision-panel{grid-template-columns:1fr;gap:18px}
  body.template-destinations-hub .destination-filter{grid-template-columns:1fr}
  body.template-destinations-hub .destination-filter-actions{grid-column:auto}
  body.template-destinations-hub .destination-filter-actions .btn-secondary{width:100%}
  body.template-destinations-hub .destination-directory-grid{grid-template-columns:1fr}
}
@media (max-width:480px){
  body.template-destinations-hub .destination-directory-stats{grid-template-columns:1fr}
  body.template-destinations-hub .destination-directory-actions>*{width:100%}
}


/* ===== ERROR STATES ===== */
:root{color-scheme:light;--navy:#07182a;--blue:#0c658f;--text:#203346;--muted:#607387;--line:#d9e3ea;--soft:#f4f7f9;--focus:#f1b928}
*{box-sizing:border-box}html,body{margin:0;min-height:100%;background:#f7fafc;color:var(--text);font:400 16px/1.65 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif}
body{min-height:100vh;display:grid;place-items:center;padding:24px}.error-shell{width:min(100%,720px)}.error-card{padding:clamp(28px,6vw,58px);border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:0 18px 55px rgba(7,24,42,.1)}
.error-brand{display:flex;align-items:center;gap:12px;color:var(--navy);text-decoration:none;font-weight:850}.error-brand img{width:48px;height:48px}.error-code{margin:34px 0 8px;color:var(--blue);font-size:.8rem;font-weight:850;letter-spacing:.12em;text-transform:uppercase}.error-card h1{margin:0;color:var(--navy);font-size:clamp(2rem,6vw,3.6rem);line-height:1.08;letter-spacing:-.03em}.error-card p{max-width:62ch}.error-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:26px}.error-actions a{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:10px 17px;border-radius:10px;font-weight:800;text-decoration:none}.error-actions a:first-child{background:var(--blue);color:#fff}.error-actions a:last-child{border:1px solid #a9c0ce;color:#074765;background:#fff}.error-actions a:focus-visible{outline:3px solid var(--focus);outline-offset:3px}.error-note{margin-top:26px;padding-top:18px;border-top:1px solid var(--line);color:var(--muted);font-size:.9rem}
@media (max-width:540px){body{padding:14px}.error-card{border-radius:18px}.error-actions{display:grid}.error-actions a{width:100%}}


/* ===== FLIGHT COMPENSATION ===== */
/* Flight compensation — page-specific dialog treatment. Global layout lives in site-production.css. */
html.modal-open{overflow:hidden}
.flight-comp-page{padding-bottom:clamp(3rem,6vw,5rem)}
.flight-comp-page>.trust-strip{margin-top:0}
.modal-overlay{position:fixed;inset:0;z-index:20000;display:none;align-items:center;justify-content:center;padding:clamp(16px,3vw,32px);background:rgba(7,24,42,.72);backdrop-filter:blur(4px)}
.modal-overlay.show{display:flex}
.modal-dialog{position:relative;width:min(100%,760px);max-height:min(90vh,820px);overflow:auto;padding:clamp(22px,4vw,36px);border:1px solid var(--tnw-line,#d9e3ea);border-radius:20px;background:#fff;color:var(--tnw-text,#203346);box-shadow:0 28px 80px rgba(7,24,42,.28);scrollbar-gutter:stable}
.modal-dialog .section-title{padding-right:44px;margin-bottom:8px;color:var(--tnw-navy,#0b2239);font-size:clamp(1.35rem,3vw,1.8rem)}
.modal-dialog .section-intro{margin-bottom:18px;color:var(--tnw-muted,#607387)}
.modal-close{position:absolute;top:14px;right:14px;display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border:1px solid var(--tnw-line,#d9e3ea);border-radius:50%;background:#fff;color:var(--tnw-navy,#0b2239);font:700 1.5rem/1 system-ui;cursor:pointer}
.modal-close:hover{background:var(--tnw-soft,#f4f7f9)}
.modal-dialog .widget-placeholder{min-height:140px;padding:14px;border:1px solid var(--tnw-line,#d9e3ea);border-radius:14px;background:var(--tnw-soft,#f4f7f9);overflow:hidden}
.modal-dialog .widget-placeholder :where(iframe,div){max-width:100%}
@media (max-width:700px){.modal-overlay{align-items:flex-end;padding:0}.modal-dialog{max-height:92vh;border-radius:20px 20px 0 0;padding:22px 18px 26px}}
@media (prefers-reduced-motion:no-preference){.modal-overlay.show .modal-dialog{animation:tnw-modal-in .16s ease-out}@keyframes tnw-modal-in{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}}


/* ===== LEGAL + TRUST ===== */
/* Travel Network World — legal and trust */
body.tnw-site .legal-main{background:#fff;color:#17283b}
body.tnw-site .legal-main>.breadcrumb{padding-top:18px;padding-bottom:18px}
body.tnw-site .legal-hero{padding-block:clamp(54px,7vw,86px);background:linear-gradient(135deg,#071a2d 0%,#0b4164 62%,#0d6688 100%)}
body.tnw-site .legal-hero .container{max-width:1040px}
body.tnw-site .legal-hero .eyebrow{margin:0 0 .7rem;font-size:.78rem;font-weight:850;letter-spacing:.14em;text-transform:uppercase;color:#b9e3f5}
body.tnw-site .legal-hero .page-title{max-width:900px;margin:0;color:#fff;font-size:clamp(2.35rem,5.8vw,4.8rem);line-height:1.02;letter-spacing:-.04em}
body.tnw-site .legal-hero .legal-meta{margin:1rem 0 0;color:#cfe7f2;font-size:.92rem}
body.tnw-site .legal-hero .legal-lead{max-width:820px;margin:1.2rem 0 0;color:rgba(255,255,255,.92);font-size:clamp(1.02rem,2vw,1.22rem);line-height:1.72}
body.tnw-site .legal-subnav{position:relative;border-bottom:1px solid #dbe5ee;background:#fff}
body.tnw-site .legal-subnav ul{display:flex;gap:.35rem;overflow-x:auto;margin:0;padding:12px 0;list-style:none;scrollbar-width:thin}
body.tnw-site .legal-subnav a{display:inline-flex;align-items:center;min-height:42px;padding:.58rem .86rem;border-radius:9px;color:#36526b;font-size:.92rem;font-weight:760;text-decoration:none;white-space:nowrap}
body.tnw-site .legal-subnav a:hover{background:#eef6fb;color:#084d73}
body.tnw-site .legal-subnav a[aria-current="page"]{background:#0b557c;color:#fff}
body.tnw-site .legal-content{padding-block:clamp(42px,6vw,76px)}
body.tnw-site .legal-content>.legal-reading,body.tnw-site .legal-content>.container.legal-reading{width:min(calc(100% - 2 * var(--tnw-gutter)),860px);max-width:860px;margin-inline:auto}
body.tnw-site .legal-reading{font-size:1rem;line-height:1.78;color:#263b4f}
body.tnw-site .legal-reading p{margin:0 0 1.1rem}
body.tnw-site .legal-reading h2{scroll-margin-top:120px;margin:2.65rem 0 .85rem;color:#10283c;font-size:clamp(1.45rem,2.8vw,2rem);line-height:1.2;letter-spacing:-.02em}
body.tnw-site .legal-reading h3{margin:1.8rem 0 .65rem;color:#18364d;font-size:1.18rem}
body.tnw-site .legal-reading ul,body.tnw-site .legal-reading ol{margin:0 0 1.35rem;padding-left:1.35rem}
body.tnw-site .legal-reading li{margin:.45rem 0}
body.tnw-site .legal-reading a{font-weight:700;text-decoration-thickness:1px;text-underline-offset:3px}
body.tnw-site .legal-summary{margin:0 0 2rem;padding:clamp(1.2rem,3vw,1.7rem);border:1px solid #c9dfeb;border-left:5px solid #0b668f;border-radius:14px;background:#f3f9fc;box-shadow:0 10px 26px rgba(14,68,96,.06)}
body.tnw-site .legal-summary h2{margin:0 0 .7rem;font-size:1.35rem}
body.tnw-site .legal-summary p:last-child{margin-bottom:0}
body.tnw-site .legal-fact-list{display:grid;gap:.65rem;margin:0!important;padding:0!important;list-style:none}
body.tnw-site .legal-fact-list li{position:relative;margin:0;padding-left:1.35rem}
body.tnw-site .legal-fact-list li:before{content:"";position:absolute;left:0;top:.68em;width:7px;height:7px;border-radius:999px;background:#0b668f}
body.tnw-site .legal-toc{display:flex;flex-wrap:wrap;gap:.45rem;margin:0 0 2rem;padding:1rem;border:1px solid #dce7ee;border-radius:12px;background:#fff}
body.tnw-site .legal-toc strong{flex:0 0 100%;color:#142d42}
body.tnw-site .legal-toc a{display:inline-flex;padding:.4rem .62rem;border-radius:7px;background:#f1f5f8;color:#31536b;font-size:.88rem;text-decoration:none}
body.tnw-site .legal-toc a:hover{background:#e2f1f8;color:#084d73}
body.tnw-site .legal-card-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;margin-top:1.5rem}
body.tnw-site .legal-card{padding:1.35rem;border:1px solid #dce7ee;border-radius:14px;background:#fff;box-shadow:0 9px 25px rgba(18,56,82,.06)}
body.tnw-site .legal-card h2{margin:0 0 .55rem;font-size:1.3rem}
body.tnw-site .legal-card p{color:#526779}
body.tnw-site .legal-card a{display:inline-flex;margin-top:.35rem}
body.tnw-site .legal-contact-panel{margin-top:2rem;padding:1.4rem;border-radius:14px;background:#102d43;color:#fff}
body.tnw-site .legal-contact-panel h2{margin:0 0 .6rem;color:#fff;font-size:1.3rem}
body.tnw-site .legal-contact-panel p{margin:0;color:#e0edf4}
body.tnw-site .legal-contact-panel a{color:#fff}
@media (max-width:700px){body.tnw-site .legal-card-grid{grid-template-columns:1fr}body.tnw-site .legal-subnav .container{width:min(100% - 1rem,var(--tnw-shell))}body.tnw-site .legal-hero{padding-block:46px}body.tnw-site .legal-hero .page-title{font-size:clamp(2.15rem,11vw,3.35rem)}body.tnw-site .legal-content>.legal-reading,body.tnw-site .legal-content>.container.legal-reading{width:min(calc(100% - 2rem),860px)}}
@media (prefers-reduced-motion:reduce){body.tnw-site .legal-reading h2{scroll-behavior:auto}}


/* ===== SUPPORT CENTER ===== */
.support-center{background:#fff}.support-hero{padding:clamp(2.8rem,6vw,5.8rem) 0;background:linear-gradient(135deg,#eef7ff 0%,#fff 55%,#eefaf6 100%);border-bottom:1px solid #dbe5ee}.support-hero__grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(300px,.65fr);gap:clamp(2rem,5vw,4.5rem);align-items:center}.support-hero h1{max-width:15ch;margin:.35rem 0 1rem}.support-hero .lead{max-width:68ch}.support-ownership-card{padding:1.6rem;border:1px solid #c9d9e6;border-radius:1rem;background:#fff;box-shadow:0 18px 42px rgba(17,48,77,.09)}.support-status{display:inline-flex;padding:.35rem .65rem;border-radius:999px;background:#e9f7f2;color:#09624f;font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.05em}.support-ownership-card h2{font-size:1.3rem;margin:.85rem 0 .65rem}.support-quick-nav{position:sticky;top:var(--tnw-header-height,76px);z-index:25;border-bottom:1px solid #dce5ed;background:rgba(255,255,255,.96);backdrop-filter:blur(12px)}.support-quick-nav .container{display:flex;gap:.35rem;overflow-x:auto;padding-top:.65rem;padding-bottom:.65rem;scrollbar-width:thin}.support-quick-nav a{flex:0 0 auto;padding:.55rem .8rem;border-radius:.7rem;font-weight:750;text-decoration:none}.support-quick-nav a:hover,.support-quick-nav a:focus-visible{background:#edf6ff}.support-section{padding:clamp(3rem,6vw,5rem) 0}.support-section--alt{background:#f6f9fc}.support-section--safety{background:#0e2f4e;color:#fff}.support-section--safety .eyebrow,.support-section--safety p{color:#dceaf5}.support-route-grid,.support-contact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.support-route-card,.support-contact-card{padding:1.4rem;border:1px solid #dbe5ed;border-radius:1rem;background:#fff;box-shadow:0 12px 30px rgba(18,50,78,.06)}.support-route-card--provider{border-color:#a8c8df;background:#f7fbff}.support-icon{display:grid;place-items:center;width:2.65rem;height:2.65rem;border-radius:.75rem;background:#eaf4fb;color:#0b5f8f;font-size:1.1rem}.support-route-card h3,.support-contact-card h3{margin:.9rem 0 .55rem;font-size:1.15rem}.support-meta{display:block;margin-top:.8rem;color:#5a6c7d;font-size:.88rem}.support-two-column{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:clamp(2rem,5vw,4rem);align-items:start}.support-two-column--compact{align-items:center}.support-steps{display:grid;gap:.85rem;padding:0;list-style:none;counter-reset:none}.support-steps li{display:grid;grid-template-columns:2.4rem 1fr;gap:.85rem;padding:1rem;border:1px solid #dbe5ed;border-radius:.9rem;background:#fff}.support-steps li>span{display:grid;place-items:center;width:2.2rem;height:2.2rem;border-radius:999px;background:#0e5c8a;color:#fff;font-weight:850}.support-steps p{margin:.3rem 0 0}.support-answer-panel{padding:1.5rem;border-radius:1rem;background:#0e2f4e;color:#fff;box-shadow:0 18px 42px rgba(17,48,77,.13)}.support-answer-panel h3{color:#fff}.support-answer-panel p,.support-answer-panel li{color:#e3eef6}.support-answer-panel ul{padding-left:1.2rem}.support-safety-list{display:grid;gap:.7rem;margin:0;padding:0;list-style:none}.support-safety-list li{position:relative;padding-left:1.65rem;color:#eef6fb}.support-safety-list li:before{content:"✓";position:absolute;left:0;color:#74ddb9;font-weight:900}@media (max-width:900px){.support-hero__grid,.support-two-column{grid-template-columns:1fr}.support-route-grid,.support-contact-grid{grid-template-columns:1fr 1fr}.support-quick-nav{top:var(--tnw-header-height-mobile,70px)}}@media (max-width:620px){.support-route-grid,.support-contact-grid{grid-template-columns:1fr}.support-hero{padding-top:2.25rem}.support-quick-nav a{min-height:44px;display:inline-flex;align-items:center}.support-route-card,.support-contact-card,.support-ownership-card{padding:1.15rem}.support-two-column{gap:1.5rem}}


/* ===== TRAVEL MARKETPLACE ===== */
.partner-marketplace{margin-block:clamp(2rem,5vw,4.5rem)}
.partner-marketplace__head{max-width:760px;margin-bottom:1.5rem}.partner-marketplace__head p{color:var(--text-muted,#5f6b7a)}
.marketplace-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),1fr));gap:1rem}
.marketplace-card{display:flex;flex-direction:column;overflow:hidden;border:1px solid rgba(15,23,42,.12);border-radius:18px;background:#fff;box-shadow:0 8px 24px rgba(15,23,42,.06);min-height:100%}
.marketplace-card>img{width:100%;aspect-ratio:16/10;object-fit:cover;background:#eef2f7}.marketplace-card__body{display:flex;flex-direction:column;gap:.75rem;padding:1.1rem;height:100%}
.marketplace-card__meta{margin:0;font-size:.72rem;font-weight:800;letter-spacing:.08em;color:#586174}.marketplace-card h3,.marketplace-card p{margin:0}.marketplace-card__facts{display:flex;gap:.75rem;align-items:center;flex-wrap:wrap;margin-top:auto}.marketplace-card__facts strong{font-size:1.08rem}.marketplace-card .btn-primary{align-self:flex-start;margin-top:.2rem}
.marketplace-status{padding:1rem 1.1rem;border:1px dashed rgba(15,23,42,.18);border-radius:14px;background:rgba(248,250,252,.9)}
.marketplace-search{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:.75rem;margin:1rem 0 1.5rem}.marketplace-search input{min-width:0}
.partner-disclosure{font-size:.88rem;color:#667085;margin-top:1rem}.partner-program-strip{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:1rem}.partner-program-strip span{padding:.45rem .7rem;border-radius:999px;background:#f1f5f9;font-size:.8rem;font-weight:700}
@media (max-width:640px){.marketplace-search{grid-template-columns:1fr}.marketplace-search .btn-primary{width:100%}}
.transfer-search-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}.transfer-field{position:relative}.location-suggestions{position:absolute;z-index:12;inset-inline:0;top:100%;background:#fff;border:1px solid rgba(15,23,42,.14);border-radius:12px;box-shadow:0 14px 32px rgba(15,23,42,.12);overflow:hidden}.location-suggestion{display:block;width:100%;padding:.75rem .9rem;text-align:left;border:0;border-bottom:1px solid #eef2f6;background:#fff;cursor:pointer}.location-suggestion:hover,.location-suggestion:focus{background:#f8fafc}.transfer-search-grid .field-wide{grid-column:1/-1}@media (max-width:700px){.transfer-search-grid{grid-template-columns:1fr}.transfer-search-grid .field-wide{grid-column:auto}}

/* ===== FLIGHTSCOPE + PLATFORM ENHANCEMENTS ===== */
:root{
  --tnw-surface:#fff;
  --tnw-surface-soft:#f5f8fb;
  --tnw-surface-tint:#edf6fb;
  --tnw-border:#d8e3ea;
  --tnw-border-strong:#b9ceda;
  --tnw-ink:#11283b;
  --tnw-muted:#5c7182;
  --tnw-blue:#0b6390;
  --tnw-blue-dark:#074b70;
  --tnw-green:#14805e;
  --tnw-gold:#f1b928;
  --tnw-danger:#a4262c;
  --tnw-shadow-sm:0 8px 24px rgba(16,45,66,.07);
  --tnw-shadow-md:0 18px 46px rgba(16,45,66,.11);
  --tnw-radius-sm:12px;
  --tnw-radius-md:18px;
  --tnw-radius-lg:26px;
}
body.tnw-site{background:#fff;color:var(--tnw-ink);text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}
body.tnw-site main{min-height:55vh}
body.tnw-site :where(button,a,input,select,textarea){-webkit-tap-highlight-color:transparent}
body.tnw-site :where(button,[role="button"],a.btn-primary,a.btn-secondary){touch-action:manipulation}
body.tnw-site :where(input,select,textarea){accent-color:var(--tnw-blue)}
body.tnw-site :where(input,select,textarea):focus-visible{outline:3px solid color-mix(in srgb,var(--tnw-blue) 22%,transparent);outline-offset:1px;border-color:var(--tnw-blue)}
body.tnw-site :where(.btn-primary,.btn-secondary,.btn-outline){min-height:46px;border-radius:12px;transition:transform .16s ease,box-shadow .16s ease,background-color .16s ease,border-color .16s ease}
body.tnw-site :where(.btn-primary,.btn-secondary,.btn-outline):not(:disabled):hover{transform:translateY(-1px)}
body.tnw-site :where(.btn-primary,.btn-secondary,.btn-outline):disabled{cursor:wait;opacity:.64;transform:none}

body.tnw-site .travel-search-panel{position:relative;isolation:isolate;margin-top:clamp(1.25rem,3vw,2rem);padding:clamp(1rem,2.4vw,1.35rem);border:1px solid rgba(255,255,255,.4);border-radius:22px;background:rgba(255,255,255,.97);box-shadow:0 24px 64px rgba(7,34,53,.18);color:var(--tnw-ink);backdrop-filter:blur(16px)}
body.tnw-site .travel-search-form{display:grid;gap:1rem}
body.tnw-site .travel-search-form .search-fields{display:grid;grid-template-columns:minmax(118px,.8fr) minmax(118px,.8fr) minmax(148px,.9fr) minmax(148px,.9fr) minmax(92px,.55fr);gap:.75rem;align-items:end}
body.tnw-site .travel-search-form[data-search-mode="hotels"] .search-fields{grid-template-columns:minmax(220px,1.5fr) minmax(148px,.9fr) minmax(148px,.9fr) minmax(92px,.55fr)}
body.tnw-site .travel-search-form .form-group{display:grid;gap:.42rem;min-width:0}
body.tnw-site .travel-search-form label{color:#294357;font-size:.78rem;font-weight:850;letter-spacing:.015em}
body.tnw-site .travel-search-form :where(input,select){width:100%;min-height:52px;padding:.78rem .9rem;border:1px solid var(--tnw-border);border-radius:12px;background:#fff;color:var(--tnw-ink);font:inherit;font-weight:650;box-shadow:inset 0 1px 1px rgba(15,45,65,.02)}
body.tnw-site .travel-search-form :where(input,select):hover{border-color:var(--tnw-border-strong)}
body.tnw-site .travel-search-form input[name="origin"],body.tnw-site .travel-search-form input[name="destination"]{text-transform:uppercase;letter-spacing:.08em;font-weight:850}
body.tnw-site .travel-search-form .search-option{display:flex;align-items:center;gap:.65rem;grid-column:1/-1;min-height:46px;padding:.65rem .75rem;border:1px solid #dce7ed;border-radius:12px;background:#f8fbfd;cursor:pointer}
body.tnw-site .travel-search-form .search-option input{width:19px;min-height:19px;flex:0 0 auto}
body.tnw-site .travel-search-form .search-option span{display:grid;gap:.1rem}
body.tnw-site .travel-search-form .search-option strong{font-size:.86rem;color:#17344a}
body.tnw-site .travel-search-form .search-option small{color:var(--tnw-muted);font-size:.76rem;font-weight:550}
body.tnw-site .travel-search-form .search-buttons{display:flex;gap:.65rem;flex-wrap:wrap}
body.tnw-site .travel-search-form .search-action{min-width:min(100%,230px);justify-content:center}
body.tnw-site .search-results{margin-top:1rem}
body.tnw-site .search-loading,body.tnw-site .search-status,body.tnw-site .search-empty,body.tnw-site .search-error,body.tnw-site .search-warning{padding:1rem 1.1rem;border-radius:13px;border:1px solid var(--tnw-border);background:#f7fafc;color:#355065}
body.tnw-site .search-error{border-color:#efc7ca;background:#fff4f4;color:#8f2328}
body.tnw-site .search-warning{border-color:#ead9a9;background:#fffaf0;color:#725515}

body.tnw-site .flight-results-shell{display:grid;gap:1rem;padding-top:.35rem}
body.tnw-site .flight-results-head{display:flex;align-items:end;justify-content:space-between;gap:1rem}
body.tnw-site .flight-results-head h3{margin:.15rem 0 0;font-size:clamp(1.25rem,2.4vw,1.7rem)}
body.tnw-site .flight-result-controls label{display:grid;gap:.35rem;color:var(--tnw-muted);font-size:.75rem;font-weight:800}
body.tnw-site .flight-result-controls select{min-height:42px;padding:.55rem 2rem .55rem .75rem;border:1px solid var(--tnw-border);border-radius:10px;background:#fff;color:var(--tnw-ink);font:inherit;font-weight:700}
body.tnw-site .results-disclosure{margin:0;padding:.78rem .9rem;border-radius:11px;background:#f2f8fb;color:#4b6577;font-size:.84rem;line-height:1.55}
body.tnw-site .flight-results-grid{display:grid;gap:.85rem}
body.tnw-site .flight-card{display:grid;grid-template-columns:minmax(0,1.5fr) minmax(150px,.55fr);grid-template-areas:"route action" "meta action";gap:.75rem 1rem;align-items:center;padding:clamp(1rem,2.2vw,1.25rem);border:1px solid var(--tnw-border);border-radius:18px;background:#fff;box-shadow:var(--tnw-shadow-sm);transition:border-color .16s ease,box-shadow .16s ease,transform .16s ease}
body.tnw-site .flight-card:hover{transform:translateY(-1px);border-color:#a8c6d5;box-shadow:0 15px 34px rgba(16,45,66,.1)}
body.tnw-site .flight-card__route{grid-area:route;display:grid;grid-template-columns:minmax(92px,.6fr) minmax(150px,1fr) minmax(92px,.6fr);gap:.8rem;align-items:center}
body.tnw-site .flight-card__airport{display:grid;gap:.15rem}
body.tnw-site .flight-card__airport strong{font-size:1.35rem;letter-spacing:.04em;color:#0b2f48}
body.tnw-site .flight-card__airport span{font-size:.78rem;color:var(--tnw-muted)}
body.tnw-site .flight-card__airport--end{text-align:right}
body.tnw-site .flight-card__line{display:grid;grid-template-columns:auto minmax(28px,1fr) auto;gap:.45rem;align-items:center;color:#5d7180;font-size:.75rem;text-align:center}
body.tnw-site .flight-card__connector{height:1px;background:linear-gradient(90deg,#c4d7e2,#5f9ebb,#c4d7e2);position:relative}
body.tnw-site .flight-card__connector:after{content:"✈";position:absolute;left:50%;top:50%;transform:translate(-50%,-54%);padding:0 .25rem;background:#fff;color:var(--tnw-blue);font-size:.74rem}
body.tnw-site .flight-card__meta{grid-area:meta;display:flex;flex-wrap:wrap;gap:.4rem .8rem;color:#657b8c;font-size:.78rem}
body.tnw-site .flight-card__meta span{display:inline-flex;align-items:center;gap:.35rem}
body.tnw-site .flight-card__action{grid-area:action;display:grid;gap:.65rem;justify-items:end;align-self:stretch;align-content:center;padding-left:1rem;border-left:1px solid #e4ebef}
body.tnw-site .flight-card__price{display:grid;justify-items:end;gap:.1rem}
body.tnw-site .flight-card__price small{color:#718493;font-size:.7rem;font-weight:750;text-transform:uppercase;letter-spacing:.045em}
body.tnw-site .flight-card__price strong{font-size:1.5rem;color:#0a5d86}
body.tnw-site .flight-card__action .btn-primary{white-space:nowrap}
body.tnw-site .search-card--handoff{display:grid;gap:.75rem;padding:1.2rem;border:1px solid var(--tnw-border);border-radius:18px;background:#fff;box-shadow:var(--tnw-shadow-sm)}

body.tnw-site .flight-insights-section{background:linear-gradient(180deg,#f6fafc 0%,#eef6fa 100%);border-block:1px solid #e0e9ee}
body.tnw-site .flight-insights__heading{display:flex;justify-content:space-between;gap:2rem;align-items:end;max-width:900px}
body.tnw-site .flight-insights__heading p:last-child{max-width:70ch;color:var(--tnw-muted)}
body.tnw-site .flight-insights__toolbar{display:flex;flex-wrap:wrap;gap:.65rem;margin:1.35rem 0}
body.tnw-site .flight-insights__toolbar .btn-secondary{display:inline-flex;align-items:center;gap:.5rem;background:#fff}
body.tnw-site .flight-insights__output{display:grid;gap:1rem;margin-top:1rem}
body.tnw-site .flight-insights__status{padding:1.1rem;border:1px dashed #b8ceda;border-radius:14px;background:rgba(255,255,255,.78);color:#4e687a}
body.tnw-site .flight-insights__result-head{display:grid;gap:.5rem}
body.tnw-site .flight-insights__result-head h3{margin:0;font-size:1.35rem}
body.tnw-site .flight-insights__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.85rem}
body.tnw-site .flight-insight-card{display:flex;flex-direction:column;gap:.65rem;min-height:190px;padding:1rem;border:1px solid var(--tnw-border);border-radius:16px;background:#fff;box-shadow:var(--tnw-shadow-sm)}
body.tnw-site .flight-insight-card__route{margin:0;color:#587084;font-size:.74rem;font-weight:850;text-transform:uppercase;letter-spacing:.055em}
body.tnw-site .flight-insight-card h4{margin:0;color:#16374d;font-size:1.05rem}
body.tnw-site .flight-insight-card__facts{display:flex;gap:.4rem .65rem;flex-wrap:wrap;align-items:center;color:#607789;font-size:.78rem}
body.tnw-site .flight-insight-card__facts strong{width:100%;color:#0b668f;font-size:1.35rem}
body.tnw-site .flight-insight-card .btn-primary{align-self:flex-start;margin-top:auto}
body.tnw-site .flight-insights__disclosure{margin:1rem 0 0;padding:1rem 1.1rem;border-left:4px solid #0b668f;border-radius:0 12px 12px 0;background:#fff;color:#506879;font-size:.84rem;line-height:1.6}

body.tnw-site :where(.card,.marketplace-card,.destination-card,.deal-card,.legal-card,.support-route-card,.support-contact-card){transition:transform .16s ease,box-shadow .16s ease,border-color .16s ease}
body.tnw-site :where(.card,.marketplace-card,.destination-card,.deal-card,.legal-card,.support-route-card,.support-contact-card):hover{transform:translateY(-2px);box-shadow:var(--tnw-shadow-md)}

@media (max-width:1080px){
  body.tnw-site .travel-search-form .search-fields{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.tnw-site .travel-search-form[data-search-mode="hotels"] .search-fields{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.tnw-site .flight-insights__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:760px){
  body.tnw-site .travel-search-panel{border-radius:18px;padding:1rem}
  body.tnw-site .travel-search-form .search-fields,body.tnw-site .travel-search-form[data-search-mode="hotels"] .search-fields{grid-template-columns:1fr}
  body.tnw-site .travel-search-form .search-option{grid-column:auto}
  body.tnw-site .travel-search-form .search-action{width:100%}
  body.tnw-site .flight-results-head{align-items:stretch;flex-direction:column}
  body.tnw-site .flight-result-controls select{width:100%}
  body.tnw-site .flight-card{grid-template-columns:1fr;grid-template-areas:"route" "meta" "action"}
  body.tnw-site .flight-card__action{justify-items:stretch;border-left:0;border-top:1px solid #e4ebef;padding:1rem 0 0;grid-template-columns:1fr auto;align-items:center}
  body.tnw-site .flight-card__price{justify-items:start}
  body.tnw-site .flight-insights__grid{grid-template-columns:1fr}
  body.tnw-site .flight-insights__toolbar{display:grid;grid-template-columns:1fr 1fr}
  body.tnw-site .flight-insights__toolbar .btn-secondary{width:100%;justify-content:center}
}
@media (max-width:520px){
  body.tnw-site .flight-card__route{grid-template-columns:1fr auto 1fr;gap:.5rem}
  body.tnw-site .flight-card__line{grid-template-columns:1fr;gap:.2rem}
  body.tnw-site .flight-card__connector{width:46px;justify-self:center}
  body.tnw-site .flight-card__duration{display:none}
  body.tnw-site .flight-card__action{grid-template-columns:1fr}
  body.tnw-site .flight-card__action .btn-primary{width:100%;justify-content:center}
  body.tnw-site .flight-insights__toolbar{grid-template-columns:1fr}
}
@media (prefers-reduced-motion:reduce){
  body.tnw-site :where(.btn-primary,.btn-secondary,.btn-outline,.flight-card,.card,.marketplace-card,.destination-card,.deal-card){transition:none!important;transform:none!important}
}

/* Interaction hardening: unavailable partner handoffs and async regions. */
body.tnw-site .search-result-cta[aria-disabled="true"]{cursor:not-allowed;opacity:.62;background:#657b8c;border-color:#657b8c;box-shadow:none;pointer-events:auto}
body.tnw-site .search-results[aria-busy="true"],body.tnw-site [data-flight-insights-output][aria-busy="true"]{opacity:.76;transition:opacity .15s ease}
@media (prefers-reduced-motion:reduce){body.tnw-site .search-results[aria-busy="true"],body.tnw-site [data-flight-insights-output][aria-busy="true"]{transition:none}}

/* ===== CONSOLIDATED PUBLIC COMPONENTS (legacy shell rules removed in R15) =====
 * Authoritative public presentation layer.
 * This component layer intentionally lives near the end of the consolidated production bundle so
 * older component declarations cannot override the production shell.
 */
[hidden]{display:none!important}
html{box-sizing:border-box;scroll-behavior:smooth;scroll-padding-top:92px}
*,*::before,*::after{box-sizing:inherit}
html,body{width:100%;max-width:100%;margin:0;padding:0;overflow-x:clip}
body.tnw-site{min-width:320px;background:#fff;color:#10283a;font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
body.tnw-site img{max-width:100%;height:auto}
body.tnw-site :where(button,input,select,textarea){font:inherit}
body.tnw-site :where(a,button,input,select,textarea):focus-visible{outline:3px solid rgba(20,99,255,.26);outline-offset:3px}
body.tnw-site .site-main{width:100%;min-height:50vh;margin:0;padding:0}
body.tnw-site .btn-primary,body.tnw-site .btn-secondary{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;min-height:46px;padding:.72rem 1.05rem;border-radius:12px;font-weight:800;line-height:1.15;text-align:center;text-decoration:none;cursor:pointer}
body.tnw-site .btn-primary{border:1px solid #0b6d9c;background:linear-gradient(135deg,#0e7dab,#075f89);color:#fff;box-shadow:0 8px 20px rgba(7,95,137,.18)}
body.tnw-site .btn-primary:hover{background:linear-gradient(135deg,#0c719c,#064f75);color:#fff;text-decoration:none}
body.tnw-site .btn-secondary{border:1px solid #c8d8e2;background:#fff;color:#113249}
body.tnw-site .btn-secondary:hover{border-color:#86adc2;background:#f3f9fc;color:#0b5f87;text-decoration:none}

/* Global header */


































/* Homepage hero and search hub */
body.tnw-site.section-home .tnw-home-hero{position:relative;width:100%;margin:0;padding:clamp(54px,6vw,92px) 0;background:radial-gradient(circle at 82% 20%,rgba(36,171,211,.24),transparent 34%),linear-gradient(122deg,#061a31 0%,#08395a 52%,#087497 100%);color:#fff;overflow:hidden}
body.tnw-site.section-home .tnw-home-hero::before{content:"";position:absolute;inset:0;pointer-events:none;background:linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(to bottom,#000,transparent 92%)}
body.tnw-site.section-home .tnw-home-hero>.container{position:relative;z-index:1;width:min(calc(100% - 48px),1440px);max-width:none}
body.tnw-site.section-home .tnw-home-hero__grid{display:grid!important;grid-template-columns:minmax(340px,.78fr) minmax(620px,1.22fr)!important;gap:clamp(42px,5vw,86px)!important;align-items:center!important}
body.tnw-site.section-home .tnw-home-hero__copy{min-width:0;max-width:610px;margin:0!important;padding:0!important}
body.tnw-site.section-home .tnw-home-hero .tnw-eyebrow{display:inline-flex;align-items:center;gap:7px;margin:0 0 18px;padding:7px 12px;border:1px solid rgba(255,255,255,.2);border-radius:999px;background:rgba(255,255,255,.075);color:#bdeafd!important;font-size:.71rem;font-weight:850;letter-spacing:.115em;text-transform:uppercase}
body.tnw-site.section-home .tnw-home-hero h1{max-width:11.8ch;margin:0 0 22px!important;color:#fff!important;font-size:clamp(3rem,4.55vw,5.2rem)!important;font-weight:900!important;line-height:.96!important;letter-spacing:-.05em!important;text-wrap:balance}
body.tnw-site.section-home .tnw-home-hero h1>span{display:block!important}
body.tnw-site.section-home .tnw-home-hero__copy>p{max-width:58ch;margin:0!important;color:#d8e9f3!important;font-size:clamp(1rem,1.22vw,1.15rem)!important;line-height:1.72!important}
body.tnw-site.section-home .tnw-trust-row{display:flex;flex-wrap:wrap;gap:9px 15px;margin-top:24px;color:#d9e9f2;font-size:.78rem;font-weight:700}
body.tnw-site.section-home .tnw-trust-row span{display:inline-flex;align-items:center;gap:6px}
body.tnw-site.section-home .tnw-trust-row i{display:grid;place-items:center;width:18px;height:18px;border-radius:50%;background:rgba(95,217,180,.18);color:#7ce7c0;font-size:.62rem}

body.tnw-site .tnw-booking-hub{position:relative;z-index:20;width:100%!important;max-width:880px!important;margin:0!important;border:1px solid rgba(255,255,255,.65)!important;border-radius:22px!important;background:#fff!important;color:#132f43!important;box-shadow:0 32px 90px rgba(0,0,0,.28)!important;overflow:visible!important}
body.tnw-site .tnw-product-tabs{display:grid!important;grid-template-columns:repeat(5,minmax(0,1fr));align-items:stretch;margin:0!important;padding:7px!important;border-bottom:1px solid #e0e8ed;border-radius:22px 22px 0 0;background:#f8fbfd;overflow:hidden}
body.tnw-site .tnw-product-tabs :where(button,a){display:flex;align-items:center;justify-content:center;gap:7px;min-width:0;min-height:48px;margin:0!important;padding:8px 8px;border:0!important;border-radius:11px!important;background:transparent!important;color:#435e70!important;font-size:.77rem;font-weight:820;line-height:1.15;text-decoration:none!important;white-space:nowrap;cursor:pointer}
body.tnw-site .tnw-product-tabs :where(button,a):hover{background:#edf7fb!important;color:#075f88!important}
body.tnw-site .tnw-product-tabs button[aria-selected="true"]{background:#e4f4fb!important;color:#086a95!important;box-shadow:inset 0 0 0 1px #c4e2ee}
body.tnw-site .tnw-hub-panel{display:block;margin:0;padding:22px!important}
body.tnw-site .tnw-hub-panel[hidden]{display:none!important}
body.tnw-site .tnw-search-panel-heading{display:flex!important;align-items:flex-start!important;justify-content:space-between!important;gap:18px!important;margin:0 0 18px!important}
body.tnw-site .tnw-search-panel-heading>div{display:grid;gap:4px;min-width:0}
body.tnw-site .tnw-search-panel-heading strong{color:#0f2c42;font-size:.95rem;font-weight:850}
body.tnw-site .tnw-search-panel-heading span:not(.tnw-search-disclosure){color:#708695;font-size:.78rem;line-height:1.45}
body.tnw-site .tnw-search-disclosure{flex:0 0 auto;padding:7px 10px;border:1px solid #d5e2e9;border-radius:999px;background:#f6f9fb;color:#5a7384!important;font-size:.69rem!important;font-weight:750;white-space:nowrap}
body.tnw-site .tnw-hub-form{display:grid!important;grid-template-columns:repeat(12,minmax(0,1fr))!important;gap:14px 10px!important;align-items:end!important;width:100%!important;margin:0!important}
body.tnw-site .tnw-hub-field{position:relative;display:grid;gap:6px;min-width:0;margin:0!important}
body.tnw-site .tnw-hub-field label{margin:0;color:#2b485c;font-size:.69rem;font-weight:850;line-height:1.15}
body.tnw-site .tnw-hub-field small{min-height:1.05rem;margin:0;color:#7d91a0;font-size:.65rem;line-height:1.25;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
body.tnw-site .tnw-field-control{position:relative;display:flex;align-items:center;min-width:0;height:50px}
body.tnw-site .tnw-field-control>i{position:absolute;z-index:2;left:12px;width:18px;color:#427187;font-size:.82rem;text-align:center;pointer-events:none}
body.tnw-site .tnw-field-control :where(input:not([type="hidden"]),select){display:block;width:100%!important;min-width:0!important;height:50px!important;margin:0!important;padding:0 11px 0 38px!important;border:1px solid #c8d8e2!important;border-radius:10px!important;background:#fff!important;color:#17354a!important;font-size:.78rem!important;font-weight:700!important;line-height:1.2!important;box-shadow:none!important;appearance:auto}
body.tnw-site .tnw-field-control :where(input,select):hover{border-color:#9fb9c8!important}
body.tnw-site .tnw-field-control :where(input,select):focus{border-color:#0b73a1!important;outline:3px solid rgba(11,115,161,.13)!important;outline-offset:1px!important}
body.tnw-site .tnw-hub-field--origin{grid-column:1/6;grid-row:1}
body.tnw-site .tnw-swap-route{grid-column:6/7;grid-row:1;align-self:center;justify-self:center;display:grid!important;place-items:center;width:40px;height:40px;margin:21px 0 0!important;padding:0;border:1px solid #c8d9e3!important;border-radius:50%!important;background:#fff!important;color:#086a95!important;box-shadow:0 5px 15px rgba(8,31,54,.08);cursor:pointer;transition:transform .18s ease,background-color .18s ease}
body.tnw-site .tnw-swap-route:hover{background:#edf8fc!important;transform:rotate(180deg)}
body.tnw-site .tnw-hub-field--destination{grid-column:7/13;grid-row:1}
body.tnw-site .tnw-hub-field--depart{grid-column:1/4;grid-row:2}
body.tnw-site .tnw-hub-field--return{grid-column:4/7;grid-row:2}
body.tnw-site .tnw-hub-field--travellers{grid-column:7/9;grid-row:2}
body.tnw-site .tnw-hub-form--flights .tnw-hub-search-button{grid-column:9/13!important;grid-row:2!important}
body.tnw-site .tnw-hub-field--hotel-destination{grid-column:1/13;grid-row:1}
body.tnw-site .tnw-hub-field--checkin{grid-column:1/4;grid-row:2}
body.tnw-site .tnw-hub-field--checkout{grid-column:4/7;grid-row:2}
body.tnw-site .tnw-hub-field--guests{grid-column:7/9;grid-row:2}
body.tnw-site .tnw-hub-form--hotels .tnw-hub-search-button{grid-column:9/13!important;grid-row:2!important}
body.tnw-site .tnw-hub-search-button{display:flex!important;align-items:center!important;justify-content:center!important;gap:8px!important;width:100%!important;min-width:0!important;height:50px!important;margin:0!important;padding:9px 14px!important;border:1px solid #075f89!important;border-radius:10px!important;background:linear-gradient(135deg,#0f7cab,#08618b)!important;color:#fff!important;font-size:.8rem!important;font-weight:850!important;line-height:1.1!important;white-space:nowrap!important;overflow:hidden!important;box-shadow:0 9px 22px rgba(8,97,139,.2)!important;cursor:pointer!important}
body.tnw-site .tnw-hub-search-button:hover:not(:disabled){background:linear-gradient(135deg,#0c709b,#064f75)!important;transform:translateY(-1px)}
body.tnw-site .tnw-hub-search-button:disabled{opacity:.72;cursor:wait!important;transform:none!important}
body.tnw-site .tnw-hub-search-button :where(.btn-text,.btn-loading){display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:7px!important}
body.tnw-site .tnw-hub-search-button :where(.btn-text,.btn-loading)[hidden]{display:none!important}
body.tnw-site .tnw-hub-search-button .spinner{width:14px;height:14px;border:2px solid rgba(255,255,255,.42);border-top-color:#fff;border-radius:50%;animation:tnw-r8-spin .72s linear infinite}
@keyframes tnw-r8-spin{to{transform:rotate(360deg)}}
body.tnw-site .tnw-autocomplete{position:absolute!important;z-index:100;top:calc(100% + 6px);left:0;right:0;display:grid;gap:3px;max-height:290px;padding:6px;border:1px solid #cbdce6;border-radius:12px;background:#fff;box-shadow:0 18px 48px rgba(8,31,54,.19);overflow:auto}
body.tnw-site .tnw-autocomplete[hidden]{display:none!important}
body.tnw-site .tnw-autocomplete button{display:grid;gap:2px;width:100%;padding:9px 10px;border:0;border-radius:9px;background:#fff;color:#1f3c50;text-align:left;cursor:pointer}
body.tnw-site .tnw-autocomplete button:hover,body.tnw-site .tnw-autocomplete button.is-active{background:#eaf7fc}
body.tnw-site .tnw-hub-results{margin:18px 0 0!important;padding:15px!important;border:1px solid #d1dfe7!important;border-radius:14px!important;background:#f7fafc!important}
body.tnw-site .tnw-hub-footer{display:flex!important;align-items:center!important;justify-content:center!important;flex-wrap:wrap!important;gap:8px 20px!important;margin:0!important;padding:12px 20px!important;border-top:1px solid #e0e8ed!important;border-radius:0 0 22px 22px!important;background:#f7fafb!important;color:#687f8f!important;font-size:.69rem!important}
body.tnw-site .tnw-hub-footer span{display:inline-flex;align-items:center;gap:6px}
body.tnw-site .tnw-hub-footer i{color:#0b6f9f}

/* Product rail and main content */
body.tnw-site .tnw-product-rail{width:min(calc(100% - 40px),1280px);margin:24px auto 0;padding:8px;display:grid;grid-template-columns:repeat(8,minmax(0,1fr));gap:7px;border:1px solid #e2e9ee;border-radius:16px;background:#fff;box-shadow:0 9px 30px rgba(8,31,54,.055)}
body.tnw-site .tnw-product-rail a{display:flex;align-items:center;justify-content:center;gap:7px;min-height:44px;padding:8px 7px;border-radius:10px;color:#2c4a5e;font-size:.77rem;font-weight:790;text-decoration:none;white-space:nowrap}
body.tnw-site .tnw-product-rail a:hover{background:#eef8fc;color:#086892;text-decoration:none}
body.tnw-site .tnw-section{width:100%;padding:clamp(54px,6vw,88px) 0;margin:0}
body.tnw-site .tnw-section--alt{background:#f6f9fb}
body.tnw-site .tnw-section-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:28px}
body.tnw-site .tnw-section-heading>div{max-width:760px}
body.tnw-site .tnw-section-heading h2{margin:.25rem 0 .55rem;color:#102c42;font-size:clamp(1.8rem,3.2vw,2.75rem);line-height:1.08;letter-spacing:-.03em}
body.tnw-site .tnw-section-heading p{margin:0;color:#667e8e;line-height:1.7}
body.tnw-site .tnw-featured-destinations{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
body.tnw-site .tnw-destination-tile{position:relative;min-height:250px;border-radius:18px;overflow:hidden;background:#0c2f46;color:#fff;box-shadow:0 14px 34px rgba(8,31,54,.12);text-decoration:none}
body.tnw-site .tnw-destination-tile::after{content:"";position:absolute;inset:35% 0 0;background:linear-gradient(transparent,rgba(3,16,29,.92));pointer-events:none}
body.tnw-site .tnw-destination-tile img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .28s ease}
body.tnw-site .tnw-destination-tile:hover img{transform:scale(1.035)}
body.tnw-site .tnw-destination-tile>div{position:absolute;z-index:2;left:18px;right:18px;bottom:17px;display:grid;gap:4px}
body.tnw-site .tnw-destination-tile strong{font-size:1.1rem}
body.tnw-site .tnw-destination-tile span{color:#d9e7ef;font-size:.78rem;line-height:1.4}
body.tnw-site .tnw-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
body.tnw-site .tnw-grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}
body.tnw-site .tnw-card{min-width:0;padding:22px;border:1px solid #dce6ec;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(8,31,54,.055)}
body.tnw-site .tnw-card h3{margin:.65rem 0 .45rem;color:#143249;font-size:1.05rem}
body.tnw-site .tnw-card p{color:#687e8e;line-height:1.65}
body.tnw-site .tnw-card__icon{display:grid;place-items:center;width:42px;height:42px;border-radius:12px;background:#e9f6fb;color:#08709d}
body.tnw-site .tnw-card__link{color:#086b96;font-weight:800;text-decoration:none}
body.tnw-site .tnw-deal-strip{display:grid;grid-template-columns:1fr 1fr;gap:20px}
body.tnw-site .tnw-deal-panel,body.tnw-site .tnw-planner-panel{padding:clamp(24px,4vw,42px);border:1px solid #dce6ec;border-radius:22px;background:#fff;box-shadow:0 12px 36px rgba(8,31,54,.06)}
body.tnw-site .tnw-deal-panel h2,body.tnw-site .tnw-planner-panel h2{margin:.35rem 0 .6rem;color:#102f45;font-size:clamp(1.65rem,3vw,2.35rem)}

/* Lead magnet -- full-width transition before footer */
body.tnw-site .lead-magnet{position:relative;z-index:1;width:100%;margin:0!important;padding:clamp(44px,5vw,72px) 0!important;background:linear-gradient(115deg,#08284b 0%,#0a598c 55%,#0b75a0 100%)!important;color:#fff!important;clear:both}
body.tnw-site .lead-magnet>.container,body.tnw-site .lead-magnet__inner{width:min(calc(100% - 40px),1280px)!important;max-width:none!important;margin-inline:auto!important;padding-inline:0!important}
body.tnw-site .lead-magnet__inner{display:grid!important;grid-template-columns:minmax(0,1.1fr) minmax(360px,.9fr)!important;gap:clamp(36px,5vw,72px)!important;align-items:center!important}
body.tnw-site .lead-magnet__copy{min-width:0}
body.tnw-site .lead-magnet h2{max-width:18ch;margin:.3rem 0 .8rem!important;color:#fff!important;font-size:clamp(2rem,3.6vw,3.4rem)!important;line-height:1.03!important;letter-spacing:-.035em}
body.tnw-site .lead-magnet p,body.tnw-site .lead-magnet li{color:#e0edf5!important}
body.tnw-site .lead-magnet ul{display:flex!important;flex-wrap:wrap!important;gap:8px 22px!important;margin:18px 0 0!important;padding-left:1.1rem!important}
body.tnw-site .lead-magnet__form{min-width:0;padding:22px!important;border:1px solid rgba(255,255,255,.24)!important;border-radius:18px!important;background:rgba(255,255,255,.1)!important;backdrop-filter:blur(12px)}
body.tnw-site .lead-magnet__form label{margin-bottom:8px!important;color:#fff!important;font-size:.78rem!important;font-weight:800!important}
body.tnw-site .lead-magnet__controls{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:10px!important}
body.tnw-site .lead-magnet__controls input{width:100%!important;min-width:0!important;min-height:50px!important;padding:0 14px!important;border:1px solid rgba(255,255,255,.3)!important;border-radius:11px!important;background:#fff!important;color:#17354a!important}
body.tnw-site .lead-magnet__controls button{min-width:max-content!important}
body.tnw-site .lead-magnet__privacy{margin:.75rem 0 0!important;font-size:.76rem!important}

/* Full-width production footer */
























/* Directory, airline and public business presentation */
body.tnw-site .tnw-directory-hero{width:100%;padding:clamp(46px,5vw,74px) 0;background:linear-gradient(135deg,#edf8fc,#f8fbfd 52%,#eef6ff);border-bottom:1px solid #e0e9ef}
body.tnw-site .tnw-directory-hero h1{max-width:18ch;margin:.4rem 0 .75rem;color:#102e44;font-size:clamp(2.25rem,4.5vw,4rem);line-height:1.02;letter-spacing:-.045em}
body.tnw-site .tnw-directory-hero>div>p:last-of-type{max-width:760px;color:#61798a;line-height:1.7}
body.tnw-site .tnw-directory-search{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(220px,.6fr) auto;gap:12px;align-items:end;margin-top:28px;padding:18px;border:1px solid #d8e4eb;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(8,31,54,.06)}
body.tnw-site .tnw-directory-search label{display:grid;gap:6px;color:#304f63;font-size:.72rem;font-weight:850}
body.tnw-site .tnw-directory-search :where(input,select){width:100%;min-height:48px;padding:0 12px;border:1px solid #cbdbe4;border-radius:10px;background:#fff;color:#15364c}
body.tnw-site .tnw-directory-section{padding:clamp(52px,6vw,84px) 0}
body.tnw-site .tnw-directory-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
body.tnw-site .tnw-directory-card,body.tnw-site .tnw-airline-card{display:flex;flex-direction:column;min-width:0;padding:20px;border:1px solid #dce6ec;border-radius:17px;background:#fff;box-shadow:0 10px 28px rgba(8,31,54,.05)}
body.tnw-site .tnw-directory-card__head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:12px}
body.tnw-site .tnw-verified-badge{display:inline-flex;align-items:center;gap:5px;color:#147658;font-size:.7rem;font-weight:850}
body.tnw-site .tnw-directory-type{padding:5px 7px;border-radius:999px;background:#f0f5f8;color:#667d8c;font-size:.65rem;font-weight:750}
body.tnw-site .tnw-directory-card h3,body.tnw-site .tnw-airline-card h3{margin:0 0 7px;color:#143249;font-size:1.03rem}
body.tnw-site .tnw-directory-card h3 a{color:inherit;text-decoration:none}
body.tnw-site .tnw-directory-card p,body.tnw-site .tnw-airline-card p{color:#697f8e;line-height:1.6}
body.tnw-site .tnw-directory-location{display:flex;align-items:center;gap:6px;font-size:.78rem}
body.tnw-site .tnw-directory-card__actions{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:auto;padding-top:12px}
body.tnw-site .tnw-airline-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
body.tnw-site .tnw-airline-card__identity{display:flex;align-items:center;gap:12px;margin-bottom:12px}
body.tnw-site .tnw-airline-logo{display:grid;place-items:center;width:88px;height:48px;padding:5px;border:1px solid #e0e8ed;border-radius:9px;background:#fff;overflow:hidden}
body.tnw-site .tnw-airline-logo img{display:block;max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain}
body.tnw-site .tnw-airline-code{display:inline-flex;padding:4px 7px;border-radius:7px;background:#eaf6fb;color:#0a6d98;font-size:.68rem;font-weight:900;letter-spacing:.05em}
body.tnw-site .tnw-public-location-grid{display:grid;gap:18px}
body.tnw-site .tnw-public-location{display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,.9fr);gap:22px;padding:20px;border:1px solid #dce6ec;border-radius:18px;background:#fff;box-shadow:0 10px 30px rgba(8,31,54,.05)}
body.tnw-site .tnw-public-location__copy{display:flex;gap:13px;min-width:0}
body.tnw-site .tnw-location-icon{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:12px;background:#eaf6fb;color:#0b6f9f}
body.tnw-site .tnw-location-map{min-height:250px;border-radius:14px;overflow:hidden;background:#eaf1f5}
body.tnw-site .tnw-location-map iframe{display:block;width:100%;height:100%;min-height:250px;border:0}
body.tnw-site .tnw-location-actions{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:12px}
body.tnw-site .tnw-location-actions a{color:#096b96;font-weight:750;text-decoration:none}
body.tnw-site .tnw-disclosure{margin-top:26px;padding:16px 18px;border:1px solid #d8e5ec;border-radius:14px;background:#f8fbfc;color:#647b8a;font-size:.8rem;line-height:1.6}

/* Flight results / dynamic provider cards */
body.tnw-site .search-results{min-width:0}
body.tnw-site .flight-result-card,body.tnw-site .hotel-result-card{position:relative;display:grid;gap:12px;min-width:0;margin:0 0 12px;padding:16px;border:1px solid #d8e4eb;border-radius:14px;background:#fff;box-shadow:0 7px 22px rgba(8,31,54,.045)}
body.tnw-site .tnw-provider-logo,body.tnw-site .flight-airline-logo{display:block;max-width:104px;max-height:42px;width:auto;height:auto;object-fit:contain}
body.tnw-site .tnw-provider-disclosure{color:#718694;font-size:.7rem;line-height:1.45}

/* Consent and PWA -- mutually exclusive through JS and non-overlapping geometry */
body.tnw-site .tnw-consent{position:fixed!important;z-index:5000!important;right:18px!important;bottom:18px!important;width:min(700px,calc(100vw - 36px))!important;margin:0!important}
body.tnw-site .tnw-consent__panel{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:18px!important;align-items:end!important;padding:17px 18px!important;border:1px solid #ccdce5!important;border-radius:17px!important;background:#fff!important;box-shadow:0 22px 70px rgba(3,19,34,.24)!important}
body.tnw-site .tnw-consent__panel p{max-width:64ch;margin:4px 0!important;color:#637b8b!important;font-size:.8rem!important;line-height:1.5!important}
body.tnw-site .tnw-consent__actions{display:flex!important;flex-wrap:wrap!important;gap:7px!important;align-items:center!important;justify-content:flex-end!important}
body.tnw-site .tnw-consent__actions button{min-height:40px!important;padding:7px 11px!important;font-size:.72rem!important}
body.tnw-site .tnw-consent__preferences{position:fixed!important;z-index:1!important;inset:0!important;display:grid!important;place-items:center!important;padding:20px!important;background:rgba(3,15,32,.62)!important}
body.tnw-site .tnw-consent__preferences[hidden]{display:none!important}
body.tnw-site .tnw-consent__preferences-card{width:min(620px,100%);max-height:min(720px,calc(100vh - 40px));overflow:auto;padding:24px;border:1px solid #d4e0e8;border-radius:18px;background:#fff;box-shadow:0 30px 90px rgba(0,0,0,.35)}
body.tnw-site .tnw-privacy-button{position:fixed!important;z-index:1001!important;right:14px!important;bottom:14px!important;display:flex!important;align-items:center!important;gap:7px!important;min-height:42px!important;padding:0 13px!important;border:1px solid #cbd9e2!important;border-radius:999px!important;background:#fff!important;color:#0b1f3a!important;box-shadow:0 8px 26px rgba(8,31,54,.15)!important;font-size:.74rem!important;font-weight:800!important}
body.tnw-site .tnw-consent:not([hidden])~.tnw-privacy-button{display:none!important}
body.tnw-site .pwa-install-banner{position:fixed!important;z-index:4200!important;right:18px!important;bottom:18px!important;width:min(440px,calc(100vw - 36px))!important;margin:0!important;padding:0!important;background:transparent!important}
body.tnw-site .pwa-install-banner-inner{display:grid!important;grid-template-columns:minmax(0,1fr) auto!important;gap:13px!important;align-items:center!important;padding:16px!important;border:1px solid #cbdce6!important;border-radius:16px!important;background:#fff!important;box-shadow:0 18px 54px rgba(5,27,45,.22)!important}
body.tnw-site .pwa-install-text p{margin:3px 0 0!important;color:#657c8d!important;font-size:.75rem!important;line-height:1.4!important}
body.tnw-site .pwa-install-actions{display:flex!important;gap:7px!important}

/* Responsive shell */
@media(max-width:1280px){
  
  
  
  
  
  
  body.tnw-site.section-home .tnw-home-hero__grid{grid-template-columns:minmax(320px,.72fr) minmax(590px,1.28fr)!important;gap:34px!important}
  body.tnw-site .tnw-airline-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media(max-width:1080px){
  
  
  
  
  
  
  
  
  
  
  body.tnw-site.section-home .tnw-home-hero{padding:50px 0 64px}
  body.tnw-site.section-home .tnw-home-hero__grid{grid-template-columns:1fr!important;gap:34px!important}
  body.tnw-site.section-home .tnw-home-hero__copy{max-width:800px;margin-inline:auto!important;text-align:center}
  body.tnw-site.section-home .tnw-home-hero h1{max-width:14ch;margin-inline:auto!important}
  body.tnw-site.section-home .tnw-home-hero__copy>p{margin-inline:auto!important}
  body.tnw-site.section-home .tnw-trust-row{justify-content:center}
  body.tnw-site .tnw-booking-hub{max-width:920px!important;margin-inline:auto!important}
  body.tnw-site .tnw-featured-destinations{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.tnw-site .tnw-grid--4{grid-template-columns:repeat(2,minmax(0,1fr))}
  
  
  
  
  body.tnw-site .tnw-directory-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:820px){
  body.tnw-site .container{width:min(calc(100% - 28px),1280px)}
  
  
  
  
  
  
  
  
  
  body.tnw-site.section-home .tnw-home-hero>.container{width:calc(100% - 28px)}
  body.tnw-site .tnw-product-tabs{display:flex!important;overflow-x:auto!important;scrollbar-width:none;overscroll-behavior-inline:contain}
  body.tnw-site .tnw-product-tabs::-webkit-scrollbar{display:none}
  body.tnw-site .tnw-product-tabs :where(button,a){flex:0 0 126px}
  body.tnw-site .tnw-hub-field--origin{grid-column:1/6}
  body.tnw-site .tnw-swap-route{grid-column:6/7}
  body.tnw-site .tnw-hub-field--destination{grid-column:7/13}
  body.tnw-site .tnw-hub-field--depart,body.tnw-site .tnw-hub-field--checkin{grid-column:1/5}
  body.tnw-site .tnw-hub-field--return,body.tnw-site .tnw-hub-field--checkout{grid-column:5/9}
  body.tnw-site .tnw-hub-field--travellers,body.tnw-site .tnw-hub-field--guests{grid-column:9/13}
  body.tnw-site .tnw-hub-form :where(.tnw-hub-search-button){grid-column:1/13!important;grid-row:3!important}
  body.tnw-site .tnw-hub-field--hotel-destination{grid-column:1/13}
  body.tnw-site .tnw-product-rail{display:flex;overflow-x:auto;scrollbar-width:none;justify-content:flex-start;width:calc(100% - 28px)}
  body.tnw-site .tnw-product-rail::-webkit-scrollbar{display:none}
  body.tnw-site .tnw-product-rail a{flex:0 0 112px}
  body.tnw-site .tnw-grid,body.tnw-site .tnw-grid--4{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.tnw-site .tnw-deal-strip{grid-template-columns:1fr}
  body.tnw-site .lead-magnet__inner{grid-template-columns:1fr!important;gap:30px!important}
  body.tnw-site .lead-magnet h2{max-width:24ch}
  
  
  
  
  
  
  body.tnw-site .tnw-directory-search{grid-template-columns:1fr 1fr}
  body.tnw-site .tnw-directory-search button{grid-column:1/-1}
  body.tnw-site .tnw-airline-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.tnw-site .tnw-public-location{grid-template-columns:1fr}
}
@media(max-width:580px){
  html{scroll-padding-top:72px}
  body.tnw-site .container{width:calc(100% - 24px)}
  
  
  
  
  
  
  
  
  body.tnw-site.section-home .tnw-home-hero{padding:34px 0 44px}
  body.tnw-site.section-home .tnw-home-hero>.container{width:calc(100% - 20px)}
  body.tnw-site.section-home .tnw-home-hero__grid{gap:26px!important}
  body.tnw-site.section-home .tnw-home-hero h1{max-width:12ch;font-size:clamp(2.35rem,13vw,3.65rem)!important}
  body.tnw-site.section-home .tnw-home-hero .tnw-eyebrow{font-size:.61rem;letter-spacing:.08em}
  body.tnw-site.section-home .tnw-trust-row{display:grid;grid-template-columns:1fr;justify-items:center}
  body.tnw-site .tnw-booking-hub{border-radius:17px!important}
  body.tnw-site .tnw-product-tabs{border-radius:17px 17px 0 0;padding:5px!important}
  body.tnw-site .tnw-product-tabs :where(button,a){flex-basis:112px;min-height:44px;font-size:.7rem}
  body.tnw-site .tnw-hub-panel{padding:16px!important}
  body.tnw-site .tnw-search-panel-heading{display:grid!important;gap:8px!important}
  body.tnw-site .tnw-search-disclosure{justify-self:start;white-space:normal}
  body.tnw-site .tnw-hub-form{grid-template-columns:1fr!important;gap:12px!important}
  body.tnw-site .tnw-hub-form :where(.tnw-hub-field,.tnw-hub-search-button){grid-column:1!important;grid-row:auto!important}
  body.tnw-site .tnw-swap-route{display:none!important}
  body.tnw-site .tnw-hub-field small{min-height:0;white-space:normal}
  body.tnw-site .tnw-hub-footer{display:grid!important;grid-template-columns:1fr!important;justify-content:start!important;gap:6px!important;border-radius:0 0 17px 17px!important;padding:12px 16px!important}
  body.tnw-site .tnw-featured-destinations,body.tnw-site .tnw-grid,body.tnw-site .tnw-grid--4{grid-template-columns:1fr}
  body.tnw-site .tnw-destination-tile{min-height:220px}
  body.tnw-site .tnw-section-heading{display:grid;align-items:start}
  body.tnw-site .lead-magnet>.container,body.tnw-site .lead-magnet__inner{width:calc(100% - 24px)!important}
  body.tnw-site .lead-magnet__controls{grid-template-columns:1fr!important}
  body.tnw-site .lead-magnet__controls button{width:100%!important;min-width:0!important}
  
  
  
  body.tnw-site .tnw-directory-search{grid-template-columns:1fr;padding:14px}
  body.tnw-site .tnw-directory-search button{grid-column:auto}
  body.tnw-site .tnw-directory-grid,body.tnw-site .tnw-airline-grid{grid-template-columns:1fr}
  body.tnw-site .tnw-consent{right:7px!important;bottom:7px!important;width:calc(100vw - 14px)!important}
  body.tnw-site .tnw-consent__panel{grid-template-columns:1fr!important;gap:12px!important;padding:14px!important}
  body.tnw-site .tnw-consent__actions{display:grid!important;grid-template-columns:1fr!important;justify-content:stretch!important}
  body.tnw-site .tnw-consent__actions button{width:100%!important}
  body.tnw-site .tnw-privacy-button{right:8px!important;bottom:8px!important;width:42px!important;padding:0!important}
  body.tnw-site .tnw-privacy-button span{display:none!important}
  body.tnw-site .pwa-install-banner{right:7px!important;bottom:7px!important;width:calc(100vw - 14px)!important}
  body.tnw-site .pwa-install-banner-inner{grid-template-columns:1fr!important}
  body.tnw-site .pwa-install-actions{display:grid!important;grid-template-columns:1fr 1fr!important}
  body.tnw-site .pwa-install-actions button{width:100%!important}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  body.tnw-site *,body.tnw-site *::before,body.tnw-site *::after{scroll-behavior:auto!important;animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
}
@media(prefers-contrast:more){
  body.tnw-site :where(.tnw-card,.tnw-booking-hub,.tnw-directory-card,.tnw-airline-card,.lead-magnet__form){border-width:2px!important}
  body.tnw-site a{text-decoration-thickness:2px}
}
/* ===== END CONSOLIDATED PUBLIC COMPONENTS ===== */


/* ===== Travel Network World R10 membership surfaces ===== */
body.tnw-site .r10-plan-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;margin:24px 0}
body.tnw-site .r10-plan-card{position:relative;display:flex;flex-direction:column;gap:14px;padding:clamp(22px,3vw,30px);border:1px solid #d9e3ea;border-radius:20px;background:#fff;box-shadow:0 10px 30px rgba(11,34,57,.07)}
body.tnw-site .r10-plan-card--featured{border-color:#76b6cf;box-shadow:0 18px 42px rgba(11,88,126,.13)}
body.tnw-site .r10-plan-card h2,body.tnw-site .r10-plan-card h3{margin:0;color:#0b2239}
body.tnw-site .r10-price{display:flex;align-items:baseline;gap:7px;color:#0b2239;font-size:1.7rem;font-weight:900}
body.tnw-site .r10-price small{color:#607387;font-size:.78rem;font-weight:700}
body.tnw-site .r10-plan-card ul{display:grid;gap:8px;margin:0;padding:0;list-style:none}
body.tnw-site .r10-plan-card li{display:flex;gap:9px;color:#40566a}
body.tnw-site .r10-plan-card li::before{content:"✓";color:#118256;font-weight:900}
body.tnw-site .r10-featured-badge{display:inline-flex;align-items:center;gap:6px;width:max-content;padding:5px 9px;border-radius:999px;background:#e8f7ee;color:#11643d;font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.04em}
body.tnw-site .tnw-directory-card[data-membership-featured="1"]{border-color:#8ac2d7;box-shadow:0 14px 34px rgba(11,88,126,.11)}
body.tnw-site .r10-business-membership-callout .r4-section-heading{max-width:780px}
@media(max-width:680px){body.tnw-site .r10-plan-grid{grid-template-columns:1fr}}
/* ===== END TNW R10 membership surfaces ===== */

/* ===== PLATFORM EXPERIENCE, SEARCH, WIDGETS & MOTION ===== */
:root{--tnw-header-assurance:34px;--tnw-motion-fast:160ms;--tnw-motion:260ms;--tnw-motion-slow:480ms;--tnw-ease:cubic-bezier(.2,.8,.2,1);--tnw-green:#17845b;--tnw-green-dark:#0f6243}
body.tnw-site{--tnw-header:112px}




























body.tnw-site .tnw-menu-kicker{color:#9ed8bd;font-size:.68rem;font-weight:850;letter-spacing:.09em;text-transform:uppercase}













/* Global site search */
body.tnw-site.tnw-modal-open{overflow:hidden}
body.tnw-site .tnw-site-search{position:fixed;inset:0;z-index:20000;display:grid;align-items:start;justify-items:center;padding:clamp(70px,12vh,130px) var(--tnw-gutter) 28px}
body.tnw-site .tnw-site-search[hidden]{display:none!important}
body.tnw-site .tnw-site-search__backdrop{position:absolute;inset:0;background:rgba(7,28,46,.68);backdrop-filter:blur(8px)}
body.tnw-site .tnw-site-search__dialog{position:relative;width:min(760px,100%);padding:clamp(22px,4vw,34px);border:1px solid rgba(255,255,255,.45);border-radius:22px;background:#fff;box-shadow:0 34px 90px rgba(0,0,0,.26)}
body.tnw-site .tnw-site-search__head{display:flex;justify-content:space-between;align-items:flex-start;gap:20px;margin-bottom:22px}
body.tnw-site .tnw-site-search__head h2{margin:3px 0 0;font-size:clamp(1.55rem,3vw,2.15rem)}
body.tnw-site .tnw-site-search__close{flex:0 0 auto;width:44px;height:44px;border:1px solid var(--tnw-line);border-radius:50%;background:#fff;color:var(--tnw-navy);cursor:pointer}
body.tnw-site .tnw-site-search__form label{margin-bottom:8px}
body.tnw-site .tnw-site-search__control{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;border:2px solid #aac5d3;border-radius:14px;background:#fff;overflow:hidden;box-shadow:0 8px 24px rgba(11,34,57,.08)}
body.tnw-site .tnw-site-search__control>i{padding-left:16px;color:var(--tnw-blue)}
body.tnw-site .tnw-site-search__control input{min-height:58px!important;border:0!important;border-radius:0!important;box-shadow:none!important;font-size:1rem}
body.tnw-site .tnw-site-search__control button{align-self:stretch;min-width:110px;border-radius:10px!important;margin:5px!important}
body.tnw-site .tnw-site-search__quick{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-top:18px;color:var(--tnw-muted);font-size:.82rem}
body.tnw-site .tnw-site-search__quick a{padding:6px 10px;border:1px solid var(--tnw-line);border-radius:999px;background:var(--tnw-soft);color:var(--tnw-blue-dark);font-weight:740;text-decoration:none}

/* Unified travel widgets */
body.tnw-site .tn-widget{position:relative;margin-block:clamp(18px,3vw,30px);padding:clamp(20px,3vw,28px);border:1px solid var(--tnw-line);border-radius:18px;background:linear-gradient(180deg,#fff,#fbfcfd);box-shadow:var(--tnw-shadow-sm);overflow:hidden}
body.tnw-site .tn-widget::before{content:"";position:absolute;inset:0 auto 0 0;width:4px;background:linear-gradient(180deg,var(--tnw-blue),var(--tnw-green));opacity:.86}
body.tnw-site .tn-widget__header{display:flex;align-items:center;justify-content:space-between;gap:14px;margin-bottom:13px}
body.tnw-site .tn-widget__heading{display:flex;align-items:center;gap:12px;min-width:0}
body.tnw-site .tn-widget__icon{display:grid;place-items:center;flex:0 0 42px;width:42px;height:42px;border-radius:12px;background:var(--tnw-sky);color:var(--tnw-blue);font-size:1.05rem}
body.tnw-site .tn-widget__title{margin:0;font-size:clamp(1.12rem,2vw,1.35rem)}
body.tnw-site .tn-widget__body{color:var(--tnw-text)}
body.tnw-site .tn-widget__body>:first-child{margin-top:0}
body.tnw-site .tn-widget__body>:last-child{margin-bottom:0}
body.tnw-site :where(.tn-widget__meta,.tn-widget__weather-meta,.tn-widget__money-meta,.tn-widget__seasons){margin:16px 0 0;padding:0}
body.tnw-site :where(.tn-widget__weather-row,.tn-widget__money-row,.tn-widget__season){display:grid;grid-template-columns:minmax(130px,.55fr) minmax(0,1fr);gap:12px;padding:10px 0;border-top:1px solid #e7edf1}
body.tnw-site :where(.tn-widget__weather-row,.tn-widget__money-row,.tn-widget__season) :where(dt,strong){color:var(--tnw-navy);font-weight:800}
body.tnw-site :where(.tn-widget__weather-row,.tn-widget__money-row,.tn-widget__season) :where(dd,p){margin:0;color:var(--tnw-muted)}
body.tnw-site .tn-widget__section{margin-top:18px;padding-top:16px;border-top:1px solid var(--tnw-line)}
body.tnw-site .tn-widget__section h4{margin:0 0 7px;font-size:.98rem}
body.tnw-site .tn-widget__footer{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-top:18px;padding-top:16px;border-top:1px solid var(--tnw-line)}
body.tnw-site .tn-list{margin:14px 0 0;padding:0;list-style:none}
body.tnw-site .tn-list--cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:12px}
body.tnw-site .tn-card{min-width:0;padding:16px;border:1px solid var(--tnw-line);border-radius:14px;background:#fff;box-shadow:none}
body.tnw-site .tn-card__logo img,body.tnw-site .tn-card img{max-width:100%;height:auto;border-radius:10px}
body.tnw-site .tn-card__title{margin:8px 0 5px;font-size:1rem}
body.tnw-site .tn-card__text{margin:0;color:var(--tnw-muted);font-size:.9rem}
body.tnw-site .tn-badge{display:inline-flex;align-items:center;gap:6px;padding:5px 9px;border-radius:999px;background:var(--tnw-soft);color:var(--tnw-navy);font-size:.72rem;font-weight:820}
body.tnw-site .tn-widget--safety::before{background:#d9a218}body.tnw-site .tn-widget--weather::before{background:#4b91b8}body.tnw-site .tn-widget--currency::before{background:var(--tnw-green)}
body.tnw-site .tn-widget :where(.tn-btn,.tn-link--cta){display:inline-flex;align-items:center;gap:7px;min-height:42px;padding:8px 13px;border-radius:10px;background:var(--tnw-blue);color:#fff!important;font-weight:800;text-decoration:none!important}
body.tnw-site .tn-widget__table-wrap{width:100%;overflow:auto;margin-top:14px;border-radius:12px}
body.tnw-site .tn-widget table{min-width:540px;margin:0}

/* Footer system */














body.tnw-site .tnw-icon-x::before{content:"X";font:850 .9rem/1 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}















/* Motion with accessible opt-out */
body.tnw-site [data-tnw-reveal]{opacity:0;transform:translateY(16px);transition:opacity var(--tnw-motion-slow) var(--tnw-ease),transform var(--tnw-motion-slow) var(--tnw-ease)}
body.tnw-site [data-tnw-reveal].is-visible{opacity:1;transform:none}
body.tnw-site :where(.content-card,.card,.feature-card,.destination-card,.route-card,.tn-card,.tn-widget){transition:transform var(--tnw-motion) var(--tnw-ease),box-shadow var(--tnw-motion) var(--tnw-ease),border-color var(--tnw-motion) ease}
@media (hover:hover){body.tnw-site :where(.content-card,.feature-card,.destination-card,.route-card,.tn-card,.tn-widget):hover{transform:translateY(-3px);box-shadow:0 16px 36px rgba(11,34,57,.11);border-color:#b9ccd8}}
body.tnw-site :where(a,button):focus-visible{position:relative;z-index:2}
body.tnw-site .is-external-link>i.fa-arrow-up-right-from-square:last-child{font-size:.72em}

@media(max-width:1100px){
 body.tnw-site{--tnw-header:104px}
 
 
 
 
 
 
 
 
 
}
@media(max-width:820px){
 body.tnw-site{--tnw-header:102px}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
}
@media(max-width:580px){
 body.tnw-site{--tnw-header:98px}
 
 
 body.tnw-site .tnw-site-search{padding:52px 10px 10px}
 body.tnw-site .tnw-site-search__dialog{padding:20px 15px;border-radius:18px}
 body.tnw-site .tnw-site-search__control{grid-template-columns:auto minmax(0,1fr)}
 body.tnw-site .tnw-site-search__control button{grid-column:1/-1;margin:0 7px 7px!important;min-height:46px}
 body.tnw-site .tnw-site-search__control input{min-height:54px!important}
 body.tnw-site .tn-widget{padding:18px 16px}
 body.tnw-site .tn-widget__header{align-items:flex-start}
 body.tnw-site :where(.tn-widget__weather-row,.tn-widget__money-row,.tn-widget__season){grid-template-columns:1fr;gap:3px}
 body.tnw-site .tn-list--cards{grid-template-columns:1fr}
 
}
@media(prefers-reduced-motion:reduce){
 body.tnw-site [data-tnw-reveal]{opacity:1!important;transform:none!important;transition:none!important}
 body.tnw-site :where(.content-card,.card,.feature-card,.destination-card,.route-card,.tn-card,.tn-widget){transition:none!important}
 
}
/* ===== END PLATFORM EXPERIENCE, SEARCH, WIDGETS & MOTION ===== */


/* ===== FULL-SITE ACCESSIBILITY & DISCOVERY ===== */



body.tnw-site .tnw-chip-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
body.tnw-site .tnw-chip{display:inline-flex;align-items:center;min-height:40px;padding:8px 13px;border:1px solid var(--tnw-line);border-radius:999px;background:#fff;color:var(--tnw-blue-dark);font-size:.84rem;font-weight:760;text-decoration:none;transition:transform var(--tnw-motion-fast) var(--tnw-ease),border-color var(--tnw-motion-fast) ease,box-shadow var(--tnw-motion-fast) ease}
body.tnw-site .tnw-chip:hover{transform:translateY(-1px);border-color:#8fb8cc;box-shadow:0 7px 18px rgba(11,34,57,.08)}
body.tnw-site :where(a,button,input,select,textarea):focus-visible{outline:3px solid rgba(28,119,178,.38);outline-offset:3px}


@media(prefers-reduced-motion:reduce){body.tnw-site .tnw-chip{transition:none!important}body.tnw-site .tnw-chip:hover{transform:none}}
/* ===== END FULL-SITE ACCESSIBILITY & DISCOVERY ===== */

/* ===== R15 AUTHORITATIVE GLOBAL SHELL =====
 * Header/footer are deliberately namespaced away from historical .site-header,
 * .main-nav, .nav-*, .dropdown-* and .tnw-footer-* selectors. This prevents
 * internal/account/business page rules and older release layers from changing
 * global shell geometry or interaction state.
 */
body.tnw-site{
  --tnw-shell-header-bg:#ffffff;
  --tnw-shell-ink:#102d42;
  --tnw-shell-muted:#607786;
  --tnw-shell-blue:#0a6d98;
  --tnw-shell-blue-dark:#075f88;
  --tnw-shell-soft:#eef8fc;
  --tnw-shell-line:#d9e5ec;
  --tnw-shell-footer-bg:#071c2e;
  --tnw-shell-footer-top:#0b2e47;
  --tnw-shell-max:1440px;
  --tnw-shell-gap:clamp(16px,2.5vw,32px);
}
body.tnw-site.tnw-shell-nav-open{overflow:hidden;touch-action:none}

body.tnw-site .tnw-shell-header{
  position:sticky;top:0;z-index:10000;width:100%;margin:0;border:0;
  border-bottom:1px solid #e1e9ee;background:rgba(255,255,255,.985);
  box-shadow:0 3px 16px rgba(7,31,50,.055);backdrop-filter:saturate(145%) blur(16px);
  isolation:isolate;
}
body.tnw-site .tnw-shell-header.scrolled{box-shadow:0 12px 34px rgba(7,31,50,.12)}
body.tnw-site .tnw-shell-assurance{background:#071c2e;color:#d8e8f2}
body.tnw-site .tnw-shell-assurance__inner{
  width:min(calc(100% - 44px),var(--tnw-shell-max));min-height:34px;margin-inline:auto;
  display:flex;align-items:center;justify-content:center;gap:clamp(18px,4vw,46px);
  font-size:.72rem;font-weight:750;letter-spacing:.01em;white-space:nowrap;
}
body.tnw-site .tnw-shell-assurance__inner :where(span,a){display:inline-flex;align-items:center;gap:7px}
body.tnw-site .tnw-shell-assurance__inner a{color:#d8e8f2;text-decoration:none}
body.tnw-site .tnw-shell-assurance__inner a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px}
body.tnw-site .tnw-shell-assurance__inner i{color:#82d7b2}
body.tnw-site .tnw-shell-header__inner{
  width:min(calc(100% - 44px),var(--tnw-shell-max));min-height:76px;margin-inline:auto;padding:7px 0;
  display:grid;grid-template-columns:minmax(180px,235px) minmax(0,1fr) auto;
  align-items:center;gap:clamp(12px,2vw,26px);
}
body.tnw-site .tnw-shell-brand{display:flex;align-items:center;min-width:0;width:100%;max-width:235px;text-decoration:none}
body.tnw-site .tnw-shell-brand__picture{display:block;width:100%;line-height:0}
body.tnw-site .tnw-shell-brand__image{display:block;width:100%;height:auto;aspect-ratio:3/1;object-fit:contain;object-position:left center}

body.tnw-site .tnw-shell-nav{position:static;display:block;min-width:0;width:auto;margin:0;padding:0;background:transparent;box-shadow:none;overflow:visible}
body.tnw-site .tnw-shell-nav__list{display:flex;align-items:center;justify-content:center;gap:2px;margin:0;padding:0;list-style:none}
body.tnw-site .tnw-shell-nav__item{position:relative;margin:0;padding:0}
body.tnw-site .tnw-shell-nav__item>a,
body.tnw-site .tnw-shell-nav__button{
  display:inline-flex;align-items:center;justify-content:center;gap:7px;min-height:46px;padding:9px 10px;
  border:0;border-radius:11px;background:transparent;color:var(--tnw-shell-ink);font:inherit;
  font-size:.82rem;font-weight:790;line-height:1;text-decoration:none;cursor:pointer;white-space:nowrap;
  transition:background .16s ease,color .16s ease,transform .16s ease;
}
body.tnw-site .tnw-shell-nav__item>a:hover,
body.tnw-site .tnw-shell-nav__item>a.is-current,
body.tnw-site .tnw-shell-nav__button:hover,
body.tnw-site .tnw-shell-nav__button[aria-expanded="true"]{background:var(--tnw-shell-soft);color:var(--tnw-shell-blue-dark);text-decoration:none}
body.tnw-site .tnw-shell-nav__item>a>i:first-child,
body.tnw-site .tnw-shell-nav__button>i:first-child{color:var(--tnw-shell-blue);font-size:.92rem}
body.tnw-site .tnw-shell-nav__chevron{margin-left:1px;font-size:.68rem;transition:transform .16s ease}
body.tnw-site .tnw-shell-nav__button[aria-expanded="true"] .tnw-shell-nav__chevron{transform:rotate(180deg)}

body.tnw-site .tnw-shell-menu{
  position:absolute;z-index:140;top:calc(100% + 8px);left:50%;display:none;
  min-width:260px;width:min(760px,calc(100vw - 48px));margin:0;padding:15px;border:1px solid var(--tnw-shell-line);
  border-radius:16px;background:#fff;box-shadow:0 24px 64px rgba(8,31,54,.17);transform:translateX(-50%);
}
body.tnw-site .tnw-shell-nav__item--dropdown.is-open>.tnw-shell-menu{display:grid}
@media(min-width:821px){body.tnw-site .tnw-shell-nav__item--dropdown:focus-within>.tnw-shell-menu{display:grid}}
body.tnw-site .tnw-shell-menu--explore{grid-template-columns:minmax(210px,1.15fr) repeat(2,minmax(155px,1fr));gap:16px}
body.tnw-site .tnw-shell-menu--plan{width:min(920px,calc(100vw - 32px));grid-template-columns:repeat(4,minmax(170px,1fr));gap:14px}
body.tnw-site .tnw-shell-menu__feature{padding:16px;border-radius:13px;background:linear-gradient(145deg,#eaf8fc,#f7fbfd);align-self:stretch}
body.tnw-site .tnw-shell-menu__feature strong{display:block;margin:.3rem 0 .4rem;color:var(--tnw-shell-ink);font-size:1rem;line-height:1.35}
body.tnw-site .tnw-shell-menu__feature p{margin:0 0 .75rem;color:var(--tnw-shell-muted);font-size:.8rem;line-height:1.55}
body.tnw-site .tnw-shell-menu__feature-link{display:inline-flex;align-items:center;gap:7px;color:var(--tnw-shell-blue-dark);font-size:.8rem;font-weight:800;text-decoration:none}
body.tnw-site .tnw-shell-menu__column{min-width:0;padding:3px}
body.tnw-site .tnw-shell-menu__column h3{margin:7px 8px 6px;color:#637a89;font-size:.71rem;letter-spacing:.08em;text-transform:uppercase}
body.tnw-site .tnw-shell-menu__column ul{margin:0;padding:0;list-style:none}
body.tnw-site .tnw-shell-menu__column a{display:flex;align-items:center;gap:8px;padding:9px 10px;border-radius:9px;color:#17354a;font-size:.82rem;line-height:1.25;text-decoration:none}
body.tnw-site .tnw-shell-menu__column a:hover{background:var(--tnw-shell-soft);color:var(--tnw-shell-blue-dark);text-decoration:none}
body.tnw-site .tnw-shell-menu__column a i{width:18px;color:var(--tnw-shell-blue);text-align:center}

body.tnw-site .tnw-shell-tools{display:flex;align-items:center;justify-content:flex-end;gap:8px;min-width:max-content;margin:0}
body.tnw-site .tnw-shell-market{display:flex;align-items:center;gap:6px}
body.tnw-site .tnw-shell-market__select{display:inline-flex;align-items:center;gap:5px;min-height:42px;padding:0 7px;border:1px solid #d7e3ea;border-radius:11px;background:#fff;color:#17354a}
body.tnw-site .tnw-shell-market__select i{color:var(--tnw-shell-blue);font-size:.78rem}
body.tnw-site .tnw-shell-market__select select{min-width:0;max-width:118px;height:36px;padding:0 22px 0 2px;border:0;outline:0;background:transparent;color:#17354a;font-size:.75rem;font-weight:750;cursor:pointer}
body.tnw-site .tnw-shell-market__select--currency select{width:58px;max-width:58px}
body.tnw-site .tnw-shell-search-button,
body.tnw-site .tnw-shell-account{display:inline-flex;align-items:center;justify-content:center;gap:7px;min-height:44px;border:1px solid #d4e1e9;border-radius:999px;background:#fff;color:#113249;font-size:.8rem;font-weight:800;text-decoration:none;white-space:nowrap}
body.tnw-site .tnw-shell-search-button{width:44px;padding:0;cursor:pointer}
body.tnw-site .tnw-shell-account{padding:0 13px}
body.tnw-site .tnw-shell-search-button:hover,
body.tnw-site .tnw-shell-account:hover{border-color:#91b4c7;background:#f3f9fc;color:var(--tnw-shell-blue-dark);text-decoration:none}
body.tnw-site .tnw-shell-search-key{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}
body.tnw-site .tnw-shell-nav-toggle{display:none;place-items:center;width:44px;height:44px;margin:0;border:1px solid #d4e1e9;border-radius:12px;background:#fff;color:#12344b;font-size:1.05rem;cursor:pointer}
body.tnw-site .tnw-shell-nav__mobile-head,
body.tnw-site .tnw-shell-nav__mobile-actions{display:none}
body.tnw-site .tnw-shell-nav-backdrop{position:fixed;inset:0;z-index:10010;background:rgba(4,18,31,.58);backdrop-filter:blur(2px)}

/* Footer is also isolated from historical .tnw-footer-* rules. */
body.tnw-site .tnw-shell-footer{width:100%;margin-top:clamp(42px,7vw,80px);background:var(--tnw-shell-footer-bg);color:#dbe7ef}
body.tnw-site .tnw-shell-footer__top{background:linear-gradient(145deg,var(--tnw-shell-footer-bg),var(--tnw-shell-footer-top))}
body.tnw-site .tnw-shell-footer__inner{width:min(calc(100% - 48px),var(--tnw-shell-max));margin-inline:auto;padding:clamp(48px,6vw,72px) 0 42px;display:grid;grid-template-columns:minmax(250px,.9fr) minmax(0,3.1fr);gap:clamp(40px,5vw,78px);align-items:start}
body.tnw-site .tnw-shell-footer__brand-block{min-width:0;align-content:start}
body.tnw-site .tnw-shell-footer__brand{display:block;width:min(240px,100%);line-height:0}
body.tnw-site .tnw-shell-footer__brand img{display:block;width:100%;height:auto;filter:drop-shadow(0 5px 14px rgba(0,0,0,.2))}
body.tnw-site .tnw-shell-footer__brand-block>p{max-width:46ch;margin:18px 0 0;color:#c7d7e1;font-size:.92rem;line-height:1.65}
body.tnw-site .tnw-shell-footer__actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
body.tnw-site .tnw-shell-footer__actions a{display:inline-flex;align-items:center;gap:7px;padding:8px 11px;border:1px solid rgba(255,255,255,.18);border-radius:9px;background:rgba(255,255,255,.06);color:#fff;text-decoration:none;font-size:.78rem;font-weight:780}
body.tnw-site .tnw-shell-footer__actions a:hover{background:rgba(255,255,255,.12);text-decoration:none}
body.tnw-site .tnw-shell-footer__trust{display:grid;gap:9px;margin:18px 0 0;padding:0;list-style:none}
body.tnw-site .tnw-shell-footer__trust li{display:flex;gap:9px;align-items:flex-start;color:#c7d7e1;font-size:.8rem}
body.tnw-site .tnw-shell-footer__trust i{width:18px;margin-top:3px;color:#85d1ae;text-align:center}
body.tnw-site .tnw-shell-footer__social{display:flex;gap:8px;margin-top:17px}
body.tnw-site .tnw-shell-footer__social a{display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(255,255,255,.18);border-radius:50%;background:rgba(255,255,255,.06);color:#fff;text-decoration:none}
body.tnw-site .tnw-shell-footer__social a:hover{background:#fff;color:#071c2e}
body.tnw-site .tnw-shell-footer__market{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
body.tnw-site .tnw-shell-footer__market span{display:inline-flex;align-items:center;gap:6px;padding:5px 8px;border-radius:8px;background:rgba(255,255,255,.06);color:#bcd0dc;font-size:.72rem;font-weight:750}
body.tnw-site .tnw-shell-footer__nav{display:grid;grid-template-columns:repeat(3,minmax(130px,1fr));gap:28px 24px;align-items:start;min-width:0}
body.tnw-site .tnw-shell-footer__column{min-width:0}
body.tnw-site .tnw-shell-footer__column h2{margin:0 0 11px;color:#fff;font-size:.78rem;letter-spacing:.075em;text-transform:uppercase}
body.tnw-site .tnw-shell-footer__column ul{display:grid;gap:8px;margin:0;padding:0;list-style:none}
body.tnw-site .tnw-shell-footer__column a{color:#c7d7e1;font-size:.8rem;text-decoration:none}
body.tnw-site .tnw-shell-footer__column a:hover{color:#fff;text-decoration:underline;text-underline-offset:3px}
body.tnw-site .tnw-shell-footer__bottom{border-top:1px solid rgba(255,255,255,.11);background:#051521}
body.tnw-site .tnw-shell-footer__bottom-inner{width:min(calc(100% - 48px),var(--tnw-shell-max));margin-inline:auto;padding:20px 0 24px;display:grid;grid-template-columns:minmax(260px,.75fr) minmax(0,1.25fr);gap:24px;align-items:start}
body.tnw-site .tnw-shell-footer__bottom p{margin:0;color:#9fb3c0;font-size:.72rem;line-height:1.55}
body.tnw-site .tnw-shell-footer__legal{display:grid;gap:8px}
body.tnw-site .tnw-shell-footer__meta-links{display:flex;flex-wrap:wrap;gap:12px}
body.tnw-site .tnw-shell-footer__meta-links :where(a,button){padding:0;border:0;background:none;color:#c7d7e1;font:inherit;font-size:.72rem;text-decoration:none;cursor:pointer}
body.tnw-site .tnw-shell-footer__meta-links :where(a,button):hover{text-decoration:underline;text-underline-offset:3px}

/* One low-specificity width contract. Page-specific route/container widths retain authority. */
body.tnw-site :where(.container,.site-container,.content-container,.page-container,.blog-shell){width:min(calc(100% - 40px),1280px);max-width:none;margin-inline:auto;padding-inline:0}

@media(max-width:1180px){
  body.tnw-site .tnw-shell-header__inner{grid-template-columns:minmax(155px,195px) minmax(0,1fr) auto;gap:10px}
  body.tnw-site .tnw-shell-nav__item>a,body.tnw-site .tnw-shell-nav__button{padding-inline:7px;font-size:.76rem}
  body.tnw-site .tnw-shell-nav__item>a>i:first-child,body.tnw-site .tnw-shell-nav__button>i:first-child{display:none}
  body.tnw-site .tnw-shell-account span{display:none}
  body.tnw-site .tnw-shell-account{width:44px;padding:0}
  body.tnw-site .tnw-shell-footer__inner{grid-template-columns:1fr}
  body.tnw-site .tnw-shell-footer__brand-block{display:grid;grid-template-columns:minmax(220px,.7fr) minmax(0,1.3fr);gap:10px 28px}
  body.tnw-site .tnw-shell-footer__brand-block .tnw-shell-footer__brand{grid-row:1/5}
}
@media(max-width:980px) and (min-width:821px){
  body.tnw-site .tnw-shell-market__select:not(.tnw-shell-market__select--currency){display:none}
  body.tnw-site .tnw-shell-assurance__inner{gap:18px}
  body.tnw-site .tnw-shell-assurance__inner span:nth-child(2){display:none}
}
@media(max-width:820px){
  html{scroll-padding-top:104px}
  body.tnw-site .tnw-shell-assurance__inner{width:min(calc(100% - 28px),var(--tnw-shell-max));justify-content:flex-start;overflow-x:auto;scrollbar-width:none}
  body.tnw-site .tnw-shell-assurance__inner::-webkit-scrollbar{display:none}
  body.tnw-site .tnw-shell-assurance__inner span:nth-child(2){display:none}
  body.tnw-site .tnw-shell-header__inner{width:min(calc(100% - 28px),var(--tnw-shell-max));grid-template-columns:minmax(145px,1fr) auto auto;min-height:68px;padding-block:6px;gap:8px}
  body.tnw-site .tnw-shell-brand{max-width:205px}
  body.tnw-site .tnw-shell-tools{grid-column:2/3;grid-row:1;gap:6px}
  body.tnw-site .tnw-shell-market{display:none}
  body.tnw-site .tnw-shell-search-button{display:none}
  body.tnw-site .tnw-shell-account span{display:none}
  body.tnw-site .tnw-shell-account{width:42px;min-height:42px;padding:0}
  body.tnw-site .tnw-shell-nav-toggle{display:grid;grid-column:3/4;grid-row:1;width:42px;height:42px}
  body.tnw-site .tnw-shell-nav{position:fixed;inset:0 auto 0 0;z-index:10020;width:min(390px,92vw);height:100dvh;padding:0 16px 24px;overflow-y:auto;overscroll-behavior:contain;background:#fff;border-radius:0 18px 18px 0;box-shadow:0 20px 60px rgba(0,0,0,.28);transform:translateX(-104%);visibility:hidden;transition:transform .2s ease,visibility .2s ease}
  body.tnw-site .tnw-shell-nav.is-open{transform:none;visibility:visible}
  body.tnw-site .tnw-shell-nav__mobile-head{position:sticky;top:0;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:17px 0 12px;background:#fff;border-bottom:1px solid var(--tnw-shell-line);color:var(--tnw-shell-ink);font-size:.9rem;font-weight:850}
  body.tnw-site .tnw-shell-nav__mobile-head button{display:grid;place-items:center;width:40px;height:40px;border:1px solid var(--tnw-shell-line);border-radius:50%;background:#fff;color:var(--tnw-shell-ink);cursor:pointer}
  body.tnw-site .tnw-shell-nav__list{display:grid;gap:3px;padding:12px 0}
  body.tnw-site .tnw-shell-nav__item>a,body.tnw-site .tnw-shell-nav__button{width:100%;justify-content:flex-start;min-height:48px;padding:10px 11px;font-size:.9rem}
  body.tnw-site .tnw-shell-nav__item>a>i:first-child,body.tnw-site .tnw-shell-nav__button>i:first-child{display:inline-block;width:20px;text-align:center}
  body.tnw-site .tnw-shell-nav__chevron{margin-left:auto}
  body.tnw-site .tnw-shell-menu{position:static;width:auto;min-width:0;transform:none;grid-template-columns:1fr;margin:3px 0 8px 31px;padding:8px;border-radius:12px;box-shadow:none;background:#f4f9fc}
  body.tnw-site .tnw-shell-menu--explore,body.tnw-site .tnw-shell-menu--plan{width:auto;grid-template-columns:1fr}
  body.tnw-site .tnw-shell-menu__feature{display:none}
  body.tnw-site .tnw-shell-menu__column{padding:7px}
  body.tnw-site .tnw-shell-nav__mobile-actions{display:grid;gap:8px;padding:14px 0 4px;border-top:1px solid var(--tnw-shell-line)}
  body.tnw-site .tnw-shell-nav__mobile-actions :where(a,button){width:100%;justify-content:center}
  body.tnw-site .tnw-shell-footer__brand-block{display:block}
  body.tnw-site .tnw-shell-footer__nav{grid-template-columns:repeat(2,minmax(0,1fr))}
  body.tnw-site .tnw-shell-footer__bottom-inner{grid-template-columns:1fr}
}
@media(max-width:580px){
  body.tnw-site .tnw-shell-assurance__inner{font-size:.65rem}
  body.tnw-site .tnw-shell-assurance__inner a{display:none}
  body.tnw-site .tnw-shell-header__inner{width:min(calc(100% - 24px),var(--tnw-shell-max));grid-template-columns:minmax(130px,1fr) auto auto}
  body.tnw-site .tnw-shell-brand{max-width:185px}
  body.tnw-site .tnw-shell-footer__inner,body.tnw-site .tnw-shell-footer__bottom-inner{width:min(calc(100% - 32px),var(--tnw-shell-max))}
  body.tnw-site .tnw-shell-footer__nav{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  body.tnw-site .tnw-shell-header,body.tnw-site .tnw-shell-nav,body.tnw-site .tnw-shell-nav__chevron{transition:none}
}
/* ===== END R15 AUTHORITATIVE GLOBAL SHELL ===== */
