/* ===== Fonts ===== */
@font-face {
  font-family: "Bodoni 72 Smallcaps";
  src: url("../fonts/Bodoni 72 Smallcaps Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bangla MN";
  src: url("../fonts/Bangla MN.ttc") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== Variables ===== */
:root {
  --primary: #aa8a4b;
  --white: #ffffff;
  --dark: #1a1a1a;
  --header-h: 84px;
  --header-h-mobile: 64px;
  --container: 1200px;
  --transition: 0.3s ease;
  --sticky-form-h: 88px;

  --font-heading: "Bodoni 72 Smallcaps", "Bodoni 72", Georgia, serif;
  --font-display: "Bodoni 72 Smallcaps", "Bodoni 72", Georgia, serif;
  --font-body: "Bangla MN", Arial, sans-serif;
  --font-nav: "Bangla MN", Arial, sans-serif;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: var(--header-h);
}

/* ===== Scroll reveal animations ===== */
.reveal {
  opacity: 0;
  transition: opacity 0.9s ease-in, transform 0.9s ease-in;
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(70px);
}

.reveal-right {
  transform: translate(70px, 70px);
}

.reveal-left {
  transform: translate(-70px, 70px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal-delay {
  transition-delay: 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

@media (min-width: 1025px) {
  body {
    padding-bottom: var(--sticky-form-h);
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-left .logo {
  height: 68px;
  width: auto;
}

.header-right .supporting-logo {
  height: 58px;
  width: auto;
}

.header-logo-sep {
  display: none;
  border: none;
  margin: 0;
  padding: 0;
}

/* Center nav */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  gap: 26px;
}

.nav-list a {
  position: relative;
  font-family: var(--font-nav);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: var(--dark);
  padding: 5px 0;
  transition: color var(--transition);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a.is-active {
  color: var(--primary);
}

.nav-list a.is-active::after {
  width: 100%;
}

/* Scrolled state -> white background */
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .nav-list a {
  color: var(--dark);
}

.site-header.scrolled .nav-list a:hover {
  color: var(--primary);
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}

.site-header.scrolled .hamburger span {
  background: var(--dark);
}

body.welcome-active {
  overflow: hidden;
}

/* ===== Welcome screen ===== */
.welcome-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  /* background: linear-gradient(180deg,#3a2818 0%,#5c4228 28%,#8a6640 58%,#b8956a 100%); */
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.welcome-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-screen__logo {
  width: min(320px, 72vw);
  height: auto;
  animation: welcome-logo-in 0.8s ease both;
}

@keyframes welcome-logo-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Banner ===== */
.banner {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: var(--dark);
}

.banner-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.banner-video,
.banner-youtube {
  position: absolute;
  border: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.banner-video {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-youtube {
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%) scale(1.12);
  transform-origin: center center;
}

.banner-video.is-ready,
.banner-youtube.is-ready {
  opacity: 1;
}

.banner-chrome {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  pointer-events: none;
  background: var(--dark);
}

.banner-chrome--top {
  top: 0;
  height: 8%;
}

.banner-chrome--bottom {
  bottom: 0;
  height: 8%;
}

.banner-embed--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .banner-embed--desktop {
    display: none;
  }

  .banner-embed--mobile {
    display: block;
    height: 100vh;
    aspect-ratio: 16 / 9;
  }

  .banner-embed--mobile .banner-chrome--top {
    height: 10%;
  }

  .banner-embed--mobile .banner-chrome--bottom {
    height: 10%;
  }
}

/* ===== Overview ===== */
.overview {
  position: relative;
  overflow: hidden;
}

.overview-inner {
  display: flex;
  min-height: min(72vh, 640px);
}

.overview-content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 56px;
  text-align: center;
  /* background: var(--primary); */
  background: #fff;
}

.overview-logo {
  width: min(380px, 72%);
  height: auto;
  margin-bottom: 32px;
}

.overview-tagline {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.overview-divider {
  width: 130px;
  height: 1px;
  margin: 0 0 28px;
  border: none;
  background: rgba(255, 255, 255, 0.55);
}

.overview-text {
  margin: 0;
  max-width: 440px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  color: #000;
  /* color: rgba(255, 255, 255, 0.92); */
}

.overview-media {
  flex: 0 0 50%;
  line-height: 0;
  position: relative;
}

.overview-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overview-thumb {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 12px;
  font-size: 8px;
  line-height: 1;
  color: var(--white);
  z-index: 5;
}

/* ===== Shared 7 watermark behind section headings ===== */
.heading-wrap {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.heading-bg-seven {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 72%);
  height: auto;
  opacity: 0.22;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.heading-bg-seven-contact {
  right: 500px;
  width: min(550px, 100%);
}

.heading-bg-seven-location {
  right: 0px;
  width: min(400px, 100%);
}

.heading-bg-seven-configuration {
  right: 1000px;
  width: min(450px, 100%);
}

.heading-wrap> :not(.heading-bg-seven) {
  position: relative;
  z-index: 1;
}

.contact .heading-bg-seven {
  opacity: 0.2;
}

.highlights .heading-wrap {
  max-width: var(--container);
  margin: 0 auto 30px;
  padding: 0 24px;
  text-align: center;
}

.location .heading-wrap {
  margin: 0px auto 44px;
  width: 90%;
}

.footer .heading-wrap {
  margin-bottom: 34px;
}

/* ===== Highlights slider ===== */
.highlights {
  padding: 30px 0;
  overflow: hidden;
  background: #fff7e9;
}

.highlights-title {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0;
}

.highlights-title:empty {
  margin-bottom: 0;
}

.highlights-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.highlights-track {
  display: flex;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.highlight-slide {
  flex: 0 0 56%;
  padding: 0 12px;
  box-sizing: border-box;
}

.highlight-img {
  line-height: 0;
  overflow: hidden;
  border-radius: 4px;
  transform: scale(0.86);
  opacity: 0.55;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.6s ease;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.highlight-lightbox {
  display: block;
  cursor: zoom-in;
  pointer-events: none;
}

.highlight-slide.is-active .highlight-lightbox {
  pointer-events: auto;
}

.highlight-lightbox img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Active slide enlarged + visible caption */
.highlight-slide.is-active .highlight-img {
  transform: scale(1);
  opacity: 1;
}

.highlight-caption {
  text-align: center;
  font-size: 17px;
  color: var(--dark);
  margin: 22px auto 0;
  max-width: 80%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.highlight-slide.is-active .highlight-caption {
  opacity: 1;
}

/* Nav buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: background var(--transition), color var(--transition);
}

.slider-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.slider-btn.prev {
  left: 18%;
}

.slider-btn.next {
  right: 18%;
}

/* Dots */
.highlights-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.highlights-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #d9cbb0;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
}

.highlights-dots button.is-active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ===== Configuration ===== */
.configuration {
  padding: 80px 0 90px;
  background: var(--white);
}

.configuration-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.configuration-head {
  text-align: center;
  margin-bottom: 48px;
}

.configuration-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.2;
}

.configuration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.config-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 36px 24px;
  border: 1px solid rgba(170, 138, 75, 0.35);
  background: linear-gradient(180deg, #fffdf8 0%, #fff7e9 100%);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.config-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(170, 138, 75, 0.18);
}

.config-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 400;
  line-height: 1;
  color: var(--primary);
}

.config-label {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--dark);
}

.config-price-btn {
  margin-top: 22px;
  padding: 12px 28px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.config-price-btn:hover {
  background: transparent;
  color: var(--primary);
}

/* ===== Amenities (coverflow slider) ===== */
.amenities {
  padding: 80px 0 90px;
  background: #faf8f4;
}

.amenities-head {
  max-width: 760px;
  margin: 0 auto 25px;
  padding: 0 24px;
  text-align: center;
}

.amenities-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.amenities-sub {
  font-size: 15px;
  color: #555;
  line-height: 1.1;
}

.amenities-slider {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 72px;
}

.amenities-viewport {
  overflow: hidden;
}

.amenities-track {
  position: relative;
  height: 330px;
  transform: translateZ(0);
}

.amenity-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.amenity-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 450px;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%) scale(0.88);
  transition:
    transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
    opacity 0.55s ease,
    width 0.55s cubic-bezier(0.25, 0.8, 0.25, 1),
    height 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}

.amenity-slide.is-prev,
.amenity-slide.is-next {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.amenity-slide.is-prev {
  transform: translate(calc(-50% - 290px), -50%) scale(0.9);
}

.amenity-slide.is-next {
  transform: translate(calc(-50% + 290px), -50%) scale(0.9);
}

.amenity-slide.is-active {
  width: 700px;
  height: 330px;
  opacity: 1;
  pointer-events: auto;
  z-index: 3;
  transform: translate(-50%, -50%) scale(1);
}

.amenity-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: 2;
  pointer-events: none;
}

.amenity-slide.is-prev .amenity-shade,
.amenity-slide.is-next .amenity-shade {
  opacity: 1;
}

.amenity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.18) 42%,
      rgba(0, 0, 0, 0) 68%);
  z-index: 3;
  pointer-events: none;
}

.amenity-lightbox {
  position: absolute;
  inset: 0;
  z-index: 10;
  cursor: zoom-in;
  text-decoration: none;
}

.amenity-slide .overview-thumb {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 11;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.amenity-slide.is-active .overview-thumb {
  opacity: 1;
  visibility: visible;
}

.amenity-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 22px 26px;
  text-align: center;
  color: var(--white);
  z-index: 4;
  pointer-events: none;
}

.amenity-caption h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.amenity-slide.is-active .amenity-caption h3 {
  opacity: 1;
  transform: translateY(0);
}

.amenity-caption p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease 0.08s, transform 0.45s ease 0.08s;
}

.amenity-slide.is-active .amenity-caption p {
  opacity: 0.92;
  transform: translateY(0);
}

.amenities-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, 0.35);
  background: transparent;
  color: var(--dark);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.amenities-nav:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.65);
}

