@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* ==================== ROOT VARIABLES ==================== */
:root {
  --gold: #D4AF37;
  --gold-dark: #C8A44E;
  --gold-light: #E8D48B;
  --dark: #1E1E1E;
  --dark-bg: #2C2C2C;
  --dark-nav: rgba(30, 30, 30, 0.95);
  --light-bg: #F5F5F5;
  --white: #FFFFFF;
  --text-dark: #717171;
  --text-muted: #6c757d;
  --font-heading: "Kanit", sans-serif;
  --font-body: "Kanit", sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --gold: #D4AA3E;
  --gold-dark: #B8880E;
  --black: #353535;
  --white: #ffffff;
  --card-bg: #F6F4F0;
}

/* ==================== BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  font-weight: 400;
  overflow-x: hidden;
  line-height: normal;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

.section-padding {
  padding: 100px 0;
}

.bg-light-custom {
  background-color: var(--light-bg);
}


.pt-140 {
  padding-top: 140px !important;
}


.pt-100 {
  padding-top: 100px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}


.text-black1 {
  color: var(--black);
}

.container {
  max-width: calc(100% - 200px) !important;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  /* min-width: 100%; */
}

/* ==================== UTILITIES ==================== */
.text-gold {
  color: var(--gold) !important;
}

.dot-gold {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  flex-shrink: 0;
}

.section-label {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 50px;
  letter-spacing: 0.5px;

}

.section-label span {
  font-family: 'Kanit';
  font-weight: 400;
  font-size: 24px;
  line-height: 28.5px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #000000;
}


.section-title {
  font-size: 60px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 65px;
}

.section-text {
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.8;
  max-width: 560px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
}

/* ==================== BUTTONS ==================== */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-cta {
  background: var(--white);
  color: var(--dark);
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 50px;
  border: 2px solid var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-1px);
}

.btn-learn-more {
  color: var(--black);
  font-weight: 400;
  font-size: 20px;
  padding: 12px 32px;
  transition: var(--transition);
  border-radius: 5px;
  border: 1px solid #D4AA3E;
  background: #FFF;
}

.btn-learn-more:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  border-width: 2px !important;
}

/* ==================== NAVBAR ==================== */
.navbar {
  padding: 16px 0;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  background: #3535357a;
  backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: var(--dark-nav);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.brand-tagline {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  border-top: 2px solid var(--gold);
  padding-top: 2px;
  margin-top: 2px;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 20px;
  padding: 8px 16px !important;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
  line-height: 100%;
  margin-bottom: 10px;

}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--white);
}

/*.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}*/

#navbarNav .navbar-nav .nav-item .nav-link.active {
  border-bottom: 1px solid #D4AA3E;
}

#navbarNav .navbar-nav {
  gap: 30px;
  /* margin-left: 165px !important; */
}

#btnGetInTouch {
  font-size: 20px;
  line-height: 100%;
}

.navbar .dropdown-menu {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  margin-top: 8px;
}

.navbar .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.navbar .dropdown-item:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}




    /* Firefox */
* {
    scrollbar-width: thin;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 20px;
}

/* Hide top & bottom arrows */
::-webkit-scrollbar-button:single-button {
    display: none;
    width: 0;
    height: 0;
}


/* ==================== HERO ==================== */
.hero-section {
  min-height: 100vh;
  background: url('../images/banner/hero-home.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 26px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  line-height: 52px;
  margin-bottom: 10px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounceDown 2s infinite;
}

.hero-scroll-indicator a {
  color: var(--white);
  font-size: 1.4rem;
  opacity: 0.7;
}

.hero-scroll-indicator a:hover {
  opacity: 1;
  color: var(--gold);
}

@keyframes bounceDown {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ==================== ABOUT ==================== */
.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img {
  border-radius: var(--radius-lg);
  width: 100%;
  transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-img {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--gold);
  color: var(--dark);
  padding: 16px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.missionvission {
  position: relative;
  padding-top: 50px;
}

.missionvission::after {
  background-color: #F5F5F5;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: calc(100% - 300px);
  height: 100%;
  content: "";
  position: absolute;
  z-index: -1;
}

.mission-vision-grid {
  display: flex;
  gap: 24px;
  /* flex-wrap: wrap; */
  justify-content: center;
}

.mv-card {
  padding: 200px 60px 147px 60px;
  background-image: url(../images/about/home-shape.svg);
  width: 49%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

}


.mv-card-icon {
  width: 86px;
  height: 86px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
.contact-form .contact-form-right {
  overflow: hidden;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.contact-form .contact-form-right iframe {
  min-height: 480px;
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
  box-shadow: 0 18px 40px rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

.mv-card-title {
  color: #353535;
  font-family: 'Kanit';
  font-weight: 400;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 90px;

}

.mv-card-text {
  color: var(--text-dark);
  line-height: 28.5px;
  text-align: left;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 400;

}

@media (max-width: 991px) {
  .mission-vision-grid {
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .mv-card {
    width: 100%;
    padding: 40px 24px 28px;
  }
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  opacity: 0.85;
}





/* ── SECTION 1 : WHITE HEADER ─────────────────── */
.header-section {
  background: var(--white);
  padding-top: 00px;
  padding-bottom: 40px;
}

.show-home-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 14px;
}

.show-home-label .dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.5px;
}

/* ── SECTION 2 : GOLD + IMAGE GRID ───────────── */
.property-section {
  /* display: grid;
    grid-template-columns: 1fr 1fr;*/
  /* min-height: 1100px; */
}

.property_cover {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left gold column */
.property-left {
  background: var(--gold);
  padding: 30px 60px 50px 300px;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
}

.property-name {
  font-size: 60px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}

.property-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.address-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.addr-icon {
  width: 42px;
  height: 42px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addr-icon i {
  color: var(--gold);
  font-size: 1rem;
}

.addr-text {
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.5;
  padding-top: 0px;
}

/* Right image column */
.property-right {
  position: relative;
  /* overflow: hidden; */
  background: var(--gold);
}

.property-right img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.7s ease;
  border-radius: 16px;

}

.show-home1 {
  position: relative;
    top: -219px;
    right: -15%;
    max-width: 601px;
    width: 100%;
}

#card-1 {
  --index: 1;
}

#card-2 {
  --index: 2;
  margin-top: 150px;
}

#card-3 {
  --index: 3;
  margin-top: 150px;
}

#card-4 {
  --index: 4;
}




.card56 {
  position: sticky;
  /* top: 345px;*/
  top: 0px;
  padding-top: calc(var(--index) * var(--card-top-offset));
}






/* GroveGroveGroveGroveGroveGrove */


/* Animation */
@supports (animation-timeline: works) {

  @scroll-timeline cards-element-scrolls-in-body {
    source: selector(body);
    scroll-offsets:
      selector(#cards) start 1,
      selector(#cards) start 0;
    start: selector(#cards) start 1;
    end: selector(#cards) start 0;
    time-range: 4s;
  }

  .card56 {
    --index0: calc(var(--index) - 1);
    --reverse-index: calc(var(--numcards) - var(--index0));
    --reverse-index0: calc(var(--reverse-index) - 1);
  }

  .card__content {
    transform-origin: 50% 0%;
    will-change: transform;

    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);

    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: cards-element-scrolls-in-body;
  }

  @keyframes scale {
    to {
      transform:
        scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
    }
  }
}

/* GroveGroveGroveGroveGroveGrove */




























/* .property-right:hover img {
    transform: scale(1.04);
} */

.learn-more-btn {
    position: absolute;
    bottom: -14px;
    left: 0;
    /* transform: translateX(-50%); */
    /* background: rgb(17 17 17 / 60%); */
    background-image: url(../images/dream-home/learn-more-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    /* border: 10px solid #d4aa3e; */
    border-radius: 10px;
    padding: 19px 36px;
    font-size: 20px;
    letter-spacing: 0.02em;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
    max-width: 245px;
    justify-content: center;
    width: 100%;
}

/*.learn-more-btn:hover {
    background: var(--black);
color: #fff;
    transform: translateX(-50%) translateY(0px);
}*/

/* ── SECTION 3 : STATS ────────────────────────── */
.stats-outer {
  background: var(--gold);
  position: relative;
  bottom: 0px;
  height: 0px;
}

.stats-card {
  /* background: #EFEFEF;
    border-radius: 20px;
    padding: 32px 36px;
    position: relative;
    top: 53px; */
  background: #EFEFEF;
  border-radius: 20px;
  padding: 80px 85px;
  position: relative;
  top: -100px;
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #D9D9D9;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1 1 140px;
}

.stat-icon i {
  font-size: 1.9rem;
  color: var(--black);
}

.stat-value {
  font-size: 30px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
}

.stat-label {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: #DEDAD4;
  flex-shrink: 0;
  align-self: center;
}

.experience-luxury {
  padding-top: 100px !important;
  padding-bottom: 0 !important;
}

.slider-section {
  padding-bottom: 100px;
}











/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-section {
  animation: fadeUp 0.5s ease 0.05s both;
}

.property-left>* {
  animation: fadeUp 0.5s ease both;
}

.property-left>*:nth-child(1) {
  animation-delay: 0.1s;
}

.property-left>*:nth-child(2) {
  animation-delay: 0.18s;
}

.property-left>*:nth-child(3) {
  animation-delay: 0.26s;
}

.property-left>*:nth-child(4) {
  animation-delay: 0.34s;
}

.stats-card {
  animation: fadeUp 0.5s ease 0.42s both;
}








/* ── SECTION HEADER ─────────────────────────── */
.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #000000;
}

.featured-label .dot {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
}

.section-title {
  margin-bottom: 40px !important;
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 auto;
  letter-spacing: -0.5px;
}

/* ── SLIDER WRAPPER ─────────────────────────── */
.slider-section {
  /* padding: 0 0 60px; */
  position: relative;
}

.slider-track-outer {
  overflow: hidden;
  /* padding: 0 15px; */
}

.slider1236 {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 4px 0 8px;
  height: auto;
}

/* ── PROPERTY CARD ──────────────────────────── */
.prop-card {
  background: var(--white);
  border-radius: 0px;
  border: 1.5px solid #EBEBEB;
  overflow: hidden;
  flex: 0 0 calc(33.333% - 20px);
  flex: 0 0 calc(25% - 20px);
  min-width: 0;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07); */
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}

.prop-card:hover {
  /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13); */
  transform: translateY(-3px);
  border: 1.5px solid var(--gold);
}

/* Image area */
.card-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.prop-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

/* Status badge */
.status-badge {
  position: absolute;
  top: 40px;
  left: 20px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  z-index: 2;
}

.sold-ourtt {
  font-size: 50px;
  font-weight: 400;

}



.badge-sold {
  background: #FF1B1B;
}

.badge-sale {
  background: #3ED441;
}

.badge-presold {
  background: #D4AA3E;
}

/* Price tag */
.price-tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgb(255 255 255 / 80%);
  backdrop-filter: blur(6px);
  color: #353535;
  font-size: 24px;
  font-weight: 400;
  padding: 5px 14px;
  border-radius: 8px;
  z-index: 2;
}

.filter12 {
  filter: blur(5px);
}


/* Card body */
.card-body-custom {
  padding: 18px 20px 20px;
}

.prop-address {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.prop-address i {

  margin-top: 2px;
}

.prop-location {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
}

.prop-location i {
  font-size: 0.85rem;
  color: #aaa;
  flex-shrink: 0;
}

.prop-stats {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  border-top: 1px solid #F0EEEA;
  padding-top: 14px;
}

.prop-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  flex: 1;
  white-space: nowrap;
}

.prop-stat i {
  font-size: 1rem;
  color: #888;
}

/* sold-out card dimming */
.prop-card.sold .card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
}

/* ── DOTS / INDICATORS ──────────────────────── */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D0CCC6;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.slider-dot.active {
  background: var(--black);
  transform: scale(1.2);
}

/* ── NAV ARROWS ─────────────────────────────── */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.nav-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #DEDAD4;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--black);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}



/* ── HERO SECTION ───────────────────────────── */
.residences-section {
  position: relative;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* overflow: hidden; */
  padding-top: 100px;

}

/* Full-bleed background image with dark overlay */
.residences-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1800&q=80');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

/* Dark scrim so text is readable */
.residences-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.52);
  z-index: 1;
}

