:root {
  --primary: #194d7f;
  --secondary: #33aacc;
  --light: #dbf3f9;
  --white: #ffffff;
  --text: #10253f;
  --muted: #5e748d;
  --border: rgba(25, 77, 127, 0.12);
  --border-strong: rgba(25, 77, 127, 0.18);
  --shadow-lg: 0 24px 60px rgba(16, 37, 63, 0.12);
  --shadow-md: 0 16px 40px rgba(16, 37, 63, 0.08);
  --shadow-sm: 0 8px 24px rgba(16, 37, 63, 0.06);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --transition: 240ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  /* This is your master gradient that will flow down the whole page */
  background:
    radial-gradient(circle at top left, rgba(51, 170, 204, 0.15), transparent 30%),
    linear-gradient(180deg, #d6ecf5 0%, #eaf6fb 30%, #ffffff 70%);
  background-repeat: no-repeat;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: transparent;
}

.centered {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 3rem;
}

.section-heading h2,
.page-hero h1,
.hero-copy h1,
.quote-header h2,
.split-content h2,
.cta-panel h2,
.faq-intro h2,
.contact-panel h2,
.contact-side-card h2,
.service-panel h2 {
  margin: 0 0 1rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-heading h2,
.split-content h2,
.cta-panel h2,
.faq-intro h2,
.contact-panel h2,
.contact-side-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p,
.page-hero p,
.hero-copy p,
.split-content p,
.cta-panel p,
.quote-header p,
.contact-panel p,
.contact-side-card p,
.info-card p,
.service-panel p,
.mini-faq p,
.destination-card p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(25, 77, 127, 0.08);
  transition: opacity var(--transition), transform var(--transition);
}

.site-header.is-hidden-at-footer {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: max-content;
  justify-self: start;
}

.brand-logo {
  width: auto;
  height: 50px;
  object-fit: contain;

  opacity: 0;
  transition: opacity 0.2s ease;
}

.brand-logo.loaded {
  opacity: 1;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-text span {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 1.8rem;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: #294865;
  transition: color var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.85rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(219, 243, 249, 0.7);
  border: 1px solid rgba(51, 170, 204, 0.16);
  border-radius: 999px;
  padding: 0.25rem;
}

.lang-pill {
  min-width: 42px;
  height: 34px;
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  transition: all var(--transition);
}

.lang-pill.active,
.lang-pill:hover {
  background: var(--white);
  box-shadow: 0 8px 18px rgba(16, 37, 63, 0.08);
}

.icon-link {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: var(--primary);
}

.icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(51, 170, 204, 0.3);
  box-shadow: var(--shadow-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all var(--transition);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 18px 38px rgba(25, 77, 127, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(25, 77, 127, 0.24);
}

.btn-secondary {
  color: var(--primary);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(51, 170, 204, 0.3);
}

.btn-white {
  color: var(--primary);
  background: var(--white);
  box-shadow: 0 18px 38px rgba(16, 37, 63, 0.16);
}

.btn-white:hover {
  transform: translateY(-2px);
}

.mobile-quote-btn,
.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 32, 53, 0.78) 8%, rgba(11, 32, 53, 0.52) 44%, rgba(11, 32, 53, 0.28) 100%),
    linear-gradient(180deg, rgba(11, 32, 53, 0.14), rgba(11, 32, 53, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  align-items: center;
  padding: 3.5rem 0 4rem;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
  padding-left: clamp(1.25rem, 4vw, 3.5rem);
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.35rem);
  max-width: 10ch;
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 620px;
}

.hero-search-card {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 0.8rem 0.8rem 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  max-width: 680px;
  width: 100%;
}

.search-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
}

.search-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

.hero-search-card input {
  border: none;
  outline: none;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
}

.hero-search-card input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search-card button {
  min-height: 48px;
  padding: 0 1.2rem;
  border-radius: 16px;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
}

.hero-stats {
  display: grid;
  gap: 1rem;
}

.glass-card {
  padding: 1.35rem;
  border-radius: 22px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-card strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
}

.page-hero {
  position: relative;
  padding: 128px 0 72px;
  background: transparent; /* Lets the body gradient show through */
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 170, 204, 0.14), transparent 68%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.home-stats-band {
  position: relative;
  margin-top: 28px;
  padding: 0 0 2rem;
  z-index: 3;
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #071523;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 60px rgba(7, 21, 35, 0.24);
}

