/* 

font-family: cal sans (heading and small text) , inter (long text - para)
font-sizes(px): 12, 14, 16, 18, 20, 24, 32, 36, 48, 52, 60, 72, 80, 92
line-height: 1.1, 1.2, 1.4, 1.6, 1.7 
spacing: 4, 8, 12, 16, 24, 32, 40, 48, 56, 64, 80, 96 

*/

:root {
  /* Font family */
  --font-primary: "Cal Sans", sans-serif;
  --font-secondary: "Inter", sans-serif;

  /* Font size */

  --text-xs: 1.2rem;
  --text-s: 1.4rem;
  --text-default: 1.6rem;
  --text-m: 1.8rem;
  --text-l: 2rem;
  --text-xl: 2.4rem;
  --text-xl28: 2.8rem;
  --text-2xl: 3.2rem;
  --text-3xl: 3.6rem;
  --text-4xl: 4.8rem;
  --text-5xl: 5.2rem;
  --text-6xl: 6rem;
  --text-7xl: 7.2rem;
  --text-8xl: 8rem;
  --text-9xl: 9.2rem;

  /* Line heights */
  --lh-tight: 1.1;
  --lh-snug: 1.2;
  --lh-normal: 1.4;
  --lh-relaxed: 1.6;
  --lh-loose: 1.7;
  --lh-loosexl: 1.9;

  /* Spacing */
  --space-4: 0.4rem;
  --space-8: 0.8rem;
  --space-12: 1.2rem;
  --space-16: 1.6rem;
  --space-24: 2.4rem;
  --space-32: 3.2rem;
  --space-40: 4rem;
  --space-48: 4.8rem;
  --space-56: 5.6rem;
  --space-64: 6.4rem;
  --space-80: 8rem;
  --space-96: 9.6rem;

  /* Color */

  --color-white: #ffff;
  --color-white-2: #f7f7f7;
  --color-black-1: #191919;
  --color-grey-light-1: #545454;
  --color-grey-light-2: #404040;
  --color-grey-light-3: #cccccc;
  --color-green: #033d4a;
  --color-green-2: #012830;

  --sky: #38bdf8;
  --sky-dim: rgba(56, 189, 248, 0.15);
  --sky-glow: rgba(56, 189, 248, 0.35);
}

/* reset */

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.u-text-align-center {
  text-align: center;
}

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

.u-grid-template-columns-2 {
  grid-template-columns: 1fr 1fr;
}

.u-minmax-536 {
  grid-template-columns: minmax(0, 536px) 1fr;
}

.u-grid-gap-24 {
  gap: var(--space-24);
}

.u-grid-gap-40 {
  gap: var(--space-40);
}

.u-grid-gap-48 {
  gap: var(--space-48);
}

.u-grid-gap-64 {
  gap: var(--space-64);
}

.reveal {
  opacity: 0;
  transform: translateY(4rem) scale(0.8);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    scale 0.9s ease;
  will-change: opacity, transform, scale;
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal .btn--animated {
  animation: none;
}

.reveal.reveal--visible .btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 52rem;
  gap: var(--space-12);
}

.header {
  font-family: var(--font-primary);
  display: grid;
  align-items: center;
  position: relative;
  padding: var(--space-96) var(--space-40);
  height: 100vh;
  color: var(--color-white);
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.bg-video__content {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.bg-img--filter {
  filter: brightness(0.4);
}

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

.container {
  display: grid;
  align-items: center;
  justify-items: center;
}

.cta {
  font-family: var(--font-primary);
  font-weight: 400;
}

.section-wrapper {
  max-width: 120rem;
  margin: 0 auto;
}

.content-box {
  width: 100%;
  display: grid;
  align-items: stretch;
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 400;
  display: flex;
  gap: var(--space-8);
  align-items: center;
  text-transform: capitalize;
}

.section-title--white {
  color: var(--color-white-2);
}

.section-title--grey {
  color: var(--color-grey-light-1);
}

.section-title-icon {
  font-size: var(--text-xl);
}

.section-title-text {
  font-size: var(--text-default);
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-24);
  max-width: 120rem;
  margin: 0 auto;
}

.heading-primary {
  font-weight: 400;
  max-width: 89rem;
  text-align: center;
  font-size: var(--text-9xl);
  line-height: var(--lh-snug);
  letter-spacing: -3px;
}

.heading-secondary {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--text-3xl);
  line-height: var(--lh-snug);
  text-transform: capitalize;
}

