:root {
  /* Brand */
  --color-primary: #0a3d62;
  --color-primary-light: #1e5f8a;
  --color-primary-dark: #062a44;
  --color-accent: #0d9488;
  --color-accent-light: #14b8a6;
  --color-accent-glow: rgba(20, 184, 166, 0.35);
  --color-gold: #f59e0b;
  --color-gold-light: #fbbf24;

  /* Neutrals */
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #071a31;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-white: #ffffff;

  /* Typography */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 6rem);
  --container-width: min(1200px, calc(100% - 2.5rem));

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.15);
  --shadow-glow: 0 0 40px var(--color-accent-glow);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 700ms;

  /* Layout */
  --header-height: 80px;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container-width);
  margin-inline: auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}

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


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transform-origin: center;
  transition: box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out);
}

.btn:active {
  animation: none !important;
  transform: scale(0.97);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-white);
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

.btn--primary:hover {
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: var(--color-white);
  backdrop-filter: blur(4px);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn--whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.btn--full {
  width: 100%;
}

.btn--messenger {
  gap: 0.625rem;
}

.btn--email {
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn--email:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-light);
}

.form-hint {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}

.form-dev-preview {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #a7f3d0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-dev-preview__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #065f46;
}

.form-dev-preview__link {
  font-size: 0.75rem;
  color: #047857;
  word-break: break-all;
  text-decoration: underline;
}

.form-dev-preview__copy {
  align-self: flex-start;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #065f46;
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.form-dev-preview__copy:hover {
  background: #a7f3d0;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Cards */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transform-origin: center;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-light);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-input--error,
.form-select.form-input--error {
  border-color: #ef4444;
}

.form-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

.form-success {
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  color: #065f46;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s var(--ease-out) forwards;
}

.form-error-banner {
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #991b1b;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.5s var(--ease-out) forwards;
}

.btn--loading {
  opacity: 0.75;
  cursor: wait;
}

/* Honeypot — hidden from real users, catches bots */
/* Video modal */
.video-modal[hidden] {
  display: none !important;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal), visibility var(--duration-normal);
}

.video-modal--open {
  opacity: 1;
  visibility: visible;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 49, 0.88);
  backdrop-filter: blur(8px);
}

.video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  transform: scale(0.92) translateY(16px);
  transition: transform var(--duration-normal) var(--ease-out);
}

.video-modal--open .video-modal__dialog {
  transform: scale(1) translateY(0);
}

.video-modal__close {
  position: absolute;
  top: -3rem;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.video-modal__player {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: #000;
  line-height: 0;
}

.video-modal__video {
  width: 100%;
  max-height: min(80vh, 540px);
  display: block;
  background: #000;
}

@media (max-width: 600px) {
  .video-modal {
    padding: 1rem;
  }

  .video-modal__close {
    top: -2.75rem;
    right: 0.25rem;
  }
}

/* Destination details modal */
.dest-modal[hidden] {
  display: none !important;
}

.dest-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal), visibility var(--duration-normal);
}

.dest-modal--open {
  opacity: 1;
  visibility: visible;
}

.dest-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 49, 0.88);
  backdrop-filter: blur(8px);
}

.dest-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.92) translateY(16px);
  transition: transform var(--duration-normal) var(--ease-out);
}

.dest-modal--open .dest-modal__dialog {
  transform: scale(1) translateY(0);
}

.dest-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(7, 26, 49, 0.55);
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.dest-modal__close:hover {
  background: rgba(7, 26, 49, 0.75);
  transform: scale(1.05);
}

.dest-modal__hero {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.dest-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.dest-modal__hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(7, 26, 49, 0.88) 0%, transparent 65%);
}

.dest-modal__tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-light);
  margin-bottom: 0.35rem;
}

.dest-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.dest-modal__body {
  padding: 1.5rem;
}

.dest-modal__desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.dest-modal__highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.dest-modal__highlights li {
  position: relative;
  padding-left: 1.375rem;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
}

.dest-modal__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-gold));
}

.dest-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dest-modal__actions .btn {
  flex: 1 1 calc(50% - 0.375rem);
  justify-content: center;
}