.stats-tile {
  min-height: 190px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-tile:last-child {
  border-right: none;
}

.stats-value {
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}

.stats-label {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: 1fr 1fr;
}

.split-layout.reverse .split-media {
  order: 1;
}

.split-layout.reverse .split-content {
  order: 2;
}

.split-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1rem 1rem 0;
}

.rule-summary {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(25, 77, 127, 0.08);
  box-shadow: var(--shadow-sm);
}

.rule-summary h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  letter-spacing: -0.04em;
}

.rule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.rule-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 0.35rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.6;
  position: relative;
}

.rule-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 10px 18px rgba(25, 77, 127, 0.12);
  flex-shrink: 0;
}

.feature-check {
  width: 20px;
  height: 20px;
  margin-top: 0.3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 10px 18px rgba(25, 77, 127, 0.18);
  flex-shrink: 0;
  position: relative;
}

.feature-check::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--white);
  clip-path: polygon(14% 51%, 0 65%, 40% 100%, 100% 20%, 86% 6%, 37% 68%);
}

.feature-row strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.services-grid,
.about-grid,
.destination-grid,
.faq-preview {
  display: grid;
  gap: 1.4rem;
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.destination-grid {
  grid-template-columns: repeat(4, 1fr);
}

.faq-preview {
  grid-template-columns: repeat(3, 1fr);
}

.info-card,
.destination-card,
.mini-faq,
.service-panel,
.contact-side-card,
.contact-panel,
.portal-panel,
.cta-panel,
.faq-intro,
.accordion-item {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.info-card,
.destination-card,
.mini-faq,
.service-panel {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.info-card,
.service-panel {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card:hover,
.service-panel:hover,
.destination-card:hover,
.mini-faq:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(51, 170, 204, 0.24);
}

.info-card h3,
.destination-card h3,
.mini-faq h3,
.service-panel h2 {
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
}

.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(51, 170, 204, 0.18), rgba(25, 77, 127, 0.12));
  margin-bottom: 1.2rem;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  fill: var(--primary);
}

.portal-section {
  padding-top: 0;
}

.portal-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  border-radius: 30px;
  padding: 2rem;
}

.portal-ui {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portal-window {
  width: 100%;
  max-width: 460px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #0d2741;
}

.portal-topbar {
  display: flex;
  gap: 0.45rem;
  padding: 1rem 1rem 0.5rem;
}

.portal-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.portal-screen {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(51, 170, 204, 0.12), rgba(255, 255, 255, 0.04)),
    #0d2741;
  min-height: 320px;
}

.portal-chip {
  display: inline-flex;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(159, 233, 255, 0.14);
  color: #c2f3ff;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

.portal-progress {
  display: grid;
  gap: 0.8rem;
}

.progress-step {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.progress-step.active {
  background: rgba(159, 233, 255, 0.12);
  color: var(--white);
  border-color: rgba(159, 233, 255, 0.18);
}

.portal-lines {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.75rem;
}

.portal-lines span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.portal-lines span:nth-child(1) { width: 88%; }
.portal-lines span:nth-child(2) { width: 70%; }
.portal-lines span:nth-child(3) { width: 82%; }
.portal-lines span:nth-child(4) { width: 58%; }

.cta-section {
  padding-top: 0;
}

.cta-panel {
  border-radius: 30px;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary), #0f3558 55%, var(--secondary));
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-panel .eyebrow,
.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
}

.text-link,
.section-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 700;
}

.text-link::after,
.section-link a::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover::after,
.section-link a:hover::after {
  transform: translateX(4px);
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.service-anchor-section {
  padding-top: 0;
}

.service-anchor-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-anchor-link {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 1rem 1.2rem;
  color: var(--primary);
  font-weight: 700;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.service-anchor-link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(51, 170, 204, 0.24);
  color: #1e8fff;
}

.service-panel {
  min-height: 260px;
}

.process-steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.process-step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(25, 77, 127, 0.08);
}

.process-step-item:first-child {
  border-top: none;
}

.process-step-item span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--primary);
  background: rgba(51, 170, 204, 0.12);
}

.process-step-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel,
.contact-side-card {
  border-radius: 26px;
  padding: 2rem;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
  width: min(100%, 760px);
}

.accordion-item {
  border-radius: 20px;
  overflow: hidden;
}

