/* ============================================
   HOME HERO
   ============================================ */

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  isolation: isolate;
  background: #0b1724;
}

.hero__slide {
  position: absolute;
  inset: 0;
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.2s ease;
}

.hero__slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero__slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 10, 8, 0.18) 0%, rgba(6, 18, 15, 0.54) 45%, rgba(5, 14, 12, 0.9) 100%),
    linear-gradient(180deg, rgba(8, 20, 16, 0.1) 0%, rgba(6, 12, 10, 0.72) 100%);
}

.hero .main-container {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 74px 0 92px;
}

.hero__copy {
  width: min(650px, 100%);
  color: var(--color-white);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.11);
  color: #f7d889;
  font-family: "font_bold";
  font-size: 15px;
  backdrop-filter: blur(10px);
}

.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00face;
  box-shadow: 0 0 0 6px rgba(0, 250, 206, 0.15);
}

.hero h1 {
  max-width: 640px;
  margin: 24px 0 18px;
  color: var(--color-white);
  font-family: "font_bold";
  font-size: clamp(36px, 5vw, 70px);
  line-height: 1.15;
}

.hero p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.82);
  font-family: "font_medium";
  font-size: 19px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.hero__primary,
.hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: "font_bold";
  font-size: 16px;
  white-space: nowrap;
}

.hero__primary {
  background: #00FACE;
  color: #172436 !important;
  box-shadow: 0 18px 34px rgba(0, 250, 206, 0.24);
}

.hero__primary:hover {
  background: #3AC0BD;
  color: #172436 !important;
  transform: translateY(-3px);
}

.hero__secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--color-white) !important;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero__secondary:hover {
  border-color: rgba(0, 250, 206, 0.7);
  color: #00face !important;
  transform: translateY(-3px);
}

.hero__panel {
  align-self: flex-end;
  width: min(500px, 42%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.hero__panel div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  background: rgba(9, 25, 21, 0.52);
  text-align: center;
}

.hero__panel strong {
  color: #00FACE;
  font-family: "font_bold";
  font-size: 30px;
  line-height: 1;
}

.hero__panel span {
  color: rgba(255, 255, 255, 0.78);
  font-family: "font_medium";
  font-size: 14px;
}

.hero__controls {
  position: absolute;
  right: 5%;
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hero__arrow:hover {
  background: #00FACE;
  border-color: #00FACE;
  color: #172436;
}

.hero__dots {
  position: absolute;
  left: 5%;
  bottom: 48px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.hero__dots button.active {
  width: 34px;
  background: #00face;
}

@media (max-width: 1200px) {
  .hero__panel {
    width: min(460px, 45%);
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: calc(100vh - 78px);
  }

  .hero .main-container {
    min-height: calc(100vh - 78px);
    align-items: flex-end;
    padding: 86px 0 118px;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(3, 10, 8, 0.22) 0%, rgba(6, 18, 15, 0.5) 42%, rgba(5, 14, 12, 0.92) 100%),
      linear-gradient(180deg, rgba(8, 20, 16, 0.05) 0%, rgba(6, 12, 10, 0.86) 100%);
  }

  .hero__panel {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero__controls {
    right: 5%;
    bottom: 28px;
  }

  .hero__dots {
    left: 5%;
    bottom: 43px;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: calc(100svh - 72px);
  }

  .hero .main-container {
    min-height: calc(100svh - 72px);
    padding: 64px 0 104px;
  }

  .hero__slide > img {
    object-position: center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(4, 13, 11, 0.24) 0%, rgba(5, 15, 12, 0.66) 36%, rgba(5, 14, 12, 0.94) 100%),
      linear-gradient(180deg, rgba(8, 20, 16, 0.12) 0%, rgba(6, 12, 10, 0.88) 100%);
  }

  .hero__eyebrow {
    min-height: 34px;
    font-size: 13px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: 34px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.75;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero__primary,
  .hero__secondary {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero__arrow {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 420px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__primary,
  .hero__secondary {
    width: 100%;
  }
}

/* ============================================
   INNER PAGE HERO
   ============================================ */

.title-page {
  position: relative;
  min-height: clamp(350px, 36vw, 470px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #0b2530;
}

.title-page__media,
.title-page__overlay,
.title-page__scene {
  position: absolute;
  inset: 0;
}

.title-page__media {
  z-index: -3;
  overflow: hidden;
  background: #0b2530;
}

.title-page__scene {
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: opacity, transform;
  animation: titlePageFade 24s linear infinite, titlePageDrift 13s ease-in-out infinite alternate;
}

.title-page__scene--redsea {
  background-image: url("../images/hero-redsea.png");
  background-position: center 54%;
  animation-delay: 0s, -3s;
}

.title-page__scene--alula {
  background-image: url("../images/hero-alula.png");
  background-position: center 47%;
  animation-delay: -16s, -8s;
}

.title-page__scene--diriyah {
  background-image: url("../images/hero-diriyah.png");
  background-position: center 52%;
  animation-delay: -8s, -11s;
}

.title-page__overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 50% 44%, rgba(0, 250, 206, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(6, 19, 25, 0.48) 0%, rgba(5, 18, 24, 0.7) 100%),
    linear-gradient(90deg, rgba(5, 18, 24, 0.45), rgba(5, 18, 24, 0.12) 50%, rgba(5, 18, 24, 0.45));
}

.title-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image: radial-gradient(rgba(255, 255, 255, 0.72) 0.8px, transparent 0.8px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}

.title-page::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, transparent 4%, #3ac0bd 38%, #00face 50%, #3ac0bd 62%, transparent 96%);
  box-shadow: 0 -8px 26px rgba(0, 250, 206, 0.2);
}

.title-page__inner {
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}

.title-page__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  text-align: center;
  animation: titlePageContentIn 0.85s 0.12s ease both;
}

.title-page__accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #00face;
}

.title-page__accent span {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 250, 206, 0.9));
}

.title-page__accent span:last-child {
  background: linear-gradient(90deg, rgba(0, 250, 206, 0.9), transparent);
}

.title-page__accent i {
  font-size: 15px;
  filter: drop-shadow(0 0 8px rgba(0, 250, 206, 0.7));
  transform: rotate(-16deg);
}

.title-page h1 {
  margin: 0 0 24px;
  color: var(--color-white);
  font-family: "font_bold";
  font-size: clamp(46px, 5.2vw, 68px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.34);
}

.title-page h1::after {
  content: "";
  width: 44px;
  height: 3px;
  display: block;
  margin: 15px auto 0;
  border-radius: 999px;
  background: #00face;
  box-shadow: 0 0 18px rgba(0, 250, 206, 0.58);
}

.title-page .breadcrumb {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(8, 30, 36, 0.38);
  color: rgba(255, 255, 255, 0.76);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
}

.title-page .breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-family: inherit;
  font-size: inherit;
}

.title-page .breadcrumb a i {
  color: #00face;
  font-size: 13px;
  transition: transform 0.25s ease;
}

.title-page .breadcrumb a:hover {
  color: #00face;
}

.title-page .breadcrumb a:hover i {
  transform: translateY(-2px);
}

.breadcrumb__separator {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.breadcrumb__current {
  color: var(--color-white);
  font-family: "font_bold";
}

@keyframes titlePageFade {
  0%, 29% { opacity: 1; }
  36%, 94% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes titlePageDrift {
  from { transform: scale(1.06) translate3d(-1.2%, -0.5%, 0); }
  to { transform: scale(1.14) translate3d(1.2%, 0.5%, 0); }
}

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

@media (max-width: 768px) {
  .title-page {
    min-height: 330px;
  }

  .title-page__inner {
    padding: 50px 0;
  }

  .title-page h1 {
    margin-bottom: 21px;
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .title-page {
    min-height: 290px;
  }

  .title-page__scene--redsea {
    background-position: 58% center;
  }

  .title-page__scene--alula {
    background-position: 36% center;
  }

  .title-page__scene--diriyah {
    background-position: 42% center;
  }

  .title-page h1 {
    font-size: 40px;
  }

  .title-page .breadcrumb {
    min-height: 43px;
    padding: 0 15px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .title-page__scene {
    opacity: 0;
    animation: none;
    transform: none;
  }

  .title-page__scene:first-child {
    opacity: 1;
  }

  .title-page__copy {
    animation: none;
  }
}

/* ============================================
   ABOUT HOME
   ============================================ */

.aboutus-index {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    linear-gradient(135deg, rgba(248, 252, 252, 0.96) 0%, rgba(239, 251, 251, 0.9) 46%, rgba(236, 247, 250, 0.88) 100%),
    url("../images/hero-redsea.png") center / cover no-repeat;
  isolation: isolate;
}

.aboutus-index::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background:
    radial-gradient(circle at 14% 20%, rgba(0, 250, 206, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 32% 66%, rgba(58, 192, 189, 0.2) 0 2px, transparent 3px),
    linear-gradient(120deg, transparent 0 22%, rgba(58, 192, 189, 0.13) 22.2%, transparent 22.5% 55%, rgba(23, 36, 54, 0.1) 55.2%, transparent 55.5%),
    linear-gradient(35deg, transparent 0 38%, rgba(0, 250, 206, 0.12) 38.2%, transparent 38.5%);
  background-size: 180px 180px, 220px 220px, 100% 100%, 100% 100%;
}

.aboutus-index::after {
  content: "";
  position: absolute;
  width: 470px;
  height: 470px;
  left: -140px;
  bottom: -180px;
  z-index: -1;
  border: 1px solid rgba(58, 192, 189, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 0 46px rgba(255, 255, 255, 0.36);
}

.aboutus-index .main-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 58px;
}

.aboutus-index__content {
  color: var(--color-black) !important;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 8px;
  background: rgba(58, 192, 189, 0.12);
  color: var(--color-black) !important;
  font-family: "font_bold";
  font-size: 15px;
}

.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00FACE;
}

.aboutus-index h2 {
  max-width: 720px;
  margin: 18px 0 18px;
  color: var(--color-black);
  font-family: "font_bold";
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.28;
}

.aboutus-index p {
  max-width: 690px;
  color: rgba(23, 36, 54, 0.74);
  font-family: "font_medium";
  font-size: 18px;
  line-height: 1.95;
}

.aboutus-index__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.aboutus-index__features div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(58, 192, 189, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(23, 36, 54, 0.08);
}

.aboutus-index__features i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--color-Primary1);
  color: #FFF;
  font-size: 18px;
}

.aboutus-index__features span {
  color: var(--color-Primary1);
  font-family: "font_bold";
  font-size: 15px;
  line-height: 1.5;
}

.aboutus-index__media {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(23, 36, 54, 0.22);
}

.aboutus-index__media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  pointer-events: none;
}

.aboutus-index__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.02);
}

.aboutus-index__badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  min-width: 138px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(7, 19, 15, 0.86);
  color: var(--color-white);
  backdrop-filter: blur(12px);
}

.aboutus-index__badge strong {
  display: block;
  color: #00FACE;
  font-family: "font_bold";
  font-size: 34px;
  line-height: 1;
}

.aboutus-index__badge span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "font_medium";
  font-size: 14px;
}

@media (max-width: 1200px) {
  .aboutus-index .main-container {
    grid-template-columns: 1fr 0.78fr;
    gap: 36px;
  }

  .aboutus-index__features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .aboutus-index {
    padding: 82px 0;
  }

  .aboutus-index .main-container {
    grid-template-columns: 1fr;
  }

  .aboutus-index__media,
  .aboutus-index__media img {
    min-height: 420px;
  }
}

@media (max-width: 576px) {
  .aboutus-index {
    padding: 64px 0;
  }

  .aboutus-index h2 {
    font-size: 30px;
  }

  .aboutus-index p {
    font-size: 16px;
    line-height: 1.8;
  }

  .aboutus-index__media,
  .aboutus-index__media img {
    min-height: 320px;
  }

  .aboutus-index__badge {
    right: 16px;
    bottom: 16px;
  }
}

/* ============================================
   ABOUT PAGE - HOW WE WORK
   ============================================ */

.about-process {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 250, 206, 0.09), transparent 23%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
  color: #172436;
}

.about-process::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -260px;
  right: -110px;
  border: 1px solid rgba(58, 192, 189, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 46px rgba(58, 192, 189, 0.035);
  pointer-events: none;
}

.about-process__head,
.about-principles__head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 58px;
}

.about-process__head h2,
.about-principles__head h2 {
  max-width: 720px;
  margin: 18px 0 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.3;
}

.about-process__head > p {
  position: relative;
  padding-inline-start: 24px;
  color: #64727c;
  font-family: "font_medium";
  font-size: 17px;
  line-height: 1.9;
}

.about-process__head > p::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00face, #3ac0bd);
}

.about-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.about-process__steps::before {
  content: "";
  position: absolute;
  top: 41px;
  right: 7%;
  left: 7%;
  height: 1px;
  border-top: 1px dashed rgba(58, 192, 189, 0.48);
}

.about-process__plane {
  position: absolute;
  top: 32px;
  right: 7%;
  z-index: 3;
  padding: 4px;
  background: #f9fcfc;
  color: #3ac0bd;
  font-size: 13px;
  filter: drop-shadow(0 4px 7px rgba(58, 192, 189, 0.28));
  transform: rotate(-18deg);
  animation: aboutProcessPlane 8s ease-in-out infinite;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-step__marker {
  position: relative;
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(58, 192, 189, 0.3);
  border-radius: 50%;
  background: #ffffff;
  color: #279e9c;
  font-size: 24px;
  box-shadow: 0 16px 34px rgba(23, 36, 54, 0.11), inset 0 0 0 7px rgba(58, 192, 189, 0.06);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.process-step__marker span {
  position: absolute;
  top: -7px;
  inset-inline-end: -5px;
  min-width: 29px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #f9fcfc;
  border-radius: 50%;
  background: #172436;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.process-step__content {
  min-height: 218px;
  padding: 31px 23px 26px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(23, 36, 54, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-step__content h3 {
  margin: 0 0 13px;
  color: #172436;
  font-family: "font_bold";
  font-size: 21px;
}

.process-step__content p {
  color: #71808a;
  font-size: 15px;
  line-height: 1.85;
}

.process-step:hover .process-step__marker {
  background: #3ac0bd;
  color: #ffffff;
  transform: translateY(-5px);
}

.process-step:hover .process-step__content {
  border-color: rgba(58, 192, 189, 0.32);
  box-shadow: 0 24px 50px rgba(23, 36, 54, 0.11);
  transform: translateY(-5px);
}

@keyframes aboutProcessPlane {
  0%, 100% { right: 7%; opacity: 0; }
  8%, 92% { opacity: 1; }
  50% { transform: rotate(-12deg) translateY(-3px); }
  100% { right: calc(93% - 22px); }
}

/* ============================================
   ABOUT PAGE - MISSION, GOALS AND VALUES
   ============================================ */

.about-principles {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 250, 206, 0.13), transparent 25%),
    radial-gradient(circle at 8% 100%, rgba(58, 192, 189, 0.1), transparent 28%),
    #091a27;
  isolation: isolate;
}

.about-principles::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image: radial-gradient(rgba(255, 255, 255, 0.56) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000 70%, transparent);
}

.about-principles__head {
  margin-bottom: 54px;
}

.about-principles__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #00face;
  font-family: "font_bold";
  font-size: 15px;
}

