@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --ink: #0d1b2a;
  --sand: #f7f3ee;
  --sun: #f08010;
  --coral: #ffb25c;
  --ocean: #0090c0;
  --deep: #0c3b52;
  --bg1: #ffe4bf;
  --bg2: #f7f3ee;
  --bg3: #e3f6fb;
  --header-bg: #f7f3ee;
  --btn-radius: 999px;
  --glass: rgba(255, 255, 255, 0.75);
  --shadow: 0 24px 50px rgba(12, 59, 82, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Trebuchet MS', sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, var(--bg1), var(--bg2) 45%, var(--bg3) 100%);
  min-height: 100vh;
  perspective: none;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    radial-gradient(72% 58% at 8% -8%, rgba(240, 128, 16, 0.2), transparent 68%),
    radial-gradient(64% 56% at 108% 4%, rgba(0, 144, 192, 0.2), transparent 66%),
    radial-gradient(62% 62% at 30% 104%, rgba(160, 214, 233, 0.24), transparent 72%);
  animation: meshShift 24s ease-in-out infinite alternate;
}

body::after {
  z-index: -1;
  background-image:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.32) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 18%, rgba(255, 255, 255, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 72%, rgba(255, 255, 255, 0.26) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 80%, rgba(255, 255, 255, 0.24) 0 1px, transparent 2px);
  background-size: 360px 360px, 420px 420px, 500px 500px, 380px 380px;
  mix-blend-mode: soft-light;
  opacity: 0.6;
  animation: sparkleDrift 42s linear infinite;
}

/* Extra safety for Android/in-app browsers that shrink layout width */
body > * {
  max-width: 100%;
}

@viewport {
  width: device-width;
}

body.modal-open {
  overflow: hidden;
  perspective: none;
}


.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.bg-shape {
  position: fixed;
  z-index: 0;
  opacity: 0.24;
  filter: blur(1px);
  animation: float 16s ease-in-out infinite;
}

.bg-shape.one {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  border-radius: 46% 54% 68% 32% / 40% 66% 34% 60%;
  top: -120px;
  right: -100px;
}

.bg-shape.two {
  width: 460px;
  height: 460px;
  background: linear-gradient(135deg, #9ad8ee, #e5f6ff);
  border-radius: 58% 42% 38% 62% / 42% 50% 50% 58%;
  bottom: 24px;
  left: -140px;
  animation-delay: -6s;
}

.travel-sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.sky-cloud {
  position: absolute;
  width: 180px;
  height: 60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(1px);
}

.sky-cloud::before,
.sky-cloud::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.sky-cloud::before {
  width: 76px;
  height: 76px;
  left: 24px;
  top: -34px;
}

.sky-cloud::after {
  width: 56px;
  height: 56px;
  left: 96px;
  top: -24px;
}

.cloud-a {
  top: 16%;
  left: -200px;
  animation: driftCloud 52s linear infinite;
}

.cloud-b {
  top: 34%;
  left: -260px;
  animation: driftCloud 62s linear infinite;
  animation-delay: -20s;
}

.cloud-c {
  top: 62%;
  left: -220px;
  animation: driftCloud 58s linear infinite;
  animation-delay: -36s;
}

.sky-helicopter {
  position: absolute;
  top: 21%;
  left: -130px;
  width: 64px;
  height: 30px;
  color: rgba(8, 58, 86, 0.45);
  animation: flyAcross 24s ease-in-out infinite;
}

.sky-helicopter::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 11px;
  width: 24px;
  height: 12px;
  border-radius: 8px;
  border: 2px solid currentColor;
}

.sky-helicopter::after {
  content: '';
  position: absolute;
  left: 34px;
  top: 14px;
  width: 16px;
  height: 2px;
  background: currentColor;
  box-shadow: 8px 3px 0 0 currentColor;
}

.sky-trail {
  position: absolute;
  top: 23.5%;
  left: -460px;
  width: 360px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(8, 58, 86, 0.25), rgba(0, 0, 0, 0));
  animation: flyTrail 24s ease-in-out infinite;
}

