/*
 * Lanco Hills ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Landing Page Stylesheet
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: Anuphan;
  src: url("../assets/fonts/Anuphan.ttf");
}

@font-face {
  font-family: rocket-dreams;
  src: url("../assets/fonts/ROCKETT-DREAMS.TTF");
}

@font-face {
  font-family: rocket-dreams-italic;
  src: url("../assets/fonts/ROCKETT-DREAMS-ITALIC.TTF");
}

/* ================================
   CSS VARIABLES
   ================================ */
:root {
  --white: #ffffff;
  --black: #111111;
  --primary: #980A23;
  --primary-dark: #7a0820;
  --nav-bg: #FFFDED;
  --font-montserrat: 'Montserrat', sans-serif;
  --font-jost: 'Jost', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --rocket-dreams : rocket-dreams;
  --rocket-dreams-italic : rocket-dreams-italic;
  --Anuphan : Anuphan;
  --text-dark: #303030;
  --rose: #b97875;
  --rose-light: #af706d;
  --radius-full: 100px;
}

/* ================================
   RESET & BASE
   ================================ */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}


html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}


body {
  font-family: var(--font-montserrat);
  overflow-x: hidden !important;
  padding-right: 0px !important;
  background: transparent;
  color: var(--text-dark);
}

body::-webkit-scrollbar-track {
  background-color: transparent;
}
body::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgba(152, 10, 35, 0.3);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0rem !important;
}

ul {
  padding-left: 0rem !important;
  margin-bottom: 0rem !important;
}
li {
  list-style: none;
  text-decoration: none;
}
a {
  text-decoration: none !important;
}
p {
  margin-bottom: 0rem !important;
}
.compensate-for-scrollbar {
  margin-right: 0px;
}
.invalid-feedback {
  margin-top: 4px;
  font-size: 0.78rem;
  display: none;
}
button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ================================
   BUTTON SPINNER
   ================================ */
.btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes btn-spin {
  to { transform: rotate(360deg); }
}
.btn-loading .btn-text {
  display: none !important;
}
.btn-loading .btn-spinner {
  display: inline-block;
}
.jkb-submit.btn-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.85;
}

/* ================================
   LOADER
   ================================ */
.loader-container {
  display: none;
}

/* ================================
   NAVBAR ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â Figma Design
   ================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(152, 10, 35, 0.12);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}

header.dropped {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

#navbar {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
}

.navbar-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 87vw;
    margin: auto;
    max-width: 100%;
}

/* Logo */
.nav-logo {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.nav-logo .logo {
  height: 70px;
  width: auto;
  display: block;
}

/* Desktop nav links */
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.nav-link-item {
  font-family: var(--font-montserrat);
  font-size: 1vw;
  font-weight: 400;
  color: var(--primary);
  text-decoration: none !important;
  white-space: nowrap;
  padding: 0 14px;
  position: relative;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--primary);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link-item:hover {
  color: var(--primary);
}
.nav-link-item:hover::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-sep-icon {
  display: inline-block;
  width: 1px;
  height: 18px;
  background: rgba(152, 10, 35, 0.35);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  pointer-events: none;
  vertical-align: middle;
}

/* Right: CTA + hamburger */
.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Contact Now button */
.nav-contact-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  min-width: 180px;
  padding: 0 20px;
  background: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 9px;
  font-family: var(--font-montserrat);
  font-size: 1vw;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
  white-space: nowrap;
}
.nav-contact-btn i {
  font-size: 1vw;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.nav-contact-btn:hover {
  background: var(--primary-dark);
}

/* Mobile hamburger */
.nav-hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* ================================
   MOBILE OFFCANVAS NAV
   ================================ */
#mobileNav {
  background: var(--nav-bg) !important;
  width: 300px !important;
  border-left: 1px solid rgba(152, 10, 35, 0.12) !important;
}

.mobile-offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(152, 10, 35, 0.1);
}