/* All direct children above the overlay */
.residences-section>* {
  position: relative;
  z-index: 2;
}

/* ── HEADER TEXT ────────────────────────────── */
.model-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 14px;
}

.model-label .dot {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
}




/* ── CARDS GRID ─────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
  max-width: 1100px;
}

/* ── RESIDENCE CARD ─────────────────────────── */
.res-card {
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  height: 380px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.res-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

/* Background property photo */
.res-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.res-card:hover .res-card-img {
  transform: scale(1.05);
}

/* Gradient overlay — gold tint for first card, dark-blue for others */
.res-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.res-card .res-card-overlay:hover {
  background: linear-gradient(to bottom,
      rgba(212, 160, 23, 0.55) 0%,
      rgba(212, 160, 23, 0.75) 55%,
      rgba(180, 130, 10, 0.92) 100%);
}

.text-light1 {
  color: #cccccc !important;
}



.overlay-dark {
  background: linear-gradient(to bottom, rgb(0 0 0 / 15%) 0%, rgb(0 0 0 / 55%) 55%, rgb(0 0 0) 100%);
}

/* Card info pinned to bottom */
.res-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 20px 22px;
}

.res-card-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.res-card-name i {
  font-size: 18px;
  opacity: 0.9;
}

.res-card-address {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.res-card-address i {
  font-size: 0.85rem;
  opacity: 0.75;
  flex-shrink: 0;
}




/* ══════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════ */
.cards-section {
  /* max-width: 1280px; */
  /* margin: 0 auto; */
  position: relative;
}

/* ══════════════════════════════
       SWIPER — overflow hidden
    ══════════════════════════════ */
.cards-swiper-outer {
  overflow: hidden;
  width: 100%;
}

.cards-swiper {
  width: 100%;
}

/* ══════════════════════════════
       RES CARD
    ══════════════════════════════ */
.res-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 630px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.res-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.res-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  pointer-events: none;
  -webkit-user-drag: none;
}

.res-card:hover .res-card-img {
  transform: scale(1.05);
}

.res-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* .overlay-gold {
      background: linear-gradient(
        to bottom,
        rgba(212,160,23,0.55) 0%,
        rgba(212,160,23,0.75) 55%,
        rgba(180,130,10,0.92) 100%
      );
    } */

.overlay-dark {
  background: linear-gradient(to bottom,
      rgba(20, 50, 90, 0.15) 0%,
      rgba(10, 25, 55, 0.55) 55%,
      rgba(5, 15, 40, 0.88) 100%);
}

.res-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 20px 22px;
}

.res-card-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.res-card-name i,
.res-card-address i {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.res-card-address {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
}

.residences-section .section-title {
  margin-bottom: 70px !important;
}

/* ══════════════════════════════
       DOTS
    ══════════════════════════════ */
.cards-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  display: none;
}

.cards-dots .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
  margin: 0 !important;
  transition: background 0.2s, transform 0.2s;
}

.cards-dots .swiper-pagination-bullet-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ══════════════════════════════
       ARROWS
    ══════════════════════════════ */
.cards-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.cards-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cards-arrow-btn svg {
  width: 18px;
  height: 18px;
  color: var(--white);
  transition: color 0.2s;
}

.cards-arrow-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.cards-arrow-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Desktop: arrows hide, dots show */
@media (min-width: 992px) {
  .cards-arrows {
    display: none;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .res-card {
    height: 280px;
  }
}



.grand-duilder-left h2 {
  max-width: 600px;
  margin-left: 0;
  font-weight: 400;
}

.grand-duilder-left p {
  font-size: 18px;
}





























































/* ── SECTION ────────────────────────────────── */
.luxury-section {
  text-align: center;
  padding-top: 570px;
}

.community-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #000000;
}

.community-label .dot {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
}





/* ── LOGO CARD ──────────────────────────────── */
.logo-card {
  border: 1.8px solid var(--gold-light);
  border-radius: 10px;
  padding: 28px 20px 24px;
  background: var(--white);
  text-align: left;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: pointer;
  transition: transform 0.6s ease;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.logo-card:hover {
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.18);
  border-color: var(--gold);
  background-color: var(--gold);
  transition: transform 0.6s ease;
  transform: translateY(-6px);
}


/* Logo image wrapper */
.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1.5px solid var(--gold-light);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 22px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease-out;

}

.logo-card:hover .logo-wrap {
  top: -10px;
  transition: 0.3s ease-out;
}