@media (max-width: 600px) {
  .dest-modal {
    padding: 1rem;
    align-items: flex-end;
  }

  .dest-modal__dialog {
    max-height: 92vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .dest-modal__body {
    padding: 1.25rem;
  }

  .dest-modal__actions {
    flex-direction: column;
  }

  .dest-modal__actions .btn {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* Site-for-sale promo popup */
.promo-modal[hidden] {
  display: none !important;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal), visibility var(--duration-normal);
}

.promo-modal--open {
  opacity: 1;
  visibility: visible;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 49, 0.82);
  backdrop-filter: blur(6px);
}

.promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: min(92vh, 640px);
  overflow-y: auto;
  padding: 2rem 1.75rem 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #ffffff 0%, #f0fdfa 55%, #ecfeff 100%);
  border: 2px solid rgba(20, 184, 166, 0.25);
  box-shadow: 0 28px 80px rgba(7, 26, 49, 0.35);
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform var(--duration-normal) var(--ease-out);
  -webkit-overflow-scrolling: touch;
}

.promo-modal--open .promo-modal__dialog {
  transform: scale(1) translateY(0);
}

.promo-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(7, 26, 49, 0.08);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast), transform var(--duration-fast);
}

.promo-modal__close:hover {
  background: rgba(7, 26, 49, 0.14);
  color: var(--color-text);
  transform: scale(1.05);
}

.promo-modal__badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: promoBadgeBlink 1.1s ease-in-out infinite;
}

.promo-modal__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 1.875rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 0.35rem;
  padding: 0 0.25rem;
  overflow-wrap: anywhere;
}

.promo-modal__headline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.promo-modal__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(20, 184, 166, 0.1);
  border: 1px dashed rgba(20, 184, 166, 0.45);
}

.promo-modal__price {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.25rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.promo-modal__plus {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.promo-modal__bonus {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.promo-modal__exclusive {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  padding: 0 0.25rem;
  overflow-wrap: anywhere;
}

.promo-modal__contact-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.promo-modal__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.promo-modal__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast);
}

.promo-modal__social svg {
  width: 26px;
  height: 26px;
}

.promo-modal__social:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.promo-modal__social--facebook {
  background: #1877f2;
}

.promo-modal__social--messenger {
  background: linear-gradient(135deg, #00b2ff, #006aff);
}

.promo-modal__social--whatsapp {
  background: #25d366;
}

@media (max-width: 600px) {
  .promo-modal {
    align-items: center;
    padding: 1.5rem 1.25rem;
  }

  .promo-modal__dialog {
    width: 100%;
    max-width: 320px;
    max-height: 82vh;
    margin: 0 auto;
    padding: 1.25rem 1rem 1.125rem;
    border-radius: var(--radius-md);
  }

  .promo-modal__close {
    top: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
  }

  .promo-modal__close svg {
    width: 18px;
    height: 18px;
  }

  .promo-modal__badge {
    margin-bottom: 0.5rem;
    padding: 0.3rem 0.65rem;
    font-size: 0.625rem;
    letter-spacing: 0.08em;
  }

  .promo-modal__title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
  }

  .promo-modal__headline {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .promo-modal__price-block {
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    padding: 0.625rem 0.75rem;
  }

  .promo-modal__price {
    font-size: 1.5rem;
  }

  .promo-modal__plus {
    font-size: 0.875rem;
  }

  .promo-modal__bonus {
    font-size: 0.8125rem;
  }

  .promo-modal__exclusive {
    font-size: 0.75rem;
    line-height: 1.45;
    margin-bottom: 0.875rem;
  }

  .promo-modal__contact-label {
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
  }

  .promo-modal__socials {
    gap: 0.75rem;
  }

  .promo-modal__social {
    width: 42px;
    height: 42px;
  }

  .promo-modal__social svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 380px) {
  .promo-modal {
    padding: 1.25rem 1rem;
  }

  .promo-modal__dialog {
    max-width: 100%;
  }
}

/* Mobile floating call + WhatsApp buttons */
.mobile-fab {
  display: none;
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 1500;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--color-white);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast);
}

.mobile-fab__btn svg {
  width: 24px;
  height: 24px;
}