.amenities-nav--prev {
  left: 12px;
}

.amenities-nav--next {
  right: 12px;
}

/* ===== Location ===== */
.location {
  padding: 80px 0 90px;
  background: #fff7e9;
}

.location-title {
  font-family: var(--font-heading);
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0;
}

.location-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Map column */
.location-map {
  flex: 1 1 55%;
}

.map-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.map-lightbox {
  position: absolute;
  inset: 0;
  display: block;
  cursor: zoom-in;
}

.map-image,
.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.map-embed {
  display: none;
}

/* When showing Google Map */
.map-media.show-embed .map-lightbox {
  display: none;
}

.map-media.show-embed .map-image {
  display: none;
}

.map-media.show-embed .map-embed {
  display: block;
}

.map-toggle {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 26px;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.map-toggle:hover {
  background: transparent;
  color: var(--primary);
}

/* Accordion column */
.location-accordion {
  flex: 1 1 45%;
}

.acc-item {
  border-bottom: 1px solid #e5ddcd;
}

.acc-item:first-child {
  border-top: 1px solid #e5ddcd;
}

.acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  transition: color var(--transition);
}

.acc-item.is-open .acc-header,
.acc-header:hover {
  color: var(--primary);
}

/* +/- icon */
.acc-icon {
  position: relative;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--transition);
}