.logo-wrap img {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Fallback SVG logo when no real image */
.logo-svg {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-svg svg {
  flex-shrink: 0;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-bridges {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2B6DAD;
}

.logo-of {
  font-size: 0.42rem;
  font-style: italic;
  color: #4CAF50;
  letter-spacing: 0.04em;
  margin: 1px 0;
}

.logo-langdon {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2B6DAD;
}

.card-desc {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  text-align: center;
  padding: 15px;
}













/* ══════════════════════════════════════════════
       SECTION 1 — WE HELP YOU FIND YOUR DREAM HOME
    ══════════════════════════════════════════════ */
.wwd-hero-wrap {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-image: url(../images/dream-home/help-bg.svg);
}

.what-we-do img {
  border-radius: 0 10px 10px 0;
}


/* Gold floating info card */
.wwd-info-card {
  background: rgba(212, 170, 62, 0.80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 36px 38px 34px;
  max-width: 670px;
  /*box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);*/
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wwd-info-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
}

.wwd-info-label::before {
  content: '';
  width: 20px;
  height: 20px;
  background: #353535;
  border-radius: 50%;
}

.wwd-info-title {
  font-size: 48px;
  font-weight: 500;
  color: var(--wwd-black);
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.wwd-info-desc {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 100px;
}

.wwd-stats {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.wwd-stat-num {

  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}

.wwd-stat-label {
  font-size: 18px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════
       SECTION 2 — WHY CHOOSE US
    ══════════════════════════════════════════════ */
.wcu-section {
  position: relative;
}

/* Large outlined background text */
.wcu-bg-title {
  font-size: clamp(180px, 180px, 180px);
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(17, 17, 17, 0.13);
  text-stroke: 1.5px rgba(17, 17, 17, 0.13);
  text-align: center;
  margin: -55px 0 55px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: relative;
  z-index: 1;
}

.wcu-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 30px;
}

/* Each WCU card */
.wcu-card {
  position: relative;
  background: linear-gradient(to bottom, #2A3749 0%, #1A2634 100%);
  border-radius: 16px;
  /* padding: 48px 20px 28px; */
  text-align: center;
  /* overflow: hidden; */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  min-height: 240px;
}

.wcu-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #353535a8;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.wcu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.wcu-card>* {
  position: relative;
  z-index: 1;
}

/* Floating pin icon (top-center, crosses card border) */
.wcu-pin {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  background: #D9D9D9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 10px solid #f5f5f5;
}

.wcu-pin i {
  font-size: 1.2rem;
  color: var(--wwd-black);
}

.wcu-card img {
  border-radius: 16px;
}

.wcu-card-title {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  /* margin: 0 0 10px; */
  position: absolute;
  top: 75px;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 99;
}

.wcu-card-desc {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  position: absolute;
  top: 170px;
  left: 0;
  text-align: center;
  width: 100%;
  z-index: 99;
}








/* ═══════════ SECTION WRAPPER ═══════════ */
.op-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  padding-right: 0;
  background: url(../images/icon/step_bg.svg) no-repeat right bottom;
  /* right: -70px; */
}




.op-title {

  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 60px;
  letter-spacing: -0.5px;
  color: var(--black);
}

/* ═══════════ STAIRCASE SLIDER ═══════════ */
.op-stage {
  position: relative;
  min-height: 500px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}





.swiper-pagination {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
  padding-right: 2px !important;
  padding-left: 2px !important;
  background-color: transparent;
  /* Change color to see size of the pagination box*/
  position: relative !important;
  width: 230px !important;
  /* Sets width of pagination container */
  margin: auto;
  /* Center the container horizontally */
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #C0C0C0;
}

.swiper-pagination-bullet-active {
  background: #222222;
  opacity: var(--swiper-pagination-bullet-active-opacity, 0.85) !important;
  --swiper-pagination-bullet-horizontal-gap: 10px;
  transform: scale(1) rotate(45deg) !important;
  outline-style: ridge !important;
  outline-width: 1.5px !important;
  outline-color: rgba(38, 38, 38, 0.15);
  opacity: 0.85 !important;
}














/* ============================================================
       RESPONSIVE SLIDER — 5.5 items on xl, scaling down
       Formula: flex: 0 0 calc((100% - gap * visibleGaps) / itemsShown)
       where visibleGaps = floor(itemsShown)
       ============================================================ */
.slider-wrap {
  position: relative;
  padding-top: 400px;
  padding-left: 70px;
  padding-right: 70px;
}

.slider-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;

}

.slider-viewport::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
  /* gap: 12px; */
  padding: 4px 0;
  align-items: end;
  /* height: 853px; */
  height: auto;
}

.slider-item {
  scroll-snap-align: start;
}

/* Mobile first: 1.5 items */
.slider-item {
  flex: 0 0 calc((100% - 12px * 1) / 1.5);
}

/* sm: 2.5 items */
@media (min-width: 576px) {
  .slider-item {
    flex: 0 0 calc((100% - 12px * 1) / 2.5);
  }
}

/* md: 3.5 items */
@media (min-width: 768px) {
  .slider-item {
    flex: 0 0 calc((100% - 12px * 2) / 3.5);
  }
}

/* lg: 4.5 items */
@media (min-width: 992px) {
  .slider-item {
    flex: 0 0 calc((100% - 12px * 3) / 4.5);
  }
}

/* xl: 5.5 items */
@media (min-width: 1200px) {
  .slider-item {
    flex: 0 0 calc((100% - 12px * 5) / 5.5);
  }
}

/* Card styling */





/* ═══════════ SWIPER PAGINATION (DOTS) ═══════════ */
.op-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

/* Swiper's native bullets */
.op-dots .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: #D5D1CA;
  opacity: 1;
  margin: 0;
  transition: background 0.2s, transform 0.2s;
}

.op-dots .swiper-pagination-bullet-active {
  background: var(--op-black);
  transform: scale(1.2);
}

/* ═══════════ NAV ARROWS ═══════════ */
.op-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.op-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #DEDAD4;
  background: var(--op-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.op-arrow-btn svg {
  width: 18px;
  height: 18px;
  color: var(--op-black);
  transition: color 0.2s;
}

.op-arrow-btn:hover {
  background: var(--op-gold);
  border-color: var(--op-gold);
}

.op-arrow-btn:hover svg {
  color: var(--op-white);
}

/* Disabled state when at first/last slide */
.op-arrow-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ═══════════ RESPONSIVE TWEAKS ═══════════ */
@media (max-width: 991.98px) {
  .slider-viewport {
    padding: 40px 0 20px;
  }
}

@media (max-width: 575.98px) {

  .op-title {
    margin-bottom: 32px;
  }

  .btn-step {
    padding: 14px 22px;
    font-size: 0.95rem;
    min-width: 140px;
  }
}

/* ═══════════ ENTRANCE ANIMATION ═══════════ */
@keyframes opFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.op-label {
  animation: opFadeUp 0.45s ease 0.05s both;
}

.op-title {
  animation: opFadeUp 0.45s ease 0.12s both;
}













/* First slide */
.slider-item:nth-child(1) .btn-step {
  border-radius: 20px;
  background: #D4AA3E;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  padding: 18px 30px;
  border: 6px solid #ffffff;
  transition: transform 0.6s ease;
}

.slider-item:nth-child(1) .slide-text {
  color: #353535;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 100%;
  padding-top: 10px;
}

.slider-item:nth-child(1) .slide-card {
  text-align: center;
}





.slide2 {
  text-align: center;
  position: relative;
  /* top: -60px; */
  right: 80px;
}


.slide3 {
  text-align: center;
  position: relative;
  /* top: -100px; */
  right: 160px;
}

.slide4 {
  text-align: center;
  position: relative;
  /* top: -180px; */
  right: 240px;
}

.slide5 {
  text-align: center;
  position: relative;
  /* top: -220px; */
  right: 320px;
}


.slide6 {
  text-align: center;
  position: relative;
  /* top: -320px; */
  right: 410px;
}

.slide7 {
  text-align: center;
  position: relative;
  /* top: -380px; */
  right: 490px;
}

.slide8 {
  text-align: center;
  position: relative;
  /* top: -420px; */
  right: 570px;
}

.slide9 {
  text-align: center;
  position: relative;
  /* top: -510px; */
  right: 650px;
}

.slide10 {
  text-align: center;
  position: relative;
  /* top: -540px; */
  right: 730px;
}

.slider-track {
  display: flex;
  align-items: flex-start;
  /* overflow-y: visible; */
  /* height: 800px; */
}

.slider-viewport {
  overflow: visible !important;
}

.swiper {
  overflow: visible !important;
}

/* base card */
.slide-card {
  text-align: center;
  transition: transform 0.4s ease;
}

/* start from step 1 */
.swiper-slide:nth-child(1) .slide-card {
  transform: translate(0px, 0px);
}

.swiper-slide:nth-child(2) .slide-card {
  transform: translate(25px, -60px);
}

.swiper-slide:nth-child(3) .slide-card {
  transform: translate(50px, -120px);
}

.swiper-slide:nth-child(4) .slide-card {
  transform: translate(75px, -180px);
}

.swiper-slide:nth-child(5) .slide-card {
  transform: translate(100px, -240px);
}

.swiper-slide:nth-child(6) .slide-card {
  transform: translate(125px, -300px);
}

.swiper-slide:nth-child(7) .slide-card {
  transform: translate(150px, -360px);
}

.swiper-slide:nth-child(8) .slide-card {
  transform: translate(175px, -420px);
}

.swiper-slide:nth-child(9) .slide-card {
  transform: translate(200px, -480px);
}

.swiper-slide:nth-child(10) .slide-card {
  transform: translate(225px, -540px);
}


















.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
  position: relative;
  transition-property: transform;
  display: block;
}


















.slider-item:hover .btn-step {
  background: #241d0b !important;
  transition: transform 0.6s ease;
  transform: translateY(-6px);


}









/* ═══════════ VISIT SECTION ═══════════ */
.sv-wrapper {
  position: relative;
  width: 100%;
}

/* Hero split: left text/bg-image + right form */
.sv-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 510px;
  align-items: stretch;
}

/* Background image (spans full hero width) */
.sv-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(17, 17, 17, 0.32) 0%, rgba(17, 17, 17, 0.18) 55%, rgba(17, 17, 17, 0.18) 100%),
    url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1800&q=80');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Left: label + heading */
.sv-hero-text {
  position: relative;
  z-index: 2;
  padding: 80px 40px 60px 178px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.sv-field option:hover {
  background-color: ;
}

.sv-field option:checked {
  background-color: #000000;
  color: #ffffff;
}

.sv-heading {

  font-size: 60px;
  font-weight: 500;
  color: white;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;

}

/* Right: Form card */
.sv-form-wrap {
  position: absolute;
  z-index: 2;
  /* padding: 40px 40px 75px 0; */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  right: 50px;
  top: 63px;
}

.sv-form-card {
  background: #D4AA3E;
  border-radius: 18px;
  padding: 50px;
  width: 100%;
  width: 600px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.sv-group-label {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.sv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.sv-field {
  padding: 14px 16px;
  font-size: 18px;
  color: rgba(48, 48, 48, 0.4);
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s;
  border-radius: 5px;
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, 0.83);
}

.sv-field::placeholder {
  color: var(--sv-input-text);
}

.sv-field:focus {
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.18);
}

select.sv-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23111' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 36px;
}

/* Field with icon (date / time) */
.sv-field-ico {
  position: relative;
}

.sv-field-ico i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sv-black);
  font-size: 1rem;
  pointer-events: none;
}

.sv-field-ico .sv-field {
  padding-right: 38px;
}

.sv-single {
  margin-bottom: 14px;
}

.sv-submit-btn {
  border-radius: 5px;
  border: 1px solid #D4AA3E;

  background: #000;
  color: #FFF;
  padding: 14px 28px;
  font-size: 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  transition: background 0.25s, transform 0.25s;
}