.mobile-fab__btn:hover,
.mobile-fab__btn:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.mobile-fab__btn--call {
  background: linear-gradient(135deg, #0a3d62, #1e5f8a);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.mobile-fab__btn--whatsapp {
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

@media (max-width: 900px) {
  .mobile-fab {
    display: flex;
  }
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Stars */
.stars {
  color: var(--color-gold);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

/* Icon wrapper */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(20, 184, 166, 0.15));
  color: var(--color-accent);
  margin-bottom: 1rem;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.icon-box svg {
  width: 26px;
  height: 26px;
}


/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--duration-normal), box-shadow var(--duration-normal),
    backdrop-filter var(--duration-normal);
}

.header--scrolled {
  background: rgba(7, 26, 49, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  line-height: 1.2;
  text-decoration: none;
  color: inherit;
}

.logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  max-width: 9.5rem;
}

.logo__brand {
  font-family: var(--font-display);
  font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: 0.01em;
}

.logo__sub {
  font-size: clamp(0.625rem, 1.2vw, 0.6875rem);
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}

.logo__img {
  display: block;
  height: clamp(42px, 5vw, 54px);
  width: clamp(42px, 5vw, 54px);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 20px rgba(7, 26, 49, 0.22);
  background: var(--color-white);
  padding: 3px;
  object-fit: contain;
  transition: transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast);
}

.logo:hover .logo__img {
  box-shadow: 0 8px 24px rgba(7, 26, 49, 0.28);
}

.header--scrolled .logo__img {
  border-color: rgba(255, 255, 255, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--duration-fast);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-light);
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link:hover::after {
  width: 100%;
}

.header__location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
}

.header__location svg {
  width: 14px;
  height: 14px;
  color: var(--color-accent-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--duration-normal), opacity var(--duration-fast);
}

.nav-toggle--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle--active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(7, 26, 49, 0.82) 0%,
      rgba(10, 61, 98, 0.65) 50%,
      rgba(13, 148, 136, 0.25) 100%
    ),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80')
      center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(7, 26, 49, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  padding-bottom: 4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    'intro video'
    'body video';
  gap: clamp(1.25rem, 3vw, 2rem) clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.hero__intro {
  grid-area: intro;
  align-self: end;
}

.hero__body {
  grid-area: body;
  align-self: start;
}

.hero__video-wrap {
  grid-area: video;
  align-self: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent-light);
  flex-shrink: 0;
}

.hero__video-wrap {
  padding: 10px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(20, 184, 166, 0.2);
  transform-origin: center;
  transition: box-shadow var(--duration-normal);
}

.hero__video-frame {
  position: relative;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a2540;
}

.hero__thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  pointer-events: none;
  background: #0a2540;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 45%,
    rgba(7, 26, 49, 0.12) 100%
  );
  pointer-events: none;
  transition: opacity var(--duration-normal);
}

.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform var(--duration-normal) var(--ease-spring),
    border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.hero__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero__play-btn:active {
  transform: translate(-50%, -50%) scale(0.96);
}

.hero__play-icon {
  position: relative;
  z-index: 1;
  display: flex;
  margin-left: 4px;
}

.hero__play-icon svg {
  width: 32px;
  height: 32px;
}

.hero__play-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: playRingPulse 2s var(--ease-out) infinite;
}

.hero__play-ring--delay {
  animation-delay: 1s;
}

/* About */
.about {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: linear-gradient(160deg, #f0f9ff 0%, #f8fafc 40%, #ecfdf5 100%);
}

.about__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.about__bg-blob--1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(20, 184, 166, 0.35);
}

.about__bg-blob--2 {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -60px;
  background: rgba(10, 61, 98, 0.2);
}

.about__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
  background-size: 24px 24px;
}

.about__container {
  position: relative;
  z-index: 1;
}

/* Our Story panel */
.about__story {
  margin-bottom: 1.75rem;
}

.about__story-panel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform-origin: center;
}

.about__story-blend {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(10, 61, 98, 0.06) 0%,
    rgba(255, 255, 255, 0.95) 35%,
    rgba(236, 253, 245, 0.9) 70%,
    rgba(20, 184, 166, 0.1) 100%
  );
  pointer-events: none;
}

.about__story-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(248, 250, 252, 0.88) 50%,
    rgba(240, 253, 250, 0.85) 100%
  );
}

.about__story-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  justify-content: center;
}

.about__visual-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(20, 184, 166, 0.25);
}