.accordion-toggle {
  width: 100%;
  padding: 1.3rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.accordion-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: rgba(51, 170, 204, 0.1);
  transition: transform var(--transition), background var(--transition);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: rgba(25, 77, 127, 0.12);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding 320ms ease;
  padding: 0 1.4rem;
}

.accordion-item.active .accordion-content {
  max-height: 220px;
  padding: 0 1.4rem 1.3rem;
}

.accordion-content p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid rgba(25, 77, 127, 0.08);
}

.contact-item:first-child {
  border-top: none;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(51, 170, 204, 0.12);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.contact-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.contact-note {
  margin-top: 1.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(25, 77, 127, 0.08);
}

.contact-map-frame {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(25, 77, 127, 0.08);
  box-shadow: var(--shadow-sm);
  min-height: 320px;
}

.contact-map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 3.25rem 0 1.5rem;
  border-top: 1px solid rgba(25, 77, 127, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.98));
}

.footer-shell {
  display: grid;
  gap: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.95fr 0.95fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.footer-column h4 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.footer-accent {
  width: 52px;
  height: 3px;
  border-radius: 999px;
  margin: 0.9rem 0 1.2rem;
  background: linear-gradient(90deg, #1e8fff, var(--primary));
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  width: min(100%, 410px);
  height: auto;
  display: block;
}

.footer-copy,
.footer-nav-link,
.footer-contact-list a,
.footer-contact-list p,
.footer-social-copy,
.footer-bottom p,
.footer-legal a {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.footer-copy {
  max-width: 360px;
  margin-top: 1.5rem;
  font-size: 1rem;
}

.footer-contact-list,
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #1e8fff;
}

.footer-contact-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item a {
  text-decoration: none;
}

.footer-nav-list {
  display: grid;
  gap: 0.35rem;
}

.footer-nav-list li {
  border-bottom: 1px solid rgba(25, 77, 127, 0.12);
}

.footer-nav-list li:last-child {
  border-bottom: none;
}

.footer-nav-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  transition: color var(--transition), transform var(--transition);
}

.footer-nav-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-nav-arrow {
  color: #1e8fff;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.footer-social-copy {
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(30, 143, 255, 0.25);
  display: grid;
  place-items: center;
  color: #1e8fff;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(30, 143, 255, 0.5);
  box-shadow: var(--shadow-sm);
}

.footer-social-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(25, 77, 127, 0.12);
}

.footer-bottom p {
  font-size: 0.98rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-legal-divider {
  width: 1px;
  height: 22px;
  background: rgba(25, 77, 127, 0.16);
}

.legal-page {
  padding: 2rem 0 5.5rem;
}

.legal-frame {
  width: min(1000px, calc(100% - 2rem));
  margin: 0 auto;
}

.legal-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(16, 37, 63, 0.12);
}

.legal-topbar-title {
  margin: 0;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.legal-links a {
  color: var(--primary);
  font-size: 0.95rem;
  text-decoration: none;
}

.legal-links a:hover,
.legal-links a.active {
  color: #1e8fff;
}

.legal-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.legal-hero h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(2.6rem, 5vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.legal-subtitle {
  margin: 1rem 0 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 500;
}

.legal-rule {
  width: min(820px, 100%);
  height: 1px;
  margin: 0 auto 3.25rem;
  background: rgba(16, 37, 63, 0.14);
}

.legal-layout {
  width: min(820px, 100%);
  margin: 0 auto;
}

.legal-meta {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.legal-meta p {
  margin: 0.15rem 0;
}

.legal-section {
  padding: 0 0 2.35rem;
}

.legal-section h3 {
  margin: 0 0 0.9rem;
  font-size: 1.95rem;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.legal-section p {
  margin: 0;
  color: #314862;
  line-height: 1.9;
  font-size: 1.08rem;
}

.legal-section p + p {
  margin-top: 1rem;
}

.legal-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.legal-list li {
  position: relative;
  padding-left: 1.35rem;
  color: #314862;
  line-height: 1.85;
  font-size: 1.08rem;
}

.legal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.82rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1e8fff;
}

.legal-contact-card {
  margin-top: 0.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 37, 63, 0.12);
}

.legal-contact-card h3 {
  margin: 0 0 0.9rem;
  color: var(--primary);
  font-size: 1.95rem;
  letter-spacing: -0.04em;
}

.legal-contact-card p {
  margin: 0;
  color: #314862;
  line-height: 1.9;
  font-size: 1.08rem;
}

.legal-contact-card p + p {
  margin-top: 0.2rem;
}

.legal-contact-card a {
  color: var(--primary);
  text-decoration: none;
}

.legal-contact-card a:hover {
  text-decoration: underline;
}

.chat-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 20px 40px rgba(25, 77, 127, 0.24);
  display: grid;
  place-items: center;
  z-index: 60;
}

.chat-fab svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: min(360px, calc(100% - 2rem));
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 60;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.chat-widget.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  padding: 1rem 1rem 0.9rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(135deg, var(--primary), #0f3558);
  color: var(--white);
}

.chat-header span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.chat-close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

.chat-body {
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  background: linear-gradient(180deg, rgba(219, 243, 249, 0.3), rgba(255, 255, 255, 0.8));
}

.chat-bubble {
  max-width: 85%;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.chat-bubble.incoming {
  background: rgba(51, 170, 204, 0.12);
  color: var(--text);
  border-bottom-left-radius: 6px;
}

.chat-bubble.outgoing {
  margin-left: auto;
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 6px;
}

.chat-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
  padding: 1rem;
  border-top: 1px solid rgba(25, 77, 127, 0.08);
}

.chat-input-row input {
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  outline: none;
}

.chat-input-row button {
  min-width: 82px;
  min-height: 48px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.quote-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 19, 32, 0.56);
  backdrop-filter: blur(8px);
}

