@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&display=swap');

/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  --page-container: 82.5rem;
  --page-padding: 2.5rem;
  --section-spacing: 6.25rem;
  --radius-main: 2.125rem;
}

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

body {
  font-family: "Poppins", sans-serif;
  background: #f8f5f0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
section,
.gallery-section,
footer {
  position: relative;
  isolation: isolate;
}

.hero,
.project-details-section,
.greenvista-video-section {
  overflow-x: hidden;
}

.gallery-section,
.details-container,
.greenvista-container,
.lux-footer .container {
  width: min(100% - calc(var(--page-padding) * 2), var(--page-container));
  margin-inline: auto;
}

/* GPU Safe Interactions */
.gallery-card,
.feature,
.overview-box,
.highlight-item,
.watch-btn,
.hero-btn,
.back-btn,
.enquiry-btn {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.gallery-card,
.overview-box,
.feature,
.highlight-item {
  contain: layout paint;
}

/* Layering indices */
.hero-bg,
.details-bg,
.greenvista-bg {
  pointer-events: none;
}

.overlay,
.video-overlay {
  z-index: 1;
}

.hero-content,
.price-card,
.greenvista-card,
.details-container {
  z-index: 2;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* --- HERO SECTION --- */
.hero {
  position: relative;
  width: 100%;
  min-height: 38.5rem; /* ~616px visual height */
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16.25rem;
  width: 100%;
  height: 43.75rem;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0) 0%,
    rgba(248,245,240,0.10) 35%,
    rgba(248,245,240,0.55) 65%,
    rgba(248,245,240,0.95) 100%
  );
  filter: blur(0.625rem);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0.85) 82%,
    rgba(0,0,0,0.35) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 72%,
    rgba(0,0,0,0.85) 82%,
    rgba(0,0,0,0.35) 92%,
    transparent 100%
  );
}

.logo-link {
  text-decoration: none;
}

.logo-wrapper {
  position: absolute;
  top: 2.5rem;
  left: 6.25rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.company-logo {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: contain;
  display: block;
  border-radius: 1.125rem;
  background: #ffffff;
  padding: 0.625rem;
  box-shadow: 0 0.625rem 1.5rem rgba(0,0,0,0.15);
}

.logo-content {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  line-height: 1.2;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05rem;
}

.logo-subtitle {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #dfb76c;
  font-weight: 500;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(44rem, 90%);
  margin-left: 6.25rem;
  margin-top: 6.25rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-content::before {
  content: none;
}



.hero-title-wrapper {
  margin-bottom: 1.5rem;
}

/* HERO TITLE SIZE CONTROL
Increase/decrease font-size here
*/
.hero-title {
  font-size: 4.25rem;
  line-height: 1.1;
  color: #ffffff;
  max-width: 100%;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.02rem;
}

.hero-title span {
  background: linear-gradient(90deg, #7cf08c, #3bb34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-top: 0.25rem;
}

.title-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.divider-line {
  width: 3.5rem;
  height: 1px;
  background: #dfb76c;
  opacity: 0.5;
}

.divider-diamond {
  color: #dfb76c;
  font-size: 0.75rem;
  text-shadow: 0 0 0.5rem rgba(223, 183, 108, 0.6);
}

/* HERO DESCRIPTION SIZE CONTROL
Increase/decrease font-size here
*/
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

/* --- BUTTONS --- */
.hero-btn {
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 1rem 2.25rem;
  border-radius: 3.125rem; /* Pill shape */
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  isolation: isolate;
}

.hero-btn i {
  margin-right: 0.625rem;
  font-size: 0.9375rem;
}

.hero-btn::before,
.back-btn::before,
.enquiry-btn::before {
  content: "";
  position: absolute;
  top: -2.5rem;
  left: -5.625rem;
  width: 3.75rem;
  height: 220%;
  background: rgba(255,255,255,0.35);
  transform: rotate(18deg);
  filter: blur(0.25rem);
  transition: 0.9s ease;
  z-index: 1;
}

.hero-btn:hover::before,
.back-btn:hover::before,
.enquiry-btn:hover::before {
  left: 180%;
}

.hero-btn:active,
.back-btn:active,
.enquiry-btn:active {
  transform: scale(0.95);
}

.hero-actions .primary-action.enquiry-btn {
  background: #dfb76c;
  color: #03130d;
  border: 1px solid #dfb76c;
  box-shadow: 0 0.5rem 1.5rem rgba(223, 183, 108, 0.2);
}

.hero-actions .primary-action.enquiry-btn:hover {
  background: #e5c583;
  border-color: #e5c583;
  transform: translateY(-2px);
  box-shadow: 0 0.75rem 2rem rgba(223, 183, 108, 0.45);
}

.hero-actions .secondary-action {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid #dfb76c;
}

.hero-actions .secondary-action:hover {
  background: rgba(223, 183, 108, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(223, 183, 108, 0.15);
}

.enquiry-main-btn,
.enquiry-btn {
  background: linear-gradient(135deg, #00543d, #002f22);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0.875rem 2.1875rem rgba(0,61,43,0.35), inset 0 1px 1px rgba(255,255,255,0.08);
}

.enquiry-main-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.enquiry-main-btn:hover,
.enquiry-btn:hover {
  transform: translateY(-0.3125rem) scale(1.04);
  box-shadow: 0 1.375rem 3.125rem rgba(0,61,43,0.48);
  background: linear-gradient(135deg, #00684d, #003828);
}

.plan-btn,
.back-btn {
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.76));
  color: #063b2a;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 0.75rem 1.875rem rgba(0,0,0,0.08), inset 0 1px 1px rgba(255,255,255,0.8);
}

.plan-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.plan-btn:hover,
.back-btn:hover {
  transform: translateY(-0.3125rem) scale(1.03);
  background: #ffffff;
  box-shadow: 0 1.25rem 2.8125rem rgba(0,0,0,0.14);
}

/* FLOATING WHATSAPP BUTTON */
.enquiry-float-btn {
  position: fixed;
  left: 1.5625rem;
  bottom: 2.1875rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  cursor: pointer;
  touch-action: manipulation;
  z-index: 9999;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15);
  transition: transform 0.1s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
  animation: floatPulse 3s infinite;
  text-decoration: none;
}

.enquiry-float-btn::before {
  content: none !important;
}

.enquiry-float-btn::after {
  border-radius: 50% !important;
}

.enquiry-float-btn:hover {
  transform: none !important;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15) !important;
  background: linear-gradient(135deg, #2ae06c, #149d8e) !important;
  animation: none !important;
}

.enquiry-float-btn:active {
  transform: scale(0.95) !important;
  transition: transform 0.1s ease !important;
}

@keyframes floatPulse {
  0%, 100% {
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.15), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.15), 0 0 0 0.625rem rgba(37, 211, 102, 0);
  }
}

/* --- PRICE CARD --- */
.price-card {
  position: absolute;
  top: 11.5625rem;
  right: 3.25rem;
  width: 20rem;
  padding: 1.125rem 1rem 0.875rem;
  border-radius: 1.75rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
  backdrop-filter: blur(1.125rem);
  border: 1px solid rgba(255,255,255,0.7);
  overflow: hidden;
  z-index: 20;
  box-shadow: 0 1.875rem 4.375rem rgba(0,0,0,0.14), 0 0.625rem 1.5625rem rgba(0,0,0,0.05), inset 0 1px 1px rgba(255,255,255,0.8);
}

.price-card::before {
  content: "";
  position: absolute;
  top: -6.25rem;
  right: -5rem;
  width: 13.75rem;
  height: 13.75rem;
  background: radial-gradient(circle, rgba(255,215,120,0.45), transparent 70%);
  filter: blur(0.625rem);
}

.price-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -6.25rem;
  width: 4.375rem;
  height: 200%;
  background: rgba(255,255,255,0.22);
  transform: rotate(20deg);
  filter: blur(0.5rem);
  animation: shine 5s infinite;
}