.about__ring--1 {
  width: 290px;
  height: 290px;
  animation: aboutRingPulse 4s ease-in-out infinite;
}

.about__ring--2 {
  width: 330px;
  height: 330px;
  border-color: rgba(10, 61, 98, 0.12);
  animation: aboutRingPulse 4s ease-in-out 2s infinite;
}

.about__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.35;
}

.about__dot--1 {
  width: 10px;
  height: 10px;
  top: 18%;
  left: 12%;
}

.about__dot--2 {
  width: 14px;
  height: 14px;
  bottom: 22%;
  right: 10%;
  background: var(--color-gold);
}

.about__dot--3 {
  width: 8px;
  height: 8px;
  top: 28%;
  right: 18%;
}

.about__profile-wrap {
  position: relative;
  z-index: 2;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-primary), var(--color-gold));
  box-shadow: 0 16px 48px rgba(10, 61, 98, 0.2);
}

.about__profile {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 4px solid var(--color-white);
}

.about__profile-meta {
  position: relative;
  z-index: 2;
  margin-top: 1.25rem;
  text-align: center;
}

.about__profile-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

.about__profile-meta span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

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

.about__story-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.625rem;
}

.about__story-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.about__story-subtitle {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.about__story-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__story-quote {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.7;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(10, 61, 98, 0.05));
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.about__story-quote--secondary {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
}

.about__story-quote-note {
  margin: 0.875rem 0 1.5rem;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  border-left: 3px solid rgba(20, 184, 166, 0.35);
}

.about__story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.about__tag {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(10, 61, 98, 0.12);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.about__story-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
}

.about__story-location svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.about__packages {
  margin-bottom: 1.75rem;
}

.about__packages-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.about__packages-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.about__packages-lead {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.about__packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.about__package-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  transform-origin: center;
  transition: box-shadow var(--duration-normal);
}

.about__package-card:hover {
  box-shadow: 0 16px 40px rgba(10, 61, 98, 0.12);
}

.about__package-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.about__package-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.about__package-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem 1.125rem;
}

.about__package-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
  flex-shrink: 0;
}

.about__package-icon svg {
  width: 20px;
  height: 20px;
}

.about__package-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-text);
  margin-bottom: 0.625rem;
}

.about__package-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 0.75rem;
  border: none;
  background: rgba(20, 184, 166, 0.35);
}

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

.about__package-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.about__package-list li + li {
  margin-top: 0.25rem;
}

.about__package-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.about__value-bar {
  border-radius: 15px;
  background: var(--color-white);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transform-origin: center;
}

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

.about__value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.25rem;
}

.about__value-item:not(:last-child) {
  border-right: 1px solid rgba(226, 232, 240, 0.95);
}

.about__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.875rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-white);
}

.about__value-icon svg {
  width: 22px;
  height: 22px;
}

.about__value-title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.about__value-desc {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 220px;
}

@media (max-width: 900px) {
  .about__story-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__story-visual {
    min-height: 300px;
  }

  .about__story-location {
    margin-inline: auto;
  }

  .about__story-tags {
    justify-content: center;
  }

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

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

  .about__value-item:nth-child(2) {
    border-right: none;
  }

  .about__value-item:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(226, 232, 240, 0.95);
  }

  .about__value-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }
}

/* Services */
.services {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #f0fdfa 100%);
}

.services__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
}

.services__blob--1 {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -80px;
  background: rgba(20, 184, 166, 0.3);
  animation: servicesBlobDrift 18s ease-in-out infinite alternate;
}

.services__blob--2 {
  width: 320px;
  height: 320px;
  top: 40%;
  right: -100px;
  background: rgba(10, 61, 98, 0.18);
  animation: servicesBlobDrift 22s ease-in-out infinite alternate-reverse;
}

.services__blob--3 {
  width: 260px;
  height: 260px;
  bottom: -80px;
  left: 35%;
  background: rgba(245, 158, 11, 0.15);
  animation: servicesBlobDrift 20s ease-in-out 4s infinite alternate;
}