.heading-secondary--green {
  color: var(--color-green-2);
}

.heading-secondary--white {
  color: var(--color-white);
}

.heading-tertiary {
  font-family: var(--font-primary);
  font-size: var(--text-xl28);
  font-weight: 400;
  line-height: var(--lh-normal);
  text-transform: capitalize;
}

.img-box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 2.4rem;
  overflow: hidden;
}

.img-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.header-text {
  font-family: var(--font-secondary);
  line-height: var(--lh-normal);
  font-size: var(--text-l);
  text-align: center;
  text-transform: capitalize;
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.word {
  display: inline-block;
  filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.word.show {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}

.btn:link,
.btn:visited {
  font-family: var(--font-primary);
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: var(--text-default);
  font-weight: 400;
  padding: 1rem 3rem;
  border-radius: 100rem;
  transition: all 0.5s ease;
}

.btn--white {
  --btn-bg: var(--color-white);
  background-color: var(--color-white);
  color: var(--color-black-1);
}

.btn--green {
  color: var(--color-white);
  --btn-bg: var(--color-green);
  background-color: var(--color-green);
}

.btn::after {
  content: "\2192";
  position: absolute;
  display: flex;
  height: 4.5rem;
  width: 4.5rem;
  left: 100%;
  top: 50%;
  font-weight: 700;
  margin-left: -5px;
  transform: translateY(-50%) rotate(-45deg);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  background-color: var(--btn-bg);
}

.btn:hover::after,
.btn:active {
  transform: translateY(-50%) translateX(15px) rotate(0deg);
}

.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards;
}

.section-about {
  padding: var(--space-96) var(--space-40);
  overflow: hidden;
}

.about-content-right {
  position: relative;
  min-height: 0;
}

.about-content-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.about-description {
  font-family: var(--font-secondary);
  font-size: var(--text-default);
  line-height: var(--lh-normal);
  color: var(--color-grey-light-2);
}

.about-img-box {
  width: 100%;
  height: 29rem;
  border-radius: 2.4rem;
  overflow: hidden;
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.dynamic-galery {
  transition: opacity 0.4s ease;
}

.section-travel-with-us {
  position: relative;
  padding: var(--space-96) var(--space-40);
  overflow: hidden;
}

.travel-content-left {
  width: 100%;
  max-width: 536px;
  border-radius: 2.4rem;
}

.travel-content-right {
  padding: var(--space-24);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 5, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2.4rem;
}

.travel-menu-item {
  width: 100%;
  padding: 12px;
  display: flex;
  gap: var(--space-24);
  align-items: center;
  color: var(--color-white);
  border-radius: inherit;
  transition: all 0.7s ease;
}

.travel-menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.travel-menu-icon {
  font-size: 4.4rem;
}

.travel-separator {
  height: 1px;
  width: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.2);
}

.travel-content-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
}

.travel-content-description {
  font-family: var(--font-secondary);
  font-size: var(--text-default);
  font-weight: 400;
  color: var(--color-grey-light-3);
}

.travel-image-panel {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 2.4rem;
}

.travel-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  border-radius: inherit;
  overflow: hidden;
  width: 100%;
  height: 100%;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s ease;
  object-fit: cover;
  object-position: center;
}

.travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.travel-image.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.section-testimonials {
  position: relative;
  padding: var(--space-96) var(--space-40);
  overflow: hidden;
}

