/* ============================================
   HYTOLOA - ARCHITECTURAL GRID CSS
   Design: Precise, intellectual, structured
   Color: Deep navy / steel blue / amber accent
   ============================================ */


:root {
  --color-navy: #0d1b2a;
  --color-navy-mid: #1a2f45;
  --color-navy-light: #243b55;
  --color-steel: #2e5f8a;
  --color-steel-light: #4a87b8;
  --color-sky: #7ab3d4;
  --color-amber: #e8a020;
  --color-amber-light: #f2b84b;
  --color-cream: #f5f2ec;
  --color-white: #fafaf8;
  --color-text-primary: #0d1b2a;
  --color-text-secondary: #3a4f63;
  --color-text-muted: #6b8299;
  --color-border: #d4dde6;
  --color-border-light: #e8edf2;

  --gradient-primary: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 50%, #2e5f8a 100%);
  --gradient-accent: linear-gradient(90deg, #e8a020 0%, #f2b84b 100%);
  --gradient-hero: linear-gradient(160deg, #0a1628 0%, #1a3356 40%, #243b55 100%);

  --shadow-sm: 0 1px 3px rgba(13,27,42,0.08), 0 1px 2px rgba(13,27,42,0.05);
  --shadow-md: 0 4px 12px rgba(13,27,42,0.10), 0 2px 4px rgba(13,27,42,0.06);
  --shadow-lg: 0 12px 32px rgba(13,27,42,0.14), 0 4px 8px rgba(13,27,42,0.08);
  --shadow-xl: 0 24px 48px rgba(13,27,42,0.18), 0 8px 16px rgba(13,27,42,0.10);
  --shadow-amber: 0 4px 20px rgba(232,160,32,0.25);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

  --header-height: 72px;
  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2.5rem);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }


.PageHero-gridBg,
.InnerHero-gridBg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,135,184,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,135,184,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}


.Container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}


.SiteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--header-height);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.SiteHeader.is-scrolled {
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74, 135, 184, 0.18);
  box-shadow: 0 4px 24px rgba(13,27,42,0.25);
}

.SiteHeader-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.SiteHeader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.SiteHeader-logo:hover { opacity: 0.85; }

.SiteHeader-logoImg { width: 36px; height: 36px; }

.SiteHeader-logoText {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.SiteHeader-nav {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.SiteHeader-navLink {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(250,250,248,0.82);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.SiteHeader-navLink:hover,
.SiteHeader-navLink.is-active {
  color: var(--color-white);
  background: rgba(74,135,184,0.15);
}

.SiteHeader-navCta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-amber);
  color: var(--color-navy);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-amber);
}
.SiteHeader-navCta:hover {
  background: var(--color-amber-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(232,160,32,0.35);
}

.SiteHeader-ctaDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-navy);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.SiteHeader-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.SiteHeader-hamburger:hover { background: rgba(74,135,184,0.15); }
.SiteHeader-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.MobileMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-navy);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(74,135,184,0.2);
  box-shadow: -8px 0 32px rgba(13,27,42,0.4);
}

.MobileMenu.is-open { transform: translateX(0); }

.MobileMenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(74,135,184,0.15);
}

.MobileMenu-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
}

.MobileMenu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,248,0.7);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}
.MobileMenu-close:hover { color: var(--color-white); background: rgba(74,135,184,0.15); }

.MobileMenu-nav {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.MobileMenu-link {
  display: block;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(250,250,248,0.82);
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
}
.MobileMenu-link:hover { color: var(--color-white); background: rgba(74,135,184,0.15); }
.MobileMenu-link--cta {
  background: var(--color-amber);
  color: var(--color-navy);
  font-weight: 600;
  margin-top: 12px;
}
.MobileMenu-link--cta:hover {
  background: var(--color-amber-light);
  color: var(--color-navy);
}

.MobileMenu-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(74,135,184,0.15);
  color: rgba(250,250,248,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
}

.MobileMenu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s ease;
}
.MobileMenu-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}


.PageWrapper {
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
  min-height: calc(100vh - var(--header-height));
}
.PageWrapper.is-pushed {
  transform: translateX(-48px) scale(0.95);
  border-radius: var(--radius-lg);
  overflow: hidden;
}


.Btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(10px, 2vw, 13px) clamp(20px, 3vw, 28px);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.Btn--primary {
  background: var(--color-amber);
  color: var(--color-navy);
  border-color: var(--color-amber);
  box-shadow: var(--shadow-amber);
}
.Btn--primary:hover {
  background: var(--color-amber-light);
  border-color: var(--color-amber-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,32,0.35);
}

.Btn--outline {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.Btn--outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.Btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.3);
}
.Btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.Btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.Btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-navy);
  transform: translateY(-2px);
}

.Btn--sm { padding: 8px 16px; font-size: 0.85rem; }
.Btn--lg { padding: 15px 32px; font-size: 1.05rem; }
.Btn--full { width: 100%; justify-content: center; }


.SectionHeader {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.SectionHeader--left { text-align: left; }

.SectionHeader-line {
  width: 48px;
  height: 3px;
  background: var(--gradient-accent);
  margin: 0 auto var(--space-sm);
  border-radius: 2px;
}
.SectionHeader--left .SectionHeader-line { margin-left: 0; }

.SectionHeader-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.6rem;
}

.SectionHeader-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}
.SectionHeader--left .SectionHeader-sub { margin-left: 0; }


.PageHero {
  position: relative;
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

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

.PageHero-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-2xl) var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.PageHero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-md);
}

.PageHero-labelDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-amber);
  flex-shrink: 0;
}

.PageHero-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.PageHero-headingAccent {
  color: var(--color-amber);
  display: block;
}

.PageHero-subheading {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(250,250,248,0.75);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.PageHero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.PageHero-meta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.PageHero-metaItem {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(250,250,248,0.6);
}
.PageHero-metaItem i { color: var(--color-amber); font-size: 0.8rem; }

.PageHero-aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.PageHero-heroImage {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(74,135,184,0.2);
}

.PageHero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.PageHero-imageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,27,42,0.4));
}

.PageHero-quoteCard {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(74,135,184,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}

.PageHero-quoteIcon {
  color: var(--color-amber);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.PageHero-quoteText {
  font-size: 0.9rem;
  color: rgba(250,250,248,0.85);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.PageHero-quoteAuthor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.PageHero-quoteAvatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-amber);
  color: var(--color-navy);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.PageHero-quoteAuthor strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-white);
  font-weight: 600;
}
.PageHero-quoteAuthor span {
  font-size: 0.78rem;
  color: rgba(250,250,248,0.5);
}


.ServicesOverview {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
  position: relative;
}

.BentoGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.BentoCard {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.BentoCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.BentoCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-steel-light);
}
.BentoCard:hover::before { opacity: 1; }

.BentoCard--featured {
  grid-row: span 2;
}

.BentoCard--dark {
  background: var(--color-navy);
  border-color: var(--color-navy-mid);
  color: var(--color-white);
}
.BentoCard--dark .BentoCard-title { color: var(--color-white); }
.BentoCard--dark .BentoCard-body { color: rgba(250,250,248,0.75); }
.BentoCard--dark .BentoCard-icon { color: var(--color-amber); }
.BentoCard--dark .BentoCard-link { color: var(--color-amber); }
.BentoCard--dark::before { background: var(--color-amber); }

.BentoCard-icon {
  font-size: 1.8rem;
  color: var(--color-steel);
  margin-bottom: var(--space-sm);
  transition: color 0.2s ease;
}
.BentoCard:hover .BentoCard-icon { color: var(--color-amber); }

.BentoCard-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

.BentoCard-body {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.BentoCard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-steel);
  transition: gap 0.2s ease, color 0.2s ease;
}
.BentoCard-link:hover { gap: 10px; color: var(--color-amber); }


.Features {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
  position: relative;
}

.Features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,95,138,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,95,138,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.Feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
  position: relative;
}
.Feature:last-child { margin-bottom: 0; }

.Feature--reverse .Feature-media { order: 2; }
.Feature--reverse .Feature-content { order: 1; }

.Feature-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.Feature-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.Feature-media:hover .Feature-img { transform: scale(1.03); }

.Feature-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
  background: rgba(232,160,32,0.12);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: var(--space-sm);
}

.Feature-title {
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-sm);
}

.Feature-body {
  font-size: 0.97rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}