.price {
  text-align: center;
  margin-top: 0.875rem;
  font-size: 3.4375rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.25rem;
  color: #003d2b;
  text-shadow: 0 0.375rem 1.125rem rgba(0,61,43,0.14);
}

.price::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,120,80,0.12), transparent 70%);
  filter: blur(1.125rem);
  z-index: -1;
}

.price span {
  font-size: 1.375rem;
  font-weight: 700;
  color: #21463a;
  letter-spacing: -1px;
}

.price-features {
  display: flex;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.feature {
  flex: 1;
  padding: 0.75rem 0.375rem;
  border-radius: 1.125rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(245,245,245,0.88));
  border: 1px solid rgba(255,255,255,0.7);
  text-align: center;
  font-size: 0.625rem;
  line-height: 1.6;
  color: #1c4536;
  font-weight: 700;
  box-shadow: 0 0.375rem 1rem rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.625rem 1.25rem rgba(0,0,0,0.08);
}

/* --- GALLERY SECTION (REDESIGNED SLIDER) --- */
.gallery-section {
  position: relative;
  z-index: 10;
  margin-top: 0;
  padding: 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #faf8f5; /* Soft premium off-white / cream background */
  width: 100%;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 48rem;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-label {
  font-size: 0.8125rem;
  color: #dfb76c; /* Gold color */
  letter-spacing: 0.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.header-divider {
  color: #dfb76c;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.125rem;
}

.gallery-title {
  font-size: 3.25rem; /* Large visual scale */
  color: #0c2e22; /* Deep forest green */
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
  line-height: 1.2;
}

.gallery-title span {
  background: linear-gradient(90deg, #4da474, #2a7e4f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gallery-description {
  font-size: 1rem;
  color: #6e6e6e; /* Medium gray text */
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
}

.slider-wrapper {
  position: relative;
  width: 88%;
  max-width: var(--page-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0.5rem;
}

.gallery-slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.gallery-card {
  position: relative;
  flex: 0 0 calc((100% - (3 * 1.5rem)) / 4);
  width: calc((100% - (3 * 1.5rem)) / 4);
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: 1.875rem; /* Premium border-radius */
  aspect-ratio: 1 / 1.1; /* Large image card aspect ratio */
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); /* Soft luxury shadow */
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
  background: #ffffff;
}

.gallery-card:hover {
  transform: translateY(-6px); /* Subtle hover scale */
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

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

.gallery-card:hover .gallery-img {
  transform: scale(1.04);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  color: #0c2e22; /* Dark green icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* Soft shadow */
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slider-arrow:hover {
  background: #faf8f5;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-arrow {
  left: -1.625rem;
}

.next-arrow {
  right: -1.625rem;
}

.slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.slider-pagination .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #d4d4d4; /* Inactive light gray circles */
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-pagination .dot.active {
  background: #0c2e22; /* Active dark green filled circle */
  transform: scale(1.3);
}

/* --- GALLERY PREVIEW MODAL --- */
.image-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(0.3125rem);
}

.image-preview img {
  width: 80%;
  max-width: 62.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 1.875rem 3.75rem rgba(0,0,0,0.35);
}

.close-preview {
  position: absolute;
  top: 1.5625rem;
  right: 2.5rem;
  color: #ffffff;
  font-size: 3.4375rem;
  cursor: pointer;
  font-weight: 300;
}



/* --- PROJECT DETAILS --- */
.project-details-section {
  position: relative;
  padding: 5.625rem 0;
  background: #f8f6f1;
  min-height: 68.75rem;
}

.details-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 1;
}

.details-container {
  width: 88%;
  max-width: 82.5rem;
  align-items: flex-start;
  margin: auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  position: relative;
  z-index: 5;
}

.overview-card,
.highlights-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  backdrop-filter: blur(0.75rem);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 2.125rem;
  padding: 2.625rem;
  overflow: hidden;
  transition: 0.45s ease;
  min-width: 0;
  box-shadow: 0 1.125rem 2.8125rem rgba(0,0,0,0.05), 0 0.25rem 0.75rem rgba(0,0,0,0.03);
}

.overview-card:hover,
.highlights-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.875rem 4.375rem rgba(0,0,0,0.08);
}

.details-title {
  font-size: 2.375rem;
  color: #0d4b3a;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.overview-text {
  font-size: 0.9688rem;
  line-height: 1.95;
  color: #555;
  margin-bottom: 1.875rem;
}

.overview-divider {
  width: 100%;
  height: 1px;
  background: rgba(13,75,58,0.08);
  margin-bottom: 1.875rem;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.overview-box {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.375rem 1.25rem;
  border: 1px solid rgba(13,75,58,0.05);
  box-shadow: 0 0.625rem 1.5rem rgba(0,0,0,0.03);
}

.overview-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #edf8ea;
  color: #2b7a44;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
}

.overview-box h4 {
  font-size: 0.9375rem;
  color: #0d4b3a;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.overview-box p {
  font-size: 0.8125rem;
  color: #777;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.highlight-column {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(13,75,58,0.05);
  box-shadow: 0 0.625rem 1.5rem rgba(0,0,0,0.03);
}

.highlight-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, #edf8ea, #dff3d7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 0.625rem 1.25rem rgba(0,0,0,0.04);
}

.highlight-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.highlight-content h4 {
  font-size: 1.25rem;
  color: #083525;
  font-weight: 700;
  line-height: 1.3;
}

.highlight-content span {
  font-size: 1.0625rem;
  color: #555;
  text-align: right;
  line-height: 1.6;
  max-width: 16.25rem;
}

/* --- VIDEO EXPERIENCE SECTION --- */
.greenvista-video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 5.625rem 0;
}

.greenvista-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
}

.greenvista-container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 90.625rem;
  margin: auto;
}

.greenvista-card {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(0.75rem);
  border-radius: 2.5rem;
  border: 1px solid rgba(21,79,44,0.08);
  box-shadow: 0 1.25rem 3.75rem rgba(0,0,0,0.06);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  width: 78%;
  margin: auto;
  min-width: 0;
  isolation: isolate;
}