.sv-submit-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

.sv-submit-btn i {
  font-size: 0.9rem;
}

/* ═══════════ MAP ═══════════ */
.sv-map-area {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sv-map-frame {
  width: 80%;
  height: 280px;
  border: none;
  display: block;
}













/* Viewport */
.slider-viewport {
  overflow: hidden;
  width: 100%;
}

/* Track */
.slider-track {
  display: flex;
  gap: 16px;
  /* GAP variable se match kare */
  will-change: transform;
}

/* Items — width JS inject karega, bas flex stop karo */
.slider-item {
  flex-shrink: 0;
}

/* Dots */
.op-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.op-dots button {
  width: 9px;
  height: 9px;
  border: none;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}

.op-dots button.active {
  background: #111;
  transform: scale(1.2);
}

/* Arrows */
.op-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.op-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.op-arrow-btn:hover {
  background: #C99A2F;
  border-color: #C99A2F;
}

.op-arrow-btn:hover svg {
  color: #fff;
}

.op-arrow-btn svg {
  width: 18px;
  height: 18px;
}

/* Desktop: arrows hide kar sakte ho */
@media (min-width: 992px) {
  .op-arrows {

    display: flex;
    margin-top: 40px;


  }
}































/* ═══════════ SECTION ═══════════ */


.tm-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  /* align-items: center; */
  position: relative;
}

/* ═══════════ LEFT COPY ═══════════ */


.tm-heading {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}

.tm-desc {
  font-size: 20px;
  line-height: 1.65;
  margin: 0;
}

/* ═══════════ RIGHT: BUBBLE + AVATARS ═══════════ */
.tm-right {
  position: relative;
  padding: 60px 0 0;
}

/* Gold speech bubble */
.tm-bubble {
  background: #D4AA3E;
  border-radius: 18px;
  padding: 30px 34px 34px;
  position: relative;
  box-shadow: 0 16px 36px rgba(212, 160, 23, 0.22);
  width: 710px;
}

/* Downward tail on the bubble (points to the client avatar) */
.tm-bubble::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 150px;
  width: 0px;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 60px solid transparent;
  border-top: 30px solid #D4AA3E;
}

.tm-stars {
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #000000;
}

.tm-quote {
  font-size: 20px;
  line-height: 1.65;
  margin: 0;
  color: #000000;
}

/* Client row below the bubble */
.tm-client {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding-left: 40px;
}

.tm-client-avatar {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--tm-white);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.tm-client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* filter: blur(6px);*/
}

.tm-client-name {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 2px;
}

.tm-client-loc {
  font-size: 24px;
  color: rgba(17, 17, 17, 0.6);
}


div#tmDots {
  display: none;
}







/* ═══════════ FLOATING FADED AVATARS ═══════════ */
.tm-float-avatar {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.45;
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
  transition: transform 8s ease-in-out, opacity 0.4s;
  animation: tmFloat 7s ease-in-out infinite;
}

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

/* Top-left floating avatar (next to bubble top edge) */
.tm-float-1 {
  width: 100px;
  height: 100px;
  top: -6px;
  left: 12%;
  animation-delay: 0s;
}

/* Top-right floating avatar */
.tm-float-2 {
  width: 100px;
  height: 100px;
  top: 14px;
  right: 3%;
  animation-delay: 1.5s;
}

/* Bottom-right floating avatar */
.tm-float-3 {
  width: 100px;
  height: 100px;
  bottom: 110px;
  right: 4%;
  animation-delay: 3s;
}

@keyframes tmFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 991.98px) {
  .tm-section {
    padding: 60px 28px 40px;
  }

  /*  .tm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
 
  .tm-left { padding: 0; text-align: center; }*/
  .tm-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .tm-right {
    padding: 40px 0 30px;
  }

  .tm-float-1 {
    top: -10px;
    left: 6%;
    width: 64px;
    height: 64px;
  }

  .tm-float-2 {
    top: 10px;
    right: 4%;
    width: 50px;
    height: 50px;
  }

  .tm-float-3 {
    bottom: 20px;
    right: -2%;
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 575.98px) {
  .tm-section {
    padding: 48px 16px 60px;
  }

  .tm-bubble {
    padding: 22px 20px 24px;
    border-radius: 14px;
    width: 350px;
  }

  .tm-bubble::after {
    left: 40px;
  }

  .tm-stars {
    font-size: 0.95rem;
  }

  .tm-quote {
    font-size: 0.88rem;
  }

  .tm-client {
    padding-left: 16px;
    gap: 14px;
    margin-top: 26px;
  }

  .tm-client-avatar {
    width: 58px;
    height: 58px;
  }

  .tm-client-name {
    font-size: 1.05rem;
  }

  .tm-float-1 {
    width: 48px;
    height: 48px;
    top: -10px;
    left: 8%;
  }

  .tm-float-2 {
    width: 38px;
    height: 38px;
    top: 6px;
    right: 5%;
  }

  .tm-float-3 {
    width: 44px;
    height: 44px;
    bottom: 10px;
    right: 2%;
  }
}

/* ═══════════ ENTRANCE ANIMATION ═══════════ */
@keyframes tmFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tm-label {
  animation: tmFadeUp 0.45s ease 0.05s both;
}

.tm-heading {
  animation: tmFadeUp 0.45s ease 0.13s both;
}

.tm-desc {
  animation: tmFadeUp 0.45s ease 0.21s both;
}

.tm-bubble {
  animation: tmFadeUp 0.5s ease 0.3s both;
}

.tm-client {
  animation: tmFadeUp 0.5s ease 0.4s both;
}













/* ═══════════ SECTION ═══════════ */




.gl-title {

  font-size: 60px;
  font-weight: 600;
  color: var(--gl-black);
  text-align: center;
  line-height: 1.1;
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}

.Office-Space .gl-title {
  font-weight: 400;
  text-align: left;
      font-size: 49px;
}


/* ═══════════ MASONRY GRID ═══════════ */
.gl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 4px;
  gap: 14px;
}

/* Each tile */
.gl-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}

.gl-tile:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.gl-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gl-tile:hover img {
  transform: scale(1.06);
}

/* Span variants for masonry heights */
.gl-span-1 {
  grid-row: span 26;
}

/* ~260px */
.gl-span-2 {
  grid-row: span 32;
}

/* ~320px */
.gl-span-3 {
  grid-row: span 40;
}

/* ~400px */
.gl-span-4 {
  grid-row: span 20;
}

/* ~200px */



.gl-span-5 {
  height: 682px;
}

.gl-span-6 {
  height: 644px;
}

.gl-span-7 {
  height: 575px;
}




/* Gold hover overlay with eye icon */
.gl-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 160, 23, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gl-tile:hover .gl-overlay {
  opacity: 1;
}



.gl-tile:hover .gl-eye {
  transform: scale(1);
}

.gl-eye i {
  font-size: 45px;
  color: #ffffff;
}

/* Persistent tag badge (Kitchen, Bedroom, etc.) */
.gl-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #ffffff;
  font-size: 24px;
  padding: 5px 12px;
  border-radius: 6px;
  z-index: 3;
  letter-spacing: 0.02em;
}

/* ═══════════ LIGHTBOX / ZOOM MODAL ═══════════ */
.gl-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: glFadeIn 0.25s ease;
}

.gl-lightbox.active {
  display: flex;
}

@keyframes glFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gl-lightbox img {
  max-width: 90%;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: glZoomIn 0.3s ease;
}

@keyframes glZoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Close button */
.gl-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--gl-white);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.gl-close:hover {
  background: var(--gl-gold);
  border-color: var(--gl-gold);
  transform: rotate(90deg);
}

/* Prev / Next nav */
.gl-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--gl-white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}

.gl-nav-btn:hover {
  background: var(--gl-gold);
  border-color: var(--gl-gold);
}

.gl-prev {
  left: 28px;
}

.gl-next {
  right: 28px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 991.98px) {
  .gl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gl-span-1 {
    grid-row: span 22;
  }

  .gl-span-2 {
    grid-row: span 28;
  }

  .gl-span-3 {
    grid-row: span 36;
  }

  .gl-span-4 {
    grid-row: span 18;
  }
}

@media (max-width: 575.98px) {
  .gl-section {
    padding: 44px 14px 60px;
  }

  .gl-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    grid-auto-rows: auto;
  }

  .gl-tile {
    grid-row: auto !important;
    height: auto !important;
  }

  .gl-title {
    margin-bottom: 28px;
  }

  .gl-nav-btn {
    width: 42px;
    height: 42px;
  }

  .gl-prev {
    left: 10px;
  }

  .gl-next {
    right: 10px;
  }

  .gl-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }
}

/* ── Entrance animation ── */
@keyframes glFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gl-label {
  animation: glFadeUp 0.45s ease 0.05s both;
}

.gl-title {
  animation: glFadeUp 0.45s ease 0.12s both;
}

.gl-tile {
  animation: glFadeUp 0.5s ease both;
}

.gl-tile:nth-child(1) {
  animation-delay: 0.18s;
}

.gl-tile:nth-child(2) {
  animation-delay: 0.22s;
}

.gl-tile:nth-child(3) {
  animation-delay: 0.26s;
}

.gl-tile:nth-child(4) {
  animation-delay: 0.30s;
}

.gl-tile:nth-child(5) {
  animation-delay: 0.34s;
}

.gl-tile:nth-child(6) {
  animation-delay: 0.38s;
}

.gl-tile:nth-child(7) {
  animation-delay: 0.42s;
}