.mobile-offcanvas-close {
  background: transparent;
  border: 1px solid rgba(152, 10, 35, 0.3);
  color: var(--primary);
  font-size: 16px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.mobile-offcanvas-close:hover {
  background: var(--primary);
  color: #fff;
}

.mobile-offcanvas-body {
  padding: 0 0 32px !important;
  overflow-y: auto;
}

.mobile-nav-links {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mobile-nav-links li {
  border-bottom: 1px solid rgba(152, 10, 35, 0.08);
}

.mobile-nav-links li a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-montserrat);
  font-size: 0.781vw;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none !important;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.mobile-nav-links li a:hover {
  background: rgba(152, 10, 35, 0.04);
}

.mobile-nav-cta-wrap {
  padding: 24px 24px 0;
}

.mobile-nav-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: var(--font-montserrat);
  font-size: 0.781vw;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.mobile-nav-cta:hover {
  background: var(--primary-dark);
}
.mobile-nav-cta i {
  font-size: 0.677vw;
}

/* ================================
   HERO SECTION
   ================================ */
.section-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  min-height: 600px;
  overflow: hidden;
  margin-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation: hero-zoom 14s ease-in-out infinite;
  animation: hero-zoom 14s ease-in-out infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@-webkit-keyframes hero-zoom {
  0%   { -webkit-transform: scale(1);    transform: scale(1); }
  50%  { -webkit-transform: scale(1.07); transform: scale(1.07); }
  100% { -webkit-transform: scale(1);    transform: scale(1); }
}
@keyframes hero-zoom {
  0%   { -webkit-transform: scale(1);    transform: scale(1); }
  50%  { -webkit-transform: scale(1.07); transform: scale(1.07); }
  100% { -webkit-transform: scale(1);    transform: scale(1); }
}



.hero-content {
  position: absolute;
  left: 7.29vw;
  top: 12%;
  width: 40.3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.hero-heading-main {
  font-family: var(--Anuphan);
  font-size: 2.8vw;
  font-weight: 400;
  line-height: 1.14;
  color: #ffffff;
  margin: 0;
}

.hero-heading-italic {
  font-family: var(--rocket-dreams);
  font-size: 5.2vw;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

.hero-desc {
  font-family: var(--font-montserrat);
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.89;
  color: #ffffff;
  margin: 0;
}

/* Stats bar */
.hero-stats-bar {
  position: absolute;
  left: 7.29vw;
  bottom: 9%;
  width: 42.7vw;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 6.9vw;
}

.hero-stats-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 0 2.34vw;
}

.hero-stat {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  padding: 1.5vw 0;
}

.hero-stat-num {
  font-family: var(--Anuphan);
  font-size: 1.823vw;
  font-weight: 400;
  color: var(--primary);
  line-height: normal;
  margin: 0;
}

.hero-stat-label {
  font-family: var(--font-montserrat);
  font-size: 0.781vw;
  font-weight: 400;
  color: #3c3c3a;
  line-height: 1.53;
  margin: 0;
}

.hero-stat-sep {
  width: 1px;
  height: 4.9vw;
  background: rgba(48, 48, 48, 0.15);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 1.56vw;
}

/* ================================
   MOBILE FIXED CTA BAR
   ================================ */
.mobile-fixed-button {
  display: none;
}
.btn-fixed {
  border: none;
  outline: none;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  padding: 0.55rem 1.15rem;
}

/* ================================
   CUSTOM CONTAINER
   ================================ */
.custom-container {
  width: 85vw;
  max-width: 100%;
  margin: 0 auto;
}

/* ================================
   MODAL POPUP
   ================================ */
.modal-content {
  background: #fff;
  border-radius: unset;
}
.jkb-modal .modal-dialog {
  max-width: 520px;
}
.jkb-modal-content {
  border: none !important;
  border-radius: 4px !important;
  overflow: hidden;
  background: #ffffff !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}
.jkb-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(152, 10, 35, 0.3);
  background: transparent;
  color: var(--primary);
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.jkb-modal-close i {
  font-size: 0.9rem;
  line-height: 1;
}
.jkb-modal-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}
.jkb-modal-form-only {
  padding: 2.5rem 2.25rem 2rem;
  background: #ffffff !important;
}
.jkb-modal-title {
  font-family: var(--font-montserrat);
  font-size: 1.75rem;
  color: var(--primary) !important;
  font-weight: 600;
  margin-bottom: 6px !important;
  line-height: 1.2;
}
.jkb-modal-sub {
  font-family: var(--font-montserrat);
  font-size: 14px;
  color: rgba(48, 48, 48, 0.6) !important;
  margin-bottom: 1.75rem !important;
  line-height: 1.55;
}

.modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}
.modal-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  min-width: 17px;
  border: 1.5px solid rgba(152, 10, 35, 0.45);
  background: transparent;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  border-radius: 3px;
}
.modal-checkbox:checked {
  background: var(--primary);
  border-color: var(--primary);
}
.modal-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.modal-consent-label {
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  color: #777;
  cursor: pointer;
}

.jkb-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 9px;
  height: 50px;
  padding: 0 1rem;
  font-family: var(--font-montserrat);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.jkb-submit:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* ================================
   CONV-FIELD FORM STYLES
   ================================ */
.conv-field {
  position: relative;
  padding-top: 22px;
  padding-bottom: 28px;
}

.conv-label {
  position: absolute;
  top: 26px;
  left: 0;
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  margin: 0;
  pointer-events: none;
  transition: top 0.22s ease, font-size 0.22s ease, color 0.22s ease;
}

.conv-field.is-active .conv-label {
  top: 0;
  font-size: 12px;
  color: var(--text-dark);
}

.conv-field:focus-within .conv-label {
  top: 0;
  font-size: 12px;
  color: var(--primary);
}

.conv-input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  padding: 4px 0;
  appearance: none;
  -webkit-appearance: none;
}

.conv-input:focus {
  outline: none;
  box-shadow: none;
}

.conv-line {
  height: 1px;
  background: rgba(48, 48, 48, 0.2);
  width: 100%;
  transition: background 0.3s ease;
}

.conv-field:focus-within .conv-line {
  background: var(--primary);
}

.conv-field .invalid-feedback {
  font-family: var(--font-montserrat);
  font-size: 12px;
  color: #dc3545;
  margin-top: 4px;
  display: none;
}

.needs-validation.was-validated .conv-input:invalid ~ .invalid-feedback,
.needs-validation .conv-input.is-invalid ~ .invalid-feedback {
  display: block;
}

.needs-validation.was-validated .git-input:invalid ~ .invalid-feedback,
.needs-validation .git-input.is-invalid ~ .invalid-feedback {
  display: block;
}

.git-invalid {
  color: #dc3545;
  font-size: 11px;
}

.needs-validation.was-validated .conv-input:invalid ~ .conv-line,
.needs-validation .conv-input.is-invalid ~ .conv-line {
  background: #dc3545;
}