.greenvista-left {
  padding: 0.5rem 0;
  position: relative;
  align-self: center;
}

.greenvista-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: #edf7e9;
  color: #2f6d3d;
  padding: 0.625rem 1.125rem;
  border-radius: 62.4375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.greenvista-left h2 {
  font-size: 3.25rem;
  line-height: 1.05;
  color: #07361f;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.greenvista-left h2 span {
  color: #5dbb63;
  font-style: italic;
}

.greenvista-left p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #5f665f;
  max-width: 32.5rem;
  margin-bottom: 1rem;
}

.watch-btn {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: linear-gradient(135deg, #0c7b37, #075324);
  color: white;
  text-decoration: none;
  padding: 0.9375rem 1.5rem;
  border-radius: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 0.875rem 2rem rgba(9,98,42,0.22);
  transition: 0.4s;
}

.watch-btn:hover {
  transform: translateY(-0.25rem);
}

.watch-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.18);
  font-size: 0.875rem;
}

.greenvista-video {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: 0 1.25rem 3rem rgba(0,0,0,0.12);
  aspect-ratio: 1 / 1;
  width: 100%;
  align-self: center;
}

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

.video-overlay {
  position: absolute;
  inset: 0;
}



/* --- VIDEO MODAL --- */
.custom-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  backdrop-filter: blur(0.625rem);
}

.video-backdrop {
  position: absolute;
  inset: 0;
}

.video-modal-box {
  position: relative;
  width: 90%;
  max-width: 62.5rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1.875rem 5rem rgba(0,0,0,0.5);
  z-index: 2;
}

.video-modal-box iframe {
  width: 100%;
  height: 35rem;
  border: none;
  display: block;
}

.close-video {
  position: absolute;
  top: 1.125rem;
  right: 1.25rem;
  color: #ffffff;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}






/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.lux-footer {
    --x: 50%;
    --y: 50%;
    overflow-x: hidden;
    padding: 3.75rem 0 1.5625rem;
    color: rgba(255,255,255,0.82);
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: gradientBreath 12s ease-in-out infinite alternate;
    filter: contrast(1.08) brightness(1.05);
    background:
        radial-gradient(circle at 50% 10%, rgba(46,125,50,0.35), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(0,150,80,0.18), transparent 70%),
        linear-gradient(180deg, #071a12 0%, #02110b 100%);
}
.lux-footer::before {
    content: "";
    position: absolute;
    top: -9.375rem;
    left: -9.375rem;
    width: 28.125rem;
    height: 28.125rem;
    background: radial-gradient(circle, rgba(200,169,106,0.15), transparent);
    filter: blur(7.5rem);
    z-index: 0 !important;
    pointer-events: none;
}
.lux-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/noise.png");
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
}
.lux-footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 87.5rem;
    padding: 0 5rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.footer-center {
    text-align: center;
    margin: 1.25rem 0 2.8125rem;
    position: relative;
    z-index: 5;
}
.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.125rem;
}
.footer-divider span {
    width: 5.3125rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c8a96a, #fff3c4, #c8a96a, transparent);
    background-size: 200% 100%;
    animation: goldShimmer 4s linear infinite;
    opacity: 0.85;
}
.footer-divider .dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #c8a96a;
    box-shadow: 0 0 0.875rem rgba(200,169,106,0.75);
    animation: dotPulse 2.5s ease-in-out infinite;
}
.footer-center h2 {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 0 2px 0.75rem rgba(0,0,0,0.4);
    letter-spacing: -0.0188rem;
}
.footer-center p {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: #e6c27a;
    opacity: 0.9;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    max-width: 75rem;
    margin: 0 auto;
    gap: 3.125rem;
    padding: 3.125rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 5;
}
.footer-col {
    position: relative;
    width: 100%;
    max-width: 16.25rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}
.footer-col:nth-child(1) {
    justify-self: start;
    max-width: 21.25rem;
}
.footer-col:nth-child(2) {
    justify-self: end;
    margin-left: 3.75rem;
}
.footer-col:nth-child(3) {
    justify-self: start;
}
.footer-col:nth-child(4) {
    justify-self: start;
}
.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #c8a96a;
    margin-bottom: 1rem;
    font-family: "Inter", sans-serif;
    line-height: 1.2;
}
.footer-col p {
    line-height: 1.8;
    color: #ffffff;
    font-size: 0.8438rem;
    margin-bottom: 0.625rem;
}
.footer-col ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-col ul li {
    font-size: 0.8438rem;
    margin-bottom: 0.625rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: 0.25s ease;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}