.gl-tile:nth-child(8) {
  animation-delay: 0.46s;
}















/* ═══════════ SECTION ═══════════ */


.bl-title {

  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.bl-subtitle {
  font-size: 24px;
}

/* ═══════════ CARDS GRID ═══════════ */
.bl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ─── BLOG CARD ─── */
.bl-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  height: 430px;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

/* Background photo */
.bl-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

/*  .bl-card:hover .bl-card-img {
      transform: scale(1.06);
    }*/

/* Dark gradient for text legibility at top */
.bl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}




article.bl-card::after {
  left: 0;
  position: absolute;
  content: "";
  background-color: #ffffff;
  width: 68px;
  height: 65px;
  bottom: -7px;
  border-radius: 22px;
  left: -8px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, border-radius 0.4s ease, padding 0.4s ease, color 0.3s ease;
}


.bl-card:hover::after {
  left: 0;
  position: absolute;
  content: "";
  background-color: #ffffff;
  width: 187px;
  height: 72px;
  bottom: 0px;
  border-radius: 0 22px;
  left: 0px;
  /* transition: opacity 0.25s, transform 0.35s; */
}










/* ─── TOP TEXT (tag + heading) ─── */
.bl-card-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 3;
  color: var(--bl-white);
}

.bl-card-tag {
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 4px;
}

.bl-card-heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  color: #ffffff;
}

/* ─── BOTTOM LEFT: arrow → Learn More on hover ─── */
.bl-card-action {
  position: absolute;
  bottom: 0px;
  left: 10px;
  z-index: 4;
  background: #fff;
  padding: 15px 20px 0 0px;
  border-radius: 0 20px 0 0;
}

/* Default state: circular grey arrow */
.bl-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: rgb(205 205 205);
  border-radius: 50%;
  border: none;
  color: var(--bl-black);
  font-size: 1.1rem;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    border-radius 0.4s ease,
    padding 0.4s ease,
    color 0.3s ease;
  text-decoration: none;
  padding: 0;
  /* padding-left: 20px; */
}

.bl-action-btn i.bi-arrow-up-right {
  transition: opacity 0.25s, transform 0.35s;
  font-size: 42px;
}

.bl-action-btn span.bl-learn-text {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s 0.1s ease, max-width 0.35s ease, margin 0.35s ease;
}

.bl-action-btn span.bl-cursor-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  opacity: 0;
  transition: opacity 0.35s ease 0.15s;
}

/* Hover state: expands into a pill with "Learn More →" + cursor */
.bl-card:hover .bl-action-btn {
  width: 170px;
  border-radius: 50px;
  background: #ffffff;
  padding: 0 20px;
  border: 2px solid var(--gold);
  color: var(--bl-black);
  font-size: 0.95rem;
  font-weight: 600;
  justify-content: flex-start;
  gap: 8px;
  bottom: 7px;
  left: 8px;
  position: relative;
}

.bl-card:hover .bl-action-btn i.bi-arrow-up-right {
  /* arrow morphs into right arrow inline with text */
  font-size: 0.95rem;
  transform: rotate(45deg);
}

.bl-card:hover .bl-action-btn span.bl-learn-text {
  opacity: 1;
  max-width: 100px;
  margin-right: 4px;
  font-size: 18px;
}

.bl-card:hover .bl-action-btn span.bl-cursor-icon {
  opacity: 1;
}

.bl-card:hover .bl-action-btn {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

/* ─── BOTTOM RIGHT: Date chip ─── */
.bl-date {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: #D4AA3E;
  color: var(--bl-white);
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
  z-index: 4;
  min-width: 52px;
  transition: background 0.3s;
}

.bl-card:hover .bl-date {
  background: #ffffff;
}

.bl-date-month {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  opacity: 0.95;
}

.bl-date-day {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 2px;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1199.98px) {
  .bl-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .bl-section {
    padding: 52px 28px 64px;
  }

  .bl-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 575.98px) {
  .bl-section {
    padding: 40px 16px 56px;
  }

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

  .bl-card {
    aspect-ratio: auto;
  }

  /* On touch devices, always show Learn More style (no hover) */
  .bl-action-btn {
    border-radius: 50px;
    background: var(--bl-white);
    padding: 0 22px;
    border: 1.5px solid var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    justify-content: flex-start;
    gap: 8px;
  }

  .bl-action-btn span.bl-learn-text {
    opacity: 1;
    max-width: 90px;
  }

  .bl-action-btn span.bl-cursor-icon {
    opacity: 1;
  }
}

/* ═══════════ ENTRANCE ANIMATIONS ═══════════ */
@keyframes blFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bl-label {
  animation: blFadeUp 0.45s ease 0.05s both;
}

.bl-title {
  animation: blFadeUp 0.45s ease 0.12s both;
}

.bl-subtitle {
  animation: blFadeUp 0.45s ease 0.20s both;
}

.bl-card {
  animation: blFadeUp 0.5s ease both;
}

.bl-card:nth-child(1) {
  animation-delay: 0.28s;
}

.bl-card:nth-child(2) {
  animation-delay: 0.36s;
}

.bl-card:nth-child(3) {
  animation-delay: 0.44s;
}

.bl-card:nth-child(4) {
  animation-delay: 0.52s;
}


.box123 {
  background-color: #ffffff;
  height: 80px;
  width: 81px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 50px 50px 50px 0;
}













/* ═══════════ SECTION ═══════════ */


.pt-title {

  font-size: 60px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 40px;
  letter-spacing: -0.5px;
}

/* ═══════════ LOGO ROW ═══════════ */
.pt-logos {
  /* display: grid; */
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* ─── LOGO CARD ─── */
.pt-card {
  background: #ffffff;
  border: 1px solid #ABABAB;
  border-radius: 20px;
  padding: 14px;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  filter: grayscale(100%);
}

.pt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  border: 1px solid var(--gold);
  filter: grayscale(0%);
}


.pt-greystone-mark img {
  width: 200px;
  height: 30px;
  object-fit: cover;

}












/* ═══════════ INFINITE LOOP SLIDER ═══════════ */
.pt-slider-mask {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 4px 0;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0,
      #000 60px,
      #000 calc(100% - 60px),
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0,
      #000 60px,
      #000 calc(100% - 60px),
      transparent 100%);
}

.pt-slider-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: ptLoop 30s linear infinite;
}

/* Pause the loop on hover */
.pt-slider-mask:hover .pt-slider-track {
  animation-play-state: paused;
}

@keyframes ptLoop {
  from {
    transform: translateX(0);
  }

  /* Move exactly half the track width because the list is duplicated */
  to {
    transform: translateX(-30%);
  }
}



















/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 991.98px) {
  .pt-section {
    padding: 52px 24px 64px;
  }

  .pt-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .pt-section {
    padding: 40px 16px 56px;
  }

  .pt-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pt-title {
    margin-bottom: 32px;
  }

  .pt-card {
    min-height: 78px;
    padding: 14px 10px;
  }
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes ptFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pt-label {
  animation: ptFadeUp 0.45s ease 0.05s both;
}

.pt-title {
  animation: ptFadeUp 0.45s ease 0.12s both;
}

.pt-card {
  animation: ptFadeUp 0.5s ease both;
}

.pt-card:nth-child(1) {
  animation-delay: 0.20s;
}

.pt-card:nth-child(2) {
  animation-delay: 0.26s;
}

.pt-card:nth-child(3) {
  animation-delay: 0.32s;
}

.pt-card:nth-child(4) {
  animation-delay: 0.38s;
}

.pt-card:nth-child(5) {
  animation-delay: 0.44s;
}

.pt-card:nth-child(6) {
  animation-delay: 0.50s;
}
















/* ═══════════ FOOTER WRAPPER ═══════════ */
.ft-wrap {
  background: #000000;
  color: #ffffff;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}


.ft-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/footer/foote-bg.png);
  z-index: 0;
  top: -290px;
  left: 0;
  width: 100%;
  background-size: cover;
  opacity: 0.1;
}




.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}

/* ═══════════ COLUMN 1 — BRAND ═══════════ */
.ft-logo-card {}

.ft-logo-house {
  margin-bottom: 20px;
}

.ft-logo-house svg {
  display: block;
}

.ft-logo-name {

  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  color: var(--ft-white);
  text-align: center;
  margin: 0;
}

.ft-logo-sub {
  background: var(--ft-gold);
  color: var(--ft-black);

  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  padding: 2px 14px;
  margin-top: 6px;
  text-align: center;
  display: block;
}

.ft-brand-text {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* ═══════════ COLUMN HEADINGS ═══════════ */
.ft-col-title {
  font-size: 24px;
  font-weight: 500;
  color: #D4AA3E;
  margin: 0 0 22px;
  letter-spacing: -0.2px;
}

/* ═══════════ COLUMN LINKS ═══════════ */
.ft-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ft-link-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.ft-link-list a:hover {
  color: var(--ft-gold);
  padding-left: 4px;
}

/* ═══════════ COLUMN 4 — CONTACT ═══════════ */
.ft-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.5;
}

.ft-contact-icon {
  width: 28px;
  height: 28px;
  background: var(--ft-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ft-black);
  font-size: 0.85rem;
}

.ft-contact-item a {
  color: var(--ft-white);
  text-decoration: none;
  transition: color 0.2s;
}

.ft-contact-item a:hover {
  color: var(--ft-gold);
}