.needs-validation.was-validated .conv-input:valid ~ .conv-line,
.needs-validation .conv-input.is-valid ~ .conv-line {
  background: #28a745;
}

/* ================================
   OVERVIEW SECTION
   ================================ */
.section-overview {
  position: relative;
  background: var(--nav-bg);
  padding: 6.33vw 0;
  overflow: hidden;
}

.overview-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.overview-label {
  font-family: var(--font-montserrat);
  font-size: 1.042vw;
  font-weight: 500;
  color: #000000;
  letter-spacing: 1px;
  line-height: normal;
  margin: 0;
}

.overview-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.125vw;
  width: 100%;
}

.overview-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.563vw;
}

.overview-heading {
  font-family: var(--Anuphan);
  font-size: 4.688vw;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.11;
  text-align: center;
  margin: 0;
  max-width: 57.29vw;
}

.overview-desc {
  font-family: var(--font-montserrat);
  font-size: 1.146vw;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.91;
  text-align: center;
  max-width: 66.98vw;
}

.overview-desc p {
  margin: 0;
}

.overview-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  background: #CBA55C;
  color: #ffffff;
  border: none;
  height: 60px;
  padding: 0 27px;
  min-width: 290px;
  font-family: var(--font-montserrat);
  font-size: 0.833vw;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
  white-space: nowrap;
}
.overview-cta:hover {
  background: #b8934e;
  color: #ffffff;
}
.overview-cta i {
  font-size: 0.833vw;
}

/* Corner ornaments */
.overview-ornament-tr {
  position: absolute;
  top: 20px;
  right: -40px;
  width: 127px;
  height: 122px;
  border: 1px solid #CBA55C;
  pointer-events: none;
}
.overview-ornament-bl {
  position: absolute;
  bottom: 20px;
  left: -78px;
  width: 206px;
  height: 198px;
  border: 1px solid #CBA55C;
  pointer-events: none;
}

/* ================================
   AMENITIES SECTION
   ================================ */
.section-amenities {
  position: relative;
  padding: 5rem 0 0;
  min-height: 150dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.amenities-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.amenities-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,253,237,1) 0%, rgba(255,253,237,0.85) 15%, rgba(255,253,237,0.4) 35%, transparent 55%);
  pointer-events: none;
}

.amenities-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  min-height: 100%;
}



.amenities-container {
  position: relative;
  z-index: 2;
  padding-bottom: 5rem;
}

/* Header */
.amenities-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.amenities-label {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 10px !important;
}

.amenities-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 14px !important;
}

.amenities-desc {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--primary);
  max-width: 72vw;
  margin: 0 auto;
}

/* Card */
.amenities-card {
  border: 1px solid var(--primary);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

/* Full-width horizontal divider at card midpoint */
.amenities-card::after {
    content: '';
    position: absolute;
    left: 5%;
    right: 5%;
    top: 50%;
    height: 1px;
    background: #980A23;
    pointer-events: none;
    z-index: 1;
}

/* Carousel pair Ã¢â‚¬â€ each slide = 2 stacked items */
.am-pair {
  display: flex;
  flex-direction: column;
}

/* Items */
.am-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 36px 12px;
  text-align: center;
  flex: 1;
}

.am-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.am-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.am-label {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--primary);
  text-transform: capitalize;
}

/* Wrapper for card + nav so mobile can position buttons over card */
.am-carousel-wrap {
  position: relative;
}

/* Circle nav buttons below card */
.am-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.am-circle-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s ease;
  flex-shrink: 0;
  padding: 0;
}

.am-circle-btn:hover {
  opacity: 0.7;
}

.am-circle-btn img {
  width: 52px;
  height: 52px;
  display: block;
}

/* ================================
   CONFIGURATIONS / PLANS SECTION
   ================================ */
.section-plans {
  background: var(--nav-bg);
  padding: 4rem 0;
  position: relative;
}

/* Header */
.plans-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.plans-label {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 12px !important;
}
.plans-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
  margin: 0 auto;
}

/* Image column */
.plans-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.plans-img {
  width: 100%;
  height: auto;
  display: block;
  /* filter: blur(6px); */
  transform: scale(1.04);
}
.plans-lock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.plans-lock-icon {
  width: 64px;
  height: 64px;
  display: block;
}

/* Content column */
.plans-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 0.5rem;
}
.plans-badge {
  margin-bottom: 2.5rem;
}
.plans-info {
  margin-bottom: 2.5rem;
}
.plans-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #CBA55C;
  color: #ffffff;
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 400;
  height: 52px;
  padding: 0 28px;
  width: fit-content;
}
.plans-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plans-title {
  font-family: var(--font-montserrat);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--primary);
}
.plans-desc {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--primary);
  max-width: 404px;
}
.plans-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #CBA55C;
  color: #ffffff;
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  padding: 0 28px;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: background 0.25s ease;
}
.plans-cta:hover {
  background: #b8914e;
}
.plans-cta-icon {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

/* Decorative ornaments Ã¢â‚¬â€ same style as overview */
.plans-ornament-tr {
  position: absolute;
  top: 10%;
  right: -40px;
  width: 127px;
  height: 122px;
  border: 1px solid #CBA55C;
  pointer-events: none;
}
.plans-ornament-br {
  position: absolute;
  bottom: 20px;
  right: -40px;
  width: 127px;
  height: 122px;
  border: 1px solid #CBA55C;
  pointer-events: none;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.section-testimonials {
  background: var(--nav-bg);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.testimonials-ornament-tr {
  position: absolute;
  top: 12%;
  right: -40px;
  width: 127px;
  height: 122px;
  border: 1px solid #CBA55C;
  pointer-events: none;
}

.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 3rem;
}

.testimonials-label {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--black);
}

.testimonials-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
}