.about-principles__kicker i {
  font-size: 17px;
}

.about-principles__head h2 {
  color: #ffffff;
}

.about-principles__head > p {
  color: rgba(255, 255, 255, 0.64);
  font-family: "font_medium";
  font-size: 17px;
  line-height: 1.9;
}

.about-principles__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  grid-template-rows: repeat(2, minmax(255px, auto));
  gap: 20px;
}

.principle-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.principle-card--mission {
  min-height: 560px;
  grid-row: 1 / span 2;
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.principle-card--mission > img,
.principle-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.principle-card--mission > img {
  object-fit: cover;
  transition: transform 0.8s ease;
}

.principle-card__overlay {
  background:
    linear-gradient(180deg, rgba(7, 22, 30, 0.06) 10%, rgba(7, 22, 30, 0.9) 100%),
    linear-gradient(90deg, rgba(7, 22, 30, 0.38), transparent 62%);
}

.principle-card__content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 48px;
}

.principle-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  border-radius: 14px;
  background: #00face;
  color: #172436;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(0, 250, 206, 0.22);
}

.principle-card__label {
  display: block;
  margin: 18px 0 8px;
  color: #00face;
  font-family: "font_bold";
  font-size: 15px;
}

.principle-card--mission h3 {
  max-width: 560px;
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "font_bold";
  font-size: clamp(29px, 3.4vw, 43px);
  line-height: 1.35;
}

.principle-card--mission p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.9;
}

.principle-card--mission:hover > img {
  transform: scale(1.055);
}

.principle-card--goals,
.principle-card--values {
  padding: 31px 32px;
}

.principle-card--goals {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: #ffffff;
  color: #172436;
}

.principle-card--values {
  border: 1px solid rgba(0, 250, 206, 0.19);
  background: linear-gradient(135deg, rgba(58, 192, 189, 0.18), rgba(255, 255, 255, 0.07));
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.principle-card__top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 23px;
}

.principle-card__top .principle-card__label {
  margin: 0 0 3px;
  color: #3ac0bd;
  font-size: 12px;
}

.principle-card__top h3 {
  margin: 0;
  color: inherit;
  font-family: "font_bold";
  font-size: 27px;
}

.principle-card--values .principle-card__icon {
  border: 1px solid rgba(0, 250, 206, 0.22);
  background: rgba(0, 250, 206, 0.1);
  color: #00face;
  box-shadow: none;
}

.principle-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.principle-list li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #61707b;
  font-size: 14px;
  line-height: 1.65;
}

.principle-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: #3ac0bd;
  box-shadow: 0 0 0 5px rgba(58, 192, 189, 0.1);
}

.principle-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.principle-values span {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.principle-values i {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.13);
  color: #00face;
  font-size: 8px;
}

@media (max-width: 1100px) {
  .about-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .about-process__steps::before,
  .about-process__plane {
    display: none;
  }

  .about-principles__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .principle-card--mission {
    min-height: 520px;
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 768px) {
  .about-process,
  .about-principles {
    padding: 82px 0;
  }

  .about-process__head,
  .about-principles__head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-principles__head {
    margin-bottom: 38px;
  }

  .about-process__head > p {
    padding-inline-start: 18px;
  }

  .about-process__steps {
    margin-top: 45px;
  }

  .principle-card--mission {
    min-height: 480px;
  }

  .principle-card__content {
    padding: 34px;
  }

  .about-principles__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .about-process,
  .about-principles {
    padding: 64px 0;
  }

  .about-process__head h2,
  .about-principles__head h2 {
    font-size: 31px;
  }

  .about-process__head > p,
  .about-principles__head > p {
    font-size: 15px;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    text-align: start;
  }

  .process-step__marker {
    width: 66px;
    height: 66px;
    margin: 4px 0 0;
    font-size: 19px;
  }

  .process-step__marker span {
    min-width: 25px;
    height: 25px;
    border-width: 2px;
    font-size: 9px;
  }

  .process-step__content {
    min-height: 0;
    padding: 23px 19px;
  }

  .process-step__content h3 {
    font-size: 19px;
  }

  .principle-card--mission {
    min-height: 500px;
  }

  .principle-card__content {
    padding: 28px 24px;
  }

  .principle-card--mission h3 {
    font-size: 29px;
  }

  .principle-card--mission p {
    font-size: 14px;
  }

  .principle-card--goals,
  .principle-card--values {
    padding: 26px 21px;
  }

  .principle-values {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DESTINATION DETAILS PAGE
   ============================================ */

.destination-detail-page {
  position: relative;
  overflow: hidden;
  padding: 105px 0 120px;
  background:
    radial-gradient(circle at 94% 7%, rgba(0, 250, 206, 0.1), transparent 22%),
    radial-gradient(circle at 5% 46%, rgba(58, 192, 189, 0.09), transparent 24%),
    #f7fbfb;
  color: #172436;
  isolation: isolate;
}

.destination-detail-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image: radial-gradient(rgba(58, 192, 189, 0.34) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
}

.destination-detail__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.65fr);
  align-items: end;
  gap: 60px;
}

.destination-detail__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 35px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(58, 192, 189, 0.11);
  color: #318f8d;
  font-family: "font_bold";
  font-size: 13px;
}

.destination-detail__eyebrow i {
  color: #00bfa5;
}

.destination-detail__intro h2 {
  max-width: 760px;
  margin: 18px 0 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(37px, 4.6vw, 59px);
  line-height: 1.24;
}

.destination-detail__intro > p {
  position: relative;
  padding-inline-start: 23px;
  color: #62727c;
  font-family: "font_medium";
  font-size: 17px;
  line-height: 1.95;
}

.destination-detail__intro > p::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00face, #3ac0bd);
}

.destination-detail__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  gap: 17px;
  height: 610px;
  margin-top: 52px;
}

.destination-detail__gallery figure {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #d8e5e4;
  box-shadow: 0 25px 62px rgba(23, 36, 54, 0.15);
}

.destination-detail__gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(6, 20, 27, 0.7) 100%);
  pointer-events: none;
}

.destination-detail__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.destination-detail__gallery figure:hover img {
  transform: scale(1.04);
}

.destination-gallery__secondary img {
  object-position: 58% center;
}

.destination-detail__gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 6%;
  left: 0;
  z-index: 2;
  padding: 30px;
  color: #ffffff;
}

.destination-gallery__primary figcaption span,
.destination-gallery__primary figcaption strong {
  display: block;
}

.destination-gallery__primary figcaption span {
  margin-bottom: 5px;
  color: #00face;
  font-family: "font_bold";
  font-size: 13px;
}

.destination-gallery__primary figcaption strong {
  font-family: "font_bold";
  font-size: 27px;
}

.destination-gallery__secondary figcaption {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "font_bold";
  font-size: 14px;
}

.destination-gallery__secondary figcaption i {
  color: #00face;
}

.destination-detail__facts {
  position: relative;
  z-index: 3;
  width: calc(100% - 74px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -36px auto 0;
  overflow: hidden;
  border: 1px solid rgba(23, 36, 54, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(23, 36, 54, 0.13);
  backdrop-filter: blur(14px);
}

.destination-detail__facts > div {
  min-height: 115px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 12px;
  padding: 21px;
  border-inline-end: 1px solid rgba(23, 36, 54, 0.08);
}

.destination-detail__facts > div:last-child {
  border-inline-end: 0;
}

.destination-detail__facts i {
  width: 43px;
  height: 43px;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(58, 192, 189, 0.11);
  color: #3ac0bd;
  font-size: 17px;
}

.destination-detail__facts span {
  color: #89959d;
  font-size: 11px;
}

.destination-detail__facts strong {
  color: #172436;
  font-family: "font_bold";
  font-size: 15px;
}

.destination-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.39fr);
  align-items: start;
  gap: 62px;
  margin-top: 92px;
}

.destination-detail__content h2 {
  max-width: 710px;
  margin: 17px 0 20px;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(29px, 3.4vw, 43px);
  line-height: 1.35;
}

.destination-detail__content p {
  max-width: 800px;
  color: #6b7983;
  font-size: 16px;
  line-height: 2;
}

.destination-detail__content p + p {
  margin-top: 14px;
}

.destination-detail__lead {
  color: #455963 !important;
  font-family: "font_medium";
  font-size: 18px !important;
}

.destination-booking {
  position: sticky;
  top: 118px;
  overflow: hidden;
  border: 1px solid rgba(23, 36, 54, 0.09);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 58px rgba(23, 36, 54, 0.13);
}

.destination-booking__visual {
  position: relative;
  height: 205px;
  overflow: hidden;
}

.destination-booking__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 27, 0.03), rgba(6, 20, 27, 0.58));
}

.destination-booking__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-booking__visual span {
  position: absolute;
  right: 18px;
  bottom: 17px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 23, 31, 0.56);
  color: #ffffff;
  font-family: "font_bold";
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.destination-booking__visual span i {
  color: #00face;
}

.destination-booking__body {
  padding: 30px 27px 26px;
}

.destination-booking__kicker {
  display: block;
  margin-bottom: 6px;
  color: #3ac0bd;
  font-family: "font_bold";
  font-size: 12px;
}

.destination-booking h2 {
  margin: 0 0 12px;
  color: #172436;
  font-family: "font_bold";
  font-size: 27px;
}

.destination-booking p {
  color: #74818a;
  font-size: 14px;
  line-height: 1.8;
}

.destination-whatsapp {
  min-height: 55px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 23px;
  padding: 0 16px;
  border-radius: 11px;
  background: #25d366;
  color: #ffffff !important;
  font-family: "font_bold";
  font-size: 14px;
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.23);
}

.destination-whatsapp .fa-whatsapp {
  font-size: 22px;
}

.destination-whatsapp .fa-arrow-left {
  font-size: 10px;
}

.destination-whatsapp:hover {
  background: #1fbd5b;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 19px 34px rgba(37, 211, 102, 0.31);
}

.destination-booking__body > small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: #8b969d;
  font-size: 11px;
}

.destination-booking__body > small i {
  color: #3ac0bd;
}

.destination-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff !important;
  font-family: "font_bold";
  font-size: 14px;
  box-shadow: 0 15px 34px rgba(12, 54, 32, 0.3);
}

.destination-whatsapp-float i {
  font-size: 24px;
}

.destination-whatsapp-float:hover {
  background: #1fbd5b;
  color: #ffffff !important;
  transform: translateY(-4px);
}

@media (max-width: 1100px) {
  .destination-detail__gallery {
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
    height: 540px;
  }

  .destination-detail__facts {
    width: calc(100% - 38px);
  }

  .destination-detail__facts > div {
    grid-template-columns: 39px minmax(0, 1fr);
    padding: 17px;
  }

  .destination-detail__facts i {
    width: 39px;
    height: 39px;
  }

  .destination-detail__layout {
    grid-template-columns: 1fr;
  }

  .destination-booking {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  }

  .destination-booking__visual {
    height: 100%;
    min-height: 330px;
  }

  .destination-booking__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
  }
}

@media (max-width: 768px) {
  .destination-detail-page {
    padding: 80px 0;
  }

  .destination-detail__intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .destination-detail__intro > p {
    padding-inline-start: 18px;
  }

  .destination-detail__gallery {
    height: auto;
    grid-template-columns: 1fr;
  }

  .destination-gallery__primary {
    min-height: 430px;
  }

  .destination-gallery__secondary {
    min-height: 330px;
  }

  .destination-detail__facts {
    width: calc(100% - 24px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-detail__facts > div:nth-child(2) {
    border-inline-end: 0;
  }

  .destination-detail__facts > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(23, 36, 54, 0.08);
  }

  .destination-detail__layout {
    gap: 48px;
    margin-top: 70px;
  }

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

  .destination-booking__visual {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .destination-detail-page {
    padding: 64px 0;
  }

  .destination-detail__intro h2 {
    font-size: 34px;
  }

  .destination-detail__intro > p {
    font-size: 15px;
  }

  .destination-detail__gallery {
    margin-top: 38px;
  }

  .destination-detail__gallery figure {
    border-radius: 16px;
  }

  .destination-gallery__primary {
    min-height: 340px;
  }

  .destination-gallery__secondary {
    min-height: 270px;
  }

  .destination-detail__gallery figcaption {
    padding: 22px;
  }

  .destination-gallery__primary figcaption strong {
    font-size: 22px;
  }

  .destination-detail__facts {
    width: calc(100% - 14px);
    margin-top: -24px;
  }

  .destination-detail__facts > div {
    min-height: 105px;
    grid-template-columns: 35px minmax(0, 1fr);
    column-gap: 9px;
    padding: 14px 12px;
  }

  .destination-detail__facts i {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .destination-detail__facts strong {
    font-size: 13px;
  }

  .destination-detail__content h2 {
    font-size: 29px;
  }

  .destination-detail__lead {
    font-size: 16px !important;
  }

  .destination-detail__content p {
    font-size: 14px;
  }

  .destination-booking__body {
    padding: 28px 21px 23px;
  }

  .destination-whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .destination-whatsapp-float span {
    display: none;
  }
}

/* ============================================
   DESTINATIONS PAGE
   ============================================ */

.destinations-page {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 250, 206, 0.1), transparent 23%),
    radial-gradient(circle at 5% 55%, rgba(58, 192, 189, 0.09), transparent 25%),
    #f6fafa;
  color: #172436;
  isolation: isolate;
}

.destinations-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image: radial-gradient(rgba(58, 192, 189, 0.35) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 68%, transparent);
}