.services__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(var(--color-primary) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

.services__line {
  position: absolute;
  border-radius: var(--radius-full);
  border: 1.5px dashed rgba(20, 184, 166, 0.2);
}

.services__line--1 {
  width: 200px;
  height: 200px;
  top: 12%;
  right: 8%;
  animation: servicesRingSpin 30s linear infinite;
}

.services__line--2 {
  width: 140px;
  height: 140px;
  bottom: 15%;
  left: 6%;
  border-color: rgba(10, 61, 98, 0.15);
  animation: servicesRingSpin 25s linear infinite reverse;
}

.services__icon-deco {
  position: absolute;
  color: var(--color-primary);
  opacity: 0.07;
}

.services__icon-deco--plane {
  width: 180px;
  height: 180px;
  top: 8%;
  right: 12%;
  rotate: -25deg;
  animation: servicesIconFloat 8s ease-in-out infinite;
}

.services__icon-deco--globe {
  width: 140px;
  height: 140px;
  bottom: 10%;
  left: 10%;
  opacity: 0.06;
  animation: servicesIconFloat 10s ease-in-out 2s infinite;
}

.services__dot {
  position: absolute;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.25;
}

.services__dot--1 {
  width: 12px;
  height: 12px;
  top: 20%;
  left: 18%;
}

.services__dot--2 {
  width: 8px;
  height: 8px;
  top: 35%;
  right: 22%;
  background: var(--color-gold);
}

.services__dot--3 {
  width: 10px;
  height: 10px;
  bottom: 25%;
  right: 30%;
}

.services__dot--4 {
  width: 6px;
  height: 6px;
  bottom: 18%;
  left: 42%;
  background: var(--color-primary-light);
}

.services__container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-md);
  transform-origin: center;
  transition: box-shadow var(--duration-normal), border-color var(--duration-normal);
}

.service-card:hover {
  box-shadow: 0 20px 50px rgba(10, 61, 98, 0.15);
  border-color: rgba(20, 184, 166, 0.35);
}

.service-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(245, 158, 11, 0.1));
  color: var(--color-accent);
  border: 2px solid rgba(20, 184, 166, 0.2);
  transition: transform var(--duration-normal) var(--ease-spring),
    background var(--duration-normal), color var(--duration-normal);
}

.service-card__icon-wrap svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-card__icon-wrap {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-white);
  border-color: transparent;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
}

/* Destinations */
.destinations {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.dest-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  background: transparent;
  transform-origin: center;
}

.dest-card:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.dest-card:hover .dest-card__img {
  transform: scale(1.08);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 26, 49, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--duration-normal);
}

.dest-card:hover .dest-card__overlay {
  background: linear-gradient(to top, rgba(7, 26, 49, 0.95) 0%, rgba(7, 26, 49, 0.2) 100%);
}

.dest-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  transform: translateY(0);
  transition: transform var(--duration-normal) var(--ease-out);
}

.dest-card__tag {
  font-size: 0.75rem;
  color: var(--color-accent-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--duration-normal), transform var(--duration-normal) var(--ease-out);
}

.dest-card:hover .dest-card__tag {
  opacity: 1;
  transform: translateY(0);
}

.dest-card:hover .dest-card__name {
  transform: translateY(-4px);
}

.dest-card__hint {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--duration-normal), transform var(--duration-normal) var(--ease-out);
}

.dest-card:hover .dest-card__hint,
.dest-card:focus-visible .dest-card__hint {
  opacity: 1;
  transform: translateY(0);
}

/* Process */
.process {
  padding: var(--section-padding) 0;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary-light), var(--color-accent));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  transform-origin: center;
}

.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-spring),
    border-color var(--duration-normal), box-shadow var(--duration-normal);
}

.process-step:hover .process-step__number {
  transform: scale(1.1);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-glow);
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.375rem;
  padding: 0 0.25rem;
}

.process-step__desc {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  padding: 0 0.5rem;
}

/* Reviews */
.reviews {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transform-origin: center;
  transition: box-shadow var(--duration-normal);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.review-card__quote {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.review-card__text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(0.9375rem * 1.7 * 5);
  margin-bottom: 1.25rem;
}

.review-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.review-card--expanded .review-card__text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.review-card--expanded .review-card__text-wrap {
  min-height: 0;
}

.review-card__more {
  align-self: flex-start;
  margin-top: 0.625rem;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  font-style: normal;
  color: var(--color-accent);
  cursor: pointer;
  transition: color var(--duration-fast);
}

.review-card__more:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.review-card__avatar--initials {
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-white);
  background: linear-gradient(
    135deg,
    hsl(var(--avatar-hue, 200) 65% 42%),
    hsl(calc(var(--avatar-hue, 200) + 28) 70% 52%)
  );
}