.testimonials-desc {
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 400;
  line-height: 2.25;
  color: var(--primary);
  max-width: 700px;
}

.testimonials-carousel-wrap {
  position: relative;
}

.tst-card {
  display: block;
}

.tst-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 530 / 400;
}

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

.tst-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.tst-yt-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.25s ease;
}

.tst-yt-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
}

.tst-yt-icon {
  width: 64px;
  height: 45px;
  display: block;
}

.tst-nav {
  display: contents;
}

.tst-prev,
.tst-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

.tst-prev { left: -36px; }
.tst-next { right: -36px; }

.tst-prev img,
.tst-next img {
  width: 52px;
  height: 52px;
  display: block;
}

/* ================================
   LOCATION SECTION
   ================================ */
.section-location {
  background: var(--nav-bg);
  padding: 4rem 0;
  position: relative;
}

.loc-top {
  display: flex;
  gap: 40px;
  margin-bottom: 2.5rem;
}

.loc-top-left {
  flex: 0 0 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loc-top-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.loc-label {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--black);
}

.loc-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 400;
  line-height: 1.3;
  color: var(--primary);
  max-width: 800px;
}

.loc-desc {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--primary);
}

.loc-map-wrap { width: 100%; }
.loc-map { width: 100%; height: auto; display: block; }

/* Accordion */
.loc-accordion {
  --bs-accordion-bg: #ffffff;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
  --bs-accordion-border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 0px !important;
  padding: 0 24px;
  overflow: hidden;
}

.loc-acc-item:first-child .loc-acc-btn {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.loc-acc-item:last-child {
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.loc-acc-item {
  background: #ffffff !important;
  border: none !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.loc-acc-item:first-child {
  border-top: none !important;
}

.loc-acc-item:last-child {
  border-bottom: none !important;
}

.loc-acc-btn {
  background: #ffffff !important;
  box-shadow: none !important;
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--black) !important;
  width: 100%;
}

.loc-acc-btn::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  background-image: none !important;
  font-size: 16px;
  color: var(--black);
  width: auto;
  height: auto;
  transform: none;
  transition: transform 0.25s ease;
  margin-left: auto;
  flex-shrink: 0;
}

.loc-acc-btn:not(.collapsed)::after {
  transform: rotate(180deg);
}

.loc-acc-icon {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  display: block;
}

.loc-acc-title {
  font-family: var(--font-montserrat);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  flex: 1;
  text-align: left;
}

.loc-acc-body {
  padding: 0 0 22px 59px;
}

.loc-acc-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.loc-acc-list li {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #565656;
  list-style: disc !important;
}

/* ================================
   USP / KEY FEATURES SECTION
   ================================ */
.section-usp {
  background: var(--nav-bg);
  padding: 4rem 0;
}

.usp-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.usp-label {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 10px !important;
}

.usp-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
}

/* Carousel item */
.usp-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.usp-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

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

.usp-text {
  text-align: center;
  padding: 0 4px;
}

.usp-title {
  font-family: var(--font-montserrat);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--primary);
  margin-bottom: 8px !important;
  text-transform: capitalize;
}

.usp-desc {
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--primary);
}

/* Owl Carousel dot overrides */
.section-usp .owl-dots {
  margin-top: 28px;
  text-align: center;
}
.section-usp .owl-dot span {
  background: rgba(152, 10, 35, 0.25) !important;
  width: 8px !important;
  height: 8px !important;
  margin: 0 4px !important;
  border-radius: 50% !important;
  transition: background 0.25s ease !important;
}
.section-usp .owl-dot.active span {
  background: var(--primary) !important;
}

/* ================================
   GET IN TOUCH SECTION
   ================================ */
.section-git {
  position: relative;
  background: var(--nav-bg);
  padding: 4rem 0;
  overflow: hidden;
}

.git-header {
  text-align: center;
  margin-bottom: 3.13vw;
}

.git-label {
  font-family: var(--font-montserrat);
  font-size: 1.042vw;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 1rem !important;
}

.git-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 500;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem !important;
}

.git-desc {
  font-family: var(--font-montserrat);
  font-size: 0.938vw;
  font-weight: 400;
  line-height: 1.75;
  color: var(--primary);
  max-width: 50vw;
  margin: 0 auto;
}

/* Corner ornaments */
.git-ornament-tr {
  position: absolute;
  top: 20px;
  right: -40px;
  width: 127px;
  height: 122px;
  border: 1px solid #CBA55C;
  pointer-events: none;
}

.git-ornament-bl {
  position: absolute;
  bottom: 20px;
  left: -40px;
  width: 127px;
  height: 122px;
  border: 1px solid #CBA55C;
  pointer-events: none;
}

/* Gold card */
.git-card {
  background: #CBA55C;
  width: 100%;
  position: relative;
}

/* Left image column */
.git-img-col {
  position: relative;
}

.git-img-wrap {
  position: absolute;
  inset: 2.08vw;
  overflow: hidden;
}

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

/* Right form column */
.git-form-col {
  padding: 3.13vw 3.65vw 3.13vw 2.6vw;
}