.destinations-page__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 55px;
}

.destinations-page__head h2 {
  max-width: 720px;
  margin: 18px 0 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(34px, 4.1vw, 54px);
  line-height: 1.28;
}

.destinations-page__head > p {
  position: relative;
  padding-inline-start: 23px;
  color: #65757f;
  font-family: "font_medium";
  font-size: 17px;
  line-height: 1.9;
}

.destinations-page__head > p::before {
  content: "";
  position: absolute;
  top: 5px;
  bottom: 5px;
  inset-inline-start: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00face, #3ac0bd);
}

.destination-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.destination-card {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 36, 54, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 46px rgba(23, 36, 54, 0.08);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.destination-card:hover {
  border-color: rgba(58, 192, 189, 0.35);
  box-shadow: 0 28px 58px rgba(23, 36, 54, 0.14);
  transform: translateY(-8px);
}

.destination-card__media {
  position: relative;
  height: 292px;
  overflow: hidden;
  background: #dcebea;
}

.destination-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 24, 32, 0.03) 38%, rgba(8, 24, 32, 0.56) 100%),
    linear-gradient(90deg, rgba(8, 24, 32, 0.08), transparent 45%);
  pointer-events: none;
}

.destination-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

.destination-card:hover .destination-card__media img {
  transform: scale(1.07);
}

.destination-card__badge,
.destination-card__location {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-family: "font_bold";
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.destination-card__badge {
  top: 18px;
  inset-inline-start: 18px;
  min-height: 34px;
  padding: 0 12px;
  background: #00face;
  color: #172436;
  box-shadow: 0 10px 22px rgba(0, 250, 206, 0.26);
}

.destination-card__badge i {
  font-size: 10px;
}

.destination-card__location {
  right: 18px;
  bottom: 17px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(7, 23, 31, 0.63);
  color: rgba(255, 255, 255, 0.92);
}

.destination-card__location i {
  color: #00face;
  font-size: 11px;
}

.destination-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 27px 26px 24px;
}

.destination-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}

.destination-card__title > div > span {
  display: block;
  margin-bottom: 4px;
  color: #3ac0bd;
  font-family: "font_bold";
  font-size: 12px;
}

.destination-card__title h3 {
  margin: 0;
  color: #172436;
  font-family: "font_bold";
  font-size: 29px;
  line-height: 1.25;
}

.destination-card__number {
  color: rgba(58, 192, 189, 0.2);
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 0.92;
}

.destination-card__body > p {
  min-height: 76px;
  margin-top: 17px;
  color: #6b7983;
  font-size: 14px;
  line-height: 1.82;
}

.destination-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 36, 54, 0.08);
}

.destination-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.destination-card__tags span {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(58, 192, 189, 0.09);
  color: #338f8e;
  font-family: "font_medium";
  font-size: 11px;
}

.destination-card__footer > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #172436;
  font-family: "font_bold";
  font-size: 13px;
}

.destination-card__footer > a i {
  width: 31px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #172436;
  color: #00face;
  font-size: 10px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.destination-card__footer > a:hover {
  color: #3ac0bd;
}

.destination-card__footer > a:hover i {
  background: #00face;
  color: #172436;
  transform: translateX(-3px);
}

.destination-card--featured {
  border-color: rgba(0, 250, 206, 0.25);
}

.destinations-cta {
  position: relative;
  min-height: 190px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 62px;
  padding: 36px 42px;
  overflow: hidden;
  border: 1px solid rgba(0, 250, 206, 0.15);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0, rgba(0, 250, 206, 0.13), transparent 34%),
    linear-gradient(135deg, #172436, #0a1c29);
  box-shadow: 0 25px 60px rgba(23, 36, 54, 0.18);
}

.destinations-cta__icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 250, 206, 0.26);
  border-radius: 18px;
  background: rgba(0, 250, 206, 0.09);
  color: #00face;
  font-size: 27px;
  transform: rotate(-8deg);
}

.destinations-cta__copy {
  position: relative;
  z-index: 2;
}

.destinations-cta__copy > span {
  display: block;
  margin-bottom: 6px;
  color: #00face;
  font-family: "font_bold";
  font-size: 13px;
}

.destinations-cta__copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: "font_bold";
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.35;
}

.destinations-cta > a {
  position: relative;
  z-index: 2;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 10px;
  background: #00face;
  color: #172436;
  font-family: "font_bold";
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(0, 250, 206, 0.2);
  white-space: nowrap;
}

.destinations-cta > a:hover {
  background: #3ac0bd;
  color: #172436;
  transform: translateY(-3px);
}

.destinations-cta__route {
  position: absolute;
  right: 28%;
  bottom: -34px;
  width: 340px;
  height: 100px;
  opacity: 0.27;
  transform: rotate(-6deg);
}

.destinations-cta__route span {
  position: absolute;
  inset: 45px 0 auto;
  border-top: 1px dashed #00face;
  border-radius: 50%;
}

.destinations-cta__route i {
  position: absolute;
  top: 38px;
  left: 0;
  color: #00face;
  font-size: 12px;
  animation: destinationsCtaPlane 4s ease-in-out infinite;
}

@keyframes destinationsCtaPlane {
  0%, 100% { transform: translateX(0) translateY(4px) rotate(-15deg); }
  50% { transform: translateX(290px) translateY(-5px) rotate(-5deg); }
}

@media (max-width: 1100px) {
  .destination-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .destinations-page {
    padding: 82px 0;
  }

  .destinations-page__head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 40px;
  }

  .destinations-page__head > p {
    padding-inline-start: 18px;
  }

  .destination-catalog {
    grid-template-columns: 1fr;
  }

  .destination-card__media {
    height: 320px;
  }

  .destinations-cta {
    grid-template-columns: auto 1fr;
    padding: 32px;
  }

  .destinations-cta > a {
    width: max-content;
    grid-column: 2;
  }
}

@media (max-width: 480px) {
  .destinations-page {
    padding: 64px 0;
  }

  .destinations-page__head h2 {
    font-size: 31px;
  }

  .destinations-page__head > p {
    font-size: 15px;
  }

  .destination-catalog {
    gap: 17px;
  }

  .destination-card {
    border-radius: 16px;
  }

  .destination-card__media {
    height: 250px;
  }

  .destination-card__body {
    padding: 24px 20px 21px;
  }

  .destination-card__title h3 {
    font-size: 26px;
  }

  .destination-card__body > p {
    min-height: 0;
  }

  .destination-card__footer {
    align-items: flex-end;
  }

  .destination-card__footer > a > span {
    display: none;
  }

  .destinations-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 42px;
    padding: 29px 22px;
  }

  .destinations-cta__icon {
    width: 54px;
    height: 54px;
    font-size: 22px;
  }

  .destinations-cta__copy h2 {
    font-size: 25px;
  }

  .destinations-cta > a {
    width: 100%;
    grid-column: auto;
  }
}

/* ============================================
   DESTINATION FEATURE
   ============================================ */

.destinations-index {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 36, 54, 0.97), rgba(12, 26, 40, 0.96)),
    url("../images/hero-alula.png") center / cover no-repeat;
  isolation: isolate;
}

.destinations-index::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.24;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(0, 250, 206, 0.42) 44.2%, transparent 44.5%),
    radial-gradient(circle at 18% 24%, rgba(0, 250, 206, 0.22), transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(58, 192, 189, 0.18), transparent 30%);
}

.destination-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 0;
}

.destination-feature__image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.destination-feature__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 36, 54, 0.05), rgba(23, 36, 54, 0.42));
}

.destination-feature__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.destination-feature__tag {
  position: absolute;
  top: 24px;
  right: 10%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 8px;
  background: rgba(0, 250, 206, 0.92);
  color: #172436;
  font-family: "font_bold";
  font-size: 14px;
}

.destination-feature__content {
  position: relative;
  z-index: 3;
  margin-right: -96px;
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.destination-feature__number {
  position: absolute;
  left: 28px;
  top: -44px;
  color: rgba(0, 250, 206, 0.3);
  font-family: "font_bold";
  font-size: 108px;
  line-height: 1;
}

.destination-feature h2 {
  margin: 18px 0 16px;
  color: var(--color-Primary1);
  font-family: "font_bold";
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.28;
}

.destination-feature p {
  color: rgba(23, 36, 54, 0.72);
  font-family: "font_medium";
  font-size: 17px;
  line-height: 1.9;
}

.destination-feature__link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--color-Primary1);
  color: var(--color-white) !important;
  font-family: "font_bold";
  font-size: 16px;
  box-shadow: 0 15px 30px rgba(23, 36, 54, 0.18);
}

.destination-feature__link i {
  color: #00FACE;
}

.destination-feature__link:hover {
  background: #3AC0BD;
  color: #172436 !important;
  transform: translateY(-3px);
}

.destination-feature__link:hover i {
  color: #172436;
}

@media (max-width: 992px) {
  .destinations-index {
    padding: 82px 0;
  }

  .destination-feature {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .destination-feature__image {
    min-height: 430px;
    clip-path: none;
  }

  .destination-feature__image img {
    min-height: 430px;
  }

  .destination-feature__content {
    margin: -78px 20px 0;
    padding: 38px;
  }
}

@media (max-width: 576px) {
  .destinations-index {
    padding: 64px 0;
  }

  .destination-feature__image,
  .destination-feature__image img {
    min-height: 330px;
  }

  .destination-feature__tag {
    right: 18px;
    top: 18px;
  }

  .destination-feature__content {
    margin: -54px 10px 0;
    padding: 28px 22px;
  }

  .destination-feature__number {
    left: 20px;
    top: -30px;
    font-size: 72px;
  }

  .destination-feature p {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* ============================================
   SERVICE DETAILS PAGE
   ============================================ */

.service-detail-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 125px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 250, 206, 0.14), transparent 24%),
    radial-gradient(circle at 4% 86%, rgba(58, 192, 189, 0.12), transparent 25%),
    #f4f9fa;
}

.service-detail-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image: radial-gradient(rgba(58, 192, 189, 0.38) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
  pointer-events: none;
}

.service-detail-page::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  top: 50%;
  right: -220px;
  border: 1px solid rgba(58, 192, 189, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(58, 192, 189, 0.04),
    0 0 0 110px rgba(58, 192, 189, 0.025);
}

.service-detail-page .main-container {
  position: relative;
  z-index: 1;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(23, 36, 54, 0.07);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 35px 85px rgba(23, 36, 54, 0.13);
}

.service-detail-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 55px;
}

.service-detail-card__content::before {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  right: -76px;
  bottom: -78px;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.07);
  pointer-events: none;
}

.service-detail-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 25px;
}

.service-detail-card__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: linear-gradient(145deg, #00face, #3ac0bd);
  color: #172436;
  font-size: 27px;
  box-shadow: 0 15px 30px rgba(58, 192, 189, 0.25);
}

.service-detail-card__top > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-detail-card__kicker {
  color: #278f8d;
  font-family: "font_bold";
  font-size: 15px;
}

.service-detail-card__number {
  padding-inline-start: 14px;
  border-inline-start: 1px solid rgba(23, 36, 54, 0.12);
  color: rgba(23, 36, 54, 0.25);
  font-family: "font_bold";
  font-size: 22px;
}

.service-detail-card h2 {
  max-width: 670px;
  margin: 0 0 20px;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(34px, 3.7vw, 48px);
  line-height: 1.32;
}

.service-detail-card__content > p {
  margin: 0;
  color: #66757e;
  font-family: "font_medium";
  font-size: 16px;
  line-height: 1.9;
}

.service-detail-card__content > p + p {
  margin-top: 9px;
}

.service-detail-card__content > .service-detail-card__lead {
  color: #354653;
  font-size: 18px;
  line-height: 1.95;
}

.service-detail-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.service-detail-features > div {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(58, 192, 189, 0.18);
  border-radius: 15px;
  background: #f6fbfb;
  color: #263946;
  font-family: "font_bold";
  font-size: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.service-detail-features > div:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 192, 189, 0.42);
  background: #effafa;
}

.service-detail-features i {
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #ffffff;
  color: #2ca9a6;
  font-size: 16px;
  box-shadow: 0 7px 16px rgba(23, 36, 54, 0.08);
}

.service-detail-request {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 31px;
  padding: 21px 22px;
  border-radius: 19px;
  background: #172436;
  box-shadow: 0 17px 35px rgba(23, 36, 54, 0.17);
}

.service-detail-request::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  left: -48px;
  top: -78px;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.09);
  pointer-events: none;
}

.service-detail-request > div,
.service-detail-request > a {
  position: relative;
  z-index: 1;
}

.service-detail-request > div > span {
  display: block;
  margin-bottom: 3px;
  color: #00face;
  font-family: "font_medium";
  font-size: 13px;
}

.service-detail-request h3 {
  margin: 0;
  color: #ffffff;
  font-family: "font_bold";
  font-size: 17px;
  line-height: 1.55;
}

.service-detail-request > a {
  min-height: 51px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 13px;
  background: #25d366;
  color: #ffffff !important;
  font-family: "font_bold";
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(10, 126, 56, 0.25);
}

.service-detail-request > a .fa-whatsapp {
  font-size: 21px;
}

.service-detail-request > a .fa-arrow-left {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.service-detail-request > a:hover {
  transform: translateY(-3px);
  background: #1fbd5b;
  color: #ffffff !important;
}

.service-detail-request > a:hover .fa-arrow-left {
  transform: translateX(-4px);
}

.service-detail-card__visual {
  position: relative;
  min-width: 0;
  min-height: 720px;
  overflow: hidden;
  margin: 0;
  background: #172436;
}

.service-detail-card__visual img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  display: block;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-detail-card:hover .service-detail-card__visual img {
  transform: scale(1.045);
}

.service-detail-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 35, 0.08) 28%, rgba(10, 22, 35, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 250, 206, 0.08), transparent 52%);
  pointer-events: none;
}

.service-detail-card__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 38px;
  left: 38px;
  bottom: 40px;
}