/* ─── Social icons ─── */
.ft-socials {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.ft-social-btn {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--ft-gold);
  color: var(--ft-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, color 0.25s;
}

.ft-social-btn:hover {
  background: var(--ft-white);
  color: var(--ft-black);
  transform: translateY(-3px);
}

/* ═══════════ BOTTOM BAR ═══════════ */
.ft-bottom {
  background: #D4AA3E;
  padding: 16px 0;
  margin-top: 70px;
}

.ft-bottom-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ft-copy {
  font-size: 18px;
  margin: 0;
}

.ft-bottom-links {
  display: flex;
  gap: 56px;
}

.ft-bottom-links a {
  color: var(--ft-white);
  text-decoration: none;
  font-size: 18px;
  /* font-weight: 500; */
  transition: color 0.2s;
}

.ft-bottom-links a:hover {
  color: var(--ft-black);
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 991.98px) {

  .ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .ft-bottom-inner {
    padding: 0 28px;
  }
}

@media (max-width: 575.98px) {
  .ft-main {
    padding: 40px 20px 32px;
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ft-col-title {
    margin-bottom: 16px;
  }

  .ft-link-list {
    gap: 14px;
  }

  .ft-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 0 20px;
  }

  .ft-bottom-links {
    gap: 28px;
  }
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes ftFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ft-grid>* {
  animation: ftFadeUp 0.5s ease both;
}

.ft-grid>*:nth-child(1) {
  animation-delay: 0.05s;
}

.ft-grid>*:nth-child(2) {
  animation-delay: 0.13s;
}

.ft-grid>*:nth-child(3) {
  animation-delay: 0.21s;
}

.ft-grid>*:nth-child(4) {
  animation-delay: 0.29s;
}

.ft-bottom {
  animation: ftFadeUp 0.5s ease 0.4s both;
}







.wcu-card:hover svg {
  animation: bounce 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-10px);
  }

  50% {
    transform: translateY(-4px);
  }

  75% {
    transform: translateY(-8px);
  }
}




.icon-circle {
  overflow: visible;
}

.icon-circle::before,
.icon-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid #C99A2F;
  opacity: 0;
}

.icon-circle:hover::before {
  animation: ripple 0.8s ease-out 0s forwards;
}

.icon-circle:hover::after {
  animation: ripple 0.8s ease-out 0.25s forwards;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}



.icon-circle {
  transition: background 0.3s, border-color 0.3s;
}

.icon-circle:hover {
  background: #C99A2F;
  border-color: #C99A2F;
}

.icon-circle:hover svg {
  fill: #fff;
}








.anim-pulse {
  overflow: visible;
}

.anim-pulse::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid #C99A2F;
  opacity: 0;
  transform: scale(1);
  transition: none;
}

.anim-pulse:hover::before {
  animation: pulse-ring 0.7s ease-out forwards;
}

.anim-pulse:hover svg {
  fill: #C99A2F;
}

@keyframes pulse-ring {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}















/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 991.98px) {
  .sv-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .sv-heading {
    font-size: 40px;
  }


  .sv-form-row {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 22px;
    flex-direction: column;
  }



  .tm-heading {
    font-size: 40px;
  }


  .sv-hero-text {
    padding: 60px 28px 24px;
  }

  .sv-form-wrap {
    justify-content: center;
    padding: 0 15px 20px;
    justify-content: center;
    width: auto;
    position: relative;
    left: 0;
    top: 0;
    right: auto;
  }

  .sv-form-card {
    width: 100%;
  }

  .sv-map-area {
    max-width: 100%;
    margin-top: 0;
  }

  .sv-map-frame {
    height: 320px;
  }
}

@media (width: 575.98px) {
  .sv-hero-text {
    padding: 44px 18px 16px;
  }

  .sv-heading {
    font-size: 1.8rem;
  }

  .sv-form-wrap {
    padding: 0 14px 32px;
  }


  .sv-form-wrap {
    position: relative;
    z-index: 2;
    /* padding: 40px 40px 75px 0; */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    right: 0;
    top: 0;
  }

  .sv-form-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .sv-form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sv-map-frame {
    height: 240px;
  }
}

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes svFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sv-label {
  animation: svFadeUp 0.5s ease 0.05s both;
}

.sv-heading {
  animation: svFadeUp 0.5s ease 0.15s both;
}

.sv-form-card {
  animation: svFadeUp 0.5s ease 0.25s both;
}

.sv-map-area {
  animation: svFadeUp 0.5s ease 0.35s both;
}

/* ═══════════ RESPONSIVE BORDER UTILITIES ═══════════ */
/* Show right border only on md and larger screens */
@media (min-width: 768px) {
  .border-md-end {
    border-right: 1px solid var(--bs-border-color);
  }
}










































/* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
@media (max-width: 1199.98px) {
  .wcu-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 22px;
  }
}

@media (max-width: 991.98px) {
  .wwd-hero-inner {
    padding: 40px 28px 56px;
    justify-content: center;
  }

  .wwd-info-card {
    max-width: 520px;
    padding: 30px 28px;
  }

  .wwd-stats {
    gap: 28px;
  }
}

@media (max-width: 575.98px) {
  .wwd-hero-inner {
    padding: 32px 16px 44px;
    min-height: auto;
  }

  .wwd-hero-wrap {
    min-height: auto;
  }

  .wwd-info-card {
    padding: 24px 22px;
    border-radius: 16px;
  }


  .wwd-info-card {
    background: rgba(212, 170, 62, 0.80);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 22px;
    padding: 36px 38px 34px;
    width: 100%;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    position: relative;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
  }






  .wwd-stats {
    gap: 20px;
  }

  .wwd-stat-num {
    font-size: 40px;
  }

  .wcu-section {
    padding: 8px 14px 44px;
  }

  .wcu-cards-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .wcu-bg-title {
    -webkit-text-stroke: 1px rgba(17, 17, 17, 0.15);
  }
}

/* ── ANIMATIONS ───────────────────────────── */
@keyframes wwdFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wwd-info-card {
  animation: wwdFadeUp 0.55s ease 0.1s both;
}

.wcu-bg-title {
  animation: wwdFadeUp 0.6s ease 0.2s both;
}

.wcu-card {
  animation: wwdFadeUp 0.5s ease both;
}

.wcu-card:nth-child(1) {
  animation-delay: 0.30s;
}

.wcu-card:nth-child(2) {
  animation-delay: 0.38s;
}

.wcu-card:nth-child(3) {
  animation-delay: 0.46s;
}

.wcu-card:nth-child(4) {
  animation-delay: 0.54s;
}










































/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991.98px) {
  .luxury-section {
    padding: 56px 24px 64px;

  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 575.98px) {
  .luxury-section {
    padding: 44px 16px 52px;
  }

  .cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .logo-card {
    padding: 20px 14px 18px;
  }
}

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

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.community-label {
  animation: fadeUp 0.45s ease 0.05s both;
}

.section-title {
  animation: fadeUp 0.45s ease 0.12s both;
}

.logo-card {
  animation: fadeUp 0.5s ease both;
}

.logo-card:nth-child(1) {
  animation-delay: 0.18s;
}

.logo-card:nth-child(2) {
  animation-delay: 0.26s;
}

.logo-card:nth-child(3) {
  animation-delay: 0.34s;
}

.logo-card:nth-child(4) {
  animation-delay: 0.42s;
}








































/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991.98px) {
  .residences-section {
    padding: 56px 24px 64px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .res-card {
    height: 320px;
  }
}

@media (max-width: 575.98px) {
  .residences-section {
    padding: 44px 16px 52px;
    height: auto;

  }

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

  .res-card {
    height: 280px;
  }

  .section-title {
    margin-bottom: 36px;
  }
}

/* ── ENTRANCE ANIMATION ─────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.model-label {
  animation: fadeUp 0.5s ease 0.05s both;
}

.section-title {
  animation: fadeUp 0.5s ease 0.12s both;
}

.res-card {
  animation: fadeUp 0.55s ease both;
}

.res-card:nth-child(1) {
  animation-delay: 0.18s;
}

.res-card:nth-child(2) {
  animation-delay: 0.28s;
}

.res-card:nth-child(3) {
  animation-delay: 0.38s;
}







































/* ==================== BACK TO TOP ==================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--dark);
  color: var(--gold);
  transform: translateY(-4px);
}

/* ==================== ANIMATIONS ==================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}




/* ── RESPONSIVE ─────────────────────────────── */

.breadcrumb {
  background-image: url(../images/about/breadcrumb-bg.jpg);
  min-height: 613px !important;
}




















/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 991.98px) {
  .prop-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 575.98px) {
  .prop-card {
    flex: 0 0 calc(85vw);
  }

  .slider-track-outer {
    /* padding-left: 20px; */
  }

  .section-header {
    padding: 40px 16px 28px;
  }
}

/* ── ANIMATION ──────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  animation: fadeUp 0.5s ease 0.05s both;
}

.prop-card {
  animation: fadeUp 0.5s ease both;
}

.prop-card:nth-child(1) {
  animation-delay: 0.1s;
}

.prop-card:nth-child(2) {
  animation-delay: 0.18s;
}

.prop-card:nth-child(3) {
  animation-delay: 0.26s;
}

.prop-card:nth-child(4) {
  animation-delay: 0.34s;
}

.prop-card:nth-child(5) {
  animation-delay: 0.42s;
}



/* ── Default: mobile pe hide ── */
.slider-arrows {
  display: block;
}








@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}









/* ── RESPONSIVE ───────────────────────────────── */

/* Tablet ≤ 991px */
@media (max-width: 991.98px) {
  .header-section {
    padding: 24px 28px 20px;
  }

  .property-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .property-left {
    padding: 36px 28px;
  }



  .stats-card {
    padding: 24px 20px;
  }

  .stat-divider {
    display: none;
  }
}