.acc-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.acc-item.is-open .acc-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.acc-body ul {
  padding: 0 4px 18px;
}

.acc-body li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  font-size: 12px;
  color: #555;
}

.acc-body li span:last-child {
  color: var(--primary);
  font-weight: 500;
  white-space: nowrap;
}

/* ===== About Us ===== */
.about {
  position: relative;
  padding: 80px 0 90px;
  background-color: #fff7e9;
  height: 130vh;
  background-image: url("../images/about.jpg");
  /* background-image: linear-gradient(rgba(255, 247, 233, 0.88),rgba(255, 247, 233, 0.88)),url("../images/about.jpg"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-content {
  flex: 1 1 50%;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 50px;
  text-align: center;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 16px;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-para {
  text-align: center;
  margin: 0 auto;
  width: 60%;
  margin-bottom: 50px !important;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  margin-top: 10px;
  width: 70%;
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 34px);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  /* color: var(--primary); */
  margin-bottom: 10px;
}

.about-stat-label {
  display: block;
  font-family: var(--font-nav);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  /* color: var(--primary); */
}

.about-image {
  flex: 1 1 50%;
  line-height: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* ===== Contact / Express Your Interest ===== */
.contact {
  position: relative;
  padding: 90px 0;
  background: #fff7e9;
  color: var(--dark);
}

.contact-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1 1 45%;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.1;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 34px;
  color: var(--primary);
}