.testimonials-container {
  width: 100%;
  max-width: 120rem;
  height: 52rem;
  border-radius: var(--space-24);
}

.testimonials-image-box {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  border-radius: inherit;
  overflow: hidden;
}

.testimonials-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;

  -webkit-mask: linear-gradient(115deg,
      rgba(0, 0, 0, 0.19) 0%,
      rgba(0, 0, 0, 0.506) 34.2342%,
      rgb(0, 0, 0) 58.018%);
  mask: linear-gradient(115deg,
      rgba(0, 0, 0, 0.19) 0%,
      rgba(0, 0, 0, 0.506) 34.2342%,
      rgb(0, 0, 0) 58.018%);
}

.testimonial-main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  backface-visibility: hidden;
  transform-origin: center center;
}

.testimonials-content-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.testimonials-text-container {
  display: flex;
  max-width: 40rem;
  flex-direction: column;
  gap: 3.5rem;
  font-size: var(--text-default);
  font-family: var(--font-secondary);
}

.testimonials-ratings,
.testimonial,
.testimonial-author {
  opacity: 1;
}

.testimonial {
  font-family: var(--font-primary);
  font-size: var(--text-l);
  color: var(--color-white);
}

.testimonial-author {
  color: var(--color-grey-light-3);
}

.testimonials-nav {
  display: flex;
  gap: 16px;
  height: 9rem;
}

.testimonial-thumb {
  display: block;
  width: 60px;
  height: 60px;
  object-position: center;
  object-fit: cover;
  border-radius: 50%;
  cursor: pointer;
  transition:
    transform 0.35s ease,
    filter 0.35s ease,
    border 0.35s ease,
    opacity 0.35s ease;
  filter: brightness(0.75);
  border: 2px solid transparent;
}

.testimonial-thumb:hover {
  filter: brightness(0.91);
  border: 2px solid var(--color-white);
}

.testimonial-thumb.active {
  filter: brightness(1);
  border: 2px solid var(--color-white);
}

.testimonial-main-image.is-animating {
  animation: scaleout 0.6s ease forwards;
}

.testimonials-text-container.is-animating .testimonials-ratings,
.testimonials-text-container.is-animating .testimonial,
.testimonials-text-container.is-animating .testimonial-author {
  animation: moveInBottom 0.5s ease-out;
}

.section-faqs {
  position: relative;
  padding: var(--space-96) var(--space-40);
  overflow: hidden;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 2rem;
  padding: 2.4rem;
  background-color: #fff;
  cursor: pointer;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.faqs-left,
.faqs-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;

  border: none;
  background: none;
  padding: 0;

  font-family: var(--font-primary);
  font-size: var(--text-l);
  font-weight: 400;
  color: var(--color-black-1);

  text-align: left;
  cursor: pointer;

  line-height: var(--lh-loosexl);
}

.faq-icon {
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.35s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.35s ease;
}

.faq-answer {
  overflow: hidden;
  padding: 0;
  transition: padding 0.3s ease;
}

.faq-item.is-open .faq-answer {
  padding-top: 1.6rem;
}

.faq-item.is-open .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: var(--text-default);
  line-height: 1.6;
  color: var(--color-grey-light-2);
  font-weight: 400;
}

.faq-answer p {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease 0.15s,
    transform 0.3s ease 0.15s;
}

.faq-item.is-open .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

.section-contact-us {
  position: relative;
  padding: var(--space-96) var(--space-40);
  overflow: hidden;
}

.contact-us-description {
  font-family: var(--font-secondary);
  font-size: var(--text-default);
  line-height: var(--lh-normal);
  color: var(--color-grey-light-2);
}

.contact-us-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-us-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.contact-us-img-box {
  width: 100%;
  height: 29rem;
  border-radius: 2.4rem;
  overflow: hidden;
}

.contact-us-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.contact-us-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-us-links {
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 1.2rem;
}

.contact-us-link {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 16px;
  font-family: var(--font-secondary);
  color: var(--color-grey-light-1);
  align-items: center;
  background-color: var(--color-white-2);
  border-radius: 12px;
}