.TabbedSection {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.Tabs-header {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  scrollbar-width: none;
}
.Tabs-header::-webkit-scrollbar { display: none; }

.Tabs-tab {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.Tabs-tab:hover { color: var(--color-navy); }
.Tabs-tab.is-active {
  color: var(--color-navy);
  border-bottom-color: var(--color-amber);
}

.Tabs-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.Tabs-panel.is-active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.Tabs-panelGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.Tabs-panelContent h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}
.Tabs-panelContent p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.Tabs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--space-sm);
}
.Tabs-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}
.Tabs-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-amber);
  flex-shrink: 0;
  margin-top: 7px;
}

.Tabs-panelImage {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.Tabs-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}


.AccordionSection {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}

.Accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.Accordion-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.Accordion-item:hover {
  border-color: var(--color-steel-light);
  box-shadow: var(--shadow-sm);
}

.Accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  gap: var(--space-sm);
}
.Accordion-trigger:hover { background: rgba(74,135,184,0.04); }

.Accordion-triggerLeft {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.Accordion-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(46,95,138,0.08);
  color: var(--color-steel);
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.Accordion-item.is-open .Accordion-icon {
  background: var(--color-amber);
  color: var(--color-navy);
}

.Accordion-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  text-align: left;
}

.Accordion-arrow {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s ease;
}
.Accordion-item.is-open .Accordion-arrow {
  transform: rotate(180deg);
  color: var(--color-amber);
}

.Accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 var(--space-lg);
}
.Accordion-item.is-open .Accordion-panel {
  max-height: 400px;
  padding: 0 var(--space-lg) var(--space-md);
}

.Accordion-panel p {
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-xs);
}


.Process {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.Process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  position: relative;
}

.Process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-amber), var(--color-steel-light));
  z-index: 0;
}

.Process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.Process-stepNum {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-amber);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  border: 3px solid var(--color-amber);
  box-shadow: 0 0 0 4px var(--color-white), var(--shadow-md);
  transition: transform 0.25s ease;
}
.Process-step:hover .Process-stepNum { transform: scale(1.1); }

.Process-stepTitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.Process-stepBody {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}


.FleetStrip {
  padding: var(--space-2xl) 0;
  background: var(--color-navy);
  overflow: hidden;
}

.FleetStrip-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.FleetStrip-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.FleetStrip-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.FleetStrip-image:hover .FleetStrip-img { transform: scale(1.03); }

.FleetStrip-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
}

.FleetStrip-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}

.FleetStrip-body {
  font-size: 0.97rem;
  color: rgba(250,250,248,0.72);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.FleetStrip-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.FleetStrip-spec {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(250,250,248,0.75);
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74,135,184,0.15);
  transition: background 0.2s ease;
}
.FleetStrip-spec:hover { background: rgba(255,255,255,0.1); }
.FleetStrip-spec i { color: var(--color-amber); font-size: 0.9rem; }


.CtaBand {
  padding: var(--space-2xl) 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.CtaBand::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,135,184,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,135,184,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.CtaBand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.CtaBand-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.CtaBand-sub {
  font-size: 0.97rem;
  color: rgba(250,250,248,0.72);
  line-height: 1.6;
}

.CtaBand-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  flex-shrink: 0;
}


.InnerHero {
  position: relative;
  background: var(--gradient-hero);
  padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-xl);
  overflow: hidden;
}

.InnerHero-content { position: relative; z-index: 1; }

.InnerHero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}

.InnerHero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(250,250,248,0.72);
  line-height: 1.65;
  max-width: 560px;
}

.Breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(250,250,248,0.55);
  margin-bottom: var(--space-md);
}
.Breadcrumb a { color: rgba(250,250,248,0.55); transition: color 0.2s ease; }
.Breadcrumb a:hover { color: var(--color-amber); }
.Breadcrumb span:last-child { color: rgba(250,250,248,0.8); }


.TeamIntro, .TeamRoles, .TeamValues, .TeamCta {
  padding: var(--space-2xl) 0;
}
.TeamIntro { background: var(--color-white); }
.TeamRoles { background: var(--color-cream); }
.TeamValues { background: var(--color-white); }
.TeamCta { background: var(--gradient-primary); }

.TeamIntro-grid, .TeamValues-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.TeamIntro-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.TeamIntro-text p {
  font-size: 0.97rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.TeamIntro-img, .TeamValues-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.RoleGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.RoleCard {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.RoleCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.RoleCard-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(46,95,138,0.1);
  color: var(--color-steel);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: background 0.2s ease, color 0.2s ease;
}
.RoleCard:hover .RoleCard-icon { background: var(--color-amber); color: var(--color-navy); }

.RoleCard-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.RoleCard-body {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
}

.RoleCard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.RoleCard-list li {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  padding-left: 16px;
  position: relative;
}
.RoleCard-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-amber);
}

