@font-face {
  font-family: "Saldo";
  src: url("./fonts/saldo-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Amsterdam";
  src: url("./fonts/Amsterdam.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

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

body {
  background: #f7f6e4;
  color: #fff;
  font-family: "Satoshi", sans-serif;
  overflow-x: hidden;
}

.field-error {
  display: block;
  font-size: 12px;
  color: #ff4d4f;
  margin-top: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  background: #f7f6e4;
  border-bottom: 1px solid rgba(1, 78, 109, 0.15);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 43;
}

.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.site-header.is-open::after {
  opacity: 1;
  pointer-events: auto;
}

.site-header__inner {
  position: relative;
  width: 96%;
  max-width: 96%;
  margin: 0 auto;
  min-height: 86px;
  display: grid;
  grid-template-columns: 10% 60% 30%;
  align-items: center;
  gap: 0;
}

.site-header__logo img {
  display: block;
  height: auto;
}

.site-header__logo--left img {
  width: 150px;
  padding: 10px 0 ;
}

.site-header__logo--left {
  justify-self: start;
}

.site-header__logo--right img {
  width: 200px;
}

.site-header__logo--right {
  justify-self: end;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.site-header__nav a {
  font-family: "Saldo", serif;
  font-size: 18px;
  color: #014e6d;
  text-decoration: none;
  line-height: 1;
}

.site-header__toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.site-header__toggle-line {
  display: block;
  width: 28px;
  height: 2px;
  background: #014e6d;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.site-header__toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

body.menu-open {
  overflow: hidden;
}

.scroll-target {
  height: 0;
}

.hero-invitation,
.hero-intro,
.expression,
.connectivity,
.video-gallery,
.legacy,
#home,
#overview,
#amenities,
#plan,
#location,
#gallery {
  scroll-margin-top: 96px;
}

.hero-invitation {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
  min-height: 700px;
  background-image: url("./desktop_images/Invitation.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-invitation__content {
  position: absolute;
  left: 50.6%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: min(90%, 520px);
}

.hero-invitation__kicker {
  font-family: "Saldo", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2em;
}

.hero-invitation__title {
  font-family: "Amsterdam", cursive;
  font-weight: 400;
  font-size: 65px;
  line-height: 95px;
}

.hero-invitation__title span {
  display: block;
}

.hero-invitation__scroll-cue {
  margin-top: 1em;
  display: inline-block;
  font-size: 100px;
  text-decoration: none;
  color: #fff;
  animation: heroArrowFloat 2.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes heroArrowFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translateY(12px) scale(1.03);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    width: 92%;
    max-width: 92%;
    min-height: 70px;
    grid-template-columns: 40% 50% 10%;
    gap: 0;
  }

  .site-header__logo--left img {
    width: 100%;
    max-width: 168px;
  }

  .site-header__logo--right img {
    width: 100%;
    max-width: 130px;
  }

  .site-header__logo--right {
    justify-self: center;
  }

  .site-header__toggle {
    display: inline-flex;
    justify-self: end;
    z-index: 45;
  }

  .site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 78%;
    height:100vh;
    max-width: 340px;
    background: #f7f6e4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    
    z-index: 44;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.45s ease;
  }

  .site-header__nav a {
    width: auto;
    padding: 0;
    font-size: 20px;
    color: #014e6d;
    font-family: 'Saldo';
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .site-header.is-open .site-header__nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.is-open .site-header__toggle-line {
    background: #014e6d;
  }

  .site-header.is-open .site-header__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-open .site-header__toggle-line:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .site-header__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-invitation {
    max-width: 600px;
    width: 100%;
    aspect-ratio: 6 / 11;
    min-height: 100dvh;
    background-image: url("./mobile_images/Invitation.webp");
    background-position: center;
  }
  .hero-invitation__kicker{
    font-size: 24px;
  }
  .hero-invitation__title {
  font-family: "Amsterdam", cursive;
  font-weight: 400;
  font-size: 50px;
  line-height: 70px;
}

  .hero-invitation__content {
    left: 50%;
    top: 48%;
    width: min(95%, 470px);
  }

  .hero-invitation__scroll-cue {
    margin-top: 2em;
    font-size: 70px;
  }
}

@media (max-width: 430px) {
  .hero-invitation__content {
    top: 47%;
    margin: 0 auto;
  }
}

.hero-intro {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 1;
 
  background-image: url("./desktop_images/aveline-sec-desk.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-intro__content {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #014e6d;
  width: min(94%, 620px);
}

.hero-intro__kicker {
  font-family: "Saldo", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-intro__icon {
  width: 70px;
  height: 75px;
  display: block;
  margin: 0 auto 20px;
}

.hero-intro__brand {
  font-family: "Saldo", serif;
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-intro__tagline {
  font-family: "Saldo", serif;
  font-size: 12px;
  letter-spacing: 2.4px;
  line-height: 1;
}

.hero-intro__cta {
  position:absolute;
  bottom: 10%;
  transform: translateX(-50%);
  left: 50%;
  padding: 11px 24px;
  
  color: #014e6d;
  text-decoration: none;
  font-family: 'Satoshi',sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  background: #f7f6e4;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hero-intro__cta:hover {
  background: #014e6d;
  color: #f7f6e4;
}

@media (max-width: 767px) {
  .hero-intro {
    max-width: 600px;
    aspect-ratio: 6 / 11;
    
    background-image: url("./mobile_images/aveline-sec-mob.webp");
    background-position: center;
  }

  .hero-intro__content {
    top: 164px;
    width: min(92%, 430px);
  }

  .hero-intro__kicker {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .hero-intro__icon {
    width: 86px;
    height: 88px;
    margin-bottom: 20px;
  }

  .hero-intro__brand {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .hero-intro__tagline {
    font-size: 13px;
    letter-spacing: 3px;
  }

  .hero-intro__cta {
    margin-top: 24px;
    padding: 10px 20px;
    font-size: 13px;
    bottom : 30% !important;
  }
}

.expression {
  width: 100%;
  background-color: #014e6d;
  color: #f7f6e4;
}

.expression__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 72px 56px 68px;
  display: grid;
  grid-template-columns: 1.6fr 5fr;
  gap: 24px;
  align-items: center;
}

.expression__heading {
  font-family: "Saldo", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  color: #f7f6e4;
}

.expression__heading span {
  display: block;
}

.expression__heading-wrap,
.expression__item {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  filter: blur(5px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.expression.in-view .expression__heading-wrap,
.expression.in-view .expression__item {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.expression.in-view .expression__heading-wrap {
  transition-delay: 0.1s;
}

.expression.in-view .expression__item:nth-child(1) { transition-delay: 0.2s; }
.expression.in-view .expression__item:nth-child(2) { transition-delay: 0.3s; }
.expression.in-view .expression__item:nth-child(3) { transition-delay: 0.4s; }
.expression.in-view .expression__item:nth-child(4) { transition-delay: 0.5s; }
.expression.in-view .expression__item:nth-child(5) { transition-delay: 0.6s; }

.expression__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(130px, 1fr));
  gap: 20px;
}

.expression__item {
  text-align: center;
}

.expression__item img {
  width: 86px;
  height: 86px;
  display: block;
  margin: 0 auto 14px;
}

.expression__item p {
  font-family: "Satoshi", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: #f7f6e4;
}

@media (max-width: 768px) {
  .expression__inner {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 70px 30px 72px;
  }

  .expression__heading-wrap {
    text-align: center;
  }

  .expression__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: 42px;
    column-gap: 14px;
  }

  .expression__item {
    grid-column: span 2;
  }

  .expression__item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .expression__item:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 767px) {
  .expression__inner {
    max-width: 600px;
    padding: 72px 22px 74px;
    gap: 46px;
  }

  .expression__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    row-gap: 44px;
    column-gap: 8px;
  }

  .expression__item img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
}

.fourth-visual {
  width: 100%;
}

.fourth-visual__video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  /*background: #000;*/
}

.fourth-visual__video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%; 
}

.video-thumbnail img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 20px;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #fff;
} 
main > section {
  opacity: 0;
  transform: translateY(30px) scale(0.992);
  filter: blur(3px);
  transition: opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

main > section.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

main > section.hero-invitation {
  opacity: 1;
  transform: none;
}

.city-next {
  width: 100%;
  background: #f7f6e4;
  padding: 72px 24px;
}

.city-next__title {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  font-size: 0;
  line-height: 1.2;
}

.city-next__main {
  font-family: "Saldo", serif;
  font-size: 35px;
  color: #014e6d;
  vertical-align: middle;
}

.city-next__accent {
  font-family: "Amsterdam", cursive;
  font-size: 35px;
  color: #cb4f27;
  margin-left: 12px;
  vertical-align: middle;
}

@media (max-width: 767px) {
  .city-next {
    padding: 120px 18px;
  }

  .city-next__title {
    line-height: 1.3;
  }

  .city-next__main,
  .city-next__accent {
    display: block;
    font-size: 35px;
    margin-left: 0;
    line-height: 50p;
  }
}

.yelahanka {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 700px;
  background-image: url("./desktop_images/Yelahanka.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.yelahanka__inner {
  position: absolute;
  inset: 0;
}

.yelahanka__title {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 820px);
  text-align: center;
  font-family: "Saldo", serif;
  font-size: 30px;
  font-weight: 400;
  color: #f7f6e4;
  line-height: 1.15;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.yelahanka__copy {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 400px);
  text-align: center;
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.32;
  color: #f7f6e4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

@media (max-width: 767px) {
  .yelahanka {
    max-width: 600px;
    aspect-ratio: 6 / 11;
    background-image: url("./mobile_images/Yelahanka.webp");
    background-position: center;
    background-size: cover;
  }

  .yelahanka__title {
    top: 50%;
    width: min(90%, 530px);
    font-size: 24px;
    line-height: 1.1;
  }

  .yelahanka__copy {
    bottom: 20%;
    width: min(88%, 280px);
    font-size: 12px;
    line-height: 1.35;
  }
}

.bms {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.bms-slider,
.bms-slider .slick-list,
.bms-slider .slick-track {
  height: 100%;
}

.bms-slide {
  position: relative;
  height: 100%;
}

.bms-slide picture,
.bms-slide picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bms::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
}

.bms-slide__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  color: #f7f6e4;
  text-align: center;
}

.bms-slide__script {
  position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Amsterdam", cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 70px;
}

.bms-slide__title {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 620px);
  font-family: "Saldo", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.bms-slide__copy {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 450px);
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.4;
}

.bms .slick-dots {
  position: absolute;
  right: 2.4%;
  bottom: 3.5%;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  width: auto;
}

.bms .slick-dots li {
  margin: 0;
  width: 13px;
  height: 13px;
}

.bms .slick-dots li button {
  width: 13px;
  height: 13px;
  padding: 0;
  background: url("./icons/pagination.svg") center/contain no-repeat;
  cursor: pointer;
}

.bms .slick-dots li button::before {
  content: "";
}

.bms .slick-dots li.slick-active button {
  background-image: url("./icons/pagination-active.svg");
}

@media (max-width: 767px) {
  .bms {
    max-width: 600px;
    aspect-ratio: 6 / 11;
    min-height: 100dvh;
  }

  .bms-slide__script {
    top: 15%;
    font-size: 50px;
  }

  .bms-slide__title {
    bottom: 19%;
    width: min(92%, 520px);
    font-size: 24px;
  }

  .bms-slide__copy {
    bottom: 12%;
    width: min(84%, 420px);
    font-size: 12px;
  }

  .bms .slick-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 8%;
  }
}

.is-hidden {
  display: none !important;
}

.plan-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.plan-section__left {
  background: #f7f6e4;
  color: #014e6d;
}

.plan-section__left-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 130px 70px 96px;
}

.plan-section__heading {
  position: relative;
  font-weight: 400;
  margin-bottom: 38px;
}

.plan-section__heading-main {
  font-family: "Saldo", serif;
  font-size: 24px;
  line-height: 30px;
}

.plan-section__heading-accent {
  font-family: "Amsterdam", cursive;
  font-size: 24px;
  line-height: 35px;
  color: #cb4f27;
}

.plan-section__intro {
  width: 100%;
  max-width: 100%;
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 32px;
}

.plan-section__primary-tabs,
.plan-section__secondary-tabs {
  display: grid;
  gap: 0;
}

.plan-section__primary-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.plan-section__secondary-tabs {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.plan-tab {
  border: 2px solid #1f7ca1;
  background: transparent;
  color: #014e6d;
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1;
  min-height: 52px;
  cursor: pointer;
}

.plan-tab--secondary {
  min-height: 46px;
  font-size: 12px;
}

.plan-tab.is-active {
  background: #cb4f27;
  border-color: #cb4f27;
  color: #f7f6e4;
}

.plan-section__stats {
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: #014e6d;
}

.plan-section__right {
  background: #014e6d;
  color: #f7f6e4;
  padding: 90px 60px 56px;
}

.plan-section__image-wrap {
  display: flex;
  justify-content: center;
  width: 54%;
  max-width: 54%;
  margin: 0 auto 20px;
  background: #fff;
  padding: 14px;
}

.plan-section__image {
  display: block;
  width: 100%;
  height: auto;
}

.plan-section__note {
  width: 54%;
  max-width: 54%;
  margin: 0 auto;
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 768px) {
  .plan-section {
    grid-template-columns: 1fr;
  }

  .plan-section__left-inner {
    width: 72%;
    max-width: 72%;
    padding: 70px 26px 56px;
    text-align: center;
  }

  .plan-section__heading-main {
    font-size: 24px;
  }

  .plan-section__heading-accent {
    position: static;
    display: inline-block;
    margin-left: 8px;
    font-size: 24px;
    transform: translateY(-1px);
  }

  .plan-section__intro {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    font-size: 12px;
  }

  .plan-tab {
    min-height: 46px;
    font-size: 12px;
    border-width: 1px;
  }

  .plan-tab--secondary {
    min-height: 42px;
    font-size: 12px;
  }

  .plan-section__secondary-tabs {
    gap: 10px;
    margin-bottom: 20px;
  }

  .plan-section__stats {
    font-size: 12px;
    line-height: 1.45;
  }

  .plan-section__right {
    padding: 28px 14px 26px;
  }

  .plan-section__image-wrap {
    width: 70%;
    max-width: 70%;
    margin-bottom: 14px;
    padding: 14px;
  }

  .plan-section__note {
    width: 70%;
    max-width: 70%;
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 767px) {
  .plan-section__left-inner {
    width: 82%;
    max-width: 82%;
    padding: 58px 0 48px;
  }

  .plan-section__image-wrap {
    width: 88%;
    max-width: 88%;
    padding: 10px;
  }

  .plan-section__note {
    width: 88%;
    max-width: 88%;
    font-size: 12px;
  }
}

.connectivity {
  width: 100%;
  display: grid;
  grid-template-columns: 52% 48%;
}

.connectivity__map {
  background: #014e6d;
  position: relative;
}

.connectivity__map picture,
.connectivity__map img {
  display: block;
  width: 100%;
  height: 100%;
}

.connectivity__map img {
  object-fit: cover;
}

.connectivity__map-controls {
  position: absolute;
  right: 3%;
  bottom: 7.5%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.connectivity__map-controls button {
  width: 28px;
  height: 28px;
  border: 0;
  background: #ece8d9;
  color: #014e6d;
  font-size: 20px;
  line-height: 1;
}

.connectivity__content {
  background: #f7f6e4;
  color: #014e6d;
  padding: 7.5% 8.8% 7%;
  height:580px;
}

.connectivity__heading {
  margin-bottom: 5.8%;
  font-weight: 400;
  line-height: 1.1;
}

.connectivity__heading span {
  display: block;
  font-family: "Saldo", serif;
  font-size: 24px;
}

.connectivity__heading-accent {
  display: inline-block !important;
  font-family: "Amsterdam", cursive !important;
  color: #cb4f27;
  margin-left: 6px;
}

.connectivity__accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.connectivity-item {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.connectivity-item__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: #014e6d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}

.connectivity-item__left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
}

.connectivity-item__left img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.connectivity-item__icon {
  font-family: "Satoshi", sans-serif;
  font-size: 30px;
  line-height: 1;
  margin-left: 10px;
}

.connectivity-item__panel {
  display: none;
  margin-top: 9px;
  padding-left: 39px;
}

.connectivity-item.is-open .connectivity-item__panel {
  display: block;
}

.connectivity-item__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4%;
}

.connectivity-item__cols ul {
  list-style: none;
}

.connectivity-item__cols li {
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #014e6d;
  list-style: disc;
}

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

  .connectivity__map {
    order: 1;
    aspect-ratio: 375 / 279;
  }

  .connectivity__content {
    order: 2;
    padding: 8% 5.8% 7.5%;
    height:auto;
  }

  .connectivity__heading {
    text-align: center;
    margin-bottom: 7%;
  }

  .connectivity__heading-accent {
    margin-left: 4px;
  }

  .connectivity-item__panel {
    padding-left: 30px;
  }

  .connectivity-item__cols {
    grid-template-columns: 1fr 1fr;
    gap: 7%;
  }

  .connectivity__map-controls {
    right: 15%;
    bottom: 7%;
  }
}

.video-gallery {
  width: 100%;
  background: #cb4f27;
  color: #f7f6e4;
  padding: 5.8% 0 3.8%;
  overflow: hidden;
}

.video-gallery__inner {
  width: 92%;
  max-width: 92%;
  margin: 0 auto;
}

.video-gallery__heading {
  font-family: "Amsterdam", cursive;
  font-size: 45px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2em;
}

.video-gallery__slider-wrap {
  position: relative;
  overflow: hidden;
}

.video-gallery__slider {
  width: 100%;
}

.video-gallery__slider .slick-list {
  overflow: hidden;
}

.video-card {
  padding: 0 0.1%;
}

.video-card a {
  display: block;
  text-decoration: none;
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 34px solid #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.video-card__title {
  margin-top: 16px;
  font-family: "Satoshi", sans-serif;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  color: #f7f6e4;
}

.video-gallery__slider .slick-slide {
  transform: scale(0.78);
  transform-origin: center center;
  opacity: 0.75;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.video-gallery__slider .slick-center {
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

.video-gallery__arrow {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.video-gallery__arrow img {
  width: 34px;
  height: 34px;
  display: block;
}

.video-gallery__arrow--prev {
  left: 0%;
}

.video-gallery__arrow--next {
  right: 0%;
}

.video-gallery .slick-dots {
  position: static;
  margin-top: 2.8%;
}

.video-gallery .slick-dots li {
  width: 13px;
  height: 13px;
  margin: 0 3px;
}

.video-gallery .slick-dots li button {
  width: 13px;
  height: 13px;
  padding: 0;
  background: url("./icons/pagination.svg") center/contain no-repeat;
}

.video-gallery .slick-dots li button::before {
  content: "";
}

.video-gallery .slick-dots li.slick-active button {
  background-image: url("./icons/pagination-active.svg");
}

@media (max-width: 768px) {
  .video-gallery {
    padding: 25% 0 20%;
  }

  .video-gallery__inner {
    width: 90%;
    max-width: 90%;
  }

  .video-gallery__heading {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 2.5em;
  }

  .video-card {
    padding: 0;
  }

  .video-card__title {
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.5;
  }

  .video-gallery__slider .slick-slide,
  .video-gallery__slider .slick-center {
    transform: none;
    opacity: 1;
  }

  .video-gallery__arrow {
    display: none !important;
  }

  .video-gallery .slick-dots {
    margin-top: 20%;
  }

  .video-card__play {
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 26px;
  }
}

.legacy {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 1;
  min-height: 700px;
  background-image: url("./desktop_images/Legacy_of_Trust.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.legacy__content {
  position: absolute;
  top: 6.2%;
  left: 50%;
  transform: translateX(-50%);
  width: 64%;
  max-width: 64%;
  text-align: center;
  color: #014e6d;
}

.legacy__heading {
  margin-bottom: 2.6%;
  font-weight: 400;
}

.legacy__heading-main {
  font-family: "Saldo", serif;
  font-size: 24px;
  line-height: 1.2;
}

.legacy__heading-accent {
  font-family: "Amsterdam", cursive;
  font-size: 24px;
  line-height: 1;
  color: #cb4f27;
  margin-left: 8px;
}

.legacy__copy {
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.legacy__copy + .legacy__copy {
  margin-top: 2.4%;
}

@media (max-width: 767px) {
  .legacy {
    aspect-ratio: 375 / 667;
    min-height: 100dvh;
    background-image: url("./mobile_images/Legacy_of_trust.webp");
    background-position: center;
  }

  .legacy__content {
    top: 9.5%;
    width: 84%;
    max-width: 84%;
  }

  .legacy__heading {
    margin-bottom: 8%;
    line-height: 1.2;
  }

  .legacy__heading-main,
  .legacy__heading-accent {
    font-size: 24px;
  }

  .legacy__copy {
    font-size: 12px;
    line-height: 1.45;
  }

  .legacy__copy + .legacy__copy {
    margin-top: 7%;
  }
}

.disclaimer {
  width: 100%;
  background: #f7f6e4;
  color: #014e6d;
  padding: 48px 0 54px;
}

.disclaimer__inner {
  width: 88%;
  max-width: 88%;
  margin: 0 auto;
}

.disclaimer__title {
  text-align: center;
  font-family: "Saldo", serif;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.disclaimer__text {
  font-family: "Satoshi", sans-serif;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 767px) {
  .disclaimer {
    padding: 34px 0 40px;
  }

  .disclaimer__inner {
    width: 90%;
    max-width: 90%;
  }

  .disclaimer__title {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
.submit-btn.loading {
        opacity: 0.7;
        pointer-events: none;
      }

      .submit-btn.loading::after {
        content: "";
        width: 16px;
        height: 16px;
        margin-left: 10px;
        border: 2px solid #fff;
        border-top: 2px solid transparent;
        border-radius: 50%;
        display: inline-block;
        animation: spin 0.6s linear infinite;
        vertical-align: middle;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      .error-border {
        border-bottom: 1px solid red !important;
      }

.error-border {
    border-bottom: 1px solid red !important;
  }
  .enquiry-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 20px;
}

.enquiry-form-overlay.active {
  display: flex;
}

/* ============================================
   POPUP CARD
============================================ */
.enquiry-form {
  background: #000000;
  width: 100%;
  max-width: 330px;
  padding: 32px 32px 10px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.35s ease;
  border: 1px solid #eaeaea;
}

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

/* CLOSE ICON */
.enquiryFormClose {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  opacity: 0.75;
  transition: 0.25s;
}

.enquiryFormClose:hover {
  opacity: 1;
}

/* ============================================
   TITLE
============================================ */
.enquiry-form h3 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  color: #fff;
  letter-spacing: 0.2px;
}

/* ============================================
   FLOATING INPUT BOXES
============================================ */
.ip-box {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
#txt_country {
  width: 25%;
}

.ip-box input,
.ip-box select {
  width: 100%;
  padding: 14px 14px;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease;
}
.ip-box input::placeholder,
.ip-box select::placeholder {
  color: #fff;
}
.ip-box input:focus,
.ip-box select:focus {
  background: transparent;
  outline: none;
}

/* FLOATING LABELS */
.ip-box label {
  position: absolute;
  left: 14px;
  top: 13px;
  color: #6a7890;
  font-size: 15px;
  pointer-events: none;
  transition: 0.25s ease;
}

.ip-box input:not(:placeholder-shown) + label,
.ip-box input:focus + label,
.ip-box select:focus + label {
  top: -10px;
  left: 10px;
  background: transparent;
  padding: 0 6px;
  font-size: 13px;
  color: #0a63aa;
}
.iti {
  width: 100%;
}

/* ============================================
   VALIDATION MESSAGES
============================================ */
#valid-msg,
#error-msg {
  font-size: 13px;
  margin-top: -12px;
  margin-bottom: 10px;
  display: block;
}

#valid-msg {
  color: #0a8235;
}

#error-msg {
  color: #d30000;
}

/* ============================================
   CHECKBOX SECTION
============================================ */
.homeally_dwnld_checklist {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin: 18px 0 10px;
  align-items: flex-start;
}

.homeally_dwnld_checklist input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #0a63aa;
}

.homeally_dwnld_checklist span {
  font-size: 10px;
  color: #fff;
  line-height: 1.4;
  margin-top: 0px;
}

/* ============================================
   SUBMIT BUTTON
============================================ */
.submit-btn {
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  border-radius: 0px;
  border: 1px solid #fff;
  cursor: pointer;
  background: transparent;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: 0.3s ease;
  margin-top: 12px;
}

.submit-btn:hover {
  background-color: #fff;
  color: #000;
}

.hide {
  display: none;
}
.fixed-btn.services {
  position: fixed;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 9999;
}
.services a {
  background: #f7f6e4;
  margin-top: 2em;
  padding: 10px;
  color: #014e6d;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "Satoshi", sans-serif;
}
.services a:hover{
   background: #014e6d;
  color: #f7f6e4;
}

.get-direction{
  background: #f7f6e4;
  margin-top: 2em;
  margin-right:3em;
  padding: 10px;
  color: #014e6d;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: "Satoshi", sans-serif;
  display: flex;
    align-items: center;
    gap: 10px;
    border-radius:50px;
}

#formHeading span{
  font-size: 10px;
  line-height: 16px !important;
  font-weight: 400;
}
.get-direction .arrow {
    width: 30px;
    height: 30px;
    background: #446e34;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.25s ease;
}

.formobile{
  display: none;
}
@media(max-width: 768px){
  .formobile{
    display: block;
  }
  #formHeading span{
    font-size: 11px;
  }
}

.scroll_btn {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 10;
}

.scroll_btn img {
  width: 50px;
  animation: bounce 1.5s infinite;
}

/* smooth bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* make parent relative */
section {
  position: relative;
}