.contact-us-link a {
  text-decoration: none;
  color: var(--color-grey-light-1);
  transition: all 0.5s ease;
  white-space: nowrap;
}

.contact-us-link a:hover {
  text-decoration: underline;
}

.contact-icon {
  font-size: 36px;
}

.contact-us-right {
  padding: 24px;
  background-color: var(--color-white-2);
  border: 1px solid #0000000d;
  border-radius: 2.4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.4;
}

.form-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.form-input-container {
  padding: 20px;
  background-color: #0000000d;
  border-radius: 2rem;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}

.form-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-secondary);
  font-size: var(--text-default);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.form-input-container:focus-within {
  border: 1px solid var(--color-black-1);
}

.form-textarea {
  height: 10rem;
  resize: none;
  overflow-y: auto;
}

.form-submit-btn {
  border-radius: 200rem;
  padding: 1.6rem 2.4rem;
  font-family: var(--font-secondary);
  font-size: var(--text-default);
  background-image: linear-gradient(to right,
      var(--color-green) 50%,
      var(--color-white) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all 0.9s ease;
  border: 1px solid var(--color-black-1);
  color: var(--color-black-1);
  opacity: 0.5;
  cursor: default;
}

.form-submit-btn.is-ready {
  cursor: pointer;
  opacity: 1;
}

.form-submit-btn.is-ready:hover {
  color: var(--color-white);
  background-position: left bottom;
}

.form-success-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.4rem;
  height: 100%;
  padding: 4rem 2rem;
  background-color: transparent;
  animation: moveInBottom 0.5s ease-out;
}

.success-icon-container {
  width: 8rem;
  height: 8rem;
  background-color: var(--color-grey-light-1); /* bright green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px var(--color-grey-light-1);
}

.success-icon {
  font-size: 5rem;
  color: var(--color-white);
}

.success-heading {
  font-family: var(--font-primary);
  font-size: 3.2rem;
  color: var(--color-black-1);
}

.success-message {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  color: var(--color-grey-light-2);
  line-height: 1.5;
}

.section-cta {
  position: relative;
  padding: 200px 0;
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 100%;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  -webkit-mask: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.36) 52%,
      rgba(0, 0, 0, 0.57) 62%,
      rgba(0, 0, 0, 0.835) 75.6176%,
      rgb(0, 0, 0) 85.9657%);

  mask: linear-gradient(0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.36) 52%,
      rgba(0, 0, 0, 0.57) 62%,
      rgba(0, 0, 0, 0.835) 75.6176%,
      rgb(0, 0, 0) 85.9657%);
}

.cta-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content-container {
  position: relative;
  z-index: 3;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}

.cta-text {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.cta-heading {
  font-family: var(--font-primary);
  font-size: 5.6rem;
  color: var(--color-white);
  line-height: 1.2;
  font-weight: 400;
  text-transform: capitalize;
}

.cta-description {
  font-family: var(--font-secondary);
  color: var(--color-white-2);
  font-size: var(--text-default);
  font-weight: 400;
  line-height: 1.7;
}

.btn-container {
  max-width: 520px;
}

.section-footer {
  position: relative;
  padding: 5.6rem 4rem;
  background-color: rgb(0, 0, 0);
}

.footer-separator {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.footer-top,
.footer-bottom {
  padding: 2rem;
  max-width: 120rem;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.footer-logo {
  height: 3rem;
  width: 15rem;
}

.footer-logo img {
  width: 100%;
  height: 100%;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  align-items: center;
  flex: 1;
  gap: 4rem;
  font-family: var(--font-secondary);
  font-size: var(--text-default);
  font-weight: 400;
  color: #7d7d7d;
}

.footer-link {
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: var(--text-default);
  font-weight: 400;
  color: #7d7d7d;
}

.footer-links-terms {
  display: flex;

  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}

.socials {
  display: flex;
  padding-left: 3.5rem;
  justify-content: flex-start;
  align-items: center;
  gap: 2.4rem;
}

.social-link {
  font-size: 3rem;
  text-decoration: none;
  color: var(--color-grey-light-3);
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleout {
  0% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

:root {
  --sky: #38bdf8;
  --sky-glow: rgba(56, 189, 248, 0.5);
  --sky-dim: rgba(56, 189, 248, 0.15);
}

/* =========================================================================
   NAVIGATION OVERLAY & NAV PILL
   ========================================================================= */

.nav-pill {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Pushes the menu icon to the right side */
  width: 80%;
  max-width: 49.2rem; /* Matches Framer's 492px exactly */
  min-height: 6.4rem; /* Matches Framer's 64px */
  padding: 1.2rem 2.4rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 60px;
  box-shadow: 
    rgba(0, 0, 0, 0.18) 0px 0.5px 0.5px -1px, 
    rgba(0, 0, 0, 0.17) 0px 1.5px 1.5px -2px, 
    rgba(0, 0, 0, 0.15) 0px 4px 4px -3px, 
    rgba(0, 0, 0, 0.06) 0px 13px 13px -4px;
}

.nav-logo-link {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 200px;
  height: 40px;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu-btn {
  color: var(--color-white);
  font-size: 3.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.template-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s;
}

.template-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(5, 5, 5, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.overlay-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Slower, smoother ease */
}

.template-overlay.is-open .overlay-content {
  transform: translateY(0);
}

.overlay-nav {
  padding: 2rem 5%;
}

.overlay-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0;
}

.overlay-logo-link {
  display: block;
}

.overlay-logo-img {
  width: 173px;
  height: 32px;
  object-fit: contain;
}

.overlay-close-btn {
  color: var(--color-white);
  font-size: 4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.overlay-close-btn:hover {
  transform: rotate(90deg);
}

.overlay-main {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
  gap: 4rem; /* Flex handles spacing dynamically, no need for 50rem */
  padding: 2rem 2.4rem 4rem 2.4rem;
}

.overlay-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  flex: 1;
  max-width: 500px;
}

.overlay-image-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.overlay-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 2.4rem;
  width: 248px; /* Framer max-width spec */
}