.service-detail-card__visual figcaption > span {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(23, 36, 54, 0.55);
  color: #d9fffa;
  font-family: "font_medium";
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.service-detail-card__visual figcaption > span i {
  color: #00face;
}

.service-detail-card__visual figcaption strong {
  max-width: 490px;
  display: block;
  color: #ffffff;
  font-family: "font_bold";
  font-size: clamp(25px, 2.6vw, 37px);
  line-height: 1.5;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.service-detail-card__route {
  position: absolute;
  z-index: 2;
  top: 36px;
  left: 32px;
  display: flex;
  align-items: center;
  direction: ltr;
}

.service-detail-card__route span {
  width: 105px;
  border-top: 2px dashed rgba(255, 255, 255, 0.6);
}

.service-detail-card__route i {
  margin-left: 9px;
  color: #00face;
  font-size: 22px;
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, 0.25));
  animation: service-plane-drift 3.2s ease-in-out infinite;
}

@keyframes service-plane-drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(-4deg);
  }

  50% {
    transform: translate(7px, -5px) rotate(2deg);
  }
}

.service-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff !important;
  font-family: "font_bold";
  font-size: 14px;
  box-shadow: 0 15px 34px rgba(12, 54, 32, 0.3);
}

.service-whatsapp-float i {
  font-size: 24px;
}

.service-whatsapp-float:hover {
  transform: translateY(-4px);
  background: #1fbd5b;
  color: #ffffff !important;
}

@media (max-width: 1180px) {
  .service-detail-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  }

  .service-detail-card__content {
    padding: 48px 40px;
  }

  .service-detail-request {
    align-items: stretch;
    flex-direction: column;
  }

  .service-detail-request > a {
    align-self: flex-start;
  }
}

@media (max-width: 900px) {
  .service-detail-page {
    padding: 82px 0 95px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-detail-card__visual {
    grid-row: 1;
    min-height: 530px;
  }

  .service-detail-card__visual img {
    min-height: 530px;
  }

  .service-detail-card__content {
    padding: 48px 42px 52px;
  }

  .service-detail-request {
    align-items: center;
    flex-direction: row;
  }

  .service-detail-request > a {
    align-self: auto;
  }
}

@media (max-width: 600px) {
  .service-detail-page {
    padding: 64px 0 78px;
  }

  .service-detail-card {
    border-radius: 22px;
  }

  .service-detail-card__visual,
  .service-detail-card__visual img {
    min-height: 390px;
  }

  .service-detail-card__visual figcaption {
    right: 22px;
    left: 22px;
    bottom: 24px;
  }

  .service-detail-card__visual figcaption strong {
    font-size: 25px;
  }

  .service-detail-card__route {
    top: 22px;
    left: 20px;
  }

  .service-detail-card__route span {
    width: 70px;
  }

  .service-detail-card__content {
    padding: 35px 22px 30px;
  }

  .service-detail-card__top {
    margin-bottom: 20px;
  }

  .service-detail-card__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
    border-radius: 16px;
    font-size: 23px;
  }

  .service-detail-card__kicker {
    font-size: 13px;
  }

  .service-detail-card__number {
    font-size: 18px;
  }

  .service-detail-card h2 {
    margin-bottom: 16px;
    font-size: 31px;
  }

  .service-detail-card__content > .service-detail-card__lead {
    font-size: 16px;
  }

  .service-detail-features {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 24px;
  }

  .service-detail-features > div {
    min-height: 57px;
  }

  .service-detail-request {
    align-items: stretch;
    flex-direction: column;
    margin-top: 25px;
    padding: 20px;
  }

  .service-detail-request > a {
    width: 100%;
  }

  .service-whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .service-whatsapp-float span {
    display: none;
  }
}

/* ============================================
   SERVICES PAGE GRID
   ============================================ */

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.services-page-grid .service-card {
  height: 100%;
}

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

@media (max-width: 640px) {
  .services-page-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ============================================
   SERVICE SHOWCASE
   ============================================ */

.services-index {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbfc 0%, #eef9fa 100%);
}

.services-index::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 250, 206, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 36, 54, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.services-index .main-container {
  position: relative;
  z-index: 1;
}

.services-index__head {
  max-width: 760px;
  margin-bottom: 38px;
}

.services-index__head h2 {
  margin: 18px 0 14px;
  color: var(--color-Primary1);
  font-family: "font_bold";
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.25;
}

.services-index__head p {
  max-width: 680px;
  color: rgba(23, 36, 54, 0.72);
  font-family: "font_medium";
  font-size: 17px;
  line-height: 1.8;
}

.services-slider {
  position: relative;
}

.services-slider .owl-stage-outer {
  margin: -12px 0 -26px;
  padding: 12px 0 26px;
}

.services-slider .owl-stage {
  display: flex;
}

.services-slider .owl-item {
  display: flex;
}

.service-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 8px;
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(23, 36, 54, 0.12);
  isolation: isolate;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(58, 192, 189, 0.14);
  border-radius: 8px;
  z-index: 5;
  pointer-events: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card__image {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.service-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 250, 206, 0.2), transparent 48%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 36, 54, 0.02), rgba(23, 36, 54, 0.42));
  transition: opacity 0.4s ease;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.service-card__image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--color-white);
  border-radius: 8px;
  background: #00FACE;
  color: #172436;
  font-size: 21px;
  box-shadow: 0 14px 24px rgba(23, 36, 54, 0.15);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.service-card__content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 44px 24px 24px;
}

.service-card__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  width: 54px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3ac0bd, #00face);
  transform: scaleX(0.35);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--color-Primary1);
  font-family: "font_bold";
  font-size: 23px;
  line-height: 1.35;
  transition: color 0.3s ease, transform 0.35s ease;
}

.service-card p {
  color: rgba(23, 36, 54, 0.72);
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.service-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding-top: 18px;
  color: #2EA7A5 !important;
  font-family: "font_bold";
  font-size: 15px;
  transition: color 0.3s ease;
}

.service-card a i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(0, 250, 206, 0.12);
  color: #172436;
  transition: transform 0.35s ease, background 0.3s ease, color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 30px 68px rgba(23, 36, 54, 0.19);
}

.service-card:hover::before,
.service-card:focus-within::before {
  border-color: rgba(0, 250, 206, 0.52);
  box-shadow: inset 0 0 0 1px rgba(0, 250, 206, 0.08);
}

.service-card:hover .service-card__image::before,
.service-card:focus-within .service-card__image::before {
  opacity: 1;
}

.service-card:hover .service-card__image::after,
.service-card:focus-within .service-card__image::after {
  opacity: 0.78;
}

.service-card:hover .service-card__image img,
.service-card:focus-within .service-card__image img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.075);
}

.service-card:hover .service-card__image > span,
.service-card:focus-within .service-card__image > span {
  background: #172436;
  color: #00face;
  box-shadow: 0 18px 32px rgba(23, 36, 54, 0.28);
  transform: translateY(-6px) rotate(-6deg);
}

.service-card:hover .service-card__content::before,
.service-card:focus-within .service-card__content::before {
  transform: scaleX(1);
}

.service-card:hover h3,
.service-card:focus-within h3 {
  color: #172436;
  transform: translateX(-4px);
}

.service-card:hover p,
.service-card:focus-within p {
  color: rgba(23, 36, 54, 0.84);
}

.service-card:hover a i,
.service-card:focus-within a i {
  background: #00FACE;
  color: #172436;
  box-shadow: 0 9px 20px rgba(0, 250, 206, 0.2);
  transform: translateX(-4px);
}

.services-slider .owl-nav {
  position: absolute;
  left: 0;
  top: -86px;
  display: flex;
  gap: 10px;
}

.services-slider .owl-nav button.owl-prev,
.services-slider .owl-nav button.owl-next {
  width: 44px;
  height: 44px;
  border-radius: 8px !important;
  background: var(--color-Primary1) !important;
  color: var(--color-white) !important;
  font-size: 24px !important;
  line-height: 1 !important;
}

.services-slider .owl-nav button:hover {
  background: #3AC0BD !important;
  color: #172436 !important;
}

.services-slider .owl-dots {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.services-slider .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(23, 36, 54, 0.22) !important;
}

.services-slider .owl-dot.active {
  width: 32px;
  background: #00FACE !important;
}

@media (max-width: 992px) {
  .services-index {
    padding: 82px 0;
  }

  .services-slider .owl-nav {
    position: static;
    margin-top: 24px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .services-index {
    padding: 64px 0;
  }

  .services-index__head h2 {
    font-size: 30px;
  }

  .services-index__head p,
  .service-card p {
    font-size: 16px;
    line-height: 1.75;
  }
}

/* ============================================
   VISA BOOKING CARDS
   ============================================ */

.visa-booking-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0 118px;
  background:
    radial-gradient(circle at 92% 7%, rgba(0, 250, 206, 0.13), transparent 24%),
    radial-gradient(circle at 4% 90%, rgba(58, 192, 189, 0.1), transparent 27%),
    #f4f9fa;
}

.visa-booking-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image: radial-gradient(rgba(58, 192, 189, 0.34) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.visa-booking-page .main-container {
  position: relative;
  z-index: 2;
}

.visa-booking-page__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.visa-booking-page__glow--one {
  width: 440px;
  height: 440px;
  top: -250px;
  right: -160px;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.17), transparent 70%);
}

.visa-booking-page__glow--two {
  width: 500px;
  height: 500px;
  bottom: -300px;
  left: -170px;
  background: radial-gradient(circle, rgba(58, 192, 189, 0.12), transparent 70%);
}

.visa-booking-page__head {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.visa-booking-page__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
  color: #278f8d;
  font-family: "font_bold";
  font-size: 14px;
}

.visa-booking-page__kicker i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.12);
  color: #2ba9a6;
  font-size: 13px;
}

.visa-booking-page__head h2 {
  margin: 0 0 14px;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.3;
}

.visa-booking-page__head > p {
  max-width: 690px;
  margin: 0 auto;
  color: #687983;
  font-family: "font_medium";
  font-size: 16px;
  line-height: 1.9;
}

.visa-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.visa-booking-card {
  --visa-card-accent: #3ac0bd;
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(23, 36, 54, 0.08);
  border-radius: 10px 30px 10px 10px;
  background: #ffffff;
  box-shadow: 0 24px 55px rgba(23, 36, 54, 0.11);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}

.visa-booking-card::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 5;
  border: 1px solid rgba(23, 36, 54, 0.045);
  border-radius: 5px 22px 5px 5px;
  pointer-events: none;
}

.visa-booking-card--canada {
  --visa-card-accent: #d52b1e;
}

.visa-booking-card--usa {
  --visa-card-accent: #3c3b6e;
}

.visa-booking-card--gcc {
  --visa-card-accent: #c3953e;
}

.visa-booking-card:hover,
.visa-booking-card:focus-within {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--visa-card-accent) 35%, transparent);
  box-shadow: 0 35px 72px rgba(23, 36, 54, 0.17);
}

.visa-booking-card__cover {
  position: relative;
  height: 190px;
  flex: 0 0 190px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 25%, color-mix(in srgb, var(--visa-card-accent) 32%, transparent), transparent 30%),
    linear-gradient(135deg, #172436, #21354d);
}

.visa-booking-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000, transparent);
  pointer-events: none;
}

.visa-booking-card__flag {
  position: absolute;
  z-index: 3;
  top: 34px;
  right: 29px;
  width: 86px;
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.visa-booking-card__flag--canada {
  background: linear-gradient(90deg, #d52b1e 0 25%, #ffffff 25% 75%, #d52b1e 75% 100%);
  color: #d52b1e;
  font-size: 29px;
}

.visa-booking-card__flag--usa {
  background: repeating-linear-gradient(to bottom, #b22234 0 6px, #ffffff 6px 12px);
}

.visa-booking-card__flag--usa::before {
  content: "✦  ✦\A ✦  ✦";
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 37px;
  padding: 4px 3px;
  background: #3c3b6e;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 8px;
  line-height: 13px;
  text-align: center;
  white-space: pre;
}

.visa-booking-card__flag--gcc {
  color: #e6bd68;
  font-size: 30px;
  background: linear-gradient(145deg, #1c3440, #172436);
}

.visa-booking-card__number {
  position: absolute;
  z-index: 3;
  top: 27px;
  left: 27px;
  color: rgba(255, 255, 255, 0.48);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.visa-booking-card__number::after {
  content: "";
  width: 39px;
  height: 1px;
  display: inline-block;
  margin-right: 9px;
  vertical-align: middle;
  background: var(--visa-card-accent);
}

.visa-booking-card__route {
  position: absolute;
  z-index: 3;
  right: 29px;
  bottom: 27px;
  display: flex;
  align-items: center;
  direction: ltr;
}

.visa-booking-card__route span {
  width: 100px;
  border-top: 1px dashed rgba(255, 255, 255, 0.45);
}

.visa-booking-card__route i {
  margin-left: 8px;
  color: #00face;
  font-size: 16px;
  animation: hotelPlaneFloat 4s ease-in-out infinite;
}

.visa-booking-card__body {
  position: relative;
  z-index: 2;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
}

.visa-booking-card__label {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 11px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--visa-card-accent) 22%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--visa-card-accent) 7%, white);
  color: color-mix(in srgb, var(--visa-card-accent) 80%, #172436);
  font-family: "font_bold";
  font-size: 10px;
}

.visa-booking-card h3 {
  margin: 0 0 13px;
  color: #172436;
  font-family: "font_bold";
  font-size: 28px;
  line-height: 1.4;
}

.visa-booking-card__body > p {
  min-height: 78px;
  margin: 0;
  color: #718089;
  font-family: "font_medium";
  font-size: 13px;
  line-height: 1.85;
}

.visa-booking-card__types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 25px;
}

.visa-booking-card__types span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(58, 192, 189, 0.15);
  border-radius: 8px;
  background: #f5fafa;
  color: #53656f;
  font-family: "font_medium";
  font-size: 10px;
}

.visa-booking-card__body > a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding: 0 17px;
  border-radius: 10px;
  background: #3ac0bd;
  color: #ffffff !important;
  font-family: "font_bold";
  font-size: 14px;
  box-shadow: 0 14px 28px rgba(58, 192, 189, 0.22);
}