.review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* Contact */
.contact {
  padding: var(--section-padding) 0;
  background: var(--color-bg-alt);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.contact__map-col {
  min-height: 100%;
}

.contact__map-pad {
  height: 100%;
  padding: 10px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.map-wrapper {
  height: 100%;
  min-height: 520px;
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  line-height: 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.contact__info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-white) 0%, #f0fdfa 100%);
  border-color: rgba(20, 184, 166, 0.2);
}

.contact__cta-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

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

.contact__btn-group .btn {
  width: 100%;
  justify-content: center;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
}

.contact-info__icon svg {
  width: 18px;
  height: 18px;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 0.125rem;
}

.contact-info__value {
  font-size: 0.9375rem;
  color: var(--color-text);
}

.contact-info__value a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-info__value a:hover {
  color: var(--color-accent);
}

/* Footer */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer__brand {
  margin-bottom: 0.75rem;
}

.footer__logo {
  display: block;
  height: 52px;
  width: 52px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: var(--color-white);
  padding: 4px;
  object-fit: contain;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer__brand span {
  color: var(--color-accent-light);
}

.footer__tagline {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--color-accent-light);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-left {
  justify-self: start;
}

.footer__bottom-right {
  justify-self: end;
  text-align: right;
}

.footer__credit {
  justify-self: center;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--duration-fast);
}

.footer__credit a:hover {
  color: var(--color-accent-light);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      'intro'
      'video'
      'body';
    gap: 1.25rem;
  }

  .hero__intro,
  .hero__body,
  .hero__video-wrap {
    align-self: stretch;
  }

  .hero__title {
    margin-bottom: 0;
  }

  .hero__desc {
    margin-top: 0.25rem;
  }

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

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

  .process__timeline::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero__bg {
    animation: none;
    transform: scale(1);
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(7, 26, 49, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal), visibility var(--duration-normal);
  }

  .nav--open {
    opacity: 1;
    visibility: visible;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .header__location {
    display: none;
  }

  .contact__layout,
  .services__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__bottom-left,
  .footer__bottom-right {
    justify-self: center;
    text-align: center;
  }

  .footer__credit {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  :root {
    --container-width: min(1200px, calc(100% - 2rem));
  }

  .hero__video-wrap {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__play-btn {
    width: 68px;
    height: 68px;
  }

  .hero__play-icon svg {
    width: 28px;
    height: 28px;
  }

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

  .about__package-card {
    grid-template-columns: 1fr;
  }

  .about__package-img {
    min-height: 160px;
  }

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

  .about__value-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.95);
  }

  .about__value-item:last-child {
    border-bottom: none;
  }

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

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

  .btn-group .btn {
    width: 100%;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 320px;
  }
}


@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12);
  }
}

@keyframes aboutRingPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 1;
  }
}

@keyframes servicesBlobDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, 20px) scale(1.08);
  }
}

@keyframes servicesRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes servicesIconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes promoBadgeBlink {
  0%,
  100% {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
    color: #fff;
    transform: scale(1);
  }
  50% {
    background: linear-gradient(135deg, #fde047, #fb7185);
    box-shadow: 0 0 18px 6px rgba(239, 68, 68, 0.65);
    color: #fff;
    transform: scale(1.05);
  }
}

@keyframes playRingPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}

