/* Shared project page layout (Regalia, Benchmark, Kalpavruksha) */

/* Video hero — matches live Regalia banner */
.page-header--regalia-hero {
  height: 95vh;
  min-height: 520px;
  max-height: none;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
  justify-content: center;
  text-align: left;
  overflow: hidden;
}
.page-header--regalia-hero .page-header__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #235651;
}
.page-header--regalia-hero .page-header__video video,
.page-header--regalia-hero .page-header__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-header--regalia-hero .page-header__video .hero-lcp-media,
.page-header--regalia-hero .page-header__video .hero-lcp-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header--regalia-hero .page-header__video-el {
  display: none;
}
@media (min-width: 768px) {
  .page-header--regalia-hero .page-header__video-el {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  .page-header--regalia-hero .page-header__video.video-active .hero-lcp-media {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
}
.page-header--image-hero .page-header__video {
  background-size: cover;
  background-position: center;
}
.page-header--regalia-hero .page-header__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
.page-header--regalia-hero:after {
  top: auto;
  left: 0;
  width: 100%;
  height: 6%;
  bottom: -3%;
  background: url(../assets/projects/regalia-farms/ui/banner-bottom.png)
    repeat-x center bottom;
  background-size: contain;
  opacity: 1;
  z-index: 3;
  filter: none;
}
.page-header--regalia-hero .container {
  z-index: 2;
}
.page-header--regalia-hero .regalia-hero__content {
  color: #fff;
}
.page-header.page-header--regalia-hero .container h1.regalia-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 1.25rem;
}
.page-header.page-header--regalia-hero .container p.regalia-hero__lead {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.6;
  color: #fff;
  max-width: 720px;
  margin: 0 0 1.5rem;
  opacity: 0.95;
}
.page-header--regalia-hero .regalia-hero__cta {
  margin-top: 0.5rem;
}
.page-header--regalia-hero + .intro {
  position: relative;
  z-index: 4;
  background: #fff;
  padding-top: clamp(120px, 10rem, 150px);
}
@media (max-width: 1440px) {
  .page-header--regalia-hero:after {
    bottom: -3.35%;
    width: 110%;
  }
}
@media (max-width: 1024px) {
  .page-header--regalia-hero:after {
    bottom: -3%;
  }
}
@media (max-width: 576px) {
  .page-header--regalia-hero:after {
    width: 130%;
    height: 5%;
  }
}

/* Happy Customers — matches live */
.section-happy-customers {
  padding: 2.5rem 0 3.5rem;
  background: linear-gradient(180deg, #fafcf9 0%, #ffffff 55%);
}
.regalia-eyebrow {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  color: #235651;
  margin: 0 0 1rem;
  font-weight: 400;
}
.regalia-happy__eyebrow {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  color: #235651;
  margin: 0 0 1rem;
  font-weight: 400;
}
.regalia-happy__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #2c2c2c;
  margin: 0 0 1rem;
}
.regalia-happy__lead {
  font-size: 18px;
  line-height: 1.6;
  color: #2c2c2c;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}
.section-happy-customers .happy-customers-cell {
  margin-bottom: 1.25rem;
}
.section-happy-customers .happy-customers-card {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.section-happy-customers .happy-customers-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.section-happy-customers .happy-customers-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Torn-edge mask into amenities (live section-divider) */
.section-divider {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  position: relative;
  margin-bottom: -100px;
  z-index: 1;
  overflow: visible;
}
.section-divider img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 60px;
  max-height: 120px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1024px) {
  .section-divider {
    margin-bottom: -60px;
  }
  .section-divider img {
    min-height: 45px;
    max-height: 90px;
  }
}
@media (max-width: 768px) {
  .section-divider {
    margin-bottom: -40px;
  }
  .section-divider img {
    min-height: 35px;
    max-height: 70px;
  }
}
@media (max-width: 480px) {
  .section-divider {
    margin-bottom: -25px;
  }
  .section-divider img {
    min-height: 25px;
    max-height: 50px;
  }
}

/* Amenities — project-specific full-bleed background */
.section-amenities {
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 0 4rem;
  position: relative;
  z-index: 0;
  background-color: #235651;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body[data-page-project="regalia"] .section-amenities {
  background-image: url(../assets/projects/regalia-farms/ui/amenities-bg.png);
}
body[data-page-project="aradhya"] .section-amenities {
  background-image: url(../assets/projects/benchmark-aradhya/featured.webp);
  background-color: #235651;
}
body[data-page-project="kalpavruksha"] .section-amenities {
  background-image: url(../assets/projects/kalpavruksha-nagara/cover-bg.jpg);
}
.section-amenities .container {
  margin: auto;
}
.amenities-card {
  background-color: rgba(35, 86, 81, 0.75);
  color: #fff;
  padding: 2rem;
  border-radius: 4px;
}
.amenities-card__heading {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 1rem;
  font-weight: 400;
}
.amenities-card__subtitle {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin: 0 0 1rem;
}
.amenities-card > p {
  color: #fff;
  margin-bottom: 0;
}
.amenities-card .media-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 2rem 0 0;
}
.amenities-card .media-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: calc(25% - 1rem);
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}
.amenities-card .media-item img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: contain;
}
.amenities-card .media-content h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.35rem;
}
.amenities-card .media-content p {
  font-size: 14px;
  line-height: 1.55;
  color: #fff;
  margin: 0;
  opacity: 0.95;
}
@media only screen and (max-width: 991px),
  only screen and (max-device-width: 991px) {
  .page-header--regalia-hero {
    height: 85vh;
    padding-bottom: 56px;
  }
  .page-header.page-header--regalia-hero .container h1.regalia-hero__title {
    font-size: clamp(1.625rem, 6vw, 2.25rem);
    line-height: 1.3;
  }
  .page-header.page-header--regalia-hero .container p.regalia-hero__lead {
    font-size: clamp(1rem, 4vw, 1.125rem);
  }
}
@media only screen and (max-width: 767px),
  only screen and (max-device-width: 767px) {
  .page-header--regalia-hero .regalia-hero__content {
    padding-right: 1rem;
  }
  .page-header.page-header--regalia-hero .container h1.regalia-hero__title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.3;
  }
  .page-header.page-header--regalia-hero .container p.regalia-hero__lead {
    font-size: clamp(1rem, 4.5vw, 1.25rem);
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .section-amenities {
    min-height: 120vh;
    background-attachment: scroll;
  }
  .amenities-card .media-item {
    width: calc(50% - 1rem);
    align-items: center;
    text-align: center;
  }
  .amenities-card .media-content {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .section-amenities {
    min-height: auto;
    padding: 3rem 0;
  }
  .amenities-card .media-item {
    width: 100%;
  }
}

.regalia-cta {
  display: inline-block;
  height: 52px;
  line-height: 48px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #fee020;
  padding: 0 28px;
  margin: 8px 12px 8px 0;
  text-decoration: none;
  transition: 0.25s ease-in-out;
}
.regalia-cta:hover {
  background: #fee020;
  color: #235651;
  text-decoration: none;
}
.regalia-cta-outline {
  background: transparent;
}
.regalia-cta-solid {
  background: #fee020;
  color: #235651;
}
.regalia-cta-solid:hover {
  background: #fff;
  border-color: #fff;
  color: #235651;
}
.regalia-cta[href*="wa.me"].regalia-cta-solid {
  background: var(--dhara-accent, #028a0f);
  border-color: var(--dhara-accent, #028a0f);
  color: #fff;
}
.regalia-cta[href*="wa.me"].regalia-cta-solid:hover {
  background: var(--dhara-accent-dark, #026d0c);
  border-color: var(--dhara-accent-dark, #026d0c);
  color: #fff;
}
.regalia-cta[href*="wa.me"].regalia-cta-outline {
  border-color: var(--dhara-accent, #028a0f);
  color: var(--dhara-accent, #028a0f);
}
.regalia-cta[href*="wa.me"].regalia-cta-outline:hover {
  background: var(--dhara-accent, #028a0f);
  border-color: var(--dhara-accent, #028a0f);
  color: #fff;
}
.regalia-split {
  margin-bottom: 48px;
}
.regalia-split img {
  width: 100%;
  border-radius: 6px;
}
.regalia-split h2 {
  margin-bottom: 12px;
}
.about-content .regalia-eyebrow {
  text-align: center;
  margin-bottom: 0.5rem;
}
.about-content > .container > .col-12.text-center h3 {
  margin-bottom: 2rem;
}

/* Plot planning — text aligned right (matches live) */
.regalia-plot__copy {
  text-align: right;
  padding-right: 2rem;
}
.regalia-plot__copy h2 {
  margin-bottom: 1rem;
}
.regalia-plot__copy .regalia-plot-info p {
  margin-bottom: 0.5rem;
}
.regalia-plot__copy .regalia-cta {
  margin-top: 0.5rem;
}
@media only screen and (max-width: 768px),
  only screen and (max-device-width: 768px) {
  .regalia-plot__copy {
    text-align: left;
    padding-right: 0;
    margin-bottom: 2rem;
  }
}
.regalia-location-card {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px 16px;
  background: #f7f5f2;
  border-radius: 6px;
  height: 100%;
}
.regalia-location-card h5 {
  margin-bottom: 6px;
  color: #235651;
}
.regalia-location-card p {
  margin: 0;
  opacity: 0.85;
}
.regalia-location-card img {
  width: 96%;
  border-radius: 6px;
  margin-bottom: 8px;
}
.regalia-location-card h5 {
  font-size: 15px;
  margin: 0;
}
.regalia-location-card a {
  color: #235651;
  text-decoration: none;
}
.regalia-location-card a:hover {
  color: #fee020;
}

/* Perfect Location — matches live section-locations */
.section-locations {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
}
.section-locations > .container > .row:first-child img {
  border-radius: 4px;
  width: 100%;
}
.regalia-locations__eyebrow {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #235651;
  margin: 0 0 1rem;
  font-weight: 400;
}
.regalia-locations__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #2c2c2c;
  margin: 0 0 1rem;
}
.section-locations .col-lg-5 > p {
  margin-bottom: 0;
  line-height: 1.6;
}
.regalia-locations__cards {
  margin-top: 2.5rem;
  align-content: flex-start;
}
.section-locations .location-cards {
  margin-bottom: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  height: auto;
}
.section-locations .location-cards a {
  display: block;
  text-decoration: none;
  color: #235651;
}
.section-locations .location-cards a:hover {
  text-decoration: none;
}
.section-locations .location-cards a:hover h5 {
  color: #d9c61a;
}
.section-locations .regalia-locations__thumb {
  width: 96%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  padding: 10px;
  margin: 0;
  box-sizing: content-box;
}
.section-locations .location-cards h5 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin-top: -30px;
  margin-left: 10px;
  margin-bottom: 1.5rem;
  padding: 0;
  color: #235651;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* Experience / architecture / community — live layout + theme colors */
.regalia-experience.section-experience {
  padding: 9rem 0 1rem;
}
.regalia-experience.section-architecture,
.regalia-experience.section-community {
  padding: 1.5rem 0 1rem;
}
.regalia-experience__intro-title {
  margin-bottom: 1rem;
}
.regalia-experience__intro-lead {
  font-size: 18px;
  line-height: 1.6;
  color: #2c2c2c;
  margin-bottom: 2rem;
}
.regalia-experience .experience-row {
  margin: 1.5rem 0;
}
.regalia-experience .experience-row > [class*="col-"] {
  padding-left: 16px;
  padding-right: 16px;
}
/* Image left, copy right — left-aligned text (Landscape, Architecture) */
.regalia-experience .experience-row--media-left .regalia-experience__copy {
  text-align: left;
}
/* Copy left, image right — right-aligned text (Philosophy, Community Hub) */
.regalia-experience .experience-row--media-right .regalia-experience__copy {
  text-align: right;
}
.regalia-experience .experience-media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}
.regalia-experience .portrait-frame {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 auto;
}
.regalia-experience__copy h2.regalia-eyebrow,
.regalia-experience__copy h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #235651;
  margin: 0 0 1rem;
}
.regalia-experience__copy h2.regalia-eyebrow {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 400;
}
.regalia-experience__copy p {
  line-height: 1.65;
  margin-bottom: 1rem;
}
.regalia-experience .quote-card {
  background: rgba(2, 138, 15, 0.06);
  border-left: 4px solid var(--dhara-accent, #028a0f);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: left;
}
.regalia-experience .experience-row--media-right .quote-card {
  border-left: none;
  border-right: 4px solid var(--dhara-accent, #028a0f);
}
.regalia-experience .quote-card p {
  margin: 0;
  color: #235651;
}
/* Philosophy row: image above text on mobile (live .reverse) */
@media (max-width: 767px) {
  .regalia-experience .experience-row--reverse > .regalia-experience__copy {
    order: 2;
  }
  .regalia-experience .experience-row--reverse > .experience-media {
    order: 1;
  }
  .regalia-experience .experience-row--media-left .regalia-experience__copy,
  .regalia-experience .experience-row--media-right .regalia-experience__copy {
    text-align: left;
  }
  .regalia-experience .experience-row--media-right .quote-card {
    border-right: none;
    border-left: 4px solid var(--dhara-accent, #028a0f);
  }
  .regalia-experience .experience-media img {
    max-height: none;
    margin-bottom: 1.5rem;
  }
}

/* Project gallery — flipped gradient vs Happy Customers (white → cream) */
.regalia-gallery.recent-gallery {
  padding-bottom: 60px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcf9 55%);
}
.regalia-gallery .regalia-gallery__lead {
  padding-right: 0;
  margin-bottom: 2.5rem;
}
.regalia-gallery__strip {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}
.regalia-gallery__strip .gallery-track {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.regalia-gallery__strip .gallery-track::-webkit-scrollbar {
  display: none;
}
.regalia-gallery__strip .gallery-track.dragging {
  scroll-behavior: auto;
  cursor: grabbing;
}
.regalia-gallery__strip .gallery-item {
  flex: 0 0 85vw;
  height: clamp(220px, 45vh, 520px);
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.regalia-gallery__strip .gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.regalia-gallery__strip .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}
.regalia-gallery__strip .gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.regalia-gallery__strip .gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  color: #235651;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.regalia-gallery__strip:hover .gallery-arrow {
  opacity: 1;
  pointer-events: auto;
}
.regalia-gallery__strip .gallery-prev {
  left: 12px;
}
.regalia-gallery__strip .gallery-next {
  right: 12px;
}
@media (min-width: 768px) {
  .regalia-gallery__strip .gallery-item {
    flex-basis: 55vw;
  }
}
@media (min-width: 1100px) {
  .regalia-gallery__strip .gallery-item {
    flex-basis: 40vw;
  }
}

/* Project pages: CTA in yellow footer bar (replaces address / hours columns) */
.footer-bar--project-cta .inner {
  background: var(--dhara-primary, #fee020);
  color: var(--dhara-secondary, #235651);
  padding: 56px 30px;
  text-align: center;
}
.footer-bar--project-cta .footer-bar__cta {
  max-width: 900px;
  margin: 0 auto;
}
.footer-bar--project-cta .inner h3 {
  font-family: var(--font-heading, "Hestina", Georgia, serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--dhara-secondary, #235651);
  margin: 0 0 1.5rem;
}
.footer-bar--project-cta .footer-bar__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.footer-bar--project-cta .regalia-cta {
  margin: 0;
  float: none;
}
.footer-bar--project-cta .regalia-cta-outline {
  border-color: var(--dhara-secondary, #235651);
  color: var(--dhara-secondary, #235651);
}
.footer-bar--project-cta .regalia-cta-outline:hover {
  background: var(--dhara-secondary, #235651);
  border-color: var(--dhara-secondary, #235651);
  color: #fff;
}
.footer-bar--project-cta .regalia-cta-solid:hover {
  background: #fff;
  border-color: #fff;
  color: var(--dhara-secondary, #235651);
}
@media (max-width: 576px) {
  .footer-bar--project-cta .inner {
    padding: 40px 20px;
  }
  .footer-bar--project-cta .footer-bar__cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .footer-bar--project-cta .regalia-cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
.regalia-plot-info p {
  margin-bottom: 6px;
}

/* Legal / privacy policy */
.section-legal {
  padding: 56px 0 72px;
  background: #fff;
}

.section-legal .legal-content {
  color: #235651;
  font-size: 1rem;
  line-height: 1.65;
}

.section-legal .legal-content p {
  margin-bottom: 1rem;
  text-align: justify;
}

.section-legal .legal-content__title {
  font-family: var(--font-heading, "Hestina", serif);
  font-size: 1.75rem;
  color: #fee020;
  margin-bottom: 1.25rem;
}

.section-legal .legal-content h3 {
  font-family: var(--font-heading, "Hestina", serif);
  font-size: 1.125rem;
  color: #235651;
  margin: 1.5rem 0 0.5rem;
}

.section-legal .legal-content a {
  color: #d9c61a;
  text-decoration: underline;
}

/* Floating lead widget (Regalia) — compact on mobile, expanded on desktop */
.floating-contact-widget {
  --float-control-h: 30px;
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: linear-gradient(135deg, #235651 0%, #2f7a72 55%, #235651 100%);
  color: #fff;
  padding: 0.5rem 0.6rem 0.55rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(36, 19, 77, 0.4);
  z-index: 9999;
  max-width: 252px;
  width: auto;
  animation: regaliaFloatIn 0.5s ease-out;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  overflow: visible;
  text-align: center;
}

.floating-contact-widget.is-expanded {
  max-width: 288px;
  padding-bottom: 0.6rem;
}

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

.floating-contact-widget:not(.is-expanded):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(36, 19, 77, 0.45);
}

.project-float__toggle {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-float__toggle:hover {
  background: rgba(255, 255, 255, 0.28);
}

.project-float__toggle-icon {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s ease;
}

.floating-contact-widget.is-expanded .project-float__toggle-icon {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.floating-contact-widget .plant-topper {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  height: 48px;
  width: auto;
  object-fit: contain;
  z-index: 10000;
  pointer-events: none;
}

.floating-contact-widget .plant-topper-main {
  height: 48px;
}

.project-float__head {
  padding: 0 1.5rem 0.5rem 0.25rem;
}

.floating-contact-widget .plots-info {
  font-family: var(--font-heading-secondary, "Manrope", sans-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0;
  color: #fee020;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.floating-contact-widget .plots-info.plots-info-small {
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  margin: 0.2rem 0 0;
  opacity: 1;
}

.floating-contact-widget .contact-buttons {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem;
  margin: 0;
}

.floating-contact-widget .contact-buttons--compact .enquire-btn {
  flex: 1;
  min-height: var(--float-control-h);
  height: var(--float-control-h);
  padding: 0 0.35rem;
  border: 1px solid rgba(228, 159, 37, 0.65);
  border-radius: 6px;
  background: rgba(228, 159, 37, 0.2);
  color: #fee020;
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.floating-contact-widget .contact-buttons--compact .enquire-btn:hover {
  background: rgba(228, 159, 37, 0.35);
}

.floating-contact-widget.is-expanded .contact-buttons--compact .enquire-btn {
  display: none;
}

.project-float__panel {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-float__panel[hidden] {
  display: none !important;
}

.floating-contact-widget .call-btn,
.floating-contact-widget .whatsapp-btn,
.floating-contact-widget .contact-buttons--compact .enquire-btn,
.project-float-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: var(--float-control-h);
  height: var(--float-control-h);
  max-height: var(--float-control-h);
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
}

.floating-contact-widget .call-btn {
  gap: 0.25rem;
  flex: 1;
  background: #fee020;
  color: #235651;
  padding: 0 0.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.floating-contact-widget .call-btn:hover {
  background: #ffe94a;
  transform: scale(1.02);
  color: #235651;
}

.floating-contact-widget .whatsapp-btn {
  gap: 0.25rem;
  flex: 1;
  background: var(--dhara-accent, #028a0f);
  color: #fff;
  padding: 0 0.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.6875rem;
  line-height: 1;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.floating-contact-widget .whatsapp-btn:hover {
  background: var(--dhara-accent-dark, #026d0c);
  transform: scale(1.02);
  color: #fff;
}

.floating-contact-widget .call-btn img,
.floating-contact-widget .whatsapp-btn img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.floating-contact-widget .whatsapp-btn img {
  filter: brightness(0) invert(1);
}

.project-float-form {
  margin: 0;
  text-align: left;
}

.project-float-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.project-float-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.project-float-form__field {
  display: block;
  margin-bottom: 0.35rem;
}

.project-float-form__row .project-float-form__field {
  margin-bottom: 0;
}

.project-float-form__field input {
  width: 100%;
  height: var(--float-control-h);
  min-height: var(--float-control-h);
  padding: 0 0.45rem;
  font-size: 0.75rem;
  line-height: 1;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: #235651;
  box-sizing: border-box;
}

.project-float-form__field input::placeholder {
  color: rgba(36, 19, 77, 0.55);
}

.project-float-form__field input:focus {
  outline: 2px solid #fee020;
  outline-offset: 1px;
}

.project-float-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0.4rem 0 0.45rem;
  font-family: var(--font-body, "Manrope", sans-serif);
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  text-align: left;
}

.project-float-form__consent input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: auto;
}

.project-float-form__consent a {
  color: #fee020;
  text-decoration: none;
}

.project-float-form__consent a:hover {
  text-decoration: underline;
}

.project-float-form__submit {
  width: 100%;
  margin: 0;
  padding: 0 0.4rem;
  border: none;
  border-radius: 6px;
  background: #fee020;
  color: #235651;
  font-weight: 700;
  font-size: 0.6875rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
}

.project-float-form__submit:hover:not(:disabled) {
  background: #ffe94a;
}

.project-float-form__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.project-float-form__status {
  min-height: 1rem;
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  text-align: center;
}

.project-float-form__status.is-error {
  color: #ffb4ab;
}

.project-float-form__status.is-success {
  color: #c8f5cc;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Desktop / laptop: form always visible */
@media (min-width: 992px) {
  .floating-contact-widget {
    max-width: 288px;
  }

  .floating-contact-widget .plots-info {
    font-size: 1.375rem;
  }

  .floating-contact-widget .plots-info.plots-info-small {
    font-size: 1rem;
  }

  .floating-contact-widget .project-float__toggle {
    display: none;
  }

  .floating-contact-widget .contact-buttons--compact .enquire-btn {
    display: none;
  }

  .floating-contact-widget .project-float__panel,
  .floating-contact-widget .project-float__panel[hidden] {
    display: block !important;
    margin-top: 0.45rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 768px) {
  .floating-contact-widget {
    bottom: 10px;
    right: 10px;
    max-width: 240px;
  }

  .floating-contact-widget.is-expanded {
    max-width: min(288px, calc(100vw - 20px));
  }
}

/* Thank-you pages (qualified Mailinflow visits) */
.section-thank-you {
  padding: 72px 0 96px;
  background: #fff;
}

.section-thank-you__card {
  background: #f5f3ef;
  border-radius: 8px;
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 32px rgba(36, 19, 77, 0.06);
  text-align: center;
}

.section-thank-you__mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: block;
  object-fit: contain;
}

.section-thank-you__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #235651;
}

.section-thank-you__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #4a4a4a;
  margin-bottom: 2rem;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.section-thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: stretch;
}

.section-thank-you__actions .regalia-cta {
  margin: 0;
  min-width: 9.5rem;
  height: auto;
  min-height: 48px;
  line-height: 1.3;
  padding: 0.65rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.section-thank-you__actions .regalia-cta-solid {
  background: #fee020;
  border-color: #fee020;
  color: #235651;
}

.section-thank-you__actions .regalia-cta-solid:hover {
  background: #235651;
  border-color: #235651;
  color: #fff;
}

.section-thank-you__actions .regalia-cta-outline {
  background: #fff;
  border-color: #fee020;
  color: #235651;
}

.section-thank-you__actions .regalia-cta-outline:hover {
  background: #fee020;
  border-color: #fee020;
  color: #235651;
}

@media (max-width: 575px) {
  .section-thank-you__card {
    padding: 2rem 1.25rem;
  }

  .section-thank-you__actions {
    flex-direction: column;
  }

  .section-thank-you__actions .regalia-cta {
    width: 100%;
    white-space: normal;
  }
}