.git-form-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.git-form-title {
  font-family: var(--Anuphan);
  font-size: 2.083vw;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2.08vw !important;
  line-height: 1.2;
}

/* Form fields */
.git-form {
  display: flex;
  flex-direction: column;
  gap: 2.08vw;
  flex: 1;
}

.git-field {
  display: flex;
  flex-direction: column;
  gap: 0.78vw;
}

.git-field-label {
  font-family: var(--font-montserrat);
  font-size: 0.833vw;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.9);
}

.git-field-label span {
  color: #ffffff;
}

.git-optional {
  color: rgba(255,255,255,0.65) !important;
  font-weight: 400;
}

.git-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.6);
  border-radius: 0;
  padding: 10px 0;
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  outline: none;
  width: 100%;
  transition: border-color 0.25s ease;
}

.git-input::placeholder {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

.git-input:focus {
  border-bottom-color: #ffffff;
  box-shadow: none;
}

/* Consent row */
.git-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 0.52vw;
}

.git-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(255,255,255,0.8);
  background: transparent;
  margin-top: 1px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.git-checkbox:checked {
  background: #ffffff;
}

.git-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: 2px solid #CBA55C;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.git-consent-label {
  font-family: var(--font-montserrat);
  font-size: 0.729vw;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}

/* Submit button */
.git-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 290px;
  height: 52px;
  background: #ffffff;
  color: #CBA55C;
  border: none;
  font-family: var(--font-montserrat);
  font-size: 0.729vw;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.git-submit:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
  background: #CBA55C;
}

.footer-main {
  padding-top: 5rem;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */
.footer-logo-wrap {
  margin-bottom: 2.5rem;
}
.footer-logo {
  height: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* RERA block */
.footer-rera-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2rem;
}
.footer-rera-line {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: #ffffff;
}

/* QR */
.footer-qr-wrap {
  margin-bottom: 1.25rem;
}
.footer-qr {
  width: 118px;
  height: 118px;
  object-fit: contain;
  display: block;
}

/* Small RERA */
.footer-rera-small {
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 860px;
  margin-bottom: 1rem !important;
}

/* Social icons */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2.5rem;
}
.footer-social-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none !important;
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

/* Disclaimer block */
.footer-disclaimer-wrap {
  padding-top: 1.75rem;
  padding-bottom: 2rem;
  text-align: center;
}
.footer-disclaimer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.3px;
}
.footer-link-sep {
  font-weight: 300;
  opacity: 0.7;
}
.footer-disclaimer-text {
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  color: rgba(255,255,255,0.9);
}
.footer-disclaimer-text strong {
  font-weight: 600;
  color: #ffffff;
}

/* Bottom bar */
.footer-bottom-bar {
  text-align: center;
}
.footer-bottom-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.35);
}
.footer-bottom-credit {
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  padding: 14px 0;
}

/* ================================
   THANK-YOU PAGE (base classes)
   ================================ */
section.secton-thankyou {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 6rem 1.5rem 4rem;
}

/* ================================
   RESPONSIVE
   ================================ */
@media only screen and (max-width: 1399px) {
  .hero-content { width: 46vw; }
  .hero-stats-bar { width: 50vw; }
}

@media only screen and (max-width: 1350px) {
  .nav-link-item {
    font-family: var(--font-montserrat);
    font-size: 1.15vw;
    padding: 0 10px;
  }
  .nav-link-item::after {
    left: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .navbar-container { padding: 0 40px; }
  .nav-link-item { font-size: 0.677vw; padding: 0 7px; }
  .nav-contact-btn { min-width: 155px; font-size: 0.677vw; }
  .hero-content { left: 5vw; top: 20%; width: 52vw; }
  .hero-heading-main { font-size: 2.4vw; }
  .hero-heading-italic { font-size: 4.4vw; }
  .hero-desc { font-size: 1.25vw; }
  .hero-stats-bar { left: 5vw; width: 56vw; }
  .hero-stat-num { font-size: 2vw; }
  .hero-stat-label { font-size: 1.15vw; }
  .overview-heading { font-size: 4vw; max-width: 70vw; }
  .overview-desc { font-size: 1.35vw; max-width: 78vw; }
  .overview-label { font-size: 14px; }
  .overview-cta { font-size: 13px; }
  .overview-cta i { font-size: 13px; }
  .usp-heading { font-size: 4vw; }
  .git-label { font-size: 13px; }
  .git-heading { font-size: 3.5vw; }
  .git-desc { font-size: 13px; max-width: 65vw; }
  .git-form-title { font-size: 2.5vw; }
  .git-field-label { font-size: 13px; }
  .git-input { font-size: 13px; padding: 10px 0; }
  .git-consent-label { font-size: 12px; }
  .git-submit { font-size: 11px; }
  .git-form { gap: 28px; }
  .git-field { gap: 10px; }
  .amenities-heading { font-size: 4vw; }
  .am-icon-wrap { width: 68px; height: 68px; }
  .am-item { padding: 28px 8px; gap: 12px; }
  .testimonials-heading { font-size: 4vw; }
  .testimonials-desc { font-size: 14px; line-height: 2; }
  .loc-heading { font-size: 4vw; }
  .loc-acc-title { font-size: 18px; }
}

@media only screen and (max-width: 1150px) {
  .usp-title { font-size: 15px; }
}

@media only screen and (max-width: 991px) {
  #navbar { height: 70px; }
  .section-amenities { min-height: 100dvh; }
  .navbar-container { padding: 0 28px; }
  .nav-logo .logo { height: 60px; }
  .mobile-nav-links li a { font-size: 1.50vw; }
  .section-hero { height: calc(100vh - 70px); min-height: 500px; margin-top: 70px; }
  .hero-content { left: 4vw; top: 15%; width: 68vw; }
  .hero-heading-main { font-size: 3.6vw; }
  .hero-heading-italic { font-size: 6.2vw; }
  .hero-desc { font-size: 2vw; line-height: 1.7; }
  .hero-stats-bar { left: 4vw; width: 70vw; bottom: 6%; min-height: 0; }
  .hero-stat-num { font-size: 2.6vw; }
  .hero-stat-label { font-size: 1.2vw; }
  .hero-stat-sep { height: 6vw; }
  .section-overview { padding: 80px 0; }
  .overview-heading { font-size: 5.5vw; max-width: 85vw; }
  .overview-desc { font-size: 1.8vw; max-width: 90vw; }
  .overview-body { gap: 40px; }
  .overview-text { gap: 20px; }
  .section-git { padding: 3rem 0; }
  .git-heading { font-size: 4.5vw; }
  .git-header { margin-bottom: 36px; }
  .git-form-title { font-size: 3.2vw; }
  .git-form-col { padding: 36px 32px; }
  .git-img-wrap { position: unset; }
  .overview-ornament-bl { position: absolute; height: 150px; }
  .amenities-heading { font-size: 5vw; }
  .amenities-card { border-radius: 24px; }
  .testimonials-heading { font-size: 5vw; }
  .tst-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
  }
  .tst-prev,
  .tst-next {
    position: static;
    transform: none;
  }
  .loc-heading { font-size: 5vw; }
  .loc-acc-title { font-size: 16px; }
}