.TeamValues-content { padding: var(--space-md) 0; }
.TeamValues-content p {
  font-size: 0.97rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}


.IntlIntro, .Destinations, .IntlDocs, .IntlImage {
  padding: var(--space-2xl) 0;
}
.IntlIntro { background: var(--color-white); }
.Destinations { background: var(--color-cream); }
.IntlDocs { background: var(--color-white); }
.IntlImage { background: var(--color-cream); }

.IntlIntro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.IntlIntro-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.IntlIntro-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.IntlIntro-content p {
  font-size: 0.97rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.DestGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.DestCard {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.DestCard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-steel-light);
}

.DestCard-flag {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  letter-spacing: 0.05em;
}

.DestCard-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.DestCard-info { font-size: 0.83rem; color: var(--color-text-muted); line-height: 1.55; }

.IntlDocs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.IntlDoc-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.IntlDoc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.IntlDoc-icon {
  font-size: 1.8rem;
  color: var(--color-steel);
  margin-bottom: var(--space-sm);
}
.IntlDoc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.IntlDoc-card p { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.65; }

.IntlImage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.IntlImage-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
.IntlImage-img--tall { height: 420px; object-fit: cover; }

.IntlImage-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.IntlImage-content p {
  font-size: 0.97rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}


.TrackingIntro, .TrackingSteps, .TrackingFaq, .TrackingCta {
  padding: var(--space-2xl) 0;
}
.TrackingIntro { background: var(--color-white); }
.TrackingSteps { background: var(--color-cream); }
.TrackingFaq { background: var(--color-white); }
.TrackingCta { background: var(--gradient-primary); }

.TrackingIntro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.TrackingIntro-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.TrackingIntro-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-md);
}
.TrackingIntro-content p {
  font-size: 0.97rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.TrackingSteps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.TrackingStep {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.TrackingStep:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.TrackingStep-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-amber);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.TrackingStep-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}
.TrackingStep-content p { font-size: 0.9rem; color: var(--color-text-secondary); line-height: 1.65; }


.ContactSection {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.ContactSection-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.ContactInfo-title {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-lg);
}

.ContactInfo-item {
  display: flex;
  gap: var(--space-md);
align-items: flex-start;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border-light);
}
.ContactInfo-item:last-of-type { border-bottom: none; }

.ContactInfo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(46,95,138,0.1);
  color: var(--color-steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.ContactInfo-item:hover .ContactInfo-icon { background: var(--color-amber); color: var(--color-navy); }

.ContactInfo-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ContactInfo-item p {
  font-size: 0.97rem;
  color: var(--color-text-primary);
  line-height: 1.6;
}
.ContactInfo-item a {
  color: var(--color-steel);
  transition: color 0.2s ease;
}
.ContactInfo-item a:hover { color: var(--color-amber); }

.ContactInfo-note {
  font-size: 0.82rem !important;
  color: var(--color-text-muted) !important;
}

.ContactLangs {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.ContactLangs-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.ContactLangs-intro {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.ContactLangs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ContactLang-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ContactLang-flag {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-navy);
  color: var(--color-amber);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.ContactLang-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 2px;
}
.ContactLang-item p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}


.ContactForm-wrapper {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.ContactForm-title {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.ContactForm-intro {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.ContactForm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.FormField {
  margin-bottom: var(--space-md);
}

.FormField-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.FormField-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-primary);
  background: var(--color-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  appearance: none;
}
.FormField-input:focus {
  border-color: var(--color-steel);
  box-shadow: 0 0 0 3px rgba(46,95,138,0.12);
}
.FormField-input::placeholder { color: var(--color-text-muted); font-size: 0.9rem; }

.FormField-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.FormField--checkbox {
  margin-bottom: var(--space-lg);
}

.FormField-checkLabel {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}
.FormField-checkLabel input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--color-steel);
  cursor: pointer;
}
.FormField-checkLabel a {
  color: var(--color-steel);
  text-decoration: underline;
  transition: color 0.2s ease;
}
.FormField-checkLabel a:hover { color: var(--color-amber); }


.MapSection {
  padding: var(--space-2xl) 0;
  background: var(--color-cream);
}

.MapSection-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}
.MapSection-map iframe { display: block; }