.topbar {
  background: var(--deep);
  color: white;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.topbar-right {
  display: flex;
  gap: 16px;
  opacity: 0.85;
}

.topbar-select {
  display: grid;
  gap: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.topbar-select span {
  opacity: 0.8;
}

.topbar-select select {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 0.85rem;
}

.topbar-select select option {
  background: #0f3b4e;
  color: white;
}

.flag-select {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(12, 59, 82, 0.1);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
}

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

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
  background: white;
  padding: 6px;
  box-shadow: 0 10px 18px rgba(12, 59, 82, 0.2);
}

.brand strong {
  display: block;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.1rem;
}

.brand span {
  font-size: 0.8rem;
  color: rgba(13, 27, 42, 0.7);
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: var(--deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links a.active {
  color: var(--ocean);
}

.nav-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(0, 144, 192, 0.12);
  color: var(--deep);
}

.nav-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links a.active .nav-icon {
  background: rgba(0, 144, 192, 0.2);
  color: var(--ocean);
}

.nav-links a:hover {
  color: var(--ocean);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.site-header .header-actions .topbar-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-header .header-actions .topbar-select span {
  opacity: 0.85;
}

.site-header .header-actions .topbar-select .flag-select {
  gap: 8px;
}

.site-header .header-actions .topbar-select select {
  color: var(--deep);
  border-color: rgba(12, 59, 82, 0.3);
  background: rgba(255, 255, 255, 0.9);
}

.subnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid rgba(12, 59, 82, 0.2);
  color: var(--deep);
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(12, 59, 82, 0.08);
}

.nav-toggle-bars {
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: inline-block;
  flex: 0 0 22px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle-text {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-block;
}

.nav-open .nav-links {
  display: grid;
}

.nav-mobile-lang-wrap {
  display: none;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.header-actions .nav-actions [data-booking] {
  display: none !important;
}

.btn {
  border: none;
  padding: 10px 20px;
  border-radius: var(--btn-radius);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
}

.btn.primary {
  background: var(--ocean);
  color: white;
  box-shadow: 0 14px 24px rgba(0, 144, 192, 0.25);
}

.btn.ghost {
  background: white;
  color: var(--deep);
  border: 1px solid rgba(12, 59, 82, 0.2);
}

.btn:hover {
  transform: translateY(-4px) translateZ(8px);
}

.btn.full {
  width: 100%;
  margin-top: 16px;
}

main {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
}

.hero {
  padding: 0 0 28px;
}

.hero-banner {
  display: grid;
  grid-template-columns: 46% 54%;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(120deg, var(--deep) 0%, #0a4f72 58%, #0e6c93 100%);
  border-radius: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  max-width: none;
  width: min(1900px, 100%);
  min-height: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.hero-copy {
  padding: 86px 86px 76px;
  display: grid;
  align-content: center;
  color: #e9f0ff;
}

.hero-copy h1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  margin: 16px 0 16px;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #f6f8ff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(241, 248, 255, 0.9);
  max-width: 580px;
}

.hero-copy .btn.ghost {
  margin-top: 10px;
  background: var(--sun);
  color: #082a45;
  border: 0;
  font-size: 1.04rem;
  font-weight: 800;
  padding: 13px 28px;
}

.hero-copy .btn.ghost:hover {
  background: var(--coral);
  color: #063050;
}

.hero-feature-icons {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 580px;
}

.hero-feature-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #f4f8ff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

.hero-feature-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.hero-carousel.wide {
  position: relative;
  min-height: 720px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 700ms ease, transform 4s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.02);
}

.hero-dots {
  position: absolute;
  right: 32px;
  bottom: 28px;
  transform: none;
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 23, 36, 0.35);
  backdrop-filter: blur(3px);
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}

.hero-dot.is-active {
  background: #fff;
}

.pill-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(12, 59, 82, 0.12);
  text-decoration: none;
  color: var(--deep);
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(12, 59, 82, 0.08);
  transform-style: preserve-3d;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pill.active {
  background: var(--deep);
  color: white;
  border-color: var(--deep);
}

.pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 144, 192, 0.12);
  color: var(--deep);
  font-weight: 700;
}

.pill.active .pill-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.section {
  padding: 70px 0;
}

.partners-section {
  padding-top: 44px;
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(12, 59, 82, 0.1);
  border-bottom: 1px solid rgba(12, 59, 82, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.partners-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 243, 238, 1), rgba(247, 243, 238, 0));
}

.partners-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 243, 238, 1), rgba(247, 243, 238, 0));
}

.partners-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 16px 0;
  animation: partnerRun 34s linear infinite;
}

.partner-logo {
  min-width: 176px;
  height: 58px;
  border-radius: 12px;
  border: 1px solid rgba(12, 59, 82, 0.14);
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: var(--deep);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px rgba(12, 59, 82, 0.08);
}

.partner-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.partner-logo span {
  white-space: nowrap;
}

@keyframes partnerRun {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes cardMediaPulse {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.calc-toolbar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.select {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: rgba(12, 59, 82, 0.85);
}

.select select {
  border-radius: 999px;
  border: 1px solid rgba(12, 59, 82, 0.2);
  padding: 10px 16px;
  font-family: inherit;
  background: white;
}

.select .lang-flag {
  background: rgba(12, 59, 82, 0.08);
  border-color: rgba(12, 59, 82, 0.15);
}

.calc-fields {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.calc-fields label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: rgba(12, 59, 82, 0.85);
}

.calc-fields input {
  border-radius: 12px;
  border: 1px solid rgba(12, 59, 82, 0.2);
  padding: 10px 12px;
  font-family: inherit;
}

.note {
  font-size: 0.85rem;
  color: rgba(12, 59, 82, 0.6);
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 10px;
}

.page-title {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.page-title .lead {
  color: #0d1b2a;
}

.page-hero.page-hero-rich {
  padding: 0 0 30px;
}

.page-hero.page-hero-rich .container {
  max-width: none;
  width: min(1900px, 100%);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: stretch;
  background: linear-gradient(120deg, var(--deep) 0%, #0a4f72 58%, #0e6c93 100%);
  overflow: hidden;
  min-height: 620px;
}

.page-hero.page-hero-rich .page-title {
  margin: 0;
  padding: 82px 82px 60px;
  align-content: center;
}

.page-hero.page-hero-rich .breadcrumb {
  color: rgba(240, 248, 255, 0.8);
  font-size: 0.95rem;
}

.page-hero.page-hero-rich .page-title h1 {
  margin: 12px 0 14px;
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(2.7rem, 6.3vw, 5.7rem);
  line-height: 0.96;
  color: #f3f8ff;
}

.page-hero.page-hero-rich .page-title .lead {
  color: rgba(240, 248, 255, 0.9);
  max-width: 560px;
  font-size: 1.16rem;
  line-height: 1.55;
}

.page-hero-media {
  margin-top: 14px;
}

.page-hero.page-hero-rich .page-hero-media {
  margin: 0;
}

.page-hero-carousel {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(12, 59, 82, 0.14);
  box-shadow: 0 16px 34px rgba(12, 59, 82, 0.12);
  min-height: 220px;
  background: #d9e9f1;
}

.page-hero.page-hero-rich .page-hero-carousel {
  border: 0;
  border-radius: 0;
  min-height: 620px;
  box-shadow: none;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.page-hero-slides {
  position: relative;
  min-height: 220px;
}

.page-hero.page-hero-rich .page-hero-slides {
  min-height: 620px;
}

.page-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.page-hero-slide.is-active {
  opacity: 1;
}

.page-hero-dots {
  position: absolute;
  right: 16px;
  bottom: 12px;
  display: flex;
  gap: 7px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 29, 44, 0.42);
  max-width: calc(100% - 24px);
  overflow-x: auto;
  scrollbar-width: none;
}

.page-hero-dots::-webkit-scrollbar {
  display: none;
}

.page-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
}

.page-hero-dot.is-active {
  background: #ffffff;
}

.page-hero-placeholder {
  min-height: 220px;
  border-radius: 18px;
  border: 1px dashed rgba(12, 59, 82, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(0, 144, 192, 0.08));
  color: var(--deep);
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  padding: 22px;
}

.page-hero.page-hero-rich .page-hero-placeholder {
  min-height: 620px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(236, 246, 255, 0.2), rgba(0, 0, 0, 0.28));
  color: #f2f7ff;
}

.page-hero-placeholder strong {
  font-size: 1.05rem;
}

.page-hero-placeholder span {
  max-width: 460px;
  color: rgba(12, 59, 82, 0.82);
}

.breadcrumb {
  font-size: 0.85rem;
  color: rgba(12, 59, 82, 0.6);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 144, 192, 0.12);
  color: var(--deep);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.info-grid {
  display: grid;
  gap: 12px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px dashed rgba(12, 59, 82, 0.15);
  padding-bottom: 8px;
}

.info-row + .btn,
.info-row + a.btn {
  margin-top: 14px;
}

.info-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cost-actions {
  margin-top: 18px;
}

.section.alt {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(12, 59, 82, 0.08);
  border-bottom: 1px solid rgba(12, 59, 82, 0.08);
  backdrop-filter: blur(16px);
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.card {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(12, 59, 82, 0.12);
  border: 1px solid rgba(12, 59, 82, 0.08);
  animation: rise 0.8s ease both;
  animation-delay: calc(var(--i, 0) * 0.06s);
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.img-placeholder {
  position: relative;
  overflow: hidden;
  height: 140px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(240, 128, 16, 0.25), rgba(0, 144, 192, 0.25)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6) 12px, transparent 12px, transparent 24px);
  border: 1px solid rgba(12, 59, 82, 0.12);
  transform: translateZ(10px);
  animation: float3d 12s ease-in-out infinite;
}

.img-placeholder[data-placeholder-text]::before {
  content: attr(data-placeholder-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
  color: rgba(12, 59, 82, 0.78);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.25;
  z-index: 1;
}

.img-placeholder.has-custom-image {
  background: rgba(12, 59, 82, 0.06);
}

.img-placeholder.has-custom-image::before {
  opacity: 0;
}

.img-placeholder.is-media-loading::before {
  opacity: 1;
}

.img-placeholder .fj-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  opacity: 1;
  transition: opacity 0.25s ease;
  position: relative;
  z-index: 2;
}

.img-placeholder.is-media-loading .fj-card-image {
  opacity: 0;
}

.img-placeholder.is-media-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  animation: cardMediaPulse 1.2s linear infinite;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(0, 144, 192, 0.12);
  color: var(--deep);
  animation: pulse 2.8s ease-in-out infinite;
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.2;
  width: 100%;
}

.card p {
  margin: 0 0 12px;
  line-height: 1.4;
  width: 100%;
}

.read-more-toggle {
  display: block;
  margin-top: 0;
  margin-bottom: 12px;
  border: 0;
  background: transparent;
  color: var(--ocean);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  width: fit-content;
}

.read-more-toggle:hover {
  color: var(--deep);
}

.card.is-readmore-open,
.fj-custom-block-card.is-readmore-open {
  border-color: rgba(0, 144, 192, 0.3);
}

.card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: 0 24px 50px rgba(12, 59, 82, 0.18);
}