@keyframes playIconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.hero__play-icon {
  animation: playIconBounce 2s var(--ease-out) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll reveal keyframes */
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(70px) scale(0.88);
  }
  55% {
    opacity: 1;
    transform: translateY(-14px) scale(1.03);
  }
  75% {
    transform: translateY(6px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideBounceFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-90px);
  }
  60% {
    opacity: 1;
    transform: translateX(12px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideBounceFromRight {
  0% {
    opacity: 0;
    transform: translateX(90px);
  }
  60% {
    opacity: 1;
    transform: translateX(-12px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes staggerBounceIn {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.92);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
  }
  80% {
    transform: translateY(4px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Section header scroll animations — only hide after JS loads (html.js) */
html.js .section-reveal:not(.section-reveal--visible) .section-label,
html.js .section-reveal:not(.section-reveal--visible) .section-title,
html.js .section-reveal:not(.section-reveal--visible) .section-subtitle {
  opacity: 0;
  animation: none;
  transform: none;
}

html.js .section-reveal .section-label,
html.js .section-reveal .section-title,
html.js .section-reveal .section-subtitle {
  opacity: 0;
}

.section-reveal--visible .section-label {
  animation: slideBounceFromLeft 0.85s var(--ease-spring) forwards;
}

.section-reveal--visible .section-title {
  animation: bounceInUp 0.95s var(--ease-spring) 0.12s forwards;
}

.section-reveal--visible .section-subtitle {
  animation: slideBounceFromRight 0.85s var(--ease-spring) 0.24s forwards;
}

/* Scroll reveal blocks */
html.js .reveal:not(.reveal--left):not(.reveal--right):not(.reveal--scale) {
  opacity: 0;
}

.reveal:not(.reveal--left):not(.reveal--right):not(.reveal--scale).reveal--visible {
  animation: bounceInUp 0.85s var(--ease-spring) forwards;
}

html.js .reveal--left:not(.reveal--visible) {
  opacity: 0;
  transform: translateX(-60px);
  animation: none;
}

.reveal--left.reveal--visible {
  animation: slideBounceFromLeft 0.85s var(--ease-spring) forwards;
}

html.js .reveal--right:not(.reveal--visible) {
  opacity: 0;
  transform: translateX(60px);
  animation: none;
}

.reveal--right.reveal--visible {
  animation: slideBounceFromRight 0.85s var(--ease-spring) forwards;
}

html.js .reveal--scale:not(.reveal--visible) {
  opacity: 0;
  transform: scale(0.88);
  animation: none;
}

.reveal--scale.reveal--visible {
  animation: bounceInUp 0.9s var(--ease-spring) forwards;
}

/* Stagger children */
html.js .stagger-children:not(.stagger-children--visible) > * {
  opacity: 0;
  animation: none;
  transform: none;
}

.stagger-children--visible > * {
  animation: staggerBounceIn 0.75s var(--ease-spring) forwards;
}

.stagger-children--visible > *:nth-child(1) {
  animation-delay: 0ms;
}
.stagger-children--visible > *:nth-child(2) {
  animation-delay: 90ms;
}
.stagger-children--visible > *:nth-child(3) {
  animation-delay: 180ms;
}
.stagger-children--visible > *:nth-child(4) {
  animation-delay: 270ms;
}
.stagger-children--visible > *:nth-child(5) {
  animation-delay: 360ms;
}
.stagger-children--visible > *:nth-child(6) {
  animation-delay: 450ms;
}

/* Hover zoom in / out pulse */
@keyframes hoverZoomPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes hoverLiftZoomPulse {
  0%,
  100% {
    transform: translateY(-6px) scale(1);
  }
  50% {
    transform: translateY(-6px) scale(1.05);
  }
}

.service-card:hover,
.dest-card:hover,
.review-card:hover,
.about__package-card:hover,
.about__story-panel:hover,
.about__value-bar:hover,
.card:hover,
.process-step:hover,
.hero__video-wrap:hover,
.btn:hover {
  animation: hoverZoomPulse 1.6s ease-in-out infinite;
}

.service-card:hover,
.review-card:hover,
.about__package-card:hover {
  animation-name: hoverLiftZoomPulse;
}

.logo:hover .logo__img {
  animation: hoverZoomPulse 1.6s ease-in-out infinite;
}

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

  .hero__bg {
    animation: none;
    transform: scale(1);
  }

  .hero__play-ring,
  .hero__play-icon,
  .about__ring,
  .services__blob,
  .services__line,
  .services__icon-deco,
  .service-card:hover,
  .dest-card:hover,
  .review-card:hover,
  .about__package-card:hover,
  .about__story-panel:hover,
  .about__value-bar:hover,
  .card:hover,
  .process-step:hover,
  .hero__video-wrap:hover,
  .btn:hover,
  .logo:hover .logo__img {
    animation: none !important;
  }

  .reveal,
  .section-reveal .section-label,
  .section-reveal .section-title,
  .section-reveal .section-subtitle,
  .stagger-children > * {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

}