/* Mobile ≤ 575px */
@media (max-width: 575.98px) {
  .header-section {
    padding: 20px 20px 18px;
  }

  .property-left {
    padding: 28px 20px;
  }

  .property-right {
    height: 260px;
  }

  .stats-outer {
    padding: 0 12px 28px;
  }

  .stats-card {
    padding: 20px 14px;
    border-radius: 14px;
    position: relative;
    top: 10px;
  }

  .stat-item {
    flex: 1 1 calc(50% - 10px);
  }


  .stats-outer {
    height: auto;
  }



  .pt-140 {
    padding-top: 50px !important;
  }













}



/* Contact form styles */
.contact-form .contact-form-left {
  background: #d4aa3e;
  color: #fff;
  min-height: 480px;
}
.contact-form .contact-form-left .form-control {
  background: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 4px;
}
.contact-form .contact-form-left .form-control:focus {
  box-shadow: none;
  border: 1px solid rgba(0,0,0,0.08);
}
.contact-form .contact-form-left textarea.form-control {
  min-height: 160px;
  resize: vertical;
}
.contact-form .captcha-box {
  background: #fff;
  color: #000;
  border-radius: 6px;
  font-weight: 500;
    letter-spacing: 2px;
}
.contact-form .captcha-input {
  max-width: 260px;
}
.contact-form-right iframe {
  min-height: 480px;
  border-radius: 0;
}



/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .navbar-collapse {
    background: var(--dark);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 10px;
  }

  .navbar .btn-cta {
    margin-top: 12px;
    display: inline-block;
  }

  .about-img {
    height: 360px;
  }

  .room-card {
    height: 300px;
  }

  .contact-info-card {
    margin-bottom: 20px;
  }
}



/* Mobile */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 50px 0;
  }

  .hero-section {
    min-height: 90vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    letter-spacing: 3px;
  }

  .hero-btns .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btns .me-3 {
    margin-right: 0 !important;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-img {
    height: 300px;
  }

  .about-experience-badge {
    bottom: 16px;
    left: 16px;
    padding: 12px 18px;
  }

  .badge-number {
    font-size: 1.6rem;
  }

  .room-card {
    height: 260px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .contact-info-card {
    padding: 28px;
  }

  .blog-img {
    height: 160px;
  }

  .footer-section {
    padding: 40px 0 24px;
  }

  .show-home1 {
    position: relative;
    top: auto;
  }


  .addr-text {
    font-size: 20px;

  }


  .stat-value {
    font-size: 20px;
  }


  .stat-item svg {
    width: 100px;
  }




  .wcu-bg-title {
    font-size: clamp(50px, 50px, 50px);
  }

  .wwd-info-title {
    font-size: 40px;
  }

  .op-section {
    padding: 20px;
    position: relative;
    overflow: hidden;
    padding-right: 0;
    right: 0;
  }

  .gl-title {
    font-size: 40px;
  }


  .bl-title {
    font-size: 40px;
  }

  .pt-title {
    font-size: 40px;
  }


  .ft-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(images/foote-bg.png);
    z-index: 0;
    top: -220px;
    left: 0;
    width: 100%;
    background-size: cover;
    opacity: 0.1;
  }

  .op-title {
    font-size: 40px;
  }





  .property-name {
    font-size: 40px;
  }
  .card56 {
    position: sticky;
    top: 118px;
    padding-top: calc(var(--index) * var(--card-top-offset));
  }

  .slider-track {
    display: flex;
    gap: 0px;
    will-change: transform;
  }
  .pt-100 {
    padding-top: 40px !important;
  }

  .pb-80 {
    padding-bottom: 40px !important;
  }
  .bl-card::after {
    left: 0;
    position: absolute;
    content: "";
    background-color: #ffffff;
    width: 195px !important;
    height: 65px;
    bottom: -7px;
    border-radius: 22px;
    left: -8px;
    /* transition: opacity 0.25s, transform 0.35s; */
  }


  .value-card {
    min-height: auto;
  }

  .value-card::before {
    right: 95px;
  }

  .icon-circle {
    right: 45px;
  }


}



.slider-track .slider-item:nth-child(1) .slide-text,
.slider-track .slider-item:nth-child(2) .slide-text,
.slider-track .slider-item:nth-child(3) .slide-text,
.slider-track .slider-item:nth-child(4) .slide-text,
.slider-track .slider-item:nth-child(5) .slide-text,
.slider-track .slider-item:nth-child(6) .slide-text,
.slider-track .slider-item:nth-child(7) .slide-text,
.slider-track .slider-item:nth-child(8) .slide-text,
.slider-track .slider-item:nth-child(9) .slide-text,
.slider-track .slider-item:nth-child(10) .slide-text {
  color: #353535;
  text-align: center;
  font-size: 18px;
}








/* Small Mobile */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 40px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 28px 20px;
  }

  .community-card {
    padding: 24px 18px;
  }
}




@media screen and (min-device-width: 1366px) and (max-device-width: 1500px) {
  .property-left {
    background: var(--gold);
    padding: 42px 60px 50px 170px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
  }


  .property-right img {
    width: 100%;
    /* height: 625px; */
    /*object-fit: cover;*/
    display: block;
    transition: transform 0.7s ease;
    border-radius: 16px;
  }






}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.progress-ring {
  position: absolute;
  transform: rotate(-90deg);
}

.progress-ring__circle {
  stroke-dasharray: 163;
  /* circle length */
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 0.2s linear;
}

.arrow {
  position: relative;
  font-size: 20px;
  z-index: 2;
}

.value-card {
  position: relative;
  background: #d4aa39;
  border-radius: 18px;
  overflow: hidden;
  height: 165px;
  padding: 20px;
  color: #fff;
  cursor: pointer;
}

.value-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

/* White diagonal line */
.value-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 110px;
  width: 3px;
  height: 220px;
  background: #fff;
  transform: rotate(-32deg);
  z-index: 1;
}

/* Circle Icon */
.icon-circle {
  position: absolute;
  top: 50%;
  right: 58px;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4aa39;
  z-index: 3;
}

.icon-circle i {
  color: #fff;
  font-size: 22px;
}

/* Image card */
.value-card.image-card {
  padding-right: 150px;
}

.value-card.image-card .card-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 65% 0%, 79% 0, 100% 0%, 100% 100%, 60% 100%);
}

.highlight {
  color: #D4AA3E;
}

.core-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  color: #353535;
  margin-bottom: 14px;
}

.core-label .dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}


.experience-luxury h2.section-title {
  max-width: 1200px;
}

.exp-luxury-slider {
  margin-top: 60px;
}

.gl-nav-btn .bi {
  color: #ffffff;
}

.gl-close .bi {
  color: #ffffff;
}


.fixed-top {
  width: 100%;
  min-width: 100%;
}

.cards-arrows {
  display: none;
}

/* about-page-style */
.value-card.image-card:hover .card-image {
  width: 36%;
  transition: width 0.5s ease;
}

.meet-expert .section-title {
  padding-bottom: 60px;
}

.expert-pic {
  position: relative;
}

.expert-pic::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 520px;
  height: calc(100% - 100px);
  background: #000000;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 20px;
}

.expert-pic:hover::after {
  background: #D4AA3E;
}

.export-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  border-radius: 0 0 20px 20px;
  opacity: 0;
}

.export-info h4 {
  color: #ffffff;
  font-family: 'Kanit';
  font-weight: 400;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 10px;

}

.export-info p {
  color: #D4AA3E;
  margin-top: 0px;
  margin-bottom: 0;

}

.expert-pic:hover .export-info {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 22px;
}



/* Project Section */
.filter-wrapper {
  max-width: 100%;
  margin: 0 auto 60px;
}

.filter-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 4px solid #d2a42f;
  border-radius: 14px;
  overflow: hidden;
  flex-wrap: wrap;
  justify-content: space-around;
}

.filter-box {
  position: relative;
  border-right: 2px solid #d2a42f;
}

.filter-box:last-child {
  border-right: none;
}

.filter-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  outline: none;
  background: transparent;
  padding: 18px 45px 18px 18px;
  font-size: 24px;
  color: #353535;
  line-height: 28px;
  cursor: pointer;
  min-width: 230px;
  font-weight: 400;
}

.filter-box::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  color: #444;
  pointer-events: none;
}

.clear-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 24px;
  color: #353535;
  line-height: 28px;
  cursor: pointer;
  min-width: 140px;
  font-weight: 400;
}

.clear-btn span {
  font-size: 35px;
}

.location-bx {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 15px;
  align-items: center;
  align-content: center;
}

.location-bx span {
  font-size: 24px;
}

.location-bx span svg {
  margin: 0 10px 0 0;
}

.location-bx p {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}


.property_bx {}

.property_bx .card-body-custom {
  background: #fff;
}

.property_bx .price-tag {
  background: #fff;
}

.property_bx .prop-stats {
  border-top: none;
}

.property_bx .prop-card {
  border: 1.5px solid #CDCDCD;
}

.property_bx .prop-address {
  font-size: 18px;
  font-weight: 400;
  color: #717171;
}

.property_bx:hover .card-body-custom {
  background: #000;
}

.property_bx:hover .location-bx {
  color: #fff;
}

.property_bx:hover .location-bx svg path {
  fill: #fff;
}

.property_bx:hover .prop-address,
.property_bx:hover .prop-stats .prop-stat {
  color: #fff;
}