.hero-banner:hover {
  transform: none;
  box-shadow: none;
}

.pill:hover {
  transform: translateY(-3px) translateZ(6px);
  box-shadow: 0 16px 28px rgba(12, 59, 82, 0.18);
}

.tag {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 12px;
  background: rgba(0, 144, 192, 0.12);
  color: var(--deep);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.card-actions {
  margin-top: auto;
  width: 100%;
  align-items: flex-start;
}

.cards .card {
  min-height: 100%;
}

.cards .card .img-placeholder {
  width: 100%;
}

.cards .card h3 {
  min-height: 2.4em;
}

.cards .card p {
  min-height: 4.2em;
}

.cards .card .card-actions .link-btn {
  min-width: 150px;
  justify-content: center;
}

.address-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(12, 59, 82, 0.12);
  box-shadow: 0 16px 36px rgba(12, 59, 82, 0.12);
}

.address-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed rgba(12, 59, 82, 0.15);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.address-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-details span {
  display: block;
  color: rgba(13, 27, 42, 0.7);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 130px;
  resize: vertical;
}

.contact-form .recaptcha-check {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.contact-form .g-recaptcha {
  max-width: 100%;
}

.contact-form .contact-form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
}

.contact-form .contact-form-actions .btn {
  min-width: 220px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(12, 59, 82, 0.2);
  padding: 10px 12px;
  font-family: inherit;
}

.fj-contact-map {
  background: white;
  border: 1px solid rgba(12, 59, 82, 0.14);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 10px 20px rgba(12, 59, 82, 0.08);
  animation: mapReveal 0.55s ease both;
}

.fj-contact-map h3 {
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 1rem;
}

.fj-contact-map iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 10px;
}

.whatsapp-float {
  position: fixed !important;
  right: max(20px, env(safe-area-inset-right)) !important;
  bottom: max(20px, env(safe-area-inset-bottom)) !important;
  top: auto !important;
  left: auto !important;
  transform: none;
  z-index: 2147483647 !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  margin: 0 !important;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  gap: 0;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px !important;
  padding: 0;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  transition: box-shadow 0.2s ease;
  isolation: isolate;
}

.whatsapp-float:hover {
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.32);
}

.whatsapp-float__label {
  display: none;
  background: #fff;
  color: #2a2a2a;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.whatsapp-float__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.whatsapp-float__icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.whatsapp-float__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right)) !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    width: 58px;
    height: 58px;
    min-width: 58px;
    min-height: 58px;
  }
  .whatsapp-float__label {
    display: none;
  }
  .whatsapp-float__icon {
    width: 48px;
    height: 48px;
  }
  .whatsapp-float__icon img {
    width: 24px;
    height: 24px;
  }
}

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

.footer {
  background: var(--deep);
  color: white;
  padding: 48px 0 0;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.2fr) minmax(260px, 1.1fr) minmax(260px, 1.2fr);
  gap: 30px;
  align-items: start;
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}