.contact-rera {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  max-width: 460px;
  margin-bottom: 0;
}

.contact-disclaimer {
  max-width: 460px;
  margin-bottom: 26px;
}

.contact-rera-text.is-collapsed {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.contact-rera-more {
  display: inline-block;
  margin-top: 6px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-decoration: underline;
}

.contact-rera-more:hover {
  color: var(--dark);
}

.contact-rera-more.is-hidden {
  display: none;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-links a {
  font-size: 14px;
  color: var(--dark);
  transition: color var(--transition);
}

.contact-links a:hover {
  color: var(--primary);
}

/* Form */
.contact-form-wrap {
  flex: 1 1 55%;
  min-height: 320px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.field {
  position: relative;
}

.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 10px 2px;
  outline: none;
  transition: border-color var(--transition);
}

.field input::placeholder {
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 1px;
}

.field input:focus {
  border-bottom-color: var(--primary);
}

.field-intl-mobile {
  position: relative;
}

/* ===== International phone field ===== */
.intl-phone {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  transition: border-color var(--transition);
}

.intl-phone:focus-within {
  border-bottom-color: var(--primary);
}

.intl-phone-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 10px 8px 10px 2px;
  background: transparent;
  border: none;
  color: rgba(26, 26, 26, 0.85);
  font-family: var(--font-body);
  font-size: 15px;
  cursor: pointer;
  outline: none;
}

.intl-phone-flag.fi {
  width: 1.35em;
  line-height: 1em;
  flex-shrink: 0;
}

.intl-phone-code {
  white-space: nowrap;
}

.intl-phone-caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(26, 26, 26, 0.55);
  margin-left: 2px;
}

.intl-phone-input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  background: transparent;
  border: none;
  border-bottom: none;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 10px 2px;
  outline: none;
}

.intl-phone-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 1px;
}

.intl-phone-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 1100;
  width: min(320px, 90vw);
  max-height: 240px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid #ddd;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.intl-phone.is-open .intl-phone-dropdown {
  display: block;
}

.intl-phone--dropup .intl-phone-dropdown {
  top: auto;
  bottom: calc(100% + 4px);
}

.intl-phone-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.intl-phone-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 12px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 13px;
  color: #222;
  cursor: pointer;
  transition: background var(--transition);
}

.intl-phone-option:hover,
.intl-phone-option.is-selected {
  background: #f5f5f5;
}

.intl-phone-option-flag.fi {
  flex: 0 0 24px;
  width: 24px;
  line-height: 1em;
}

.intl-phone-option-name {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intl-phone-option-dial {
  flex: 0 0 auto;
  color: #666;
}

.intl-phone--sticky .intl-phone-toggle {
  padding: 6px 6px 6px 2px;
  font-size: 8px;
}

.intl-phone--sticky .intl-phone-input {
  font-size: 8px;
  padding: 6px 2px;
}

.intl-phone--sticky .intl-phone-flag.fi {
  width: 1.2em;
}

.sticky-form-bar .intl-phone {
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

.sticky-form-bar .intl-phone-toggle {
  color: rgba(255, 255, 255, 0.85);
}

.sticky-form-bar .intl-phone-caret {
  border-top-color: rgba(255, 255, 255, 0.7);
}

.sticky-form-bar .intl-phone-input {
  color: var(--white);
}

.sticky-form-bar .intl-phone-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  line-height: 1.5;
  color: #555;
  cursor: pointer;
}

.field-check input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--primary);
  cursor: pointer;
}