@media only screen and (max-width: 767px) {
  #navbar { height: 70px; }
  .navbar-container { padding: 0 20px; width: 95vw; }
  .nav-logo .logo { height: 50px; }
  .mobile-nav-links li a { font-size: 2.50vw; }
  .section-hero { height: calc(100vh - 70px); margin-top: 70px; }
  .hero-content { left: 5vw; top: 36%; width: 88vw; gap: 12px; }
  .hero-heading-main { font-size: 5.5vw; }
  .hero-heading-italic { font-size: 9vw; }
  .hero-desc { font-size: 2.50vw; line-height: 1.6; }
  .hero-stats-bar { left: 2.5vw; right: 2.5vw; bottom: 64px; width: 95vw; border-radius: 12px; min-height: 0; }
  .hero-stats-inner { padding: 0 5vw; }
  .hero-stat { padding: 4.5vw 0; gap: 5px; }
  .hero-stat-num { font-size: 4vw; }
  .hero-stat-label { font-size: 2vw; }
  .hero-stat-sep { height: 13vw; margin: 0 2.5vw; }
  .custom-container { width: 90vw; }
  .jkb-modal .modal-dialog { max-width: calc(100% - 16px); }
  .jkb-modal-form-only { padding: 2rem 1.5rem; }
  .jkb-modal-title { font-size: 1.4rem; }
  .plans-ornament-tr{
    display: none;
  }
  .loc-acc-btn {
    padding: 15px 0;
}
.loc-accordion {

    margin-bottom: 1rem;
}
  .testimonials-ornament-tr{
    display: none;
  }
  .section-plans {
    padding: 3rem 0;
}
.section-testimonials {
    padding: 3rem 0;
}
  .footer-blu-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-blu-contact { gap: 16px; }
  .footer-blu-sep { display: none; }
  .mobile-fixed-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    -webkit-box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
  }
  .mobile-fixed-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .mobile-fixed-content .btn-fixed {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: var(--font-montserrat);
    padding: 0.9rem 0.5rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: capitalize;
  }
  .mob-btn-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    align-self: stretch;
  }
  .mobile-fixed-content .btn-fixed span.icon {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .section-overview { padding: 60px 0; }
  .overview-heading { font-size: 6vw; max-width: 100%; line-height: 1.15; }
  .overview-desc { font-size: 2.75vw; max-width: 100%; line-height: 1.75; }
  .overview-label { font-size: 14px; }
  .overview-cta { font-size: 12px; min-width: 75vw; height: 52px; }
  .overview-cta i { font-size: 12px; }
  .overview-body { gap: 32px; }
  .overview-ornament-tr,
  .overview-ornament-bl { display: none; }
  .usp-heading { font-size: 5vw; }
  .section-usp { padding: 3rem 0; }
  .usp-header { text-align: center; margin-bottom: 1.5rem; }
  .section-git { padding: 2rem 0; }
  .git-header { margin-bottom: 28px; }
  .git-label { font-size: 14px; }
  .git-heading { font-size: 5vw; line-height: 1.25; }
  .git-desc { font-size: 2.75vw; max-width: 100%; }
  .git-ornament-tr,
  .git-ornament-bl { display: none; }
  .git-img-col { min-height: 52vw; position: relative; }
  .git-img-wrap { position: absolute; inset: 0; }
  .git-form-col { padding: 32px 24px 36px; }
  .git-form-title { font-size: 5vw; margin-bottom: 24px !important; }
  .git-form { gap: 22px; }
  .git-field { gap: 8px; }
  .git-field-label { font-size: 13px; }
  .git-input { font-size: 14px; padding: 10px 0; }
  .git-consent-label { font-size: 12px; }
  .git-submit { font-size: 11px; max-width: 100%; }
  .plans-badge {margin-bottom: 1.5rem;}
  .plans-info {margin-bottom: 1.5rem;}
  .section-amenities { padding: 3rem 0 0; min-height: auto; }
  .amenities-container { padding-bottom: 3rem; }
  .amenities-heading { font-size: 5vw; }
  .amenities-desc { max-width: 100%; font-size: 13px; }
  .amenities-header { margin-bottom: 1.5rem; }
  .amenities-card { border-radius: 20px; background: rgba(255, 253, 237, 0.85); }
  .am-icon-wrap { width: 56px; height: 56px; }
  .am-item { padding: 20px 8px; gap: 10px; }
  .am-label { font-size: 12px; }
  .am-nav-wrap {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    margin-top: 0;
    padding: 0 8px;
    pointer-events: none;
    z-index: 10;
  }
  .am-circle-btn { pointer-events: auto; }
  .testimonials-heading { font-size: 6vw; }
  .testimonials-desc { font-size: 13px; }
  .testimonials-header { margin-bottom: 2rem; }
  .tst-prev img, .tst-next img { width: 40px; height: 40px; }
  .loc-heading { font-size: 6vw; }
  .loc-acc-title { font-size: 15px; }
  .loc-acc-body { padding-left: 48px; }
  .loc-top { flex-direction: column; gap: 20px; }
  .loc-top-left { flex: none; width: 100%; }
  .footer-logo { height: 120px; }
  .footer-rera-line { font-size: 13px; }
  .footer-disclaimer-links { font-size: 14px; }
  .footer-disclaimer-text { font-size: 12px; line-height: 1.8; }
  .footer-social-btn { width: 44px; height: 44px; font-size: 16px; }
  .footer-main { padding-top: 2rem; }
}