.footer h3,
.footer h4 {
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.footer h4 {
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.95;
  margin-bottom: 12px;
  line-height: 1.2;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  margin-top: 6px;
  width: fit-content;
  transition: color 0.2s ease, transform 0.2s ease;
  line-height: 1.35;
}

.footer a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-address {
  margin-top: 12px;
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-address strong {
  color: white;
  margin-bottom: 2px;
}

.footer-address a {
  display: inline;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #f7fbff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  text-decoration: none;
  border: 0;
  box-shadow: 0 8px 14px rgba(7, 29, 39, 0.18);
  backdrop-filter: blur(3px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.32), rgba(37, 211, 102, 0.14));
  color: #ffffff;
}

.footer-location {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 0;
}

.footer-location strong {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.footer-location p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
  line-height: 1.4;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(7, 29, 39, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.12));
}

.social-icon.whatsapp:hover {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.5), rgba(37, 211, 102, 0.2));
  border-color: rgba(37, 211, 102, 0.8);
  color: #ffffff;
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 28px rgba(24, 161, 77, 0.38);
}

.social-icon.imo:hover {
  background: linear-gradient(135deg, rgba(59, 164, 255, 0.55), rgba(28, 110, 239, 0.25));
  border-color: rgba(59, 164, 255, 0.85);
  color: #ffffff;
}

.social-icon.messenger:hover {
  background: linear-gradient(135deg, rgba(0, 178, 255, 0.6), rgba(0, 106, 255, 0.25));
  border-color: rgba(0, 178, 255, 0.9);
  color: #ffffff;
}

.footer-note {
  text-align: center;
  margin-top: 0;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-note a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.footer-legal a {
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  border: 0;
  border-radius: 0;
  padding: 0;
  opacity: 0.9;
}

.footer-legal a:hover {
  color: #fff;
  transform: none;
  text-decoration: underline;
}

.footer-ga {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(80, 220, 140, 0.5);
  color: #bdf5d0;
  border-radius: 999px;
  padding: 4px 8px;
  background: rgba(80, 220, 140, 0.12);
}

.footer-market .footer-midbar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 44, 63, 0.62);
  padding: 16px 0;
}

.footer-midbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-mid-logo img {
  width: 118px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-mid-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-mid-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.03);
}

.footer-market .footer-deep {
  background: #081826;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 26px 0 18px;
}

.footer-deep-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 20px 26px;
}

.footer-deep-col {
  display: grid;
  gap: 4px;
}

.footer-deep-col strong {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-deep-col span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 6px 10px;
}

.footer-links-grid h4 {
  grid-column: 1 / -1;
}

.footer-links-grid a {
  margin-top: 0;
}

.fj-footer-extra {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.fj-footer-extra-links h4 {
  margin: 0 0 8px;
  text-align: center;
}

.fj-footer-extra-links a {
  margin: 0 8px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9998;
  overflow: hidden;
  padding: 16px;
}

.modal.is-open {
  display: block;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 59, 82, 0.55);
  z-index: 9998;
}

.modal-card {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: min(620px, calc(100vw - 32px));
  margin: 0;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(12, 59, 82, 0.25);
  border: 1px solid rgba(12, 59, 82, 0.15);
  height: calc(100vh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 9999;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.modal-header h3 {
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: rgba(12, 59, 82, 0.7);
}

.modal-form {
  display: grid;
  gap: 12px;
}

.event-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 14px;
}

.event-form .span-2,
.event-form .recaptcha-check,
.event-form .modal-actions {
  grid-column: 1 / -1;
}

.event-form .modal-actions {
  justify-content: flex-end;
}

.event-form .recaptcha-check {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

@media (max-width: 1200px) {
  .event-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .event-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .event-form {
    grid-template-columns: 1fr;
  }
}

.modal-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: rgba(12, 59, 82, 0.85);
  min-width: 0;
}

.modal-form input,
.modal-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(12, 59, 82, 0.2);
  padding: 10px 12px;
  font-family: inherit;
  width: 100%;
  min-width: 0;
}

.modal-form select {
  border-radius: 12px;
  border: 1px solid rgba(12, 59, 82, 0.2);
  padding: 10px 12px;
  font-family: inherit;
  background: white;
  width: 100%;
  min-width: 0;
}
.modal-form input[type="file"] {
  padding: 8px;
  background: rgba(12, 59, 82, 0.04);
}

.human-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(12, 59, 82, 0.9);
}

.human-check input[type='checkbox'] {
  width: 16px;
  height: 16px;
  accent-color: var(--ocean);
}

.recaptcha-check {
  margin-top: 12px;
}

.recaptcha-check .g-recaptcha {
  transform-origin: left top;
}

@media (max-width: 420px) {
  .recaptcha-check .g-recaptcha {
    transform: scale(0.9);
  }
}

.modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 60;
  display: flex;
  justify-content: center;
}

.cookie-card {
  max-width: 680px;
  width: 100%;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(12, 59, 82, 0.15);
  box-shadow: 0 18px 40px rgba(12, 59, 82, 0.2);
  padding: 16px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-card p {
  margin: 6px 0 0;
  color: rgba(12, 59, 82, 0.75);
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-group-label {
  display: grid;
  gap: 10px;
}

.custom-booking-card {
  width: 100%;
}

.custom-booking-form {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.custom-booking-form .service-group-label,
.custom-booking-form .full-row,
.custom-booking-form .modal-actions,
.custom-booking-form .form-image-placeholder {
  grid-column: 1 / -1;
}

.custom-booking-form .span-2 {
  grid-column: span 2;
}

.custom-booking-form .form-image-placeholder {
  margin-bottom: 0;
  height: 120px;
}

@media (max-width: 1200px) {
  .custom-booking-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .custom-booking-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-help-text {
  font-size: 0.84rem;
  color: rgba(12, 59, 82, 0.7);
  font-weight: 500;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.service-chip {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(12, 59, 82, 0.14);
  background: rgba(12, 59, 82, 0.04);
  min-height: 72px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.service-chip input[type='checkbox'] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--ocean);
}

.service-chip-content {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px 38px 14px 12px;
}

.service-chip-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 144, 192, 0.14);
  color: var(--deep);
}

.service-chip-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-chip-text {
  font-weight: 700;
  line-height: 1.35;
  color: var(--deep);
}

.service-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 144, 192, 0.35);
  background: rgba(0, 144, 192, 0.08);
}