.contact-submit {
  margin-top: 6px;
  padding: 15px 24px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.contact-submit:hover {
  background: transparent;
  color: var(--primary);
}

.form-error {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #c0392b;
  min-height: 0;
}

.form-error:empty {
  display: none;
}

/* ===== Sticky footer form ===== */
.sticky-form-bar {
  position: fixed;
  left: 0;
  bottom: -1px;
  width: 100%;
  z-index: 950;
  background: #0c0c0c;
  border-top: 1px solid rgba(170, 138, 75, 0.35);
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition), opacity var(--transition);
}

.sticky-form-bar.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-form-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5px 24px;
}

.sticky-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.sticky-form-cta-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.sticky-form-cta {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  margin: 0;
}

.sticky-form-bar .call-trigger {
  display: inline-flex;
  color: #fff;
}

.sticky-form-bar .call-trigger:hover {
  color: var(--white);
  background: none;
}

.sticky-field {
  flex: 1 1 0;
  min-width: 120px;
  max-width: 200px;
}

.sticky-field-mobile {
  max-width: 220px;
}

.sticky-form-check {
  flex: 0 1 260px;
  font-size: 8px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  align-items: center;
}

.sticky-form-submit {
  flex: 0 0 auto;
  margin: 0;
  padding: 5px 28px;
  white-space: nowrap;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .sticky-form-bar {
    display: none;
  }
}

.sticky-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.7);
}

.sticky-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 8px;
  padding: 6px 2px;
  outline: none;
  transition: border-color var(--transition);
}

.sticky-field input:focus {
  border-bottom-color: var(--primary);
}

.sticky-field-mobile .intl-phone {
  z-index: 1;
}

/* ===== Enquiry popup ===== */
.mobile-float-bar {
  display: contents;
}

.call-trigger {
  display: none;
}

.enquiry-trigger {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  padding: 16px 11px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 4px 0 0 4px;
  font-family: var(--font-nav);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.15);
  transition: background var(--transition), color var(--transition);
}

.enquiry-trigger-text {
  display: inline-block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.enquiry-trigger-icon {
  display: none;
}

.enquiry-trigger:hover {
  background: var(--dark);
}

.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.enquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.enquiry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.enquiry-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s ease;
}

.enquiry-modal.is-open .enquiry-dialog {
  transform: translateY(0) scale(1);
}

.enquiry-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--dark);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.enquiry-close:hover {
  background: var(--primary);
  color: var(--white);
}

.enquiry-modal-inner {
  display: flex;
  min-height: 520px;
}

.enquiry-modal-media {
  flex: 0 0 46%;
  line-height: 0;
  background: var(--dark);
}

.enquiry-modal-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.enquiry-modal-body {
  flex: 1 1 54%;
  padding: 48px 40px 40px;
  background: var(--white);
  color: var(--dark);
}

.enquiry-modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 28px;
  line-height: 1.2;
  color: var(--primary);
}

.enquiry-form-wrap {
  width: 100%;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .mobile-float-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  }

  .enquiry-trigger {
    position: static;
    top: auto;
    bottom: auto;
    transform: none;
    right: auto;
    border-radius: 0;
    padding: 14px 16px;
    font-size: 12px;
    flex: 1 1 50%;
    width: 50%;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .enquiry-trigger-icon {
    display: block;
    flex-shrink: 0;
  }

  .enquiry-trigger-text {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .call-trigger {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 50%;
    width: 50%;
    padding: 14px 16px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background var(--transition);
  }

  .call-trigger:hover {
    background: #333;
  }

  .call-trigger-icon {
    display: block;
  }

  .enquiry-modal {
    padding: 16px;
    align-items: center;
  }

  .enquiry-dialog {
    max-height: 92vh;
  }

  .enquiry-modal-inner {
    flex-direction: column;
    min-height: auto;
  }

  .enquiry-modal-media {
    flex: 0 0 auto;
    height: 220px;
  }

  .enquiry-modal-media img {
    min-height: 220px;
  }

  .enquiry-modal-body {
    padding: 32px 24px 28px;
  }

  .enquiry-modal-title {
    font-size: 24px;
    margin-bottom: 22px;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--white);
  padding: 70px 0 60px;
}

.footer-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
}