.ThanksHero {
  min-height: calc(100vh - var(--header-height) - 200px);
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) var(--container-pad);
  position: relative;
  overflow: hidden;
}

.ThanksHero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,135,184,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,135,184,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

.ThanksHero-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.ThanksHero-icon {
  font-size: 4rem;
  color: var(--color-amber);
  margin-bottom: var(--space-md);
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.ThanksHero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}

.ThanksHero-text {
  font-size: 1.05rem;
  color: rgba(250,250,248,0.78);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}


.LegalPage {
  padding: var(--space-2xl) 0;
  background: var(--color-white);
}

.LegalPage-body {
  max-width: 820px;
  margin: 0 auto;
}

.LegalSection {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--color-border-light);
}
.LegalSection:last-child { border-bottom: none; }

.LegalSection h2 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  letter-spacing: -0.015em;
}

.LegalSection p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.LegalSection ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
}
.LegalSection ul li {
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 6px;
}

.LegalSummary {
  background: rgba(46,95,138,0.07);
  border-left: 3px solid var(--color-steel);
  padding: 10px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-steel);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}

.LegalSection--alt .LegalSummary--alt {
  background: rgba(232,160,32,0.08);
  border-left-color: var(--color-amber);
  color: #8a5f00;
}

.LegalSection--cookies .LegalCookieSummary {
  display: inline-block;
  background: var(--color-navy);
  color: var(--color-amber);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: var(--space-md);
  letter-spacing: 0.01em;
}

.CookieTable {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: var(--space-md);
}

.CookieTable-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--color-border-light);
}
.CookieTable-row:last-child { border-bottom: none; }

.CookieTable-row--header {
  background: var(--color-navy);
}
.CookieTable-row--header span {
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.CookieTable-row span {
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  border-right: 1px solid var(--color-border-light);
}
.CookieTable-row span:last-child { border-right: none; }
.CookieTable-row:not(.CookieTable-row--header):nth-child(even) { background: var(--color-cream); }


.SiteFooter {
  background: var(--color-navy);
  padding-top: var(--space-2xl);
}

.SiteFooter-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad) var(--space-xl);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
}

.SiteFooter-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(74,135,184,0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: background 0.2s ease;
}
.SiteFooter-card:hover { background: rgba(255,255,255,0.07); }

.SiteFooter-card--about { border-color: rgba(232,160,32,0.2); }

.SiteFooter-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-md);
}
.SiteFooter-logoImg { width: 32px; height: 32px; }
.SiteFooter-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.SiteFooter-about {
  font-size: 0.88rem;
  color: rgba(250,250,248,0.58);
  line-height: 1.7;
}

.SiteFooter-cardTitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: var(--space-md);
}

.SiteFooter-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.SiteFooter-links a {
  font-size: 0.88rem;
  color: rgba(250,250,248,0.62);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
  padding: 3px 0;
}
.SiteFooter-links a:hover {
  color: var(--color-amber);
  padding-left: 6px;
}

.SiteFooter-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.SiteFooter-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(250,250,248,0.62);
  line-height: 1.5;
}
.SiteFooter-contact i {
  color: var(--color-amber);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.SiteFooter-contact a {
  color: rgba(250,250,248,0.62);
  transition: color 0.2s ease;
}
.SiteFooter-contact a:hover { color: var(--color-amber); }

.SiteFooter-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-md) var(--container-pad);
  border-top: 1px solid rgba(74,135,184,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.SiteFooter-bottom p {
  font-size: 0.82rem;
  color: rgba(250,250,248,0.4);
}
.SiteFooter-bottom a {
  color: rgba(250,250,248,0.4);
  transition: color 0.2s ease;
}
.SiteFooter-bottom a:hover { color: var(--color-amber); }


.CookieLink {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 800;
}

.CookieLink-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 99px;
  padding: 7px 14px;
  box-shadow: var(--shadow-md);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.CookieLink-btn:hover {
  color: var(--color-navy);
  border-color: var(--color-steel-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.CookieLink-btn i { color: var(--color-amber); }

.CookieLink-btn.is-pulsing {
  animation: cookie-pulse 2s ease 0.5s 3;
}

@keyframes cookie-pulse {
  0%, 100% { box-shadow: var(--shadow-md); }
  50% { box-shadow: 0 0 0 6px rgba(232,160,32,0.2), var(--shadow-md); }
}

.CookieModal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.CookieModal.is-open {
  pointer-events: all;
  opacity: 1;
}

.CookieModal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.65);
  backdrop-filter: blur(4px);
}

.CookieModal-dialog {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.CookieModal.is-open .CookieModal-dialog {
  transform: translateY(0) scale(1);
}

.CookieModal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--color-border-light);
}