.service-chip:has(input:checked) {
  border-color: rgba(0, 144, 192, 0.48);
  background: rgba(0, 144, 192, 0.12);
  box-shadow: 0 10px 20px rgba(12, 59, 82, 0.1);
}

.service-chip:has(input:checked) .service-chip-icon {
  background: rgba(0, 144, 192, 0.25);
}

.service-chip input:checked + .service-chip-content .service-chip-icon {
  background: rgba(0, 144, 192, 0.25);
}

.service-chip input:checked + .service-chip-content {
  background: rgba(0, 144, 192, 0.1);
}

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

  .custom-booking-form {
    grid-template-columns: 1fr;
  }

  .custom-booking-form .span-2 {
    grid-column: auto;
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(16px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes driftCloud {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 320px));
  }
}

@keyframes flyAcross {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  35% {
    transform: translateX(42vw) translateY(-16px) rotate(3deg);
  }
  65% {
    transform: translateX(75vw) translateY(10px) rotate(-2deg);
  }
  100% {
    transform: translateX(calc(100vw + 230px)) translateY(-8px) rotate(0deg);
  }
}

@keyframes flyTrail {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 760px));
    opacity: 0;
  }
}

@keyframes float3d {
  0% {
    transform: translateY(0px) translateZ(12px);
  }
  50% {
    transform: translateY(-10px) translateZ(18px);
  }
  100% {
    transform: translateY(0px) translateZ(12px);
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cloud-a,
  .cloud-b,
  .cloud-c,
  .sky-helicopter,
  .sky-trail,
  .bg-shape {
    animation: none !important;
  }
}

@media (max-width: 1100px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
  }

  .topbar,
  .site-header,
  main,
  .footer {
    width: 100%;
  }

  .bg-shape {
    display: none;
  }

  .travel-sky {
    opacity: 0.45;
  }

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

  .header-actions {
    justify-content: flex-start;
  }

  .nav-actions {
    flex-wrap: wrap;
  }

  .subnav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .nav-open .nav-links {
    display: grid;
    margin-top: 10px;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .nav-mobile-lang-wrap {
    display: block;
    grid-column: 1 / -1;
    padding: 2px 0 8px;
    border-bottom: 1px solid rgba(12, 59, 82, 0.12);
    margin-bottom: 2px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 8vw, 4.1rem);
  }

  .hero-carousel.wide {
    min-height: 360px;
    clip-path: none;
  }

  .hero-copy {
    padding: 40px 24px 28px;
  }

  .page-hero.page-hero-rich .container {
    grid-template-columns: 1fr;
    min-height: auto;
    width: 100%;
  }

  .page-hero.page-hero-rich .page-title {
    padding: 40px 24px 26px;
  }

  .page-hero.page-hero-rich .page-hero-carousel,
  .page-hero.page-hero-rich .page-hero-slides,
  .page-hero.page-hero-rich .page-hero-placeholder {
    min-height: 340px;
    clip-path: none;
  }
}