.visa-booking-card__body > a i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  transition: transform 0.3s ease;
}

.visa-booking-card__body > a:hover {
  transform: translateY(-3px);
  background: #172436;
  color: #ffffff !important;
}

.visa-booking-card__body > a:hover i {
  transform: translateX(-4px);
}

.visa-booking-page__future {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 30px;
  padding: 18px 22px;
  border: 1px dashed rgba(58, 192, 189, 0.3);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.55);
  color: #667780;
}

.visa-booking-page__future > i {
  color: #2ba9a6;
  font-size: 17px;
}

.visa-booking-page__future p {
  margin: 0;
  font-family: "font_medium";
  font-size: 13px;
}

.visa-booking-page__future strong {
  color: #273b48;
  font-family: "font_bold";
}

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

@media (max-width: 680px) {
  .visa-booking-page {
    padding: 66px 0 76px;
  }

  .visa-booking-page__head {
    margin-bottom: 34px;
  }

  .visa-booking-page__head h2 {
    font-size: 35px;
  }

  .visa-booking-page__head > p {
    font-size: 14px;
  }

  .visa-booking-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .visa-booking-card:hover,
  .visa-booking-card:focus-within {
    transform: translateY(-5px);
  }

  .visa-booking-card__cover {
    height: 175px;
    flex-basis: 175px;
  }

  .visa-booking-card__body {
    padding: 25px 20px 21px;
  }

  .visa-booking-card__body > p {
    min-height: 0;
  }

  .visa-booking-page__future {
    align-items: flex-start;
    padding: 17px;
  }
}

/* ============================================
   VISA DETAILS PAGE
   ============================================ */

.visa-detail-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 93% 6%, rgba(0, 250, 206, 0.12), transparent 23%),
    radial-gradient(circle at 3% 91%, rgba(58, 192, 189, 0.1), transparent 27%),
    #f4f9fa;
}

.visa-detail-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image: radial-gradient(rgba(58, 192, 189, 0.34) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  pointer-events: none;
}

.visa-detail-page .main-container {
  position: relative;
  z-index: 2;
}

.visa-detail-page__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.visa-detail-page__glow--one {
  width: 440px;
  height: 440px;
  top: -250px;
  right: -160px;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.16), transparent 70%);
}

.visa-detail-page__glow--two {
  width: 500px;
  height: 500px;
  bottom: -300px;
  left: -170px;
  background: radial-gradient(circle, rgba(58, 192, 189, 0.12), transparent 70%);
}

.visa-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 28px;
}

.visa-detail-main {
  min-width: 0;
}

.visa-detail-hero {
  position: relative;
  min-height: 335px;
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 45px 42px;
  border-radius: 12px 34px 12px 12px;
  background:
    radial-gradient(circle at 93% 8%, rgba(213, 43, 30, 0.2), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(0, 250, 206, 0.11), transparent 34%),
    #172436;
  box-shadow: 0 30px 70px rgba(23, 36, 54, 0.2);
}

.visa-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, #000, transparent 67%);
  pointer-events: none;
}

.visa-detail-hero__flag,
.visa-detail-hero__copy {
  position: relative;
  z-index: 2;
}

.visa-detail-hero__flag {
  width: 150px;
  height: 105px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 15px;
  background: linear-gradient(90deg, #d52b1e 0 25%, #ffffff 25% 75%, #d52b1e 75% 100%);
  color: #d52b1e;
  font-size: 47px;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

.visa-detail-hero__kicker {
  display: block;
  margin-bottom: 9px;
  color: #00face;
  font-family: "font_bold";
  font-size: 13px;
}

.visa-detail-hero h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "font_bold";
  font-size: clamp(35px, 4.5vw, 50px);
  line-height: 1.3;
}

.visa-detail-hero__copy > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "font_medium";
  font-size: 16px;
  line-height: 1.9;
}

.visa-detail-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 21px;
}

.visa-detail-hero__tags span {
  min-height: 35px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.visa-detail-hero__tags i {
  color: #00face;
}

.visa-detail-hero__number {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 26px;
  color: rgba(255, 255, 255, 0.38);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.visa-detail-hero__route {
  position: absolute;
  z-index: 2;
  right: 45px;
  bottom: 27px;
  display: flex;
  align-items: center;
  direction: ltr;
  transform: rotate(-5deg);
}

.visa-detail-hero__route span {
  width: 105px;
  border-top: 1px dashed rgba(255, 255, 255, 0.32);
}

.visa-detail-hero__route i {
  margin-left: 8px;
  color: #00face;
  font-size: 15px;
  animation: hotelPlaneFloat 4s ease-in-out infinite;
}

.visa-requirements {
  margin-top: 26px;
  padding: 35px;
  border: 1px solid rgba(23, 36, 54, 0.07);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(23, 36, 54, 0.08);
}

.visa-requirements__head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  margin-bottom: 27px;
}

.visa-requirements__head > span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #00face, #3ac0bd);
  color: #172436;
  font-size: 22px;
  box-shadow: 0 13px 27px rgba(58, 192, 189, 0.22);
}

.visa-requirements__head > div > span {
  display: block;
  margin-bottom: 3px;
  color: #278f8d;
  font-family: "font_bold";
  font-size: 11px;
}

.visa-requirements__head h2 {
  margin: 0 0 5px;
  color: #172436;
  font-family: "font_bold";
  font-size: 31px;
  line-height: 1.4;
}

.visa-requirements__head p {
  margin: 0;
  color: #7a8890;
  font-family: "font_medium";
  font-size: 13px;
  line-height: 1.75;
}

.visa-requirements__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visa-requirements__list li {
  min-width: 0;
  min-height: 112px;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr) 23px;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border: 1px solid rgba(58, 192, 189, 0.14);
  border-radius: 14px;
  background: #f7fbfb;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.visa-requirements__list li:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 192, 189, 0.36);
  background: #f0fafa;
}

.visa-requirements__icon {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff;
  color: #2ba9a6;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(23, 36, 54, 0.07);
}

.visa-requirements__list li > div strong,
.visa-requirements__list li > div small {
  display: block;
}

.visa-requirements__list li > div strong {
  margin-bottom: 5px;
  color: #263946;
  font-family: "font_bold";
  font-size: 14px;
  line-height: 1.45;
}

.visa-requirements__list li > div small {
  color: #7a8890;
  font-family: "font_medium";
  font-size: 11px;
  line-height: 1.65;
}

.visa-requirements__list li > .fa-check {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.11);
  color: #22b75a;
  font-size: 9px;
}

.visa-requirements__notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-top: 17px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 170, 83, 0.22);
  border-radius: 12px;
  background: #fffdf7;
}

.visa-requirements__notice > i {
  color: #c4953c;
  font-size: 17px;
}

.visa-requirements__notice p {
  margin: 0;
  color: #6e7478;
  font-family: "font_medium";
  font-size: 12px;
  line-height: 1.7;
}

.visa-requirements__notice p strong {
  color: #4b555b;
  font-family: "font_bold";
}

.visa-requirements__notice > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #278f8d;
  font-family: "font_bold";
  font-size: 10px;
  white-space: nowrap;
}

.visa-detail-steps {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  margin-top: 26px;
  padding: 29px 32px;
  border-radius: 20px;
  background: #172436;
  box-shadow: 0 20px 48px rgba(23, 36, 54, 0.17);
}

.visa-detail-steps__head > span {
  display: block;
  margin-bottom: 4px;
  color: #00face;
  font-family: "font_medium";
  font-size: 11px;
}

.visa-detail-steps__head h2 {
  margin: 0;
  color: #ffffff;
  font-family: "font_bold";
  font-size: 23px;
  line-height: 1.45;
}

.visa-detail-steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visa-detail-steps li {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
}

.visa-detail-steps li > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.1);
  color: #00face;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.visa-detail-steps li strong,
.visa-detail-steps li small {
  display: block;
}

.visa-detail-steps li strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-family: "font_bold";
  font-size: 13px;
}

.visa-detail-steps li small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  line-height: 1.55;
}

.visa-detail-checkout {
  position: sticky;
  top: 115px;
  overflow: hidden;
  padding: 28px 24px 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px 28px 10px 10px;
  background:
    radial-gradient(circle at 100% 0, rgba(0, 250, 206, 0.13), transparent 33%),
    #172436;
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(23, 36, 54, 0.22);
}

.visa-detail-checkout::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 5px 20px 5px 5px;
  pointer-events: none;
}

.visa-detail-checkout__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.visa-detail-checkout__icon {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #00face, #3ac0bd);
  color: #172436;
  font-size: 19px;
  box-shadow: 0 12px 24px rgba(0, 250, 206, 0.16);
}

.visa-detail-checkout__top small,
.visa-detail-checkout__top strong {
  display: block;
}

.visa-detail-checkout__top small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.visa-detail-checkout__top strong {
  color: #ffffff;
  font-family: "font_bold";
  font-size: 16px;
}

.visa-detail-checkout > h2 {
  position: relative;
  z-index: 2;
  margin: 23px 0 8px;
  color: #ffffff;
  font-family: "font_bold";
  font-size: 26px;
  line-height: 1.4;
}

.visa-detail-checkout > p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: "font_medium";
  font-size: 13px;
  line-height: 1.75;
}

.visa-detail-checkout__summary {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  margin: 20px 0;
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.visa-detail-checkout__summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.visa-detail-checkout__summary > div:last-child {
  border-bottom: 0;
}

.visa-detail-checkout__summary span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.visa-detail-checkout__summary strong {
  color: rgba(255, 255, 255, 0.82);
  font-family: "font_medium";
  font-size: 11px;
  text-align: left;
}

.visa-detail-checkout__price {
  position: relative;
  z-index: 2;
  margin-bottom: 17px;
  padding: 14px;
  border-radius: 11px;
  background: rgba(0, 250, 206, 0.08);
}

.visa-detail-checkout__price span,
.visa-detail-checkout__price strong {
  display: block;
}

.visa-detail-checkout__price span {
  margin-bottom: 4px;
  color: #00face;
  font-size: 10px;
}

.visa-detail-checkout__price strong {
  color: #ffffff;
  font-family: "font_bold";
  font-size: 14px;
}

.visa-detail-checkout__pay,
.visa-detail-checkout__book {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 0;
  border-radius: 10px;
  color: #ffffff !important;
  font-family: "font_bold";
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.visa-detail-checkout__pay {
  margin-bottom: 9px;
  background: #3ac0bd;
  box-shadow: 0 13px 27px rgba(58, 192, 189, 0.19);
}

.visa-detail-checkout__book {
  background: #25d366;
  box-shadow: 0 13px 27px rgba(37, 211, 102, 0.17);
}

.visa-detail-checkout__pay:hover,
.visa-detail-checkout__book:hover {
  transform: translateY(-3px);
  filter: brightness(0.94);
  color: #ffffff !important;
}

.visa-detail-checkout__pay + .visa-detail-checkout__book + small {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  line-height: 1.55;
}

.visa-detail-checkout__pay + .visa-detail-checkout__book + small i {
  color: #3ac0bd;
}

.visa-detail-checkout__support {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.visa-detail-checkout__support > i {
  width: 37px;
  height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.08);
  color: #00face;
  font-size: 13px;
}

.visa-detail-checkout__support span,
.visa-detail-checkout__support strong {
  display: block;
}

.visa-detail-checkout__support span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}

.visa-detail-checkout__support strong {
  color: rgba(255, 255, 255, 0.76);
  font-family: "font_medium";
  font-size: 11px;
}

@media (max-width: 1100px) {
  .visa-detail-layout {
    grid-template-columns: 1fr;
  }

  .visa-detail-checkout {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .visa-detail-checkout__top,
  .visa-detail-checkout > h2,
  .visa-detail-checkout > p,
  .visa-detail-checkout__support {
    grid-column: 1 / -1;
  }

  .visa-detail-checkout__summary {
    grid-row: span 4;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .visa-detail-page {
    padding: 80px 0 88px;
  }

  .visa-detail-hero {
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 25px;
    padding: 38px 30px;
  }

  .visa-detail-hero__flag {
    width: 125px;
    height: 88px;
    font-size: 38px;
  }

  .visa-requirements__list {
    grid-template-columns: 1fr;
  }

  .visa-detail-steps {
    grid-template-columns: 1fr;
    gap: 19px;
  }
}

@media (max-width: 600px) {
  .visa-detail-page {
    padding: 64px 0 74px;
  }

  .visa-detail-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 37px 22px 45px;
    border-radius: 10px 24px 10px 10px;
  }

  .visa-detail-hero__flag {
    width: 112px;
    height: 77px;
    font-size: 34px;
  }

  .visa-detail-hero h2 {
    font-size: 33px;
  }

  .visa-detail-hero__copy > p {
    font-size: 15px;
  }

  .visa-detail-hero__number {
    top: 22px;
    left: 20px;
  }

  .visa-detail-hero__route {
    display: none;
  }

  .visa-requirements {
    padding: 26px 19px;
    border-radius: 19px;
  }

  .visa-requirements__head {
    grid-template-columns: 51px minmax(0, 1fr);
  }

  .visa-requirements__head > span {
    width: 51px;
    height: 51px;
  }

  .visa-requirements__head h2 {
    font-size: 27px;
  }

  .visa-requirements__list li {
    grid-template-columns: 41px minmax(0, 1fr);
  }

  .visa-requirements__list li > .fa-check {
    display: none;
  }

  .visa-requirements__notice {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .visa-requirements__notice p {
    width: calc(100% - 30px);
  }

  .visa-requirements__notice > a {
    margin-inline-start: 30px;
  }

  .visa-detail-steps {
    padding: 25px 20px;
  }

  .visa-detail-steps ol {
    grid-template-columns: 1fr;
  }

  .visa-detail-checkout {
    display: block;
    padding: 26px 20px 22px;
  }

  .visa-detail-checkout__summary {
    margin-bottom: 18px;
  }
}

/* ============================================
   HOTEL DETAILS PAGE
   ============================================ */

.hotel-detail-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 112px 0 125px;
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 250, 206, 0.13), transparent 24%),
    radial-gradient(circle at 3% 88%, rgba(58, 192, 189, 0.11), transparent 25%),
    #f4f9fa;
}