.property_bx:hover .prop-address svg path {
  fill: #fff;
}

.property_bx:hover .prop-stats .prop-stat svg path {
  fill: #fff;
}


.image_one_side_radius {
  border-radius: 0 300px 0 0;
  overflow: hidden;
}

.image_one_side_radius img {
  border-radius: 0;
}

.image_one_side_radius span {
  position: absolute;
  right: 4px;
  bottom: 4px;
  background: #fff;
  box-shadow: 4px 4px 4px 0px #00000040;
  border-radius: 50% 50% 0 50%;
  padding: 20px;
}


/* Location Section */
.location-section {
  background-color: #f7f9fa;
}

.location-subtitle {
  font-size: 0.95rem;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #d4a742;
  border-radius: 50%;
  display: inline-block;
}

.location-title {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #2c2f33;
}

.location-accordion .accordion-button {
  font-size: 30px;
  color: #353535 !important;
  padding-left: 2rem !important;
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.location-accordion .time-text {
  font-size: 25px;
  color: #353535;
  margin-left: 8px;
}

/* Hide default Bootstrap accordion arrow */
.location-accordion .accordion-button::after {
  display: none;
}

/* Custom Accordion Icon on the left */
.location-accordion .accordion-button::before {
  content: '\f067';
  /* FontAwesome Plus */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #aaa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #888;
  transition: all 0.3s ease;
  line-height: 16px;
  text-align: center;
}

.location-accordion .accordion-button:not(.collapsed)::before {
  content: '\f068';
  /* FontAwesome Minus */
  background-color: #d4a742;
  border-color: #d4a742;
  color: #fff;
}

.location-accordion .accordion-button:not(.collapsed) {
  color: #2c2f33;
  background: transparent !important;
  box-shadow: none;
}

.explore-btn {
  background-color: #D4AA3E !important;
  border-color: #D4AA3E !important;
  font-size: 24px;
  padding: 0.6rem 1.8rem !important;
  transition: all 0.3s ease;
  font-weight: 400 !important;
  line-height: 28px !important;
}

.explore-btn:hover {
  background-color: #c0963b !important;
  border-color: #c0963b !important;
}

.map-right {
  position: absolute;
  right: -10%;
}

.map-main-right {
  position: relative;
}

/* Lot Map Phase Tabs */
.phase-tabs .nav-link {
  color: #000000;
  font-size: 28px;
  font-weight: 400 !important;
  padding: 0;
  transition: color 0.3s ease;
}

.phase-tabs .nav-link.active {
  color: #D4AA3E !important;
  background: transparent !important;
  border: none !important;
}

.phase-tabs .nav-link:hover {
  color: #D4AA3E;
  border: none;
}

.map-phase {
  padding-top: 100px;
}

.community-wraper #about .about-image-wrapper img {
  border-radius: 0 300px 0 0;
}


.community-wraper #about .section-title {
  max-width: 550px;
  margin-left: 0;
  font-weight: 400px !important;
}

.accordion-item .accordion-collapse .accordion-body {
    font-size: 20px;
    color: #717171;
    letter-spacing: 0.5px;
}


/* contact-page-style */
.contact-info-card {
  border: 1px solid #000000;
  box-shadow: 4px 4px 4px 0px #00000080;
/* position: relative;
  z-index: 99; */
  background-color: #ffffff;
  padding: 25px;
}

.contact-info-card::after {
  content: "";
    position: absolute;
    top: -6px;
    left: -5px;
    width: 60px;
    height: 60px;
    background: #D4AA3E;
    z-index: -2;
}

.contact-info-card::before {
  content: "";
    position: absolute;
    bottom: -6px;
    right: -5px;
    width: 60px;
    height: 60px;
    background: #D4AA3E;
    z-index: -2;
}

.info-icon {
  display: flex;
  margin-top: 15px;
  align-items: center;
}

.info-icon .icon-svg {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}
.info-icon .icon-svg svg {
  width: 50px;
  height: 50px;
}

.contact-info-card h5 {
  font-family: 'Kanit';
font-weight: 500;
font-size: 30px;
line-height: 120%;
letter-spacing: 0%;
vertical-align: middle;
color: #000000
}

.info-icon p {
  font-size: 20px;
    line-height: 25px;
    color: #000000;
}

.info-icon p a {
color: #000000;
}

.contact-form {
  padding-bottom: 100px;
}
 

/* style-for-project-dtails */

.luxury-living-info .stats-card {
  top: -140px;
    max-width: 86%;
    padding: 45px;
    background-color: #D4AA3E;
}

.luxury-living-info .stats-card .stat-item {
  flex-direction: column;
      gap: 13px;
}

.luxury-living-info .stats-card .stat-item .stat-value {
  margin-bottom: 5px;
  font-family: 'Kanit';
font-weight: 400;
font-size: 24px;
line-height: 28.5px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color: #353535;
}

.luxury-living-info .stats-card .stat-item .stat-label {
  font-family: 'Kanit';
font-weight: 400;
font-size: 45px;
line-height: 120%;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color: #353535;
}

.luxury-living-info .stats-card .stats-row .stat-item {
  flex: 1;
}

.luxury-living-info .stats-card .stats-row {
  gap: 10px;
}

  .property-info .info-card {
      width: 320px;
      background: #fff;
      border: 1px solid #dcdcdc;
    }

    .property-info  .info-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 18px;
      border-bottom: 1px solid #dcdcdc;
    }

    .property-info .info-row:last-child {
      border-bottom: none;
    }

    .property-info .left-content {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #555;
      font-weight: 600;
    }

    .property-info .left-content i {
      font-size: 18px;
      color: #666;
    }

    .property-info .right-content {
      color: #717171;
      font-family: 'Kanit';
font-weight: 400;
font-size: 20px;
letter-spacing: 0%;
vertical-align: middle;

    }

    .property-info .left-content span {
      font-family: 'Kanit';
font-weight: 600;
font-size: 30px;
line-height: 90px;
letter-spacing: 0%;
vertical-align: middle;
color: #717171;
    }

    .property-phases .phase-tabs .nav-link {
      color: #444;
      border: 0 !important;
      transition: all 0.25s ease;
      font-weight: 700;
      font-family: 'Kanit';
    }

    .property-phases .phase-tabs .nav-link:hover {
      background: transparent;
    }

    .property-phases .phase-tabs .nav-link.active {
      background: #d4aa3e;
      color: #ffffff;
      border-color: #d4aa3e;
    }

    .property-phases .phase-preview {
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      min-height: 420px;
    }

    .property-phases .phase-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }


    .property-phases .phase-title {
        font-family: 'Kanit';
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0%;
    text-align: left;
    vertical-align: middle;    
    color: #353535;           

    }

    .property-phases .phase-desc {
      color: #666;
      line-height: 28px;
      font-size: 18px;
      font-weight: 400;
    }

    .property-phases .phase-stats {
          margin-top: 1rem;
    border-top: 1px solid #eee;
    overflow-y: auto;
    height: 270px;
    scrollbar-width: thin;
    scrollbar-color: #c4c4c4 transparent;
    }

    .property-phases .phase-stats::-webkit-scrollbar {
      width: 4px;
      height: 4px;
    }

    .property-phases .phase-stats::-webkit-scrollbar-track {
      background: #f2f2f2;
      border-radius: 999px;
    }

    .property-phases .phase-stats::-webkit-scrollbar-thumb {
      background: #c4c4c4;
      border-radius: 999px;
    }

    .property-phases .phase-stats::-webkit-scrollbar-thumb:hover {
      background: #a8a8a8;
    }

    /* remove up/down arrow buttons on WebKit browsers */
    .property-phases .phase-stats::-webkit-scrollbar-button {
      display: none;
      width: 0;
      height: 0;
    }

    .property-phases .phase-stats::-webkit-scrollbar-corner {
      background: transparent;
    }

    .property-phases .phase-row {
      padding: 16px 0;
      border-bottom: 1px solid #eee;
      font-weight: 600;
      padding-right: 15px;
    }

    .property-phases .phase-row:last-child {
      border-bottom: none;
    }

    .property-phases .phase-row span:first-child {
      color: #717171;
      font-family: 'Kanit';
font-weight: 600;
font-size: 25px;
line-height: 35px;
letter-spacing: 0%;
vertical-align: middle;

    }

    .property-phases .phase-row span:last-child {
      color: #717171;
       font-family: 'Kanit';
font-weight: 400;
font-size: 25px;
line-height: 35px;
letter-spacing: 0%;
vertical-align: middle;
    }

    .luxury-living-info {
      max-height: 940px;
    height: 100%;
    }

    .pashes-tabs ul {
      gap: 30px;
    }

    .property-phases .phase-tabs .nav-link:focus-visible {
      box-shadow: 0;
      outline: 0;
      border: 0;
    }

    .feature-cards {
      margin-top: 2.5rem;
    }

    .feature-card {
      background: #F6F6F6;
      border-radius: 20px;
      padding: 22px;
      min-height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 70px rgba(16, 24, 40, 0.08);
    }

    .feature-card h3 {
      font-family: 'Kanit';
font-weight: 400;
font-size: 35px;
line-height: 120%;
letter-spacing: 0%;
vertical-align: middle;
color: #353535;
padding-bottom: 16px;
border-bottom: 1px solid #353535;
margin-bottom: 30px;

    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 1rem;
    }

    .feature-list li {
      position: relative;
      padding-left: 1.6rem;
      color: #5f6369;
      font-size: 18px;
      line-height: 29px;
      font-weight: 400;
    }

    .feature-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 9px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #717171;
    }