@media (max-width: 600px) {
  .topbar-inner {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .topbar-right {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
  }

  .topbar-select {
    width: 100%;
  }

  .topbar-select select {
    width: 100%;
  }

  .header-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 1.45rem;
    line-height: 1;
  }

  .brand span {
    font-size: 0.7rem;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .site-header .header-actions .topbar-select {
    display: none;
  }

  .site-header .header-actions .topbar-select span {
    font-size: 0.72rem;
  }

  .site-header .header-actions .topbar-select .lang-flag {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .site-header .header-actions .topbar-select select {
    min-width: 160px;
    width: auto;
    max-width: 62vw;
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .nav-links {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
  }

  .nav-mobile-lang-wrap {
    display: block;
    grid-column: 1 / -1;
    padding: 2px 0 8px;
    border-bottom: 1px solid rgba(12, 59, 82, 0.12);
    margin-bottom: 2px;
  }

  .nav-mobile-lang-wrap .topbar-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .nav-mobile-lang-wrap .topbar-select .flag-select {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .nav-mobile-lang-wrap .topbar-select .lang-flag {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .nav-mobile-lang-wrap .topbar-select select {
    min-width: 146px;
    max-width: 58vw;
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .hero-carousel.wide {
    min-height: 270px;
  }

  .page-hero-carousel,
  .page-hero-slides,
  .page-hero-placeholder {
    min-height: 180px;
  }

  .page-hero.page-hero-rich .page-title {
    padding: 32px 16px 20px;
  }

  .page-hero.page-hero-rich .page-title h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .page-hero.page-hero-rich .page-hero-carousel,
  .page-hero.page-hero-rich .page-hero-slides,
  .page-hero.page-hero-rich .page-hero-placeholder {
    min-height: 250px;
  }

  .hero-copy {
    padding: 32px 16px 22px;
  }

  .hero-feature-icons {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-feature-icon {
    font-size: 0.8rem;
  }

  .nav-toggle {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 12px 14px;
    min-height: 46px;
    font-size: 1rem;
  }

  .nav-open .nav-links {
    margin-top: 10px;
  }

  .header-actions {
    gap: 10px;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .nav-links a {
    justify-content: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .address-row {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container {
    padding: 0 14px;
  }

  .nav-mobile-lang-wrap .topbar-select {
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-mobile-lang-wrap .topbar-select select {
    min-width: 138px;
    max-width: 58vw;
  }

  .nav-toggle {
    margin-top: 2px;
  }

  .page-hero.page-hero-rich .page-title {
    padding: 26px 14px 18px;
  }

  .page-hero.page-hero-rich .page-title h1 {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
}

.admin-wrap {
  position: relative;
  z-index: 1;
}

.admin-header {
  position: relative;
}

.admin-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(12, 59, 82, 0.24);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(12, 59, 82, 0.12);
  padding: 24px;
  margin: 24px 0;
}

.admin-hidden {
  display: none;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.admin-sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
  position: sticky;
  top: 14px;
  background: linear-gradient(180deg, rgba(12, 59, 82, 0.95), rgba(7, 43, 61, 0.95));
  border-radius: 16px;
  padding: 12px;
  max-height: calc(100vh - 30px);
  overflow: auto;
}

.admin-nav-group {
  display: grid;
  gap: 8px;
}

.admin-nav-group-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(230, 245, 251, 0.72);
  padding: 2px 4px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-nav-btn {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #e6f5fb;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  width: 100%;
}

.admin-nav-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  opacity: 0.95;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-nav-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: block;
}

.admin-nav-btn > span:last-child {
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
}

.admin-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.admin-nav-btn.is-active {
  background: #f4fbff;
  color: var(--deep);
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(12, 59, 82, 0.08) inset;
}

.admin-content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.admin-section-card {
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid rgba(12, 59, 82, 0.2);
  border-radius: 16px;
  padding: 20px;
  min-width: 0;
}

.admin-panel-hidden {
  display: none;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.admin-stat-card {
  border: 1px solid rgba(12, 59, 82, 0.14);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 247, 252, 0.92));
  padding: 12px;
}

.admin-stat-card h4 {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(12, 59, 82, 0.7);
}

.admin-stat-card p {
  margin: 8px 0 2px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--deep);
}

.admin-stat-card span {
  font-size: 0.84rem;
  color: rgba(12, 59, 82, 0.72);
}

.admin-form {
  display: grid;
  gap: 12px;
}

.admin-form > * {
  min-width: 0;
}

.admin-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: rgba(12, 59, 82, 0.96);
  min-width: 0;
}

.admin-form input {
  border: 1px solid rgba(12, 59, 82, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  background: #fff;
  color: var(--deep);
  width: 100%;
  min-width: 0;
}

.admin-form select {
  border: 1px solid rgba(12, 59, 82, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  background: #fff;
  color: var(--deep);
  width: 100%;
  min-width: 0;
}

.admin-form textarea {
  border: 1px solid rgba(12, 59, 82, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
  background: #fff;
  color: var(--deep);
  resize: vertical;
  width: 100%;
  min-width: 0;
}

.admin-pass-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-pass-row input {
  flex: 1 1 auto;
}

.admin-form input::placeholder,
.admin-form textarea::placeholder {
  color: rgba(12, 59, 82, 0.52);
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  outline: 2px solid rgba(0, 144, 192, 0.24);
  border-color: rgba(0, 144, 192, 0.65);
}

.admin-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
}

.admin-grid > * {
  grid-column: span 4;
}

.admin-grid .admin-span-6 {
  grid-column: span 6;
}

.admin-grid .admin-span-12 {
  grid-column: 1 / -1;
}

.admin-grid .admin-form-actions {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.admin-grid .admin-form-submit {
  grid-column: 1 / -1;
  align-self: end;
  justify-self: start;
}

.admin-tools-actions {
  grid-column: 1 / -1;
}

.admin-hero-grid,
.admin-pagehero-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.admin-hero-grid > label,
.admin-pagehero-grid > label {
  grid-column: span 2;
}

.admin-hero-grid .admin-span-6,
.admin-pagehero-grid .admin-span-6 {
  grid-column: span 3;
}

.admin-hero-grid .admin-span-12,
.admin-pagehero-grid .admin-span-12 {
  grid-column: 1 / -1;
}

.admin-hero-grid > label:nth-child(1),
.admin-hero-grid > label:nth-child(2),
.admin-hero-grid > label:nth-child(3) {
  grid-column: span 4;
}

.admin-hero-grid > label:nth-child(4),
.admin-hero-grid > label:nth-child(5) {
  grid-column: span 6;
}

.admin-pagehero-grid > label {
  grid-column: span 4;
}

.admin-form input[type="file"] {
  padding: 8px 10px;
}

.admin-form input[type="file"]::file-selector-button {
  border: 1px solid rgba(12, 59, 82, 0.22);
  background: rgba(12, 59, 82, 0.04);
  color: var(--deep);
  border-radius: 9px;
  padding: 6px 10px;
  margin-right: 8px;
  font-family: inherit;
  cursor: pointer;
}

.admin-note {
  color: rgba(12, 59, 82, 0.84);
  margin-top: 6px;
}

.admin-message {
  min-height: 1.2em;
  color: #0b7f4b;
  font-weight: 600;
  margin-top: 12px;
}

.admin-message.is-error {
  color: #c3383a;
}

.admin-section-title {
  margin: 24px 0 10px;
}

.admin-section-card > .admin-section-title:first-child {
  margin-top: 0;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(12, 59, 82, 0.16);
  background: rgba(12, 59, 82, 0.03);
  flex-wrap: wrap;
}

.admin-row-info {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-row-info code {
  background: white;
  border: 1px solid rgba(12, 59, 82, 0.15);
  border-radius: 999px;
  padding: 2px 8px;
  overflow-wrap: anywhere;
}

.admin-row-info span {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: rgba(12, 59, 82, 0.65);
}

.admin-row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.admin-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 2px;
}

.admin-sortable .admin-row {
  cursor: move;
}

.admin-row.is-dragging {
  opacity: 0.55;
}

.admin-row.is-drag-over {
  border-color: var(--ocean);
  background: rgba(0, 144, 192, 0.08);
}

.admin-tools-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.fj-services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.95));
}

.fj-service-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.fj-service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--deep);
  background: white;
  border: 1px solid rgba(12, 59, 82, 0.14);
  border-radius: 14px;
  padding: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fj-service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 59, 82, 0.12);
}

.fj-service-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(0, 144, 192, 0.12);
}

.fj-service-item-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.fj-service-item-label {
  font-weight: 700;
}

.fj-custom-blocks {
  background: rgba(255, 255, 255, 0.55);
}

.fj-custom-block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.fj-custom-block-card {
  border-radius: 18px;
  border: 1px solid rgba(12, 59, 82, 0.14);
  background: white;
  box-shadow: 0 14px 28px rgba(12, 59, 82, 0.1);
  overflow: hidden;
}

.fj-custom-block-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.fj-custom-block-card h3,
.fj-custom-block-card p {
  margin: 0;
  padding: 0 14px 12px;
}

.fj-custom-block-card h3 {
  padding-top: 14px;
  font-size: 1.05rem;
}

.fj-custom-block-card p {
  color: rgba(12, 59, 82, 0.78);
}

.fj-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.fj-package-card {
  background: white;
  border: 1px solid rgba(12, 59, 82, 0.14);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 14px 28px rgba(12, 59, 82, 0.1);
}

.fj-package-badge {
  display: inline-block;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.fj-package-card h3 {
  margin: 0 0 6px;
  line-height: 1.2;
}

.fj-package-duration {
  margin: 0 0 10px;
  color: rgba(12, 59, 82, 0.78);
  font-weight: 700;
}

.fj-package-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.fj-package-card .btn {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .cards .card h3,
  .cards .card p {
    min-height: 0;
  }

  .cards .card .card-actions .link-btn {
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer a {
    width: fit-content;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }

  .footer-note {
    text-align: center;
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .fj-footer-extra {
    display: block;
    text-align: center;
  }

  .footer-midbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-mid-controls {
    justify-content: center;
  }

  .footer-deep-grid {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }

  .admin-nav-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .admin-nav-group-title {
    grid-column: 1 / -1;
  }

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

  .admin-grid > *,
  .admin-grid .admin-span-6,
  .admin-grid .admin-span-12,
  .admin-grid .admin-form-actions {
    grid-column: 1 / -1;
  }

  .admin-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-panel-top {
    flex-direction: column;
  }
}

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

  .social-links {
    justify-content: center;
  }

  .footer-deep-grid {
    grid-template-columns: 1fr;
  }

  .admin-card {
    padding: 16px;
    border-radius: 16px;
  }

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

  .admin-nav-group {
    grid-template-columns: 1fr;
  }
}

/* Premium home redesign (scoped) */
.home-premium {
  background:
    radial-gradient(1200px 520px at 15% -10%, rgba(255, 181, 92, 0.34), transparent 60%),
    radial-gradient(1200px 540px at 100% 0%, rgba(0, 144, 192, 0.25), transparent 63%),
    linear-gradient(180deg, #f6f8fc 0%, #f3f6fb 36%, #f4f8fb 100%);
}

.home-premium .topbar {
  background: linear-gradient(90deg, #05253b, #0c3b52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home-premium .site-header {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(12, 59, 82, 0.14);
}

.home-premium .brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

.home-premium .nav-links a {
  padding: 8px 0;
}

.home-premium .hero {
  padding: 18px 0 18px;
}

.home-premium .hero-banner {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 34px 70px rgba(3, 35, 56, 0.24);
  min-height: 690px;
  background:
    linear-gradient(140deg, #07273e 0%, #0a4566 52%, #0c6b92 100%);
}

.home-premium .hero-copy {
  position: relative;
}

.home-premium .hero-copy::before {
  content: '';
  position: absolute;
  inset: 40px 36px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.home-premium .hero-copy h1 {
  text-wrap: balance;
}

.home-premium .hero-copy .btn.ghost {
  box-shadow: 0 16px 30px rgba(240, 128, 16, 0.35);
}

.home-premium .hero-feature-icon {
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.home-premium .hero-feature-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-trust {
  padding: 0 0 18px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-trust-item {
  border: 1px solid rgba(12, 59, 82, 0.14);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 10px 20px rgba(12, 59, 82, 0.08);
  display: grid;
  gap: 4px;
}

.hero-trust-item strong {
  font-size: 1rem;
  color: #0b3f59;
}

.hero-trust-item span {
  font-size: 0.82rem;
  color: rgba(9, 41, 59, 0.78);
}

.home-premium .section-title {
  margin-bottom: 22px;
}

.home-premium .section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #093a53;
}

.home-premium .section-title p {
  color: rgba(12, 59, 82, 0.8);
}

.home-premium .fj-services-section {
  padding-top: 42px;
}

.home-premium .fj-service-icons {
  gap: 14px;
}

.home-premium .fj-service-item {
  border-radius: 18px;
  padding: 15px 14px;
  border: 1px solid rgba(12, 59, 82, 0.12);
  box-shadow: 0 14px 26px rgba(12, 59, 82, 0.08);
}

.home-premium .fj-service-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(0, 144, 192, 0.22), rgba(0, 144, 192, 0.08));
}

.home-premium .section.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(233, 245, 252, 0.7));
}

.home-premium .fj-package-grid {
  gap: 18px;
}

.home-premium .fj-package-card {
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(12, 59, 82, 0.12);
  box-shadow: 0 20px 34px rgba(12, 59, 82, 0.11);
  position: relative;
  overflow: hidden;
}

.home-premium .fj-package-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 144, 192, 0.15), rgba(0, 144, 192, 0));
}

.home-premium .fj-package-badge {
  border: 1px solid rgba(0, 144, 192, 0.26);
  color: #0b516d;
  background: rgba(0, 144, 192, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.home-premium .contact-grid {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 59, 82, 0.14);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(12, 59, 82, 0.1);
}

.home-premium .contact-form input,
.home-premium .contact-form textarea {
  border: 1px solid rgba(12, 59, 82, 0.22);
  border-radius: 14px;
  background: #fff;
}

.home-premium .contact-form input:focus,
.home-premium .contact-form textarea:focus {
  border-color: rgba(0, 144, 192, 0.7);
  outline: 2px solid rgba(0, 144, 192, 0.2);
}

.home-premium .footer {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #07283f, #082133);
}

@media (max-width: 1100px) {
  .home-premium .hero-banner {
    min-height: auto;
    border-radius: 22px;
  }

  .hero-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .home-premium .hero {
    padding-top: 8px;
  }

  .home-premium .hero-banner {
    border-radius: 18px;
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .home-premium .contact-grid {
    border-radius: 18px;
    padding: 18px;
  }
}

/* TAAL-like layout direction (not a 1:1 clone) */
.taal-style .promo-strip {
  background: #2a8bd3;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 12px 16px;
}

.taal-style .promo-strip a {
  color: #b9e239;
  margin-left: 6px;
}

.taal-style .topbar {
  background: #d9dce3;
  color: #0e2233;
}

.taal-style .topbar-select span {
  color: #0e2233;
  opacity: 1;
}

.taal-style .topbar-select select {
  color: #0e2233;
  border-color: rgba(12, 59, 82, 0.25);
}

.taal-style .topbar-select select option {
  background: #fff;
  color: #0e2233;
}

.taal-style .site-header {
  background: #d9dce3;
  backdrop-filter: none;
  border-bottom: 0;
}

.taal-style .header-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 10px;
}

.taal-style .header-actions {
  justify-content: flex-end;
}

.taal-style .subnav {
  justify-content: center;
  padding-top: 6px;
  padding-bottom: 18px;
}

.taal-style .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
}

.taal-style .nav-links a {
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f1823;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.taal-style .nav-links a.active {
  color: #87c612;
}

.taal-style .nav-links a:hover {
  color: #5d9200;
}

.taal-style .nav-links .nav-icon {
  display: none;
}

.taal-style .hero-banner {
  border-radius: 0 0 220px 220px / 0 0 58px 58px;
  overflow: hidden;
  min-height: 640px;
}

.taal-style .hero-copy h1 {
  font-size: clamp(3rem, 6.3vw, 5.4rem);
}

.taal-style .hero-trust,
.taal-style .about-style,
.taal-style .stats-style,
.taal-style .popular-grid-style {
  background: #d9dce3;
}

.taal-style .page-hero {
  background: #d9dce3;
  padding-top: 0;
}

.taal-style .page-hero .container {
  background: linear-gradient(140deg, #1a1f2d, #31486e);
  border-radius: 0 0 220px 220px / 0 0 56px 56px;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 42px;
}

.taal-style .page-title {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.taal-style .page-title .breadcrumb {
  color: rgba(232, 241, 255, 0.82);
  font-size: 0.92rem;
}

.taal-style .page-title h1 {
  color: #fff;
  margin: 10px 0 14px;
  font-size: clamp(2.3rem, 5.2vw, 4.8rem);
}

.taal-style .page-title .lead {
  color: rgba(232, 242, 255, 0.92);
  font-size: 1.24rem;
}

.taal-style .page-hero .hero-image {
  display: none;
}

.taal-style main > .section {
  background: #d9dce3;
}

.taal-style .cards .card {
  border-radius: 18px;
  box-shadow: 0 16px 28px rgba(12, 59, 82, 0.12);
  border: 1px solid rgba(12, 59, 82, 0.1);
}

.taal-style .cards .card h3 {
  font-size: 1.45rem;
}

.taal-style .cards .card .tag {
  background: rgba(135, 198, 18, 0.18);
  color: #4f7a00;
  border-color: rgba(135, 198, 18, 0.45);
}

.taal-style .section-title h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-style {
  padding-top: 26px;
}

.about-style-grid {
  display: grid;
  grid-template-columns: minmax(260px, 44%) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.about-style-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  border: 10px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.about-style-kicker {
  margin: 0 0 8px;
  font-family: 'Playfair Display', 'Georgia', serif;
  color: #7bb811;
  font-weight: 700;
}

.about-style-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #1a2430;
}

.about-style-copy p {
  margin: 0 0 16px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #111822;
}

.stats-style {
  padding-top: 10px;
}

.stats-style-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stats-style-card {
  background: #fff;
  border: 1px solid rgba(12, 59, 82, 0.12);
  border-radius: 14px;
  min-height: 150px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 8px;
}

.stats-style-card strong {
  font-size: 2.6rem;
  line-height: 1;
  color: #87c612;
}

.stats-style-card span {
  font-size: 1.02rem;
  font-weight: 700;
  color: #1f81c9;
}

.popular-grid-style {
  padding-top: 22px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.popular-grid-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 260px;
  display: block;
}

.popular-grid-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.popular-grid-card span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: rgba(22, 129, 211, 0.9);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  padding: 12px 16px;
  border-radius: 10px;
}

.popular-grid-card.tall {
  grid-column: span 3;
  min-height: 520px;
}

.popular-grid-card.wide {
  grid-column: span 6;
  min-height: 250px;
}

.popular-grid-card:hover img {
  transform: scale(1.04);
}

.floating-social {
  position: fixed;
  right: 0;
  top: 58%;
  transform: translateY(-50%);
  z-index: 7;
  display: grid;
  width: 76px;
}

.floating-social a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-weight: 800;
  padding: 12px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.floating-social a:nth-child(1) { background: #d93cae; }
.floating-social a:nth-child(2) { background: #04a865; }
.floating-social a:nth-child(3) { background: #2a8bd3; border-bottom: 0; }

@media (max-width: 1100px) {
  .about-style-grid {
    grid-template-columns: 1fr;
  }

  .stats-style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popular-grid-card.tall,
  .popular-grid-card.wide {
    grid-column: span 6;
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .taal-style .hero-banner {
    border-radius: 0 0 120px 120px / 0 0 28px 28px;
  }

  .taal-style .subnav {
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .taal-style .nav-links {
    gap: 10px;
  }

  .taal-style .nav-links a {
    font-size: 0.98rem;
    font-weight: 700;
  }

  .taal-style .page-hero .container {
    border-radius: 0 0 120px 120px / 0 0 30px 30px;
    min-height: 320px;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .taal-style .page-title .lead {
    font-size: 1.04rem;
  }

  .stats-style-grid {
    grid-template-columns: 1fr;
  }

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

  .popular-grid-card.tall,
  .popular-grid-card.wide {
    grid-column: auto;
    min-height: 250px;
  }

  .popular-grid-card span {
    font-size: 1.45rem;
  }

  .floating-social {
    width: 62px;
  }
}