.hotel-detail-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image: radial-gradient(rgba(58, 192, 189, 0.34) 0.8px, transparent 0.8px);
  background-size: 30px 30px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  pointer-events: none;
}

.hotel-detail-page .main-container {
  position: relative;
  z-index: 2;
}

.hotel-detail-page__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hotel-detail-page__glow--one {
  width: 420px;
  height: 420px;
  top: -240px;
  right: -170px;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.17), transparent 70%);
}

.hotel-detail-page__glow--two {
  width: 500px;
  height: 500px;
  bottom: -300px;
  left: -170px;
  background: radial-gradient(circle, rgba(58, 192, 189, 0.13), transparent 70%);
}

.hotel-detail {
  display: grid;
  grid-template-columns: minmax(430px, 0.96fr) minmax(0, 1.04fr);
  min-height: 770px;
  overflow: hidden;
  border: 1px solid rgba(23, 36, 54, 0.07);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 36px 85px rgba(23, 36, 54, 0.14);
}

.hotel-detail__visual {
  position: relative;
  min-width: 0;
  min-height: 770px;
  overflow: hidden;
  margin: 0;
  background: #172436;
}

.hotel-detail__visual > img {
  width: 100%;
  height: 100%;
  min-height: 770px;
  display: block;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.hotel-detail:hover .hotel-detail__visual > img {
  transform: scale(1.045);
  filter: saturate(1.05) brightness(1.03);
}

.hotel-detail__visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 21, 34, 0.08) 27%, rgba(10, 21, 34, 0.86) 100%),
    linear-gradient(90deg, transparent 55%, rgba(0, 250, 206, 0.07));
  pointer-events: none;
}

.hotel-detail__visual-top {
  position: absolute;
  z-index: 2;
  top: 33px;
  right: 33px;
  left: 33px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hotel-detail__number {
  color: rgba(255, 255, 255, 0.82);
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hotel-detail__number::after {
  content: "";
  width: 45px;
  height: 1px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  background: #00face;
}

.hotel-detail__rating {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 1px 8px;
  min-width: 126px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(17, 29, 44, 0.62);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hotel-detail__rating i {
  grid-row: 1 / 3;
  color: #f8c85b;
  font-size: 17px;
}

.hotel-detail__rating strong {
  font-family: "font_bold";
  font-size: 16px;
  line-height: 1;
}

.hotel-detail__rating small {
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
}

.hotel-detail__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 38px;
  left: 38px;
  bottom: 42px;
}

.hotel-detail__visual figcaption span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 29, 44, 0.56);
  color: #ddfff9;
  font-family: "font_medium";
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.hotel-detail__visual figcaption span i {
  color: #00face;
}

.hotel-detail__visual figcaption strong {
  max-width: 470px;
  display: block;
  color: #ffffff;
  font-family: "font_bold";
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.45;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.28);
}

.hotel-detail__route {
  position: absolute;
  z-index: 2;
  top: 125px;
  left: 34px;
  display: flex;
  align-items: center;
  direction: ltr;
  transform: rotate(-8deg);
}

.hotel-detail__route span {
  width: 85px;
  border-top: 1px dashed rgba(255, 255, 255, 0.58);
}

.hotel-detail__route i {
  margin-left: 9px;
  color: #00face;
  font-size: 18px;
  animation: hotelPlaneFloat 4s ease-in-out infinite;
}

.hotel-detail__content {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 48px;
}

.hotel-detail__content::after {
  content: "J";
  position: absolute;
  z-index: -1;
  left: -10px;
  bottom: -62px;
  color: rgba(23, 36, 54, 0.025);
  font-family: Georgia, serif;
  font-size: 260px;
  line-height: 1;
  pointer-events: none;
}

.hotel-detail__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 19px;
}

.hotel-detail__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #258f8d;
  font-family: "font_bold";
  font-size: 14px;
}

.hotel-detail__kicker i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.12);
  color: #2ba9a6;
  font-size: 12px;
}

.hotel-detail__type {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(58, 192, 189, 0.22);
  border-radius: 999px;
  background: #f3fbfb;
  color: #51636e;
  font-family: "font_medium";
  font-size: 11px;
}

.hotel-detail__content h2 {
  margin: 0 0 17px;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.3;
}

.hotel-detail__content > p {
  margin: 0;
  color: #697982;
  font-family: "font_medium";
  font-size: 15px;
  line-height: 1.9;
}

.hotel-detail__content > p + p {
  margin-top: 8px;
}

.hotel-detail__content > .hotel-detail__lead {
  color: #354753;
  font-size: 17px;
  line-height: 1.9;
}

.hotel-detail__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hotel-detail__facts > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(58, 192, 189, 0.16);
  border-radius: 15px;
  background: #f7fbfb;
}

.hotel-detail__facts > div > i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #ffffff;
  color: #2ba9a6;
  font-size: 16px;
  box-shadow: 0 7px 15px rgba(23, 36, 54, 0.07);
}

.hotel-detail__facts span small,
.hotel-detail__facts span strong {
  display: block;
}

.hotel-detail__facts span small {
  margin-bottom: 3px;
  color: #8a979e;
  font-size: 11px;
}

.hotel-detail__facts span strong {
  overflow: hidden;
  color: #263946;
  font-family: "font_bold";
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-detail__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hotel-detail__amenities span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(23, 36, 54, 0.08);
  border-radius: 10px;
  background: #ffffff;
  color: #5d6c75;
  font-family: "font_medium";
  font-size: 13px;
  box-shadow: 0 6px 15px rgba(23, 36, 54, 0.04);
}

.hotel-detail__amenities i {
  color: #2ba9a6;
  font-size: 14px;
}

.hotel-detail__booking {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 27px;
  padding: 21px;
  border-radius: 18px;
  background: #172436;
  box-shadow: 0 17px 36px rgba(23, 36, 54, 0.18);
}

.hotel-detail__booking::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  top: -90px;
  left: -55px;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.1);
  pointer-events: none;
}

.hotel-detail__booking-copy,
.hotel-detail__booking-actions {
  position: relative;
  z-index: 1;
}

.hotel-detail__booking-copy > span {
  display: block;
  margin-bottom: 3px;
  color: #00face;
  font-family: "font_medium";
  font-size: 11px;
}

.hotel-detail__booking-copy h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-family: "font_bold";
  font-size: 18px;
  line-height: 1.5;
}

.hotel-detail__booking-copy small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.hotel-detail__booking-copy small i {
  color: #3ac0bd;
}

.hotel-detail__booking-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-detail__booking-actions > a {
  min-width: 155px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 9px;
  color: #ffffff !important;
  font-family: "font_bold";
  font-size: 11px;
  white-space: nowrap;
}

.hotel-detail__book-button {
  background: #3ac0bd;
  box-shadow: 0 10px 20px rgba(58, 192, 189, 0.17);
}

.hotel-detail__whatsapp-button {
  background: #25d366;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.16);
}

.hotel-detail__booking-actions > a:hover {
  transform: translateY(-3px);
  color: #ffffff !important;
  filter: brightness(0.94);
}

.hotel-detail__whatsapp-button i {
  font-size: 18px;
}

.hotel-whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff !important;
  font-family: "font_bold";
  font-size: 14px;
  box-shadow: 0 15px 34px rgba(12, 54, 32, 0.3);
}

.hotel-whatsapp-float i {
  font-size: 24px;
}

.hotel-whatsapp-float:hover {
  transform: translateY(-4px);
  background: #1fbd5b;
  color: #ffffff !important;
}

@media (max-width: 1160px) {
  .hotel-detail {
    grid-template-columns: minmax(380px, 0.88fr) minmax(0, 1.12fr);
  }

  .hotel-detail__content {
    padding: 45px 35px;
  }

  .hotel-detail__booking {
    grid-template-columns: 1fr;
  }

  .hotel-detail__booking-actions {
    flex-direction: row;
  }
}

@media (max-width: 900px) {
  .hotel-detail-page {
    padding: 82px 0 94px;
  }

  .hotel-detail {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hotel-detail__visual,
  .hotel-detail__visual > img {
    min-height: 530px;
  }

  .hotel-detail__content {
    padding: 48px 42px 52px;
  }

  .hotel-detail__booking {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .hotel-detail__booking-actions {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hotel-detail-page {
    padding: 64px 0 76px;
  }

  .hotel-detail {
    border-radius: 22px;
  }

  .hotel-detail__visual,
  .hotel-detail__visual > img {
    min-height: 400px;
  }

  .hotel-detail__visual-top {
    top: 22px;
    right: 20px;
    left: 20px;
  }

  .hotel-detail__rating {
    min-width: 112px;
    padding: 10px 12px;
  }

  .hotel-detail__route {
    display: none;
  }

  .hotel-detail__visual figcaption {
    right: 21px;
    left: 21px;
    bottom: 25px;
  }

  .hotel-detail__visual figcaption strong {
    font-size: 26px;
  }

  .hotel-detail__content {
    padding: 34px 22px 29px;
  }

  .hotel-detail__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hotel-detail__content h2 {
    font-size: 32px;
  }

  .hotel-detail__content > .hotel-detail__lead {
    font-size: 16px;
  }

  .hotel-detail__facts {
    grid-template-columns: 1fr;
  }

  .hotel-detail__facts span strong {
    white-space: normal;
  }

  .hotel-detail__booking {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .hotel-detail__booking-actions,
  .hotel-detail__booking-actions > a {
    width: 100%;
  }

  .hotel-whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .hotel-whatsapp-float span {
    display: none;
  }
}

/* ============================================
   HOTELS CATALOG PAGE
   ============================================ */

.hotels-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 115px 0 120px;
  background:
    radial-gradient(circle at 93% 5%, rgba(0, 250, 206, 0.13), transparent 25%),
    radial-gradient(circle at 4% 82%, rgba(58, 192, 189, 0.12), transparent 27%),
    #111d2c;
}

.hotels-page::before {
  content: "STAY";
  position: absolute;
  z-index: -1;
  top: 28px;
  left: 1%;
  color: rgba(255, 255, 255, 0.022);
  font-family: Arial, sans-serif;
  font-size: clamp(130px, 21vw, 310px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -14px;
  pointer-events: none;
}

.hotels-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.32) 0.75px, transparent 0.75px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, #000, transparent 56%);
  pointer-events: none;
}

.hotels-page .main-container {
  position: relative;
  z-index: 2;
}

.hotels-page__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.hotels-page__glow--one {
  width: 440px;
  height: 440px;
  top: -230px;
  right: -130px;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.16), transparent 70%);
}

.hotels-page__glow--two {
  width: 520px;
  height: 520px;
  bottom: -270px;
  left: -150px;
  background: radial-gradient(circle, rgba(58, 192, 189, 0.12), transparent 70%);
}

.hotels-page__route {
  position: absolute;
  z-index: 1;
  top: 82px;
  right: 5%;
  display: flex;
  align-items: center;
  direction: ltr;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hotels-page__route span {
  width: 150px;
  border-top: 1px dashed rgba(0, 250, 206, 0.32);
}

.hotels-page__route i {
  margin-left: 10px;
  color: #00face;
  font-size: 18px;
  filter: drop-shadow(0 4px 8px rgba(0, 250, 206, 0.2));
  animation: hotelPlaneFloat 4s ease-in-out infinite;
}

.hotels-page__head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.hotels-page__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: #00face;
  font-family: "font_bold";
  font-size: 14px;
}

.hotels-page__kicker i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 250, 206, 0.28);
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.08);
  font-size: 12px;
}

.hotels-page__head h2 {
  margin: 0;
  color: #ffffff;
  font-family: "font_bold";
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.18;
}

.hotels-page__head h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.52);
}

.hotels-page__head > p {
  position: relative;
  margin: 0 0 5px;
  padding-inline-start: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "font_medium";
  font-size: 16px;
  line-height: 1.9;
}

.hotels-page__head > p::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  inset-inline-start: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #00face, rgba(0, 250, 206, 0.05));
}

.hotels-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hotel-card {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px 28px 8px 8px;
  background: #172436;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1), border-color 0.35s ease, box-shadow 0.45s ease;
}

.hotel-card::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 4px 21px 4px 4px;
  pointer-events: none;
}

.hotel-card:hover,
.hotel-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(0, 250, 206, 0.35);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.34);
}

.hotel-card--featured {
  border-color: rgba(0, 250, 206, 0.24);
  box-shadow: 0 28px 65px rgba(0, 250, 206, 0.08), 0 24px 55px rgba(0, 0, 0, 0.24);
}

.hotel-card__media {
  position: relative;
  height: 275px;
  flex: 0 0 275px;
  overflow: hidden;
  background: #0e1825;
}

.hotel-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 25, 38, 0.02) 45%, rgba(13, 25, 38, 0.8) 100%),
    linear-gradient(90deg, rgba(0, 250, 206, 0.06), transparent 50%);
  pointer-events: none;
}

.hotel-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(1.03) saturate(1.04);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.hotel-card:hover .hotel-card__media img,
.hotel-card:focus-within .hotel-card__media img {
  transform: scale(1.075);
  filter: brightness(1.08) saturate(1.1);
}

.hotel-card__number {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hotel-card__number::after {
  content: "";
  width: 33px;
  height: 1px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  background: #00face;
}

.hotel-card__rating {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(17, 29, 44, 0.65);
  color: #ffffff;
  font-family: "font_bold";
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hotel-card__rating i {
  color: #f8c85b;
  font-size: 12px;
}

.hotel-card__category {
  position: absolute;
  z-index: 2;
  right: 21px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(0, 250, 206, 0.25);
  border-radius: 999px;
  background: rgba(17, 29, 44, 0.72);
  color: #dffff9;
  font-family: "font_medium";
  font-size: 11px;
  backdrop-filter: blur(10px);
}

.hotel-card--featured .hotel-card__category {
  background: #00face;
  color: #172436;
  font-family: "font_bold";
}

.hotel-card__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 27px 23px 23px;
  background:
    radial-gradient(circle at 100% 0, rgba(58, 192, 189, 0.11), transparent 39%),
    #172436;
}

.hotel-card__location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: #00face;
  font-family: "font_medium";
  font-size: 12px;
}

.hotel-card__content h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: "font_bold";
  font-size: 28px;
  line-height: 1.35;
}