.footer-title em {
  font-style: italic;
  color: var(--primary);
}

.footer-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.footer-btn:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-disclaimer {
  font-size: 12px;
  line-height: 1.8;
  color: #777;
  margin-bottom: 44px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-qr {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* ===== Responsive: tablets and mobile (<= 1024px) ===== */
@media (max-width: 1024px) {
  .header-inner {
    height: var(--header-h-mobile);
    padding: 0 16px;
  }

  section[id] {
    scroll-margin-top: var(--header-h-mobile);
  }

  .header-left .logo {
    height: 48px;
  }

  .header-inner {
    justify-content: flex-start;
    gap: 12px;
  }

  .header-left {
    order: 1;
  }

  .header-logo-sep {
    display: block;
    order: 2;
    width: 1px;
    height: 38px;
    background: rgba(170, 138, 75, 0.45);
    flex-shrink: 0;
    align-self: center;
  }

  .header-right {
    order: 3;
  }

  .header-nav {
    order: 4;
  }

  .header-right .supporting-logo {
    height: 42px;
  }

  .hamburger {
    display: flex;
    order: 5;
    margin-left: auto;
  }

  /* Slide-down mobile nav panel */
  .header-nav {
    position: fixed;
    top: var(--header-h-mobile);
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    transition: max-height var(--transition);
  }

  .header-nav.nav-open {
    max-height: 70vh;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 8px 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    color: var(--dark);
    padding: 11px 20px;
    font-size: 14px;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-list a.is-active {
    color: var(--primary);
    font-weight: 600;
  }

  /* Hamburger -> X when open */
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .overview-content {
    padding: 52px 40px;
  }

  /* Highlights */
  .highlight-slide {
    flex: 0 0 70%;
  }

  .slider-btn.prev {
    left: 8%;
  }

  .slider-btn.next {
    right: 8%;
  }

  .configuration-grid {
    gap: 20px;
  }

  .config-card {
    min-height: 190px;
    padding: 28px 16px;
  }

  /* Amenities */
  .amenities-slider {
    padding: 0 56px;
  }

  .amenities-track {
    height: 440px;
  }

  .amenity-slide {
    width: 240px;
    height: 340px;
  }

  .amenity-slide.is-active {
    width: 320px;
    height: 440px;
  }

  .amenity-slide.is-prev {
    transform: translate(calc(-50% - 220px), -50%) scale(0.9);
  }

  .amenity-slide.is-next {
    transform: translate(calc(-50% + 220px), -50%) scale(0.9);
  }

  /* Location -> stack columns */
  .location-inner {
    flex-direction: column;
    gap: 28px;
  }

  .location-map,
  .location-accordion {
    flex: 1 1 auto;
    width: 100%;
  }

  /* About -> stack, image first */
  .about-inner {
    flex-direction: column-reverse;
    gap: 28px;
  }

  .about-content,
  .about-image {
    flex: 1 1 auto;
    width: 100%;
  }

  /* Contact -> stack columns */
  .contact-inner {
    flex-direction: column;
    gap: 40px;
  }

  .contact-info,
  .contact-form-wrap {
    flex: 1 1 auto;
    width: 100%;
  }
}

/* ===== Overview: stack on phones ===== */
@media (max-width: 700px) {
  .overview-inner {
    flex-direction: column;
    min-height: 0;
  }

  .overview-content,
  .overview-media {
    flex: 1 1 auto;
    width: 100%;
  }

  .overview-content {
    padding: 48px 28px;
  }

  .overview-media {
    order: -1;
    min-height: 320px;
  }

  .overview-thumb {
    right: 5px;
    bottom: 5px;
    font-size: 6px;
    padding: 6px 10px;
  }

  .overview-logo {
    width: min(240px, 68%);
    margin-bottom: 24px;
  }

  /* Highlights */
  .highlights {
    padding: 50px 0 60px;
  }

  .highlights-title {
    font-size: 26px;
  }

  .highlight-slide {
    flex: 0 0 86%;
  }

  .highlight-img {
    transform: scale(0.92);
  }

  .highlight-caption {
    font-size: 15px;
    max-width: 92%;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .slider-btn.prev {
    left: 2%;
  }

  .slider-btn.next {
    right: 2%;
  }

  /* Configuration */
  .configuration {
    padding: 50px 0 60px;
  }

  .configuration-head {
    margin-bottom: 32px;
  }

  .configuration-title {
    font-size: 26px;
  }

  .configuration-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .config-card {
    min-height: 210px;
    padding: 24px 16px;
  }

  .config-label {
    font-size: 18px;
    letter-spacing: 3px;
  }

  /* Location */
  .location {
    padding: 50px 0 60px;
  }

  .location-title {
    font-size: 26px;
  }

  /* About */
  .about {
    padding: 50px 0 60px;
  }

  .about-title {
    font-size: 26px;
    text-align: center;
  }

  .about-stats {
    gap: 16px;
    margin: 0 auto;
    margin-bottom: 30px;
    grid-template-columns: repeat(1, 1fr);
  }

  .about-stat-value {
    font-size: 28px;
  }

  .about-stat-label {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

  /* Contact */
  .contact {
    padding: 55px 0;
  }

  .contact-title {
    font-size: 34px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 44px;
  }

  .footer-title {
    font-size: 28px;
  }

  .footer-badges {
    gap: 32px;
  }

  .acc-header {
    font-size: 16px;
  }

  /* Amenities slider */
  .amenities {
    padding: 50px 0 60px;
  }

  .amenities-title {
    font-size: 26px;
  }

  .amenities-sub {
    font-size: 15px;
  }

  .amenities-slider {
    padding: 0 44px;
  }

  .amenities-track {
    height: 380px;
  }

  .amenity-slide {
    width: 210px;
    height: 300px;
  }

  .amenity-slide.is-active {
    width: 280px;
    height: 380px;
  }

  .amenity-slide.is-prev {
    transform: translate(calc(-50% - 170px), -50%) scale(0.88);
  }

  .amenity-slide.is-next {
    transform: translate(calc(-50% + 170px), -50%) scale(0.88);
  }

  .amenity-caption h3 {
    font-size: 13px;
  }

  .amenity-caption p {
    font-size: 12px;
  }

  .amenities-nav {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .amenities-nav--prev {
    left: 4px;
  }

  .amenities-nav--next {
    right: 4px;
  }
}

/* ===== Thank You page ===== */
.page-thankyou .site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.thankyou {
  min-height: calc(100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px;
  background: #fff7e9;
}

.thankyou-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.thankyou-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.thankyou-lead {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 14px;
}

.thankyou-text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 36px;
}

.thankyou-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
}

.thankyou-btn:hover {
  background: transparent;
  color: var(--primary);
}

.thankyou-footer-note {
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .thankyou {
    min-height: calc(100vh - var(--header-h-mobile));
    padding: 100px 20px 60px;
  }

  .thankyou-title {
    font-size: 36px;
  }

  .thankyou-lead {
    font-size: 18px;
  }
}


@media (max-width: 480px) {
  .heading-bg-seven-contact {
    right: 250px;
    width: min(350px, 100%);
  }

  .heading-bg-seven-location {
    right: 0px;
    width: min(250px, 100%);
    top: -20px;
  }

  .heading-bg-seven-configuration {
    right: 250px;
    width: min(250px, 100%);
  }

  .about-para {
    width: 100%;
  }
}