@media only screen and (max-width: 576px) {
  .mobile-nav-links li a { font-size: 3vw; }
  .usp-heading { font-size: 7vw; }
  .hero-content { top: 44%; }
  .hero-desc { font-size: 3vw; }
  .hero-stat-num { font-size: 4vw; }
  .mobile-offcanvas-close { font-size: 3vw; }
  .overview-heading { font-size: 7vw; }
  .git-heading { font-size: 7vw; }
  .amenities-heading { font-size: 7vw; }
  .plans-heading { font-size: 7vw; }
  .testimonials-heading { font-size: 7vw; }
  .loc-heading { font-size: 7vw; }
}

@media only screen and (max-width: 450px) {
  .nav-logo .logo { height: 50px; }
  .hero-heading-main { font-size: 6.5vw; }
  .hero-heading-italic { font-size: 10.5vw; }
  .hero-desc { font-size: 3.75vw; }
  .hero-stat-num { font-size: 4vw; }
  .hero-stat-label { font-size: 2.50vw; }
  .hero-stat-sep { height: 15vw; margin: 0 2vw; }
  .overview-desc { font-size: 4vw; }
  .git-heading { font-size: 7vw; }
  .git-desc { font-size: 3.5vw; }
}

/* ================================
   GALLERY SECTION
   ================================ */
.section-gallery {
  background: var(--nav-bg);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.gallery-ornament-tl {
    position: absolute;
    left: -40px;
    width: 188px;
    height: 173px;
    border: 1px solid #CBA55C;
    pointer-events: none;
    z-index: 0;
    top: -17%;
}

.gallery-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.gallery-label {
  font-family: var(--font-montserrat);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px !important;
}

.gallery-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 18px !important;
}

.gallery-desc {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--primary);
  margin: 0 auto;
}

.gallery-carousel-wrap {
  position: relative;
  z-index: 1;
}

.gallery-carousel {
  position: relative;
  z-index: 1;
}

.gallery-slide {
  width: 100%;
  position: relative;
}

.artistic-impression {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  pointer-events: none;
  z-index: 5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  white-space: nowrap;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1580 / 673;
  object-fit: cover;
  display: block;
}

.gal-nav {
  display: contents;
}

.gal-prev,
.gal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  line-height: 0;
}

.gal-prev { left: -5%; }
.gal-next { right: -5%; }

.gal-prev img,
.gal-next img {
  width: 52px;
  height: 52px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .gallery-heading { font-size: 4vw; }
  .gallery-ornament-tl { display: none; }
  .testimonials-ornament-tr { display: none; }
  .gal-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
  }
  .gal-prev,
  .gal-next {
    position: static;
    transform: none;
  }
}

@media only screen and (max-width: 767px) {
  .gallery-heading { font-size: 6vw; }
  .gal-prev img,
  .gal-next img { width: 40px; height: 40px; }
}

@media only screen and (max-width: 576px) {
  .gallery-heading { font-size: 7vw; }
}

/* ================================
   CONSTRUCTION UPDATE SECTION
   ================================ */
.section-construction {
  background: var(--nav-bg);
  padding: 4rem 0;
}

.con-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.con-label {
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 12px !important;
}

.con-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 400;
  letter-spacing: 1.2px;
  color: var(--primary);
  margin-bottom: 12px !important;
  line-height: 1.3;
}

.con-desc {
  font-family: var(--font-montserrat);
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: var(--primary);
}

.con-filter {
  display: flex;
  align-items: stretch;
  border: 1px solid #CBA55C;
  width: fit-content;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding-right: 8px;
}