.CookieModal-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
}

.CookieModal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.CookieModal-close:hover { color: var(--color-navy); background: var(--color-cream); }

.CookieModal-body {
  padding: 20px 24px;
}
.CookieModal-body > p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.CookieModal-category {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
}
.CookieModal-category:last-child { border-bottom: none; }

.CookieModal-categoryHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}
.CookieModal-categoryHeader > span:first-child {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-navy);
}

.CookieModal-categoryDesc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 6px;
}

.CookieModal-badge {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-steel);
  background: rgba(46,95,138,0.1);
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.CookieModal-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.CookieModal-toggle input { opacity: 0; width: 0; height: 0; }

.CookieModal-toggleSlider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 99px;
  transition: background 0.25s ease;
}
.CookieModal-toggleSlider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-white);
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.CookieModal-toggle input:checked + .CookieModal-toggleSlider {
  background: var(--color-steel);
}
.CookieModal-toggle input:checked + .CookieModal-toggleSlider::before {
  transform: translateX(20px);
}

.CookieModal-footer {
  display: flex;
  gap: 8px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--color-border-light);
  flex-wrap: wrap;
  justify-content: flex-end;
}


.ServicesOverview,
.Features,
.TabbedSection,
.AccordionSection,
.Process,
.FleetStrip,
.CtaBand {
  position: relative;
}


.Features { margin: 0 0; }
.TabbedSection { margin: 0; }
.AccordionSection { margin: 0; }


.u-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;
}




@media (max-width: 1024px) {
  .BentoGrid {
    grid-template-columns: 1fr 1fr;
  }
  .BentoCard--featured { grid-column: span 2; }

  .Process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .Process-steps::before { display: none; }

  .SiteFooter-inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

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


@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .SiteHeader-nav { display: none; }
  .SiteHeader-hamburger { display: flex; }

  .PageHero-inner {
    grid-template-columns: 1fr;
    padding: var(--space-xl) var(--container-pad);
    gap: var(--space-lg);
  }

  .PageHero-heading { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .PageHero-subheading { max-width: 100%; }
  .PageHero-aside { order: -1; }
  .PageHero-img { height: 220px; }

  .BentoGrid {
    grid-template-columns: 1fr;
  }
  .BentoCard--featured { grid-column: span 1; }

  .Feature {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .Feature--reverse .Feature-media { order: 0; }
  .Feature--reverse .Feature-content { order: 0; }
  .Feature-img { height: 240px; }

  .Tabs-panelGrid {
    grid-template-columns: 1fr;
  }

  .Process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .FleetStrip-inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .FleetStrip-img { height: 240px; }

  .CtaBand-inner {
    flex-direction: column;
    text-align: center;
  }
  .CtaBand-actions { justify-content: center; }

  .SiteFooter-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .SiteFooter-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .TeamIntro-grid,
  .TeamValues-grid,
  .IntlIntro-grid,
  .IntlImage-grid,
  .TrackingIntro-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .TeamIntro-img,
  .TeamValues-img,
  .IntlIntro-img,
  .TrackingIntro-img { height: 240px; }

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

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

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

  .ContactSection-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .ContactForm-row {
    grid-template-columns: 1fr;
  }

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

  .CookieModal-footer {
    flex-direction: column;
  }
  .CookieModal-footer .Btn { width: 100%; justify-content: center; }

  .Tabs-panelImage { display: none; }

  .IntlImage-grid { grid-template-columns: 1fr; }
  .IntlImage-img--tall { height: 240px; }

  .FleetStrip-specs { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .DestGrid { grid-template-columns: 1fr; }
  .PageHero-actions { flex-direction: column; }
  .PageHero-actions .Btn { width: 100%; justify-content: center; }
  .ContactForm-wrapper { padding: var(--space-md); }
}