.hotel-card__content > p {
  min-height: 79px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "font_medium";
  font-size: 13px;
  line-height: 1.85;
}

.hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 21px 0 24px;
}

.hotel-card__amenities span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 31px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.hotel-card__amenities i {
  color: #00face;
  font-size: 10px;
}

.hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hotel-card__footer > div small,
.hotel-card__footer > div strong {
  display: block;
}

.hotel-card__footer > div small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 9px;
}

.hotel-card__footer > div strong {
  color: #ffffff;
  font-family: "font_medium";
  font-size: 12px;
}

.hotel-card__footer > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 7px;
  background: #00face;
  color: #172436 !important;
  font-family: "font_bold";
  font-size: 11px;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(0, 250, 206, 0.12);
}

.hotel-card__footer > a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.hotel-card__footer > a:hover {
  transform: translateY(-3px);
  background: #3ac0bd;
  color: #172436 !important;
}

.hotel-card__footer > a:hover i {
  transform: translateX(-4px);
}

.hotels-page__note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 17px;
  margin-top: 34px;
  padding: 21px 24px;
  border: 1px solid rgba(0, 250, 206, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
}

.hotels-page__note > i {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.1);
  color: #00face;
  font-size: 16px;
}

.hotels-page__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-family: "font_medium";
  font-size: 13px;
  line-height: 1.7;
}

.hotels-page__note p strong {
  margin-inline-end: 5px;
  color: #ffffff;
  font-family: "font_bold";
}

.hotels-page__note > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #00face;
  font-family: "font_bold";
  font-size: 13px;
  white-space: nowrap;
}

.hotels-page__note > a i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.hotels-page__note > a:hover i {
  transform: translateX(-4px);
}

@media (max-width: 1100px) {
  .hotels-page__head {
    gap: 45px;
  }

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

@media (max-width: 768px) {
  .hotels-page {
    padding: 82px 0 88px;
  }

  .hotels-page__head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 37px;
  }

  .hotels-page__head > p {
    max-width: 590px;
  }

  .hotels-page__route {
    display: none;
  }

  .hotels-page__note {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .hotels-page__note > a {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .hotels-page {
    padding: 66px 0 72px;
  }

  .hotels-page::before {
    font-size: 105px;
    letter-spacing: -7px;
  }

  .hotels-page__head h2 {
    font-size: 36px;
  }

  .hotels-page__head > p {
    font-size: 14px;
  }

  .hotels-catalog {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .hotel-card {
    border-radius: 8px 24px 8px 8px;
  }

  .hotel-card:hover,
  .hotel-card:focus-within {
    transform: translateY(-5px);
  }

  .hotel-card__media {
    height: 250px;
    flex-basis: 250px;
  }

  .hotel-card__content {
    padding: 25px 20px 21px;
  }

  .hotel-card__content > p {
    min-height: 0;
  }

  .hotel-card__amenities {
    margin-bottom: 21px;
  }

  .hotels-page__note {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 19px;
  }

  .hotels-page__note p {
    width: calc(100% - 59px);
  }

  .hotels-page__note > a {
    margin-inline-start: 59px;
  }
}

/* ============================================
   SAUDI HOTELS SHOWCASE
   ============================================ */
.hotels-index {
  position: relative;
  padding: 120px 0 105px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 250, 206, 0.04), transparent 35%),
    #111d2c;
}

.hotels-index::before {
  content: "STAY";
  position: absolute;
  top: 22px;
  left: 2%;
  color: rgba(255, 255, 255, 0.025);
  font-family: Arial, sans-serif;
  font-size: clamp(110px, 19vw, 290px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -12px;
  pointer-events: none;
}

.hotels-index::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 0.7px, transparent 0.7px);
  background-size: 17px 17px;
  mask-image: linear-gradient(90deg, #000, transparent 52%);
  pointer-events: none;
}

.hotels-index .main-container {
  position: relative;
  z-index: 2;
}

.hotels-index__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hotels-index__glow--one {
  top: -210px;
  right: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(58, 192, 189, 0.18), transparent 68%);
}

.hotels-index__glow--two {
  bottom: -240px;
  left: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.1), transparent 68%);
}

.hotels-index__route {
  position: absolute;
  top: 75px;
  right: 5%;
  width: 260px;
  height: 120px;
  border-top: 1px dashed rgba(0, 250, 206, 0.2);
  border-radius: 50%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.hotels-index__route i {
  position: absolute;
  top: -7px;
  left: 32px;
  color: #00FACE;
  font-size: 15px;
  transform: rotate(-22deg);
  animation: hotelPlaneFloat 4s ease-in-out infinite;
}

.hotels-index__head {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 52px;
}

.hotels-index__kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #00FACE;
  font-family: "font_bold";
  font-size: 14px;
}

.hotels-index__kicker i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 250, 206, 0.28);
  border-radius: 50%;
  background: rgba(0, 250, 206, 0.08);
  font-size: 11px;
}

.hotels-index__head h2 {
  margin: 0;
  color: var(--color-white);
  font-family: "font_bold";
  font-size: clamp(37px, 5vw, 66px);
  line-height: 1.18;
}

.hotels-index__head h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);
}

.hotels-index__intro {
  padding-bottom: 6px;
}

.hotels-index__intro p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.64);
  font-family: "font_medium";
  font-size: 16px;
  line-height: 1.9;
}

.hotels-index__intro > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 21px;
  color: #00FACE;
  font-family: "font_bold";
  font-size: 14px;
}

.hotels-index__intro > a i {
  transition: transform 0.3s ease;
}

.hotels-index__intro > a:hover i {
  transform: translateX(-7px);
}

.hotels-slider-shell {
  position: relative;
}

.hotels-slider-shell:focus-visible {
  outline: 2px solid #00FACE;
  outline-offset: 8px;
  border-radius: 10px;
}

.hotels-slider .owl-stage-outer {
  overflow: visible;
}

.hotels-slider .owl-stage {
  display: flex;
}

.hotels-slider .owl-item {
  display: flex;
  opacity: 1;
  transform: none;
}

.hotel-showcase {
  position: relative;
  width: 100%;
  min-height: 565px;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(330px, 0.88fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px 42px 8px 8px;
  background: #172436;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.34);
}

.hotel-showcase::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 3px 32px 3px 3px;
  pointer-events: none;
}

.hotel-showcase__media {
  position: relative;
  min-height: 565px;
  overflow: hidden;
}

.hotel-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.06) saturate(1.04);
  transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotels-slider .owl-item.is-hotel-current .hotel-showcase__media img,
.hotel-showcase:hover .hotel-showcase__media img {
  transform: scale(1.025);
}

.hotel-showcase__edition {
  position: absolute;
  top: 32px;
  right: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
}

.hotel-showcase__edition::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: #00FACE;
}

.hotel-showcase__rating {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0 7px;
  min-width: 130px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(17, 29, 44, 0.65);
  color: var(--color-white);
  backdrop-filter: blur(12px);
}

.hotel-showcase__rating i {
  grid-row: 1 / 3;
  color: #f8c85b;
  font-size: 18px;
}

.hotel-showcase__rating strong {
  font-family: "font_bold";
  font-size: 17px;
  line-height: 1;
}

.hotel-showcase__rating span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.hotel-showcase__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(58, 192, 189, 0.17), transparent 38%),
    #172436;
}

.hotel-showcase__content::after {
  content: "J";
  position: absolute;
  left: -5px;
  bottom: -36px;
  color: rgba(255, 255, 255, 0.025);
  font-family: Georgia, serif;
  font-size: 220px;
  line-height: 1;
  pointer-events: none;
}

.hotel-showcase__location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  color: #00FACE;
  font-family: "font_medium";
  font-size: 12px;
}

.hotel-showcase__content h3 {
  margin: 0 0 17px;
  color: var(--color-white);
  font-family: "font_bold";
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.25;
}

.hotel-showcase__content > p {
  color: rgba(255, 255, 255, 0.62);
  font-family: "font_medium";
  font-size: 14px;
  line-height: 1.9;
}

.hotel-showcase__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0 32px;
}

.hotel-showcase__amenities span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
}

.hotel-showcase__amenities i {
  color: #00FACE;
  font-size: 11px;
}

.hotel-showcase__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.hotel-showcase__type small,
.hotel-showcase__type strong {
  display: block;
}

.hotel-showcase__type small {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.hotel-showcase__type strong {
  color: var(--color-white);
  font-family: "font_medium";
  font-size: 13px;
}

.hotel-showcase__footer > a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  overflow: hidden;
  border-radius: 50%;
  background: #00FACE;
  color: #172436;
  font-family: "font_bold";
  font-size: 11px;
  white-space: nowrap;
}

.hotel-showcase__footer > a span {
  width: 0;
  overflow: hidden;
  opacity: 0;
  transition: width 0.35s ease, opacity 0.25s ease;
}

.hotel-showcase__footer > a:hover {
  width: 142px;
  border-radius: 24px;
  color: #172436;
}

.hotel-showcase__footer > a:hover span {
  width: 85px;
  opacity: 1;
}

.hotels-slider-status {
  display: grid;
  grid-template-columns: auto auto minmax(130px, 280px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 27px;
}

.hotels-slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hotels-slider-controls button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  font-family: "font_medium";
  font-size: 11px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.hotels-slider-controls button:hover,
.hotels-slider-controls button:focus-visible {
  border-color: #00FACE;
  background: #00FACE;
  color: #172436;
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 250, 206, 0.18);
}

.hotels-slider-controls button:active {
  transform: translateY(0) scale(0.96);
}

.hotels-slider-controls i {
  font-size: 10px;
}

.hotels-slider-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
}

.hotels-slider-count strong {
  color: #00FACE;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.hotels-slider-count span {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(-55deg);
}

.hotels-slider-count small {
  color: rgba(255, 255, 255, 0.42);
  font-family: Arial, sans-serif;
  font-size: 11px;
}

.hotels-slider-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.hotels-slider-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: linear-gradient(90deg, #3AC0BD, #00FACE);
  box-shadow: 0 0 12px rgba(0, 250, 206, 0.65);
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotels-slider-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.hotels-slider-hint i {
  color: #00FACE;
  animation: hotelSwipeHint 1.7s ease-in-out infinite;
}

@keyframes hotelPlaneFloat {
  0%, 100% { transform: translate(0, 0) rotate(-22deg); }
  50% { transform: translate(-14px, -5px) rotate(-17deg); }
}

@keyframes hotelSwipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-6px); }
}

@media (max-width: 1100px) {
  .hotel-showcase {
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  }

  .hotel-showcase__content {
    padding: 40px 28px;
  }
}

@media (max-width: 900px) {
  .hotels-index {
    padding: 88px 0 80px;
  }

  .hotels-index__head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .hotel-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 8px 28px 8px 8px;
  }

  .hotel-showcase__media {
    min-height: 430px;
  }

  .hotel-showcase__content {
    min-height: 390px;
  }

}

@media (max-width: 576px) {
  .hotels-index {
    padding: 68px 0 62px;
  }

  .hotels-index::before {
    font-size: 105px;
    letter-spacing: -6px;
  }

  .hotels-index__head h2 {
    font-size: 35px;
  }

  .hotels-index__intro p {
    font-size: 14px;
  }

  .hotel-showcase__media {
    min-height: 310px;
  }

  .hotel-showcase__edition {
    top: 24px;
    right: 24px;
  }

  .hotel-showcase__rating {
    right: 20px;
    bottom: 20px;
  }

  .hotel-showcase__content {
    min-height: auto;
    padding: 32px 22px 27px;
  }

  .hotel-showcase__content h3 {
    font-size: 30px;
  }

  .hotel-showcase__amenities {
    margin: 20px 0 25px;
  }

  .hotels-slider-status {
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-top: 20px;
  }

  .hotels-slider-controls {
    grid-column: 1 / -1;
    justify-content: center;
    margin-bottom: 4px;
  }

  .hotels-slider-controls button {
    min-width: 112px;
  }

  .hotels-slider-hint {
    display: none;
  }
}

/* ============================================
   CONTACT JOURNEY
   ============================================ */
.contactus-index {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(0, 250, 206, 0.09), transparent 24%),
    linear-gradient(180deg, #f6fbfb, #eef7f7);
  color: #172436;
}

.contactus-index::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(30deg, transparent 49.5%, rgba(58, 192, 189, 0.13) 50%, transparent 50.5%);
  background-size: 90px 90px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
  pointer-events: none;
}

.contactus-index .main-container {
  position: relative;
  z-index: 2;
}

.contactus-index__aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.contactus-index__aura--one {
  top: -180px;
  left: -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(58, 192, 189, 0.14);
  box-shadow:
    0 0 0 45px rgba(58, 192, 189, 0.03),
    0 0 0 92px rgba(58, 192, 189, 0.02);
}

.contactus-index__aura--two {
  right: -130px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 250, 206, 0.1), transparent 68%);
}

.contactus-index__head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.contactus-index__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #2ba4a2;
  font-family: "font_bold";
  font-size: 17px;
}

.contactus-index__kicker i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #172436;
  color: #00FACE;
  font-size: 12px;
  box-shadow: 0 9px 18px rgba(23, 36, 54, 0.16);
}

.contactus-index__head h2 {
  margin: 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.16;
}

.contactus-index__head h2 span {
  color: var(--color-Primary1);
}

.contactus-index__head > p {
  max-width: 560px;
  color: rgba(23, 36, 54, 0.68);
  font-family: "font_medium";
  font-size: 19px;
  line-height: 1.9;
}

.contactus-index__experience {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(23, 36, 54, 0.08);
  border-radius: 38px 8px 38px 8px;
  background: var(--color-white);
  box-shadow: 0 35px 90px rgba(23, 36, 54, 0.14);
}

.contact-journey {
  position: relative;
  min-height: 850px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  color: var(--color-white);
  isolation: isolate;
}

.contact-journey__image,
.contact-journey__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-journey__image {
  z-index: -2;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-journey:hover .contact-journey__image {
  transform: scale(1.035);
}

.contact-journey__overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 24, 29, 0.27), rgba(8, 23, 27, 0.93)),
    linear-gradient(110deg, rgba(0, 250, 206, 0.12), transparent 48%);
}

.contact-journey__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-journey__top > img {
  width: 135px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
}