.overlay-menu-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.overlay-navlinks {
  list-style: none;
  display: flex;
  flex-flow: column;
  place-content: flex-start;
  gap: 3.2rem; /* Framer 32px gap spec */
  align-items: flex-start;
  padding: 0;
  width: 100%;
}

.overlay-navlink {
  font-family: var(--font-primary);
  font-size: var(--text-2xl); /* Scaled down for neatness */
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.overlay-navlink:hover {
  opacity: 0.7;
}

.overlay-get-in-touch {
  text-align: left;
}

.overlay-get-in-touch h6 {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: var(--text-default);
  margin-bottom: 0.5rem;
  font-weight: 400;
  opacity: 0.7;
}

.overlay-email-wrapper {
  position: relative;
  display: inline-block;
}

.overlay-email {
  font-family: var(--font-primary);
  color: var(--color-white);
  font-size: var(--text-l);
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.overlay-email-line {
  height: 2px;
  background-color: var(--color-white);
  width: 100%;
  opacity: 0.4;
}

.overlay-socials {
  display: flex;
  gap: 1.5rem;
  align-self: flex-end;
}

.overlay-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  font-size: 2.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.overlay-social-link:hover {
  background-color: var(--color-white);
  color: var(--color-black-1);
}

.overlay-bottom-mobile {
  display: none;
}

/* Overlay Desktop Additions for Mobile */
@media (max-width: 768px) {
  .overlay-main {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .overlay-left {
    display: none; 
  }
  
  .overlay-right {
    padding-left: 0;
    width: 100%; /* Fixes structural centering over desktop bounds */
    align-items: center; 
  }
  
  .overlay-menu-wrapper {
    align-items: center;
  }
  
  .overlay-navlinks {
    align-items: center;
    place-content: center;
    text-align: center;
    width: 100%;
    gap: 4rem;
  }

  .overlay-navlink {
    font-size: 3.8rem; /* Matches the massive, bold look */
    font-weight: 700;
  }
  
  .hidden-mobile {
    display: none !important;
  }
  
  .overlay-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 15vh; /* Pushes the menu down to center robustly across all browsers */
  }

  .overlay-bottom-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem; /* Tightens the social icons so they sit a little higher */
    padding-bottom: 4rem;
    margin-top: 4rem; /* Moves this element closely after the navlinks */
  }
  
  .overlay-get-in-touch {
    text-align: center;
  }
  
  .overlay-socials {
    align-self: center;
    gap: 2.4rem; /* Match the slightly airy gap between social rings */
  }
}

/* =========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   These rules override the styles above when the screen is smaller.
   ========================================================================= */

/* --- Laptops & Large Tablets (Max width: 1200px) --- */
@media (max-width: 1200px) {

  /* Scale down base REM size. 1rem = 9px (down from 10px) */
  html {
    font-size: 56.25%;
  }

  /* Let the travel grid become a single column */
  .u-minmax-536 {
    grid-template-columns: 1fr;
  }

  /* Testimonial container height should adapt when stacked */
  .testimonials-container {
    height: auto;
    min-height: 52rem;
  }
}

/* --- Tablets (Max width: 992px) --- */
@media (max-width: 992px) {

  /* Scale down base REM size. 1rem = 8px */
  html {
    font-size: 50%;
  }

  .nav-logo-link {
    width: 280px;
    height: 40px;
  }


  /* All 2-column grids should stack into 1 vertically */
  .u-grid-template-columns-2 {
    grid-template-columns: 1fr;
  }

  /* Reduce massive paddings on all major sections */
  .section-about,
  .section-travel-with-us,
  .section-testimonials,
  .section-faqs,
  .section-contact-us {
    padding: var(--space-64) var(--space-24);
  }

  /* Footer stack vertically */
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: var(--space-32);
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    /* Let links wrap if there's no space */
    justify-content: center;
    gap: var(--space-24);
  }

  /* Give the travel images a fixed height now that they are in a vertical row */
  .travel-image-panel {
    height: 40rem;
  }
}