.con-filter-label {
  flex: 1;
  font-family: var(--font-montserrat);
  font-size: 16px;
  font-weight: 400;
  color: var(--primary);
  text-align: center;
  padding: 22px 24px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.con-filter-selects {
  display: flex;
  flex-shrink: 0;
  gap: 1rem;
}

.con-select-wrap + .con-select-wrap {
  border-left: 1px solid rgba(255,255,255,0.3);
}

.con-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.con-select {
  background: #CBA55C;
  color: #ffffff;
  border: none;
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 400;
  padding: 14px 28px 14px 16px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  width: 150px;
}

.con-select option {
  background: #ffffff;
  color: var(--primary);
}

.con-select-icon {
  position: absolute;
  right: 8px;
  color: #ffffff;
  font-size: 10px;
  pointer-events: none;
  flex-shrink: 0;
}

.con-carousel-wrap {
  position: relative;
}

.con-img-wrap {
  position: relative;
  aspect-ratio: 530 / 400;
  overflow: hidden;
}

.con-fancybox-link {
  display: block;
  width: 100%;
  height: 100%;
}

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

.con-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.con-date-badge {
  position: absolute;
  top: 25px;
  right: 0;
  background: #ffffff;
  color: #CBA55C;
  font-family: var(--font-montserrat);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 22px;
  letter-spacing: 0.5px;
}


.con-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.con-prev,
.con-next {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: 0;
}

.con-prev img,
.con-next img {
  width: 52px;
  height: 52px;
  display: block;
}

@media only screen and (max-width: 991px) {
  .con-heading { font-size: 4vw; }
  .con-filter { max-width: 100%; width: 100%; }
}

@media only screen and (max-width: 767px) {
  .con-heading { font-size: 6vw; }
  .con-filter-label { font-size: 14px; padding: 12px 16px; }
  .con-select { min-width: 90px; font-size: 13px; padding: 12px 12px; }
  .con-prev img, .con-next img { width: 40px; height: 40px; }
  .section-location {
    padding: 2rem 0;
}
.section-gallery {
    padding: 2rem 0;
}
.section-construction{
  padding: 2rem 0;
}
}

@media only screen and (max-width: 576px) {
  .con-heading { font-size: 7vw; }
  .con-filter { flex-direction: column; padding-right: 0; }
  .con-filter-selects { display: flex; width: calc(100% - 16px); margin: 0 8px 8px 8px; }
  .con-select-wrap { flex: 1; }
  .con-select { width: 100%; }
}

/* ================================
   ABOUT SECTION
   ================================ */
.section-about {
  position: relative;
  min-height: 130dvh;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FFFDED 0%, #FFFDED 14%, rgba(255, 253, 237, 0.75) 24%, rgb(255 253 237 / 0%) 34%, rgba(255, 253, 237, 0) 42%);
  pointer-events: none;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center center; */
  display: block;
}

.about-content {
  position: relative;
  z-index: 1;
  min-height: 130dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 5rem;
}

.about-desc {
  font-family: var(--font-montserrat);
  font-size: 0.95vw;
  font-weight: 400;
  line-height: 1.85;
  color: var(--primary);
  max-width: 957px;
  margin-top: 22px;
  margin-bottom: 0;
}

.about-label {
  font-family: var(--font-montserrat);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 10px !important;
}

.about-heading {
  font-family: var(--Anuphan);
  font-size: 3.125vw;
  font-weight: 400;
  letter-spacing: 1.4px;
  line-height: 1.29;
  color: var(--primary);
  max-width: 1040px;
  margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
  .about-heading { font-size: min(5.5vw, 52px); }
  .about-content { padding-top: 6rem; }

.about-desc {
    font-size: 15px;
}
}

@media only screen and (max-width: 767px) {
  .section-about {/* height: auto; *//* min-height: 121dvh; */}
  .about-bg-img { width: 100%; height: 100%; }
  .about-bg::after {
    background: linear-gradient(to bottom, #FFFDED 0%, #FFFDED 35%, rgb(255 253 237 / 0%) 50%, rgb(255 253 237 / 0%) 62%, rgba(255, 253, 237, 0) 75%);
  }
  .about-heading { font-size: min(7vw, 40px); }
  .about-label { font-size: 16px; }
  .about-content { padding-top: 5.5rem; padding-bottom: 3rem; }
  .about-desc { font-size: 13px; max-width: 88vw; }
  .amenities-card::after {
    left: 20%;
    right: 20%;
}
}

@media only screen and (max-width: 576px) {
  .about-heading { font-size: 6vw; }

    .about-content {
        padding-top: 5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ================================
   DESKTOP FLOATING CORNER BUTTONS
   ================================ */
@keyframes floatPulse {
  0%   { box-shadow: 0 0 0 0 rgba(152, 10, 35, 0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(152, 10, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(152, 10, 35, 0); }
}

.floating-side-btn {
  position: fixed;
  bottom: 5%;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-family: var(--font-montserrat);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 9px;
  background: #980A23;
  color: #fff;
  border: 2px solid #fff;
  transition: background 0.22s ease;
  animation: floatPulse 2s ease-out infinite;
}

.floating-side-btn i { font-size: 13px; }

.floating-enquire { right: 31px; }

.floating-brochure { left: 31px; }

.floating-side-btn:hover {
  background: #7a0820;
}

@media only screen and (max-width: 767px) {
  .floating-side-btn { display: none; }
}