.contact-journey__top > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.83);
  font-size: 17px;
  backdrop-filter: blur(10px);
}

.contact-journey__top > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00FACE;
  box-shadow: 0 0 0 5px rgba(0, 250, 206, 0.12);
  animation: contactOnlinePulse 1.8s ease-in-out infinite;
}

.contact-journey__copy {
  margin: auto 0 26px;
}

.contact-journey__label {
  display: inline-block;
  margin-bottom: 12px;
  color: #00FACE;
  font-family: "font_bold";
  font-size: 17px;
}

.contact-journey__copy h3 {
  margin: 0 0 14px;
  color: var(--color-white);
  font-family: "font_bold";
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.2;
}

.contact-journey__copy p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.85;
}

.contact-channels {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.contact-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  backdrop-filter: blur(13px);
}

.contact-channel:hover,
.contact-channel:focus-visible {
  border-color: rgba(0, 250, 206, 0.5);
  background: rgba(0, 250, 206, 0.12);
  color: var(--color-white);
  outline: none;
  transform: translateX(-5px);
}

.contact-channel__icon {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 250, 206, 0.13);
  color: #00FACE;
  font-size: 17px;
}

.contact-channel--whatsapp .contact-channel__icon {
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.2);
}

.contact-channel__copy small,
.contact-channel__copy strong,
.contact-channel__copy em {
  display: block;
}

.contact-channel__copy small {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 17px;
}

.contact-channel__copy strong {
  color: var(--color-white);
  font-family: "font_bold";
  font-size: 17px;
}

.contact-channel__copy em {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-channel__arrow {
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.contact-channel:hover .contact-channel__arrow {
  color: #00FACE;
  transform: rotate(-12deg);
}

.contact-flight-path {
  position: absolute;
  top: 24%;
  left: -20px;
  width: 180px;
  height: 80px;
  opacity: 0.4;
  transform: rotate(-17deg);
}

.contact-flight-path span {
  position: absolute;
  inset: 35px 15px auto 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.65);
  border-radius: 50%;
}

.contact-flight-path i {
  position: absolute;
  right: 0;
  top: 28px;
  color: #00FACE;
  font-size: 13px;
  animation: contactPlaneMove 3.2s ease-in-out infinite;
}

.contact-form-card {
  position: relative;
  padding: 52px 48px 42px;
  background:
    radial-gradient(circle at 100% 0, rgba(58, 192, 189, 0.1), transparent 27%),
    var(--color-white);
}

.contact-form-card::before {
  content: "JAWAHRA • TRAVEL •";
  position: absolute;
  left: -35px;
  bottom: 40px;
  color: rgba(23, 36, 54, 0.025);
  font-family: Arial, sans-serif;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 3px;
  transform: rotate(-90deg);
  pointer-events: none;
}

.contact-form-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 25px;
  border-bottom: 1px dashed rgba(23, 36, 54, 0.14);
}

.contact-form-card__top span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-Primary1);
  font-family: "font_bold";
  font-size: 17px;
}

.contact-form-card__top h3 {
  margin: 0;
  color: #172436;
  font-family: "font_bold";
  font-size: clamp(27px, 3vw, 38px);
}

.contact-form-card__stamp {
  width: 54px;
  height: 54px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 54px;
  margin: 0 !important;
  border: 1px dashed rgba(58, 192, 189, 0.45);
  border-radius: 50% 50% 45% 55%;
  background: rgba(58, 192, 189, 0.1);
  color: var(--color-Primary1) !important;
  font-size: 21px !important;
  transform: rotate(-9deg);
}

.contact-form {
  position: relative;
  z-index: 2;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  margin-bottom: 19px;
}

.contact-field label,
.contact-preference legend {
  display: block;
  margin-bottom: 8px;
  color: #344253;
  font-family: "font_medium";
  font-size: 17px;
}

.contact-field__control {
  position: relative;
}

.contact-field__control > i:first-child {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
  color: #85949c;
  font-size: 13px;
  transform: translateY(-50%);
  transition: color 0.2s ease;
}

.contact-field__control input,
.contact-field__control select,
.contact-field__control textarea {
  width: 100%;
  border: 1px solid #e1e8eb;
  border-radius: 11px;
  background: #f7fafa;
  color: #172436;
  font-family: "font_main";
  font-size: 17px;
}

.contact-field__control input,
.contact-field__control select {
  height: 58px;
  padding: 0 42px 0 15px;
}

.contact-field__control textarea {
  min-height: 120px;
  height: 120px !important;
  padding: 15px 42px 15px 15px;
  line-height: 1.7;
  resize: vertical;
}

.contact-field__control input::placeholder,
.contact-field__control textarea::placeholder {
  color: #a0abb1;
}

.contact-field__control input:focus,
.contact-field__control select:focus,
.contact-field__control textarea:focus {
  border-color: var(--color-Primary1);
  background: var(--color-white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(58, 192, 189, 0.1);
}

.contact-field__control:focus-within > i:first-child {
  color: var(--color-Primary1);
}

.contact-field__chevron {
  right: auto !important;
  left: 15px;
  color: var(--color-Primary1) !important;
  font-size: 9px !important;
  pointer-events: none;
}

.contact-preference {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.contact-preference > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.contact-preference label {
  margin: 0;
  cursor: pointer;
}

.contact-preference input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-preference label span {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #e1e8eb;
  border-radius: 9px;
  background: #f8fafa;
  color: #66747d;
  font-size: 17px;
  transition: all 0.25s ease;
}

.contact-preference input:checked + span {
  border-color: var(--color-Primary1);
  background: rgba(58, 192, 189, 0.1);
  color: #278f8d;
  box-shadow: inset 0 0 0 1px rgba(58, 192, 189, 0.12);
}

.contact-preference input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(58, 192, 189, 0.13);
}

.contact-preference label:first-child input:checked + span i {
  color: #25d366;
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 4px;
}

.contact-form__footer > p {
  max-width: 210px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #849198;
  font-size: 17px;
}

.contact-form__footer > p i {
  color: var(--color-Primary1);
}

.contact-form__footer button {
  min-width: 205px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #3AC0BD, #238f8d);
  color: var(--color-white);
  font-family: "font_bold";
  font-size: 18px;
  box-shadow: 0 14px 28px rgba(58, 192, 189, 0.26);
  cursor: pointer;
}

.contact-form__footer button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(58, 192, 189, 0.34);
}

.contact-form__footer button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.contact-form__footer button.is-sent {
  background: #172436;
}

.contact-form__status {
  min-height: 18px;
  margin-top: 13px;
  color: #278f8d;
  font-family: "font_medium";
  font-size: 17px;
  text-align: end;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.contact-form__status.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes contactOnlinePulse {
  0%, 100% { opacity: 0.65; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes contactPlaneMove {
  0%, 100% { transform: translateX(0) rotate(-12deg); }
  50% { transform: translateX(-18px) rotate(-5deg); }
}

@media (max-width: 1100px) {
  .contactus-index__experience {
    grid-template-columns: minmax(340px, 0.85fr) minmax(0, 1.15fr);
  }

  .contact-form-card {
    padding: 45px 32px 35px;
  }
}

@media (max-width: 900px) {
  .contactus-index {
    padding: 85px 0;
  }

  .contactus-index__head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }

  .contactus-index__experience {
    grid-template-columns: 1fr;
  }

  .contact-journey {
    min-height: 800px;
  }
}

@media (max-width: 576px) {
  .contactus-index {
    padding: 65px 0;
  }

  .contactus-index__head h2 {
    font-size: 35px;
  }

  .contactus-index__head > p {
    font-size: 17px;
  }

  .contactus-index__experience {
    border-radius: 24px 7px 24px 7px;
  }

  .contact-journey {
    min-height: 820px;
    padding: 20px;
  }

  .contact-journey__top > img {
    width: 112px;
  }

  .contact-journey__copy h3 {
    font-size: 34px;
  }

  .contact-form-card {
    padding: 34px 20px 26px;
  }

  .contact-form-card__top {
    margin-bottom: 26px;
  }

  .contact-form-card__top h3 {
    font-size: 27px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-preference > div {
    grid-template-columns: 1fr;
  }

  .contact-form__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form__footer > p {
    max-width: none;
  }

  .contact-form__footer button {
    width: 100%;
  }

  .contact-form__status {
    text-align: center;
  }
}

/* ============================================
   REGISTER MODAL
   ============================================ */
.register-modal {
  color: var(--color-black);
}

.register-modal .modal-dialog {
  max-width: 980px;
}

.register-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(23, 36, 54, 0.28);
}

.register-modal-close {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #172436;
  font-size: 16px;
  box-shadow: 0 8px 22px rgba(23, 36, 54, 0.14);
  cursor: pointer;
}

.register-modal-close:hover {
  background: var(--color-Primary1);
  color: var(--color-white);
  transform: rotate(90deg);
}

.register-modal-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.register-modal-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.register-modal-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 36, 54, 0.18), rgba(23, 36, 54, 0.92)),
    linear-gradient(135deg, rgba(58, 192, 189, 0.15), transparent 60%);
}

.register-modal-visual-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 42px 34px;
  color: var(--color-white);
}

.register-modal-logo {
  position: absolute;
  top: 34px;
  inset-inline-start: 30px;
  width: 142px;
  padding: 9px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(8px);
}

.register-modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  font-family: "font_medium";
  font-size: 13px;
  backdrop-filter: blur(8px);
}

.register-modal-kicker i {
  color: #00FACE;
}

.register-modal-visual-content h3 {
  margin: 0 0 13px;
  color: var(--color-white);
  font-family: "font_bold";
  font-size: 27px;
  line-height: 1.55;
}

.register-modal-visual-content p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.9;
}

.register-travel-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
}

.register-travel-features span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.register-travel-features i {
  color: #00FACE;
}

.register-modal-form-wrap {
  min-height: 650px;
  padding: 44px 42px 30px !important;
  background:
    radial-gradient(circle at 100% 0, rgba(58, 192, 189, 0.1), transparent 32%),
    var(--color-white);
}

.register-modal-heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 25px;
}

.register-modal-mobile-icon {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  border-radius: 14px;
  background: rgba(58, 192, 189, 0.12);
  color: var(--color-Primary1);
  font-size: 20px;
}

.register-modal-eyebrow {
  display: block;
  margin-bottom: 4px;
  color: var(--color-Primary1);
  font-family: "font_bold";
  font-size: 19px;
}

.register-modal-heading h2 {
  margin: 0 0 7px;
  color: #172436;
  font-family: "font_bold";
  font-size: 28px;
}

.register-modal-heading p {
  color: #7a8491;
  font-size: 19px;
}

.register-form .form-group {
  margin-bottom: 16px;
}

.register-form label {
  margin-bottom: 7px;
  color: #344153;
  font-family: "font_medium";
  font-size: 17px;
}

.register-input {
  position: relative;
}

.register-input > i {
  position: absolute;
  top: 50%;
  inset-inline-start: 15px;
  z-index: 1;
  color: #7f929b;
  font-size: 14px;
  transform: translateY(-50%);
  transition: color 0.2s ease;
}

.register-form .form-control {
  height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid #e3e9ed;
  border-radius: 10px;
  background: #f8fafb;
  color: #172436;
  font-size: 13px;
}

.register-form .form-control::placeholder {
  color: #a4adb7;
}

.register-form .form-control:focus {
  border-color: var(--color-Primary1);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(58, 192, 189, 0.1);
}

.register-input:focus-within > i {
  color: var(--color-Primary1);
}

.register-form-options {
  margin: 2px 0 18px;
}

.register-terms {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 !important;
  color: #66727f !important;
  cursor: pointer;
  line-height: 1.7;
}

.register-terms input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.register-checkbox {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
  margin-top: 2px;
  border: 1px solid #ced8dd;
  border-radius: 5px;
  color: transparent;
  font-size: 9px;
  transition: all 0.2s ease;
}

.register-terms input:checked + .register-checkbox {
  border-color: var(--color-Primary1);
  background: var(--color-Primary1);
  color: var(--color-white);
}

.register-terms input:focus-visible + .register-checkbox {
  box-shadow: 0 0 0 4px rgba(58, 192, 189, 0.15);
}

.register-terms a,
.register-login-link a {
  color: var(--color-Primary1);
  font-family: "font_bold";
  font-size: inherit;
}

.register-form-alert {
  display: none;
  margin: -5px 0 14px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
}

.register-submit {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #3AC0BD, #279e9c);
  color: var(--color-white);
  font-family: "font_bold";
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(58, 192, 189, 0.25);
  cursor: pointer;
}

.register-submit:hover {
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(58, 192, 189, 0.34);
}

.register-login-link {
  margin-top: 16px;
  color: #7a8491;
  text-align: center;
  font-size: 13px;
}

.login-modal .register-modal-visual,
.login-modal .register-modal-form-wrap {
  min-height: 570px;
}

.login-modal-form-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 3px 0 22px;
}

.forgot-password-link {
  color: var(--color-Primary1);
  font-family: "font_bold";
  font-size: 12px;
  white-space: nowrap;
}

.forgot-password-link:hover {
  color: #238f8d;
}

.login-modal-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0;
  color: #9aa4ad;
  font-size: 12px;
}

.login-modal-divider::before,
.login-modal-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e6ebee;
}

.login-modal-divider span {
  padding: 0 12px;
}

@media (max-width: 991px) {
  .register-modal .modal-dialog {
    max-width: 620px;
  }

  .register-modal-visual {
    display: none;
  }

  .register-modal-form-wrap {
    min-height: auto;
  }

  .login-modal .register-modal-form-wrap {
    min-height: 520px;
  }

  .register-modal-mobile-icon {
    display: inline-flex;
  }
}

@media (max-width: 576px) {
  .register-modal .modal-dialog {
    margin: 12px;
  }

  .register-modal .modal-content {
    border-radius: 16px;
  }

  .register-modal-form-wrap {
    padding: 32px 20px 22px;
  }

  .register-modal-heading {
    padding-inline-end: 30px;
  }

  .register-modal-heading h2 {
    font-size: 22px;
  }

  .register-modal-heading p {
    display: none;
  }

  .register-modal-mobile-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 17px;
  }

  .register-form .form-group {
    margin-bottom: 12px;
  }
}