.quote-dialog {
  position: relative;
  width: min(920px, calc(100% - 2rem));
  margin: 4vh auto;
  max-height: 92vh;
  overflow: auto;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.18);
  padding: 2rem;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(25, 77, 127, 0.06);
  font-size: 1.8rem;
  color: var(--primary);
}

.quote-header {
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
}

.field-group {
  display: grid;
  gap: 0.55rem;
  grid-column: span 6;
}

.field-group.full-span {
  grid-column: 1 / -1;
}

.field-group.phone-group {
  grid-column: span 8;
}

.field-group.company-group {
  grid-column: span 4;
}

.field-group label {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--text);
}

.field-group label span {
  color: var(--muted);
  font-weight: 500;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(25, 77, 127, 0.12);
  background: #fbfdff;
  color: var(--text);
  padding: 0.95rem 1rem;
  border-radius: 18px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(51, 170, 204, 0.5);
  box-shadow: 0 0 0 5px rgba(51, 170, 204, 0.12);
  background: var(--white);
}

.phone-field {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(110px, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.phone-prefix-trigger {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(25, 77, 127, 0.12);
  background: #fbfdff;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.phone-prefix-trigger:hover,
.phone-field.is-open .phone-prefix-trigger,
.phone-prefix-trigger:focus-visible {
  border-color: rgba(51, 170, 204, 0.5);
  box-shadow: 0 0 0 5px rgba(51, 170, 204, 0.12);
  background: var(--white);
}

.phone-prefix-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  font-weight: 600;
}

.phone-prefix-text {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-country-flag {
  font-size: 1.05rem;
  line-height: 1;
  flex-shrink: 0;
}

.phone-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(25, 77, 127, 0.64);
  border-bottom: 2px solid rgba(25, 77, 127, 0.64);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.phone-field.is-open .phone-chevron {
  transform: rotate(-135deg) translateY(-1px);
}

.phone-field > input[type="tel"] {
  min-width: 0;
}

.phone-dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 0.6rem);
  width: min(92vw, 520px);
  background: var(--white);
  border: 1px solid rgba(25, 77, 127, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 0.85rem;
  z-index: 20;
}

.phone-country-search-wrap {
  margin-bottom: 0.75rem;
}

.phone-country-search {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(25, 77, 127, 0.12);
  background: #fbfdff;
  padding: 0 0.95rem;
  outline: none;
}

.phone-country-search:focus {
  border-color: rgba(51, 170, 204, 0.5);
  box-shadow: 0 0 0 4px rgba(51, 170, 204, 0.12);
  background: var(--white);
}

.phone-country-list {
  display: grid;
  gap: 0.35rem;
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
}

.phone-country-option {
  width: 100%;
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}

.phone-country-option:hover,
.phone-country-option:focus-visible,
.phone-country-option.is-selected {
  background: rgba(219, 243, 249, 0.72);
}

.phone-country-main {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.phone-country-name {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.phone-country-code {
  color: var(--muted);
  font-weight: 700;
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}

.phone-country-empty {
  margin: 0;
  padding: 0.8rem 0.35rem 0.35rem;
  color: var(--muted);
}

.volume-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.volume-btn {
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(219, 243, 249, 0.56);
  color: var(--primary);
  border: 1px solid rgba(25, 77, 127, 0.08);
  font-weight: 700;
  transition: all var(--transition);
}

.volume-btn.active,
.volume-btn:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(25, 77, 127, 0.18);
}

.form-actions {
  margin-top: 1.4rem;
  display: flex;
  justify-content: flex-start;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .services-grid,
  .destination-grid,
  .faq-preview {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content,
  .split-layout,
  .portal-panel,
  .faq-layout,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100vh - 86px);
  }

  .home-stats-band {
    margin-top: 0;
  }

  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-tile:nth-child(2) {
    border-right: none;
  }

  .stats-tile:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-content {
    padding: 6rem 0 3.5rem;
  }

  .hero-copy {
    max-width: 680px;
    padding-left: clamp(1rem, 3vw, 2rem);
  }

  .split-media img {
    min-height: 360px;
  }
}

@media (max-width: 920px) {
  .desktop-quote-btn {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--primary);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 1rem;
    width: min(320px, calc(100% - 2rem));
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 1rem;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a::after {
    display: none;
  }

  .mobile-quote-btn {
    display: inline-flex;
  }

  .header-actions {
    gap: 0.55rem;
  }

  .lang-switcher {
    display: none;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 76px 0;
  }

  .field-group,
  .field-group.phone-group,
  .field-group.company-group {
    grid-column: 1 / -1;
  }

  .home-stats-band {
    margin-top: 0;
    padding-bottom: 0;
  }

  .stats-panel {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .stats-tile,
  .stats-tile:nth-child(2) {
    min-height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .stats-tile:last-child {
    border-bottom: none;
  }

  .stats-label {
    font-size: 1.1rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    max-width: 9ch;
  }

  .hero-copy p {
    font-size: 0.96rem;
  }

  .hero-search-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  .search-icon {
    display: none;
  }

  .hero-search-card button {
    width: 100%;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }

  .phone-dropdown {
    width: 100%;
  }

  .services-grid,
  .about-grid,
  .destination-grid,
  .faq-preview,
  .services-detail-grid,
  .service-anchor-nav,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .footer-legal {
    flex-wrap: wrap;
    gap: 0.85rem;
  }

  .footer-socials {
    margin-top: 1.5rem;
  }

  .legal-page {
    padding-top: 1rem;
  }

  .legal-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    justify-content: flex-start;
    gap: 1rem;
  }

  .legal-hero {
    padding: 2.8rem 0 2.2rem;
  }

  .legal-section h3,
  .legal-contact-card h3 {
    font-size: 1.55rem;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-dialog {
    padding: 1.35rem;
  }

  .field-group.full-span {
    grid-column: auto;
  }

  .chat-widget {
    right: 1rem;
    bottom: 92px;
  }

  .chat-fab {
    right: 1rem;
    bottom: 1rem;
  }
}
 
.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  }

  .brand {
  justify-self: start;
  }

  .main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  }

  .header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
  }

  .site-header .container.header-inner {
  width: 100%;
  max-width: none;
  padding-left: 70px;
  padding-right: 70px;

  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.site-header .brand {
  justify-self: start;
}

.site-header .main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header .header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header .container.header-inner {
  padding-left: 60px;
  padding-right: 60px;
}

.section-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  justify-items: center;
}

.info-card {
  text-align: center;
}

main {
  background: transparent; /* Removes the harsh cutoff line */
}

.section-soft {
  background: transparent;
}

.section-link {
  margin-top: 20px;
}

.site-footer .brand {
  justify-self: start;
  margin-left: 0;
}

.site-footer .footer-grid > div:first-child {
  justify-self: start;
  text-align: left;
}

.site-footer .container {
  max-width: none;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}

.site-header .container.header-inner,
.site-footer .container {
  padding-left: 60px;
  padding-right: 60px;
}

.site-footer .brand-logo {
  height: 36px;
  width: auto;
}

.chat-fab {
  transition: opacity 0.3s ease;
}

.services-page .service-block {
  padding: 80px 0;
}

.services-page #auction {
  padding-top: 60px;
}

.services-page .split-layout {
  align-items: center;
}