.footer-col ul li:hover {
    color: #fff;
    transform: translateY(-1px) translateX(0.3125rem);
}
.footer-col ul li:last-child {
    margin-bottom: 0;
}
.footer-col:nth-child(2) p {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 0.5rem;
    font-size: 0.8438rem;
    font-weight: 400;
    letter-spacing: 0.025rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0.625rem;
    transition: all 0.25s ease;
}
.footer-col:nth-child(2) p i {
    font-size: 0.75rem;
    color: #c8a96a;
}
.footer-col:nth-child(2) p:hover {
    color: #ffffff;
    transform: translateY(-1px);
}
.footer-col:nth-child(2)::after {
    content: "";
    position: absolute;
    right: -1.875rem;
    top: 10%;
    height: 70%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(200,169,106,0.6), transparent);
}
.lux-socials {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start !important;
    align-items: center;
}
.tooltip-container {
    position: relative;
    cursor: pointer;
    transition: 0.2s ease;
    will-change: transform;
    transform: translateZ(0);
}
.tooltip {
    position: absolute;
    top: -8.125rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.625rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.tooltip-container:hover .tooltip {
    opacity: 1;
    top: -9.375rem;
}
.profile {
    background: #ffffff;
    border-radius: 0.875rem;
    padding: 0.75rem;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.15), 0 2px 0.5rem rgba(0,0,0,0.08);
}
.user {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}
.img {
    width: 2.625rem;
    height: 2.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid #ddd;
    color: #111;
    background: #f5f5f5;
    border-radius: 0.5rem;
}
.name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111;
}
.username {
    font-size: 0.75rem;
    color: #666;
}
.about {
    font-size: 0.75rem;
    color: #888;
    padding-top: 0.3125rem;
}
.icon {
    display: block;
    position: relative;
    will-change: transform;
}
.layer {
    width: 3.125rem;
    height: 3.125rem;
    position: relative;
    transition: transform 0.3s ease;
}
.icon:hover .layer {
    transform: rotate(-25deg) skew(15deg);
}
.layer span {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    border: 1px solid rgba(200, 169, 106, 0.4);
    transition: all 0.3s ease;
}
.icon:hover .layer span {
    box-shadow: 0 0 0.75rem rgba(200, 169, 106, 0.4);
}
.icon:hover .layer span:nth-child(1) { opacity: 0.2; }
.icon:hover .layer span:nth-child(2) { opacity: 0.4; transform: translate(0.25rem, -0.25rem); }
.icon:hover .layer span:nth-child(3) { opacity: 0.6; transform: translate(0.5rem, -0.5rem); }
.icon:hover .layer span:nth-child(4) { opacity: 0.8; transform: translate(0.75rem, -0.75rem); }
.iconSVG {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.125rem;
    color: #c8a96a;
    transition: color 0.3s ease;
}
.icon:hover .iconSVG {
    color: #ffffff;
}
.tooltip-container.instagram:hover .layer span {
    border-color: transparent;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.tooltip-container.facebook:hover .layer span {
    background: #1877f2;
    border-color: #1877f2;
}
.tooltip-container.whatsapp:hover .layer span {
    background: #25d366;
    border-color: #25d366;
}
.tooltip-container.youtube:hover .layer span {
    background: #ff0000;
    border-color: #ff0000;
}
.tooltip-container.youtube:hover .layer span:last-child {
    background: linear-gradient(135deg, #ff3b3b, #ff0000);
    border-color: transparent;
}
.tooltip-container.instagram:hover .iconSVG,
.tooltip-container.facebook:hover .iconSVG,
.tooltip-container.whatsapp:hover .iconSVG,
.tooltip-container.youtube:hover .iconSVG {
    color: #fff;
}
.tooltip-container .layer {
    animation: socialFloat 4s ease-in-out infinite;
}
.tooltip-container:nth-child(1) .layer { animation-delay: 0s; }
.tooltip-container:nth-child(2) .layer { animation-delay: 0.4s; }
.tooltip-container:nth-child(3) .layer { animation-delay: 0.8s; }
.tooltip-container:nth-child(4) .layer { animation-delay: 1.2s; }
.tooltip-container:hover .layer {
    animation: none;
    transform: translateY(-2px) rotate(-25deg) skew(15deg);
}
.tooltip-container::after {
    content: "";
    position: absolute;
    inset: -0.5rem;
    border-radius: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}
.tooltip-container:hover::after {
    opacity: 1;
    animation: glowPulse 1.6s ease-in-out infinite;
}
.tooltip-container.instagram:hover::after {
    background: radial-gradient(circle, rgba(225,48,108,0.35), transparent 60%);
}
.tooltip-container.facebook:hover::after {
    background: radial-gradient(circle, rgba(24,119,242,0.35), transparent 60%);
}
.tooltip-container.whatsapp:hover::after {
    background: radial-gradient(circle, rgba(37,211,102,0.35), transparent 60%);
}
.tooltip-container.youtube:hover::after {
    background: radial-gradient(circle, rgba(255,0,0,0.35), transparent 60%);
}
.footer-bottom {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    text-align: center;
    font-size: 0.7813rem;
    color: rgba(255,255,255,0.45);
    width: 100%;
    position: relative;
    z-index: 5;
}
.footer-bottom p {
    margin: 0;
}
.footer-meta {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.0313rem;
    margin-bottom: 0.5rem;
}
.footer-meta-item {
    display: inline;
}
.footer-link {
    color: #c8a96a;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}
.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1875rem;
    width: 0%;
    height: 1px;
    background: #c8a96a;
    transition: 0.3s ease;
}
.footer-link:hover {
    color: #ffffff;
}
.footer-link:hover::after {
    width: 100%;
}
.dot-sep {
    margin: 0 0.625rem;
    color: rgba(255,255,255,0.3);
}
.footer-copy {
    font-size: 0.7813rem;
    color: rgba(255,255,255,0.45);
}
.footer-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.footer-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #c8a96a;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatParticle linear infinite;
}
.footer-particles span:nth-child(1){left:10%; animation-duration:12s;}
.footer-particles span:nth-child(2){left:20%; animation-duration:15s;}
.footer-particles span:nth-child(3){left:30%; animation-duration:10s;}
.footer-particles span:nth-child(4){left:40%; animation-duration:14s;}
.footer-particles span:nth-child(5){left:50%; animation-duration:11s;}
.footer-particles span:nth-child(6){left:60%; animation-duration:16s;}
.footer-particles span:nth-child(7){left:70%; animation-duration:13s;}
.footer-particles span:nth-child(8){left:80%; animation-duration:12s;}
.footer-particles span:nth-child(9){left:90%; animation-duration:15s;}
.footer-particles span:nth-child(10){left:95%; animation-duration:18s;}

/* Custom link formatting for quick links in project page footer */
.footer-col ul li a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

/* --- ENQUIRY POPUP --- */
.enquiry-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(0.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 999999;
}

.enquiry-popup.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.enquiry-popup-box {
  width: 56.25rem;
  max-width: 92%;
  background: #ffffff;
  border-radius: 2.125rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  box-shadow: 0 1.875rem 5rem rgba(0,0,0,0.18);
}

.popup-left {
  background: linear-gradient(135deg, #0c5c3f, #063b2a);
  color: white;
  padding: 3.75rem 3.125rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 1.125rem;
}

.popup-left h2 {
  font-size: 3.25rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.popup-left p {
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

.popup-right {
  padding: 3.125rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 1.125rem 1.25rem;
  border: none;
  background: #f3f5f4;
  border-radius: 1.125rem;
  font-size: 0.9375rem;
  font-family: "Poppins", sans-serif;
  outline: none;
  resize: none;
}

.submit-enquiry-btn {
  border: none;
  padding: 1.125rem;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, #0c7b37, #075324);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-enquiry-btn:hover {
  transform: translateY(-0.25rem);
}

.close-enquiry {
  position: absolute;
  top: 1.125rem;
  right: 1.25rem;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 10;
}

.enquiry-popup .phone-error-msg {
  color: #e74c3c;
  font-size: 0.8rem;
  display: none;
  margin-top: -8px;
  margin-bottom: 5px;
  text-align: left;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.enquiry-popup input.invalid-field {
  border: 1px solid #e74c3c !important;
  background: #fffcfc !important;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6, 28, 20, 0.98) 0%,
    rgba(6, 28, 20, 0.85) 30%,
    rgba(6, 28, 20, 0.4) 60%,
    rgba(6, 28, 20, 0) 85%
  );
  z-index: 1;
}

.title-line {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.125rem;
  margin-bottom: 0;
  width: fit-content;
}

.title-line .line-left,
.title-line .line-right {
  width: 2.5rem;
  height: 1px;
  background: #c8a96a;
}

.title-line .diamond-ornament {
  width: 0.375rem;
  height: 0.375rem;
  background: #c8a96a;
  transform: rotate(45deg);
  box-shadow: 0 0 0.25rem rgba(200, 169, 106, 0.8);
}

.title-line-green {
  height: 2px;
  background: transparent;
}

.best-value {
  position: absolute;
  top: 1.125rem;
  left: -0.375rem;
  background: linear-gradient(135deg, #ffd86f, #c98e0f);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 0 0.875rem 0.875rem 0;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05rem;
  box-shadow: 0 0.5rem 1.125rem rgba(201,142,15,0.28);
  overflow: hidden;
}

.best-value::after {
  content: "";
  position: absolute;
  top: 0;
  left: -2.5rem;
  width: 1.375rem;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-20deg);
  animation: tagshine 4s infinite;
}

.offer-box {
  margin-top: 1.375rem;
  padding: 0.9375rem;
  border-radius: 1.125rem;
  text-align: center;
  background: linear-gradient(135deg, #ffd86f, #efb935);
  color: #6b4700;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.0188rem;
  box-shadow: 0 0.625rem 1.25rem rgba(239,185,53,0.24), inset 0 1px 1px rgba(255,255,255,0.5);
}

.launch-title {
  text-align: center;
  font-size: 1.25rem;
  color: #063b2a;
  font-weight: 700;
  margin-top: 1rem;
  letter-spacing: -0.0313rem;
}

.starting-text {
  text-align: center;
  margin-top: 0.625rem;
  color: #7d7d7d;
  font-size: 0.875rem;
  font-weight: 500;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes shine {
  0% { left: -7.5rem; }
  100% { left: 26.25rem; }
}

@keyframes tagshine {
  0% { left: -2.5rem; }
  100% { left: 140%; }
}

@keyframes gradientBreath {
  0% { background-position: 50% 0%; }
  100% { background-position: 50% 100%; }
}

@keyframes goldShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
}

@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

/* --- SCROLL TO TOP BUTTON --- */
.scroll-to-top-btn {
  position: fixed;
  right: 1.5625rem;
  bottom: 2.1875rem;
  width: 3rem; /* 48px */
  height: 3rem; /* 48px */
  border-radius: 50%;
  background: linear-gradient(135deg, #0c7b37, #075324); /* Forest green background */
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top-btn:hover {
  background: linear-gradient(135deg, #0f8e40, #09682e);
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(12, 123, 55, 0.25);
}

.scroll-to-top-btn:active {
  transform: translateY(0) scale(0.95);
}

/* ==========================================================================
   MOBILE MENU & HAMBURGER SYSTEM
   ========================================================================== */

/* Mobile hamburger menu styles moved to shared css/navigation.css */

/* ==========================================================================
   OPTIMIZED LIGHTWEIGHT ANIMATIONS & HOVERS
   ========================================================================== */

/* --- 1. HERO SECTION LOAD ANIMATION --- */
body:not(.hero-loaded) .logo-wrapper,
body:not(.hero-loaded) .hero-title,
body:not(.hero-loaded) .title-divider,
body:not(.hero-loaded) .hero-description,
body:not(.hero-loaded) .hero-actions {
  opacity: 0 !important;
  transform: translateY(8px) !important;
}

.logo-wrapper,
.hero-title,
.title-divider,
.hero-description,
.hero-actions {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out !important;
  will-change: opacity, transform;
}

/* --- 2. SCROLL REVEAL ANIMATIONS (INTEGRATED) --- */
.gallery-title,
.gallery-description,
.gallery-card,
.greenvista-card,
.contact-form-pro,
.contact-card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out !important;
  will-change: opacity, transform;
}

.gallery-section.animate-in .gallery-title,
.gallery-section.animate-in .gallery-description,
.gallery-section.animate-in .gallery-card,
.greenvista-video-section.animate-in .greenvista-card,
.contact-pro.animate-in .contact-form-pro,
.contact-pro.animate-in .contact-card {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* --- 3. GALLERY CARDS --- */
.gallery-card {
  transition: transform 0.2s ease !important;
}
.gallery-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}
.gallery-card .gallery-img,
.gallery-card:hover .gallery-img {
  transform: none !important;
  transition: none !important;
}

/* --- 4. HERO BUTTONS & GENERIC BUTTONS --- */
.hero-btn {
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease !important;
  animation: none !important;
}
.hero-btn:hover,
.hero-actions .primary-action.enquiry-btn:hover,
.hero-actions .secondary-action:hover {
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}
.hero-btn::before,
.back-btn::before,
.enquiry-btn::before {
  display: none !important;
}

.enquiry-main-btn:hover,
.enquiry-btn:hover,
.plan-btn:hover,
.back-btn:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

/* --- 5. VIDEO SECTION --- */
.watch-btn {
  transition: transform 0.2s ease !important;
}
.watch-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: none !important;
}
.greenvista-video .video-preview-img,
.greenvista-video:hover .video-preview-img {
  transform: none !important;
  transition: none !important;
}

/* --- 6. SOCIAL FLOAT --- */
.tooltip-container .layer {
  animation: none !important;
}

/* --- 7. WHATSAPP BUTTON --- */
.enquiry-float-btn {
  animation: none !important;
  transition: transform 0.2s ease !important;
}
.enquiry-float-btn:hover {
  transform: scale(1.03) !important;
  animation: none !important;
}

/* --- 8. SCROLL TO TOP BUTTON --- */
.scroll-to-top-btn {
  transition: opacity 0.2s ease, transform 0.2s ease !important;
  transform: translateY(15px) !important;
}
.scroll-to-top-btn.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.scroll-to-top-btn:hover {
  transform: scale(1.03) !important;
  background: linear-gradient(135deg, #0c7b37, #075324) !important;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15) !important;
}

/* --- 9. Disable Heavy Infinite Keyframe Animations --- */
.lux-footer,
.footer-divider span,
.footer-divider .dot,
.tooltip-container::after,
.best-value::after,
.price-card::after {
  animation: none !important;
  background-position: center !important;
}

/* --- 10. MOBILE PERFORMANCE OPTIMIZATION --- */
@media (max-width: 640px) {
  .gallery-title,
  .gallery-description,
  .gallery-card,
  .greenvista-card,
  .contact-form-pro,
  .contact-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- 11. PREFERS-REDUCED-MOTION FALLBACK --- */
@media (prefers-reduced-motion: reduce) {
  body:not(.hero-loaded) .logo-wrapper,
  body:not(.hero-loaded) .hero-title,
  body:not(.hero-loaded) .title-divider,
  body:not(.hero-loaded) .hero-description,
  body:not(.hero-loaded) .hero-actions,
  .logo-wrapper,
  .hero-title,
  .title-divider,
  .hero-description,
  .hero-actions,
  .gallery-title,
  .gallery-description,
  .gallery-card,
  .greenvista-card,
  .contact-form-pro,
  .contact-card,
  .enquiry-float-btn,
  .scroll-to-top-btn {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}



/* ==========================================================================
   1. Large Desktop / 4K
   ========================================================================== */
@media (max-width: 1440px) {
  .price-card {
    transform: scale(0.92);
    transform-origin: top right;
  }
  .gallery-img {
    width: 100%;
  }
}

/* ==========================================================================
   2. Laptop
   ========================================================================== */
@media (max-width: 1200px) {
  /* HERO SECTION STANDARD ALIGNMENT & CENTERING */
  .hero-content {
    margin-left: auto !important;
    margin-right: auto !important;
    width: calc(100% - 3.75rem) !important;
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-title-wrapper {
    margin-bottom: 1.5rem !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-title {
    font-size: clamp(3.7rem, 5.2vw + 0.5rem, 4.1rem) !important;
    text-align: center !important;
    margin-inline: auto !important;
    width: 100% !important;
    line-height: 1.1 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
  }
  .title-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    margin-top: 0.75rem !important;
    margin-bottom: 1rem !important;
    margin-inline: auto !important;
    width: fit-content !important;
  }
  .hero-description {
    font-size: clamp(0.8125rem, 1.2vw + 0.55rem, 1.0625rem) !important;
    text-align: center !important;
    margin-inline: auto !important;
    max-width: min(36rem, 100%) !important;
  }
  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.25rem !important;
    margin-top: 2rem !important;
    width: 100% !important;
  }
  .hero-actions .hero-btn {
    flex: 0 1 12.5rem !important;
    white-space: nowrap !important;
  }

  .price-card {
    width: 20rem;
    transform: none;
  }

  .greenvista-card {
    grid-template-columns: 1fr;
    max-height: none;
    width: 100%;
    padding: 2.25rem;
  }
  .greenvista-left {
    padding: 1rem 0;
  }
  .greenvista-video {
    height: auto;
    min-height: auto;
    aspect-ratio: 1 / 1;
    width: 100%;
  }
  .video-preview-img {
    height: 100%;
    min-height: auto;
  }
}

/* ==========================================================================
   3. Small Laptop
   ========================================================================== */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-bottom: 3.125rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .logo-wrapper {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 2.5rem;
    margin-left: 1.875rem;
    margin-bottom: 1.5rem;
  }
  .hero-content {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 3.75rem);
    margin-top: 0;
    padding: 0;
    text-align: center;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .overlay {
    background: linear-gradient(
      to right,
      rgba(6, 28, 20, 0.98) 0%,
      rgba(6, 28, 20, 0.92) 50%,
      rgba(6, 28, 20, 0.85) 100%
    );
  }
  .hero-btn {
    padding: 0.8125rem 1.75rem;
    font-size: 0.8125rem;
    min-height: auto;
    white-space: nowrap;
  }
  .hero-btn i {
    font-size: 0.875rem;
    margin-right: 0.5rem;
  }
  .enquiry-float-btn {
    left: 1.25rem;
    bottom: 1.875rem;
    width: 2.875rem;
    height: 2.875rem;
    font-size: 1.4rem;
  }
  .details-container {
    grid-template-columns: 1fr;
  }
  .gallery-section {
    margin-top: 0;
    padding: 4rem 1.5rem;
  }
  .slider-wrapper {
    width: 100%;
  }
  .gallery-card {
    flex: 0 0 calc((100% - (1 * 1.5rem)) / 2);
    width: calc((100% - (1 * 1.5rem)) / 2);
  }


  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .footer-col:nth-child(2)::after {
    display: none;
  }
}

/* ==========================================================================
   4. iPad Air / iPad Pro Portrait
   ========================================================================== */
@media (max-width: 820px) {
  .hero-title {
    font-size: clamp(3.0rem, 5.5vw + 0.5rem, 3.6rem) !important;
  }
  .hero-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
  }
  .hero-btn i {
    font-size: 0.8125rem;
    margin-right: 0.4rem;
  }
  .logo-wrapper {
    margin-left: 1.25rem;
  }
  .hero-content {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 2.5rem);
  }

}

/* ==========================================================================
   5. Tablet
   ========================================================================== */
@media (max-width: 768px) {
  .overview-card,
  .highlights-card {
    padding: 1.5rem;
  }
  .details-title {
    font-size: 2.125rem;
    overflow-wrap: break-word;
  }
  .overview-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .highlight-content {
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
  }
  .highlight-content span {
    text-align: left;
  }
  .slider-arrow {
    display: none !important;
  }

  .greenvista-card {
    padding: 1.5rem;
    border-radius: 1.75rem;
  }
  .greenvista-left {
    padding: 1rem 0;
  }
  .greenvista-left h2 {
    font-size: 2.5rem;
    overflow-wrap: break-word;
  }
  .greenvista-left p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  .greenvista-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
  }
  .watch-btn {
    font-size: 0.9375rem;
    padding: 0.75rem 1.25rem;
    width: 100%;
    justify-content: center;
  }
  .watch-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.8125rem;
  }


  .lux-footer {
    padding: 5rem 5% 2.5rem;
  }
  .footer-center h2 {
    font-size: 2.5rem;
    overflow-wrap: break-word;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .lux-socials {
    justify-content: center !important;
  }
  .enquiry-popup {
    display: flex;
    align-items: flex-start;
    overflow-y: auto;
    padding: 1.25rem 0.625rem;
  }
  .enquiry-popup-box {
    grid-template-columns: 1fr;
    margin: 2.5rem auto;
    max-height: none;
  }
  .popup-left,
  .popup-right {
    padding: 2.25rem 1.75rem;
  }
  .popup-left h2 {
    font-size: 2.375rem;
  }
}

/* ==========================================================================
   6. Mobile Landscape / Large Phones
   ========================================================================== */
@media (max-width: 640px) {
  .logo-wrapper {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 2rem;
    margin-left: 1.25rem;
    margin-bottom: 1.25rem;
    transform: scale(0.82);
    transform-origin: left center;
  }
  .company-logo {
    width: 3.625rem;
    height: 3.625rem;
  }
  .logo-title {
    font-size: 1.125rem;
  }
  .logo-subtitle {
    font-size: 0.5rem;
  }
  .hero-title {
    font-size: clamp(2.4rem, 6.5vw + 0.3rem, 2.9rem) !important;
  }

  .hero-btn {
    padding: 0.6875rem 1.375rem;
    font-size: 0.75rem;
  }
  .hero-btn i {
    font-size: 0.75rem;
  }
  .hero-content {
    width: calc(100% - 2.5rem);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .gallery-section {
    margin-top: 0;
    padding: 3rem 1rem;
  }
  .gallery-card {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 1 / 1.1;
  }

  .enquiry-float-btn {
    left: 0.9375rem;
    bottom: 1.5625rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.3rem;
  }
  .scroll-to-top-btn {
    right: 0.9375rem;
    bottom: 1.5625rem;
    width: 2.75rem; /* 44px */
    height: 2.75rem; /* 44px */
    font-size: 1rem;
  }
}

/* ==========================================================================
   7. Mobile Standard
   ========================================================================== */
@media (max-width: 480px) {
  .hero-btn {
    padding: 0.6875rem 1.25rem;
    font-size: 0.75rem;
  }
  .hero-btn i {
    font-size: 0.75rem;
  }
  .logo-wrapper {
    margin-left: 0.9375rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
  .hero-content {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 1.875rem);
    padding: 0;
    border-radius: 0;
  }
  .details-title {
    font-size: 1.75rem;
  }
  .overview-card,
  .highlights-card {
    padding: 1.25rem 1rem;
  }
  .overview-box {
    padding: 1.125rem 1rem;
  }
  .greenvista-card {
    padding: 1.125rem;
    border-radius: 1.25rem;
  }
  .greenvista-left {
    padding: 0.75rem 0;
  }
  .greenvista-left h2 {
    font-size: 1.75rem;
  }
  .greenvista-left p {
    font-size: 0.875rem;
  }



  .footer-center h2 {
    font-size: 1.75rem;
  }
  .footer-center p {
    font-size: 0.875rem;
  }
  .footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
  .popup-left h2 {
    font-size: 2rem;
  }
  .popup-left,
  .popup-right {
    padding: 1.5rem 1.25rem;
  }
  .enquiry-form input,
  .enquiry-form textarea {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.75rem;
  }
  .submit-enquiry-btn {
    padding: 0.875rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
  }
  .close-enquiry {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.375rem;
  }
}

/* ==========================================================================
   8. iPhone Pro Max / Large Android
   ========================================================================== */
@media (max-width: 430px) {
  .divider-line {
    width: 2.5rem !important;
  }
  .logo-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    transform: none !important;
    transform-origin: unset !important;
    padding-right: 60px !important;
    box-sizing: border-box !important;
  }
  .company-logo {
    width: 3rem !important;
    height: 3rem !important;
    flex-shrink: 0 !important;
  }
  .logo-title {
    font-size: clamp(0.9rem, 2.8vw, 1.15rem) !important;
  }

}

/* ==========================================================================
   8b. strictly 412px - 430px devices
   ========================================================================== */
@media (min-width: 412px) and (max-width: 480px) {
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    transform: none !important;
    position: static !important;
  }
  .title-divider {
    position: static !important;
    transform: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .divider-line,
  .divider-diamond {
    position: static !important;
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    top: auto !important;
    bottom: auto !important;
  }
  .hero-description {
    text-align: center !important;
    max-width: 18rem !important;
    margin-inline: auto !important;
  }
}

/* ==========================================================================
   9. Mobile Small
   ========================================================================== */
@media (max-width: 390px) {
  .logo-wrapper {
    padding-right: 55px !important;
    gap: 0.5rem !important;
  }
  .logo-title {
    font-size: 0.8rem !important;
  }
  .logo-subtitle {
    font-size: 0.45rem !important;
  }
  .hero-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .hero-title {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    font-size: 1.95rem !important;
    line-height: 1.12 !important;
    transform: none !important;
    position: static !important;
  }
  .title-divider {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0.9rem !important;
    margin-bottom: 1rem !important;
    position: static !important;
    transform: none !important;
  }
  .divider-line {
    width: 2.25rem !important;
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
  }
  .divider-diamond {
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
  }
  .hero-actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.875rem !important;
  }
  .hero-actions .hero-btn {
    width: 100% !important;
    max-width: 16rem !important;
    flex: none !important;
  }
}

/* ==========================================================================
   10. iPhone SE / Small Phones
   ========================================================================== */
@media (max-width: 375px) {
  .logo-wrapper {
    padding-right: 50px !important;
    gap: 0.45rem !important;
  }
  .logo-title {
    font-size: 0.78rem !important;
  }
  .logo-subtitle {
    font-size: 0.42rem !important;
  }
  .divider-line {
    width: 2rem !important;
  }

  .greenvista-left h2 {
    font-size: 1.5625rem;
  }
}

/* ==========================================================================
   10b. Galaxy Z Fold 5 / Narrow Devices (344px)
   ========================================================================== */
@media (max-width: 344px) {
  .logo-wrapper {
    padding-right: 45px !important;
    gap: 0.4rem !important;
  }
  .logo-title {
    font-size: 0.75rem !important;
  }
  .logo-subtitle {
    font-size: 0.4rem !important;
  }
  .divider-line {
    width: 1.75rem !important;
  }
}

/* ==========================================================================
   11. Very Small Devices
   ========================================================================== */
@media (max-width: 320px) {
  .logo-wrapper {
    padding-right: 40px !important;
    gap: 0.35rem !important;
  }
  .logo-title {
    font-size: 0.7rem !important;
  }
  .logo-subtitle {
    font-size: 0.35rem !important;
  }
  .divider-line {
    width: 1.5rem !important;
  }
  .details-title {
    font-size: 1.5rem;
  }
  .greenvista-left h2 {
    font-size: 1.375rem;
  }


  .footer-center h2 {
    font-size: 1.375rem;
  }
  .popup-left h2 {
    font-size: 1.625rem;
  }
  .popup-left,
  .popup-right {
    padding: 1.125rem 0.875rem;
  }
}

/* --- PROJECT SNAPSHOT & DYNAMIC HIGHLIGHTS RESTYLING --- */
/* Details container & section spacing optimizations */
@media (min-width: 1025px) {
  .gallery-section {
    padding: 4.5rem 2.5rem 2rem !important; /* Reduce whitespace below gallery */
  }
  .project-details-section {
    padding-top: 3.75rem !important; /* Move section downward by ~24px */
    padding-bottom: 5.625rem !important;
  }
  .details-container {
    width: 92% !important;
    max-width: 90rem !important;
    grid-template-columns: 1fr 1fr !important; /* Equal width grids */
    gap: 3rem !important; /* More breathing room */
    align-items: stretch !important; /* Same height cards (top and bottom edges match) */
  }
  .overview-card,
  .highlights-card {
    padding: 3rem !important; /* Padding: 3rem matching the reference */
    border-radius: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    box-sizing: border-box !important;
  }
}

.overview-text {
  font-size: 1.125rem !important; /* Scale to ~18px */
  line-height: 1.85 !important; /* Premium brochure readability */
  color: #4c5451 !important;
  margin-bottom: 2.25rem !important;
}

.snapshot-panel {
  margin-top: auto !important; /* Push snapshot panel to bottom of container */
  background: linear-gradient(to bottom, #ffffff, #fcfcf9);
  border-radius: 1.75rem;
  padding: 1.5rem 1.125rem !important; /* Reduced padding for compact layout */
  border: 1px solid rgba(13, 75, 58, 0.08);
  box-shadow: 0 10px 30px rgba(13, 75, 58, 0.02);
  box-sizing: border-box !important;
  overflow: hidden !important; /* Wrapper overflow hidden */
  
  /* Stretches container to occupy almost full card width, leaving less padding */
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
  width: auto !important;
  max-width: calc(100% + 3rem) !important; /* Safety constraint */
}

.snapshot-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem !important; /* Reduced gap from 2.5rem to 1.25rem */
  width: 100%;
}

.snapshot-line {
  flex: 1;
  height: 1px;
  background: rgba(13, 75, 58, 0.1);
}

.snapshot-title-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.snapshot-badge-icon {
  background: #0d4b3a;
  color: #ffffff;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
}

.snapshot-title {
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0d4b3a;
  letter-spacing: 0.12em;
}

.snapshot-grid {
  display: grid !important;
  grid-template-columns: 1fr !important; /* Stack rows vertically */
  gap: 0.75rem !important; /* Tighter spacing between rows */
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.snapshot-card-new {
  display: grid !important;
  grid-template-columns: 60px 1.4fr 1px 1fr !important; /* Rebalanced column widths */
  column-gap: 0.75rem !important; /* Reduced gaps between columns */
  align-items: center !important;
  padding: 0.85rem 1.25rem !important; /* Tighter padding */
  background: #ffffff !important;
  border-radius: 24px !important;
  border: 1px solid rgba(13, 75, 58, 0.06) !important;
  box-shadow: 0 4px 12px rgba(13, 75, 58, 0.02) !important;
  position: relative !important;
  min-height: 68px !important; /* Safe compact height */
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important; /* Overflow protection */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.snapshot-card-new > * {
  min-width: 0 !important;
}

.snapshot-card-new:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(13, 75, 58, 0.05) !important;
  border-color: rgba(13, 75, 58, 0.1) !important;
}

.snapshot-icon-circle {
  grid-column: 1 !important;
  width: 2.25rem !important; /* 36px diameter */
  height: 2.25rem !important;
  border-radius: 50% !important;
  background: #edf8ea !important;
  color: #2b7a44 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem !important; /* Proportional icon size */
  margin-bottom: 0 !important;
  box-shadow: 0 4px 12px rgba(43, 122, 68, 0.06) !important;
  flex-shrink: 0 !important;
  justify-self: center !important; /* Centered in the 60px track */
}

.snapshot-value{
    min-width:170px;
    text-align:left;
    font-family:"Poppins",sans-serif;
    font-size:2rem;
    font-weight:700;
    color:#0d4b3a;
    letter-spacing:-0.02em;
    padding-left:12px;
}

/* Custom unit display for Plot Sizes row */
.snapshot-card-new:has(.fa-vector-square) .snapshot-value::after {
  content: " Sq.ft" !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  color: #6e6e6e !important;
  margin-left: 0.25rem !important;
}

/* Vertical divider line placement */
.snapshot-card-new::after {
  content: "" !important;
  grid-column: 3 !important;
  height: 1.75rem !important; /* Scaled down for 68px row card height */
  width: 1px !important;
  background-color: rgba(13, 75, 58, 0.1) !important;
  justify-self: center !important;
  align-self: center !important;
}

.snapshot-label {
  grid-column: 4 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: clamp(0.8rem, 1vw, 0.9rem) !important; /* Tighter label size */
  font-weight: 500 !important;
  color: #4c5451 !important;
  line-height: 1.4 !important;
  text-align: left !important;
  padding-left: 1.25rem !important; /* Clean premium gap */
  width: 100% !important;
  white-space: normal !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.highlights-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0d4b3a;
  letter-spacing: 0.08rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.highlights-subtitle-line {
  width: 100%;
  height: 1px;
  background: rgba(13, 75, 58, 0.08);
  margin-bottom: 1.25rem !important; /* Move grid closer to heading divider */
}

.highlights-grid-new {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important; /* Keep 2-column layout */
  gap: 1.5rem 1.5rem !important; /* Restore premium spacing gap */
  position: relative !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-top: 1.25rem !important; /* Flow naturally below divider, no margin-top: auto */
}

.highlight-item-new {
  display: flex !important;
  align-items: center !important; /* Vertically center all card content */
  gap: 1.25rem !important; /* Spacing between icon and content area */
  position: relative !important;
  background: #ffffff !important;
  padding: 1rem 1.5rem !important; /* Compact premium padding */
  border-radius: 1.5rem !important;
  border: 1px solid rgba(13, 75, 58, 0.04) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02) !important;
  min-height: 110px !important; /* Keep all card heights identical */
  box-sizing: border-box !important;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.highlight-item-new:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 30px rgba(13, 75, 58, 0.08) !important;
  border-color: rgba(13, 75, 58, 0.12) !important;
}

.highlight-icon-new {
  flex: 0 0 72px !important; /* Lock the icon section width */
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  background: #edf8ea !important;
  color: #2b7a44 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.625rem !important; /* Proportional emoji/icon size */
  flex-shrink: 0 !important;
  box-shadow: 0 4px 12px rgba(43, 122, 68, 0.06) !important;
  transition: transform 0.3s ease !important;
}

.highlight-item-new:hover .highlight-icon-new {
  transform: scale(1.05) !important;
}

.highlight-content-new {
  flex: 1 !important; /* Occupy remaining width */
  position: relative !important;
  padding-left: 1.5rem !important; /* Prevent title and description appearing too close to divider */
  display: flex !important;
  flex-direction: column !important;
  gap: 0.25rem !important;
}

/* Inner vertical divider line */
.highlight-content-new::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 1px !important;
  height: 2.25rem !important; /* Divider height */
  background-color: rgba(13, 75, 58, 0.1) !important; /* Divider line */
}

.highlight-title-new {
  font-family: "Poppins", sans-serif;
  font-size: 1.0625rem !important; /* Restored size */
  font-weight: 600;
  color: #0c2e22;
  line-height: 1.3 !important;
}

.highlight-value-new {
  font-family: "Poppins", sans-serif !important;
  font-size: 0.875rem !important; /* Restored size */
  font-weight: 400;
  color: #6e6e6e;
  line-height: 1.4 !important;
}

@media (max-width: 991px) {
  .highlights-grid-new {
    gap: 0.75rem 1rem !important; /* Compact gaps for tablet viewports */
  }
}

/* Tablet Overrides */
@media (max-width: 1024px) {
  .snapshot-panel {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  .highlights-grid-new {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important; /* Compact single-column gap */
  }
}

/* Mobile Safety Overrides */
@media (max-width: 640px) {
  .snapshot-card-new {
    grid-template-columns: 40px 1fr !important; /* Mobile safety 40px track */
    grid-template-rows: auto auto !important;
    padding: 0.75rem 1rem !important; /* Compact mobile padding */
    gap: 0.125rem 1rem !important;
    min-height: 60px !important;
  }
  .snapshot-icon-circle {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
    width: 2.25rem !important; /* 36px diameter */
    height: 2.25rem !important;
    font-size: 1rem !important;
  }
  .snapshot-card-new::after {
    display: none !important; /* Hide vertical divider on mobile */
  }
  .snapshot-value {
    grid-column: 2 !important;
    grid-row: 1 !important;
    text-align: left !important;
    font-size: 1.25rem !important;
  }
  .snapshot-label {
    grid-column: 2 !important;
    grid-row: 2 !important;
    text-align: left !important;
    padding-left: 0 !important;
    font-size: 0.85rem !important;
  }
  .highlight-icon-new {
    flex: 0 0 56px !important; /* Mobile compact width */
    width: 56px !important;
    height: 56px !important;
    font-size: 1.25rem !important;
  }
  .highlight-content-new {
    padding-left: 1rem !important;
  }
  .highlight-content-new::before {
    height: 1.75rem !important; /* Sized down vertical divider inside mobile card */
  }
}
