:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --bg-light-pink: #F3EBF0;
  --bg-dark-plum: #5B3850;
  --bg-light: #F8F8F8;

  --space-desktop: 80px;
  --space-tablet: 40px;
  --space-mobile: 20px;

  --section-gap-desktop: 40px;
  --section-gap-tablet: 20px;
  --section-gap-mobile: 20px;

  --header-height: 60px;
  --transition: all 0.35s ease;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
}

section#project-overview {
    margin-bottom: 0px !important;
}
/*spacing*/

.testimonial-single-slider-section
 {
  padding-top: 40px;
  padding-bottom: 40px;
}
.project-overview-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*spacing*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Anybody', sans-serif;
  color: var(--color-black);
  background:#fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.site-container {
  padding-left: var(--space-desktop);
  padding-right: var(--space-desktop);
  padding-top: 8px;
  padding-bottom: 8px;
}
.testimonial-single-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
.project-gallery-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
.section-gap {
  margin-bottom: var(--section-gap-desktop);
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: var(--transition);
}

.site-header.is-sticky {
  position: fixed;
  background: #fff;
  box-shadow: var(--shadow-soft);
  animation: headerSlideDown 0.4s ease;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  max-width: 170px;
}

.site-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 52px;
}

.desktop-nav a {
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  transition: var(--transition);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.mobile-toggle {
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #000;
  display: block;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0 18px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu a {
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 8px 0;
}

.mobile-menu.show {
  display: block;
}

/* Common heading */
.section-heading-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.section-main-heading {
  color: #000;
  text-align: center;
  font-family: 'Anybody', sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 2.76px;
  margin: 0;
}

/* Hero */
.hero-section {
  padding-top: 36px;
}

.hero-wrap {
  padding-top: calc(var(--header-height) + 10px);
}

.hero-media {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
}

.hero-video-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.hero-video-trigger:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.hero-video-trigger svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  margin-left: 4px;
}

/* Hero modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 9999;
}

.video-modal.show {
  opacity: 1;
  visibility: visible;
}

.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 980px;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(24px);
  transition: 0.35s ease;
}

.video-modal.show .video-modal-dialog {
  transform: translateY(0);
}

.video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Project overview */
.project-overview-section {
  background: #F3EBF0;
}

.overview-top-grid {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 54px;
}

.overview-left,
.overview-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overview-left p,
.overview-right p {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.overview-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.overview-logo-box {
  width: 96px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.overview-stats-box {
  background: #5B3850;
  padding: 68px 40px 42px;
}

.overview-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 42px;
}

.overview-stat-item {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 28px 30px 18px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview-stat-item::before,
.overview-stat-item::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 48px;
  height: 136px;
  opacity: 0.35;
}

.overview-stat-item::before {
  left: 8px;
  border-top: 1px solid rgba(255,255,255,0.35);
  border-left: 1px solid rgba(255,255,255,0.35);
}

.overview-stat-item::after {
  right: 8px;
  border-top: 1px solid rgba(255,255,255,0.35);
  border-right: 1px solid rgba(255,255,255,0.35);
}

.overview-stat-item h3 {
  margin: 0 0 10px;
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.overview-stat-item p {
  margin: 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.15px;
}

.overview-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.overview-btn {
  min-width: 140px;
  height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.35s ease;
  cursor: pointer;
}

.overview-btn-dark {
  background: #000;
  color: #fff;
}

.overview-btn-dark:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

.overview-btn-light {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.overview-btn-light:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Enquiry popup */
.enquiry-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.enquiry-popup.show {
  opacity: 1;
  visibility: visible;
}

.enquiry-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.enquiry-popup-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #fff;
  z-index: 2;
  padding: 42px 30px 30px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transform: translateY(-120px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.enquiry-popup.show .enquiry-popup-dialog {
  transform: translateY(0);
  opacity: 1;
}

.enquiry-popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #000;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.enquiry-popup-content h3 {
  margin: 0 0 8px;
  color: #000;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
}

.enquiry-popup-content p {
  margin: 0 0 24px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enquiry-form-group input,
.enquiry-form-group textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,0.16);
  background: #F8F8F8;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  outline: none;
}

.enquiry-form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.enquiry-form-group input:focus,
.enquiry-form-group textarea:focus {
  border-color: #5B3850;
}

.enquiry-form-submit {
  text-align: center;
}

.enquiry-submit-btn {
  min-width: 160px;
  height: 46px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.enquiry-submit-btn:hover {
  background: #5B3850;
  border-color: #5B3850;
}

/* Testimonial single slider */
.testimonial-single-slider-section {
  background: #F3EBF0;
}

.testimonial-single-slider-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 70px 54px;
}

.testimonialSingleSlider {
  width: 100%;
  overflow: hidden;
}

.testimonialSingleSlider .swiper-wrapper {
  align-items: stretch;
}

.testimonial-single-card {
  width: 100%;
}

.testimonial-single-media {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.testimonial-single-media img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.testimonial-single-media:hover img {
  transform: scale(1.03);
}

.testimonial-single-play-btn {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  z-index: 3;
}

.testimonial-single-play-btn:hover {
  background: #5B3850;
  transform: scale(1.08);
}

.testimonial-single-play-btn svg {
  width: 17px;
  height: 17px;
  fill: #fff;
  margin-left: 2px;
}

.testimonial-single-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  z-index: 5;
}

.testimonial-single-arrow:hover {
  background: #5B3850;
  color: #fff;
  border-color: #5B3850;
}

.testimonial-single-arrow svg {
  width: 18px;
  height: 18px;
}

.testimonial-single-arrow-prev {
  left: 0;
}

.testimonial-single-arrow-next {
  right: 0;
}

.testimonial-single-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.testimonial-single-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(0,0,0,0.22);
  opacity: 1;
}

.testimonial-single-pagination .swiper-pagination-bullet-active {
  background: #5B3850;
}

/* Testimonial popup */
.testimonial-popup-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.testimonial-popup-modal.show {
  opacity: 1;
  visibility: visible;
}

.testimonial-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.testimonial-popup-dialog {
  position: relative;
  width: 100%;
  max-width: 980px;
  background: #000;
  z-index: 2;
  transform: translateY(30px) scale(0.98);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.testimonial-popup-modal.show .testimonial-popup-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.testimonial-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.testimonial-popup-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.testimonial-popup-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
  .site-container {
    padding-left: var(--space-tablet);
    padding-right: var(--space-tablet);
  }

  .section-gap {
    margin-bottom: var(--section-gap-tablet);
  }

  .desktop-nav {
    gap: 24px;
  }

  .desktop-nav a {
    font-size: 14px;
  }

  .site-logo {
    max-width: 150px;
  }

  .section-main-heading {
    font-size: 26px;
    letter-spacing: 1.8px;
  }

  .hero-video-trigger {
    width: 78px;
    height: 78px;
    border-radius: 18px;
  }

  .hero-video-trigger svg {
    width: 24px;
    height: 24px;
  }

  .overview-top-grid {
    grid-template-columns: 1fr 120px 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .overview-left p,
  .overview-right p {
    font-size: 16px;
  }

  .overview-stats-box {
    padding: 50px 24px 34px;
  }

  .overview-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .overview-stat-item::before,
  .overview-stat-item::after {
    height: 118px;
    width: 42px;
  }

  .testimonial-single-slider-wrap {
    max-width: 100%;
    padding: 0 56px 50px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  :root {
    --header-height: 76px;
  }

  .site-container {
    padding-left: var(--space-mobile);
    padding-right: var(--space-mobile);
  }

  .section-gap {
    margin-bottom: var(--section-gap-mobile);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-logo {
    max-width: 135px;
  }

  .section-main-heading {
    font-size: 20px;
    letter-spacing: 1.2px;
  }

  .hero-section {
    padding-top: 20px;
  }

  .hero-wrap {
    padding-top: calc(var(--header-height) + 6px);
  }

  .hero-media,
  .hero-media img {
    min-height: 260px;
  }

  .hero-video-trigger {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .hero-video-trigger svg {
    width: 20px;
    height: 20px;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal-dialog {
    border-radius: 12px;
  }

  .video-close {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .overview-top-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
    text-align: center;
  }

  .overview-left,
  .overview-right {
    text-align: center;
    gap: 8px;
  }

  .overview-left p,
  .overview-right p {
    font-size: 14px;
    line-height: 1.1;
  }

  .overview-center {
    order: -1;
  }

  .overview-logo-box {
    width: 72px;
    height: 90px;
    margin: 0 auto;
  }

  .overview-stats-box {
    padding: 30px 20px 28px;
  }

  .overview-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .overview-stat-item {
    min-height: 130px;
    padding: 22px 20px 16px;
  }

  .overview-stat-item h3 {
    font-size: 24px;
  }

  .overview-stat-item p {
    font-size: 14px;
    line-height: 1.05;
  }

  .overview-stat-item::before,
  .overview-stat-item::after {
    width: 34px;
    height: 90px;
    top: 10px;
  }

  .overview-cta-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .overview-btn {
    width: 100%;
    min-width: 100%;
    height: 44px;
    font-size: 14px;
  }

  .enquiry-popup-dialog {
    padding: 38px 20px 24px;
  }

  .enquiry-popup-content h3 {
    font-size: 22px;
  }

  .enquiry-popup-content p {
    font-size: 14px;
  }

  .testimonial-single-slider-wrap {
    padding: 0 0 46px;
  }

  .testimonial-single-arrow {
    width: 38px;
    height: 38px;
    top: auto;
    bottom: -2px;
    transform: none;
  }

  .testimonial-single-arrow-prev {
    left: calc(50% - 58px);
  }

  .testimonial-single-arrow-next {
    right: calc(50% - 58px);
  }

  .testimonial-single-play-btn {
    left: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
  }

  .testimonial-single-play-btn svg {
    width: 15px;
    height: 15px;
  }

  .testimonial-popup-modal {
    padding: 14px;
  }

  .testimonial-popup-close {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}

/* =========================================
   Project Highlights Section
========================================= */
.project-highlights-section {
  background: #ffffff;
  /*padding: 40px 0px 40px 0px;*/
}

.project-highlights-box {
  background: #F8F8F8;
  padding: 54px 110px 56px;
}

.project-highlights-heading-wrap {
  margin-bottom: 42px;
}

.project-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 64px;
  row-gap: 28px;
}

.project-highlight-card {
  position: relative;
  min-height: 84px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 22px;
  padding: 20px 20px 20px 22px;
  background: transparent;
}

.project-highlight-card::before,
.project-highlight-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  pointer-events: none;
}

.project-highlight-card::before {
  top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.project-highlight-card::after {
  bottom: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.project-highlight-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-highlight-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-highlight-content p {
  margin: 0;
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.1px;
}

/* Tablet */
@media (max-width: 991.98px) {
  .project-highlights-box {
    padding: 40px 40px 42px;
  }

  .project-highlights-heading-wrap {
    margin-bottom: 30px;
  }
.project-highlights-section {
  background: #ffffff;
  padding: 30px 0px 30px 0px;
}
  .project-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 18px;
  }

  .project-highlight-card {
    min-height: 78px;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    padding: 18px 16px 18px 18px;
  }

  .project-highlight-icon {
    width: 36px;
    height: 36px;
  }

  .project-highlight-content p {
    font-size: 14px;
    line-height: 1.2;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .project-highlights-box {
    padding: 28px 20px 30px;
  }

  .project-highlights-heading-wrap {
    margin-bottom: 22px;
  }

  .project-highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-highlight-card {
    min-height: 74px;
    grid-template-columns: 32px 1fr;
    gap: 14px;
    padding: 16px 14px 16px 16px;
  }

  .project-highlight-icon {
    width: 32px;
    height: 32px;
  }

  .project-highlight-content p {
    font-size: 14px;
    line-height: 1.2;
  }
}

/* =========================================
   Project Gallery Section
========================================= */
.project-gallery-section {
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.project-gallery-heading-wrap {
  margin-bottom: 30px;
}

.project-gallery-slider-wrap {
  position: relative;
  padding: 0 48px;
}

.projectGallerySlider {
  width: 100%;
  overflow: hidden;
}

.project-gallery-card {
  overflow: hidden;
  background: #f5f5f5;
}

.project-gallery-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.project-gallery-card:hover img {
  transform: scale(1.03);
}

.project-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.35s ease;
}

.project-gallery-arrow:hover {
  background: #5B3850;
}

.project-gallery-arrow svg {
  width: 16px;
  height: 16px;
}

.project-gallery-arrow-prev {
  left: 0;
}

.project-gallery-arrow-next {
  right: 0;
}

.project-gallery-pagination {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.project-gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(0,0,0,0.22);
  opacity: 1;
}

.project-gallery-pagination .swiper-pagination-bullet-active {
  background: #5B3850;
}

/* Tablet */
@media (max-width: 991.98px) {
  .project-gallery-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .project-gallery-heading-wrap {
    margin-bottom: 24px;
  }

  .project-gallery-slider-wrap {
    padding: 0 42px;
  }

  .project-gallery-card img {
    height: 320px;
  }

  .project-gallery-arrow {
    width: 34px;
    height: 34px;
  }

  .project-gallery-arrow svg {
    width: 15px;
    height: 15px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .project-gallery-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .project-gallery-heading-wrap {
    margin-bottom: 20px;
  }

  .project-gallery-slider-wrap {
    padding: 0 0 30px;
  }

  .project-gallery-card img {
    height: 240px;
  }

  .project-gallery-arrow {
    width: 34px;
    height: 34px;
    top: auto;
    bottom: -2px;
    transform: none;
  }

  .project-gallery-arrow-prev {
    left: calc(50% - 48px);
  }

  .project-gallery-arrow-next {
    right: calc(50% - 48px);
  }

  .project-gallery-pagination {
    display: flex;
  }
}


/* =========================================
   Site Visit / Contact Form Section
========================================= */
.site-visit-section {
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-visit-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 70px;
  align-items: start;
}

.site-visit-left {
  padding-top: 8px;
}

.site-visit-heading {
  margin: 0;
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.site-visit-right {
  width: 100%;
}

.site-visit-form {
  width: 100%;
}

.site-visit-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  row-gap: 26px;
}

.site-visit-form-group {
  width: 100%;
}

.site-visit-form-group input {
  width: 100%;
  height: 54px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.14);
  padding: 0 0 0 0;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  outline: none;
  box-shadow: none;
}

.site-visit-form-group input::placeholder {
  color: rgba(0, 0, 0, 0.65);
}

.site-visit-form-group input:focus {
  border-bottom-color: #5B3850;
}

.site-visit-submit-wrap {
  margin-top: 34px;
}

.site-visit-submit-btn {
  min-width: 110px;
  height: 40px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: all 0.35s ease;
}

.site-visit-submit-btn:hover {
  background: #5B3850;
  border-color: #5B3850;
}

/* Tablet */
@media (max-width: 991.98px) {
  .site-visit-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .site-visit-inner {
    grid-template-columns: 240px 1fr;
    gap: 40px;
  }

  .site-visit-heading {
    font-size: 24px;
    line-height: 1.14;
  }

  .site-visit-form-grid {
    column-gap: 24px;
    row-gap: 20px;
  }

  .site-visit-form-group input {
    height: 50px;
    font-size: 14px;
  }

  .site-visit-submit-wrap {
    margin-top: 28px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .site-visit-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .site-visit-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .site-visit-left {
    padding-top: 0;
  }

  .site-visit-heading {
    font-size: 22px;
    line-height: 1.14;
  }

  .site-visit-form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .site-visit-form-group input {
    height: 48px;
    font-size: 14px;
  }

  .site-visit-submit-wrap {
    margin-top: 22px;
  }

  .site-visit-submit-btn {
    min-width: 100%;
    height: 44px;
    font-size: 14px;
  }
}

/* =========================================
   Floor Plans Section
========================================= */
.floor-plans-section {
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.floor-plans-top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.floor-plans-title-wrap {
  display: flex;
  align-items: center;
}

.floor-plans-tabs {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.floor-plan-tab {
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.35s ease;
}

.floor-plan-tab-letter {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #E8E8E8;
  color: #8a8a8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: all 0.35s ease;
}

.floor-plan-tab-label {
  color: #8a8a8a;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.35s ease;
}

.floor-plan-tab:hover .floor-plan-tab-letter {
  background: #5B3850;
  color: #fff;
  transform: translateY(-2px);
}

.floor-plan-tab:hover .floor-plan-tab-label {
  color: #5B3850;
}

.floor-plan-tab.active .floor-plan-tab-letter {
  background: #000;
  color: #fff;
}

.floor-plan-tab.active .floor-plan-tab-label {
  color: #000;
}

.floor-plans-content {
  width: 100%;
}

.floor-plan-panel {
  display: none;
}

.floor-plan-panel.active {
  display: block;
  animation: floorPlanFade 0.4s ease;
}

@keyframes floorPlanFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.floor-plan-image-wrap {
  width: 100%;
  background: #fff;
}

.floor-plan-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Tablet */
@media (max-width: 991.98px) {
  .floor-plans-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .floor-plans-top {
    gap: 30px;
    margin-bottom: 26px;
  }

  .floor-plans-tabs {
    gap: 14px;
  }

  .floor-plan-tab-letter {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }

  .floor-plan-tab-label {
    font-size: 9px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .floor-plans-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .floor-plans-top {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
  }

  .floor-plans-tabs {
    gap: 12px;
  }

  .floor-plan-tab-letter {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .floor-plan-tab-label {
    font-size: 8px;
  }
}

/* =========================================
   Master Plan Section
========================================= */
.master-plan-section {
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.master-plan-heading-wrap {
  margin-bottom: 26px;
}

.master-plan-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 34px;
  align-items: start;
}

.master-plan-image-col {
  width: 100%;
}

.master-plan-image-wrap {
  width: 100%;
  background: #fff;
}

.master-plan-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.master-plan-list-col {
  width: 100%;
  padding-top: 18px;
}

.master-plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.master-plan-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
}

.master-plan-list li span {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #5B3850;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

/* Tablet */
@media (max-width: 991.98px) {
  .master-plan-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .master-plan-heading-wrap {
    margin-bottom: 22px;
  }

  .master-plan-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .master-plan-list-col {
    padding-top: 0;
  }

  .master-plan-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .master-plan-list li {
    font-size: 14px;
    line-height: 40px;
    gap: 12px;
  }

  .master-plan-list li span {
    width: 22px;
    height: 22px;
    font-size: 10px;
    flex: 0 0 22px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .master-plan-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .master-plan-heading-wrap {
    margin-bottom: 18px;
  }

  .master-plan-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .master-plan-list {
    grid-template-columns: 1fr;
  }

  .master-plan-list li {
    font-size: 14px;
    line-height: 19px;
    gap: 10px;
  }

  .master-plan-list li span {
    width: 20px;
    height: 20px;
    font-size: 9px;
    flex: 0 0 20px;
  }
}

/* =========================================
   Project Amenities Section
========================================= */
.project-amenities-section {
  background: #F3EBF0;
  padding-top: 40px;
  padding-bottom: 40px;
}
section#amenities {
    margin-bottom: 0px !important ;
}
section#location-map {
    margin-bottom: 0px;
}
.location-map-section {
    padding-top: 0px !important;
    padding-bottom:0px !important;
}
.project-amenities-heading-wrap {
  margin-bottom: 34px;
}

.project-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 22px;
}

.project-amenity-card {
  position: relative;
  min-height: 64px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 14px 14px 16px;
  background: transparent;
}

.project-amenity-card::before,
.project-amenity-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.project-amenity-card::before {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.project-amenity-card::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-amenity-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-amenity-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.project-amenity-content p {
  margin: 0;
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.1px;
}

/* Tablet */
@media (max-width: 991.98px) {
  .project-amenities-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .project-amenities-heading-wrap {
    margin-bottom: 28px;
  }

  .project-amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 16px;
  }

  .project-amenity-card {
    min-height: 60px;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    padding: 14px 12px 14px 14px;
  }

  .project-amenity-icon {
    width: 26px;
    height: 26px;
  }

  .project-amenity-content p {
    font-size: 14px;
    line-height: 1.18;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .project-amenities-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .project-amenities-heading-wrap {
    margin-bottom: 22px;
  }

  .project-amenities-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .project-amenity-card {
    min-height: 58px;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    padding: 14px 12px 14px 14px;
  }

  .project-amenity-icon {
    width: 24px;
    height: 24px;
  }

  .project-amenity-content p {
    font-size: 14px;
    line-height: 1.18;
  }
}

/* =========================================
   Location Highlights Section
========================================= */
.location-highlights-section {
  background: #F3EBF0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.location-highlights-heading-wrap {
  margin-bottom: 30px;
}

.location-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.location-accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  overflow: hidden;
}

.location-accordion-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.location-accordion-title-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.location-accordion-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
}

.location-accordion-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.location-accordion-title {
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.location-accordion-arrow {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex: 0 0 18px;
  transition: transform 0.35s ease;
}

.location-accordion-arrow svg {
  width: 14px;
  height: 14px;
}

.location-accordion-item.active .location-accordion-arrow {
  transform: rotate(180deg);
}

.location-accordion-content {
  display: none;
  padding: 0 18px 18px 24px;
}

.location-accordion-item.active .location-accordion-content {
  display: block;
}

.location-accordion-content ul {
  margin: 0;
  padding-left: 12px;
}

.location-accordion-content li {
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.08px;
}

/* Tablet */
@media (max-width: 991.98px) {
  .location-highlights-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .location-highlights-heading-wrap {
    margin-bottom: 24px;
  }

  .location-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .location-accordion-trigger {
    padding: 14px 12px;
  }

  .location-accordion-title {
    font-size: 15px;
  }

  .location-accordion-content {
    padding: 0 14px 14px 20px;
  }

  .location-accordion-content li {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .location-highlights-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .location-highlights-heading-wrap {
    margin-bottom: 20px;
  }

  .location-highlights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .location-accordion-trigger {
    padding: 14px 12px;
  }

  .location-accordion-title {
    font-size: 14px;
  }

  .location-accordion-content {
    padding: 0 12px 14px 18px;
  }

  .location-accordion-content li {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* =========================================
   Project Specifications Section
========================================= */
.project-specifications-section {
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.project-specifications-heading-wrap {
  margin-bottom: 30px;
}

.project-specifications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.specification-card {
  background: #F8F8F8;
  overflow: hidden;
  transition: all 0.3s ease;
}

.specification-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.specification-trigger-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.specification-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background: #ECECEC;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.specification-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.specification-title {
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
}

.specification-arrow {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: transform 0.3s ease;
}

.specification-arrow svg {
  width: 14px;
  height: 14px;
}

.specification-card.active .specification-arrow {
  transform: rotate(180deg);
}

.specification-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px 0 54px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.specification-card.active .specification-content {
  padding: 0 14px 16px 54px;
}

.specification-content p {
  margin: 0 0 8px;
  color: #000;
  font-family: 'Anybody', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.08px;
}

.specification-content p:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991.98px) {
  .project-specifications-heading-wrap {
    margin-bottom: 24px;
  }

  .project-specifications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .specification-trigger {
    padding: 14px 12px;
  }

  .specification-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
  }

  .specification-icon img {
    width: 16px;
    height: 16px;
  }

  .specification-title {
    font-size: 13px;
  }

  .specification-content {
    padding: 0 12px 0 50px;
  }

  .specification-card.active .specification-content {
    padding: 0 12px 14px 50px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .project-specifications-heading-wrap {
    margin-bottom: 20px;
  }

  .project-specifications-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .specification-trigger {
    padding: 14px 12px;
  }

  .specification-trigger-left {
    gap: 10px;
  }

  .specification-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .specification-icon img {
    width: 14px;
    height: 14px;
  }

  .specification-title {
    font-size: 13px;
    line-height: 1.2;
  }

  .specification-content {
    padding: 0 12px 0 46px;
  }

  .specification-card.active .specification-content {
    padding: 0 12px 14px 46px;
  }

  .specification-content p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* =========================================
   Location Map Section
========================================= */
.location-map-section {
  background: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.location-map-heading-wrap {
  text-align: center;
  margin-bottom: 20px;
  padding-left: var(--space-desktop);
  padding-right: var(--space-desktop);
}

.location-map-full {
  width: 100%;
  line-height: 0;
}

.location-map-full iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

/* Tablet */
@media (max-width: 991.98px) {
  .location-map-heading-wrap {
    padding-left: var(--space-tablet);
    padding-right: var(--space-tablet);
    margin-bottom: 18px;
  }

  .location-map-full iframe {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .location-map-heading-wrap {
    padding-left: var(--space-mobile);
    padding-right: var(--space-mobile);
    margin-bottom: 16px;
  }

  .location-map-full iframe {
    height: 300px;
  }
}

/* =========================================
   Footer Section
========================================= */
.site-footer {
  background: #002F63;
  padding-top: 64px;
  padding-bottom: 12px;
}

.site-footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.site-footer-col {
  min-width: 0;
}

.site-footer-heading {
  margin: 0 0 26px;
  color: #FFF;
  font-family: 'Anybody', sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.site-footer-projects .site-footer-heading {
  text-transform: none;
}

.site-footer-text,
.site-footer-project-list li,
.site-footer-project-list li a,
.site-footer-copy,
.site-footer-credit {
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.site-footer-text {
  margin: 0;
  opacity: 0.95;
}

.site-footer-project-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-project-list li {
  margin-bottom: 4px;
}

.site-footer-project-list li:last-child {
  margin-bottom: 0;
}

.site-footer-project-list a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.site-footer-project-list a:hover {
  opacity: 0.75;
}

.site-footer-divider-wrap {
  position: relative;
  margin-top: 42px;
  margin-bottom: 18px;
}

.site-footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.site-footer-top-btn {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 50%;
  background: #D9D9D9;
  color: #002F63;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
}

.site-footer-top-btn:hover {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.08);
}

.site-footer-top-btn svg {
  width: 13px;
  height: 13px;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer-copy,
.site-footer-credit {
  margin: 0;
  opacity: 0.95;
}

/* Tablet */
@media (max-width: 991.98px) {
  .site-footer {
    padding-top: 46px;
    padding-bottom: 12px;
  }

  .site-footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .site-footer-projects {
    grid-column: 1 / -1;
  }

  .site-footer-heading {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .site-footer-text,
  .site-footer-project-list li,
  .site-footer-project-list li a,
  .site-footer-copy,
  .site-footer-credit {
    font-size: 12px;
    line-height: 1.5;
  }

  .site-footer-divider-wrap {
    margin-top: 32px;
    margin-bottom: 16px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .site-footer {
    padding-top: 34px;
    padding-bottom: 14px;
  }

  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer-heading {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .site-footer-text,
  .site-footer-project-list li,
  .site-footer-project-list li a,
  .site-footer-copy,
  .site-footer-credit {
    font-size: 12px;
    line-height: 1.45;
  }

  .site-footer-divider-wrap {
    margin-top: 24px;
    margin-bottom: 14px;
  }

  .site-footer-top-btn {
    width: 28px;
    height: 28px;
  }

  .site-footer-top-btn svg {
    width: 12px;
    height: 12px;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/*otp*/
.enquiry-popup-dialog-small {
  max-width: 400px;
  width: 100%;
  padding: 30px 16px 16px;
  border-radius: 14px;
}

.enquiry-form-small {
  gap: 10px;
}

.enquiry-popup-content h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.enquiry-popup-content p {
  font-size: 12px;
  margin-bottom: 14px;
  line-height: 1.5;
}

.enquiry-form-small .enquiry-form-group input,
.enquiry-form-small .enquiry-form-group select {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.14);
  background: #F8F8F8;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  outline: none;
}

.enquiry-form-small .enquiry-form-group input:focus,
.enquiry-form-small .enquiry-form-group select:focus {
  border-color: #5B3850;
  box-shadow: 0 0 0 2px rgba(91,56,80,0.08);
}

.enquiry-inline-group {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 8px;
  align-items: center;
}

.otp-mini-btn {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: #5B3850;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 8px;
  white-space: nowrap;
}

.otp-mini-btn:hover {
  background: #000;
}

.otp-verify-btn {
  background: #000;
}

.otp-verify-btn:hover {
  background: #5B3850;
}

.otp-message,
.form-status-message {
  min-height: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

.privacy-check-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: #000;
}

.privacy-check-label input {
  margin-top: 2px;
}

.small-submit-btn {
  width: 100%;
  min-width: 100%;
  height: 40px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.small-submit-btn:disabled,
.otp-mini-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

@media (max-width: 767.98px) {
  .enquiry-popup {
    padding: 10px;
  }

  .enquiry-popup-dialog-small {
    max-width: 100%;
    padding: 28px 14px 14px;
  }

  .enquiry-inline-group {
    grid-template-columns: 1fr;
  }

  .otp-mini-btn,
  .small-submit-btn {
    min-height: 40px;
  }
}

.enquiry-inline-group,
.site-visit-phone-wrap {
  display: grid;
  grid-template-columns: 1fr 98px;
  gap: 8px;
  align-items: center;
}

.otp-mini-btn,
.site-visit-otp-btn {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  background: #5B3850;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0 8px;
  white-space: nowrap;
}

.otp-mini-btn:hover,
.site-visit-otp-btn:hover {
  background: #000;
}

.otp-verify-btn,
.site-visit-verify-btn {
  background: #000;
}

.otp-verify-btn:hover,
.site-visit-verify-btn:hover {
  background: #5B3850;
}

.enquiry-form-small .enquiry-form-group input,
.enquiry-form-small .enquiry-form-group select,
.site-visit-form-small .site-visit-form-group input,
.site-visit-form-small .site-visit-form-group select {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 8px;
  background: #F8F8F8;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.2;
  color: #000;
  outline: none;
}

.otp-message,
.form-status-message,
.site-visit-otp-message,
.site-visit-form-status {
  min-height: 16px;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 767.98px) {
  .enquiry-inline-group,
  .site-visit-phone-wrap {
    grid-template-columns: 1fr;
  }
}
.site-visit-otp-message {
    display: none;
}
/* Right fixed enquiry button */
.right-fixed-popup-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99998;
  width: 44px;
  min-height: 150px;
  padding: 0px;
  margin: 0;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: #5B3850;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
  animation: rightFixedBlink 1.15s infinite;
}

.right-fixed-popup-btn:hover {
  background: #000;
  animation-play-state: paused;
}

@keyframes rightFixedBlink {
  0%, 100% { opacity: 1; box-shadow: 0 8px 22px rgba(0,0,0,0.22); }
  50% { opacity: 0.55; box-shadow: 0 8px 30px rgba(91,56,80,0.65); }
}

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

.otp-field-row.is-visible {
  display: grid !important;
}

.enquiry-inline-group.otp-field-row.is-visible {
  grid-template-columns: 1fr 98px;
}

@media (max-width: 767.98px) {
  .right-fixed-popup-btn {
    top: auto;
    bottom: 120px;
    right: 0;
    width: 42px;
    min-height: 132px;
    padding: 0px;
    font-size: 12px;
  }

  .enquiry-inline-group.otp-field-row.is-visible {
    grid-template-columns: 1fr;
  }
}