/* --- Mobile Devices - Landscape (Max width: 768px) --- */
@media (max-width: 768px) {

  /* Make the contact info links stack vertically */
  .contact-us-links {
    flex-direction: column;
  }

  .nav-logo-link {
    width: 200px;
    height: 24px;
  }

  /* Typography size reduction to prevent horizontal scroll */
  .heading-primary {
    font-size: var(--text-7xl);
  }

  .heading-secondary {
    font-size: var(--text-2xl);
  }

  .cta-heading {
    font-size: var(--text-4xl);
  }

  /* Override helper utility gaps for mobile */
  .u-grid-gap-64 {
    gap: var(--space-40);
  }

  .u-grid-gap-48 {
    gap: var(--space-32);
  }

  .section-cta {
    padding: var(--space-80) var(--space-24);
  }

  /* Center align testimonials navigation and socials */
  .testimonials-nav {
    justify-content: center;
    padding-top: 2rem;
  }

  .socials {
    padding-left: 0;
    justify-content: center;
  }

  .footer-links-terms {
    flex-direction: column;
  }
}

/* --- Small Mobile Phones (Max width: 576px) --- */
@media (max-width: 576px) {

  /* Further reduce main header font */
  .heading-primary {
    font-size: var(--text-6xl);
  }

  /* Stack section titles (the icon and the text) */
  .section-title {
    flex-direction: column;
    text-align: center;
  }

  /* Reduce edge padding */
  .header {
    padding: var(--space-64) var(--space-16);
  }

  .travel-image-panel {
    height: 30rem;
  }

  /* Center align the travel grid features on narrow phones */
  .travel-menu-item {
    flex-direction: column;
    text-align: center;
  }
}