/* ==========================================================================
   Font Family: Abhaya Libre
   ========================================================================== */

@font-face {
  font-family: 'Abhaya Libre';
  src: url('../fonts/Abhaya_Libre/AbhayaLibre-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Abhaya Libre';
  src: url('../fonts/Abhaya_Libre/AbhayaLibre-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Abhaya Libre';
  src: url('../fonts/Abhaya_Libre/AbhayaLibre-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Abhaya Libre';
  src: url('../fonts/Abhaya_Libre/AbhayaLibre-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Abhaya Libre';
  src: url('../fonts/Abhaya_Libre/AbhayaLibre-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Font Family: Lato
   ========================================================================== */

/* Thin (100) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-THIN.TTF') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-THINITALIC.TTF') format('truetype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* Light (300) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-LIGHT.TTF') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-LIGHTITALIC.TTF') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Regular (400) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-REGULAR.TTF') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-ITALIC.TTF') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Medium (500) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-MEDIUM.TTF') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-MEDIUMITALIC.TTF') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* SemiBold (600) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-SEMIBOLD.TTF') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-SEMIBOLDITALIC.TTF') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-BOLD.TTF') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-BOLDITALIC.TTF') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Heavy (800) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-HEAVY.TTF') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-HEAVYITALIC.TTF') format('truetype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Black (900) */
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-BLACK.TTF') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato/LATO-BLACKITALIC.TTF') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
/* ================= CSS VARIABLES & GRADIENTS ================= */
:root {
  --grad-start: #1e562a;
  --grad-end: #7dec72;
  --primary-gradient: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  --btn-gradient: linear-gradient(90deg, var(--grad-start) 0%, var(--grad-end) 100%);
  --dark-green: #153D30;
  --text-main: #2b2b2b;
  --text-muted: #666666;
  --bg-light: #f7faf7;
  --white: #ffffff;
  --hero-grad-start: #20592b;
  --hero-grad-mid: #459448;
  --hero-grad-end: #4b9d4c;
  --button-gradient: linear-gradient(135deg, #20592b 0%, #7dec72 100%);
  --spec-bg: #f2faf1;
  --border-light: #e0eee0;
  --font-heading: 'Abhaya Libre', serif;
  --font-body: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

body {
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
}

/* Common Layout Containers */
.section-container {
  margin: 0 auto;
  padding: 50px 8% 80px;
}

.sub-heading {
  color: var(--hero-grad-end);
  font-weight: 700;
  letter-spacing: 28%;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}

.center-title {
  text-align: center;
  margin-bottom: 30px;
}

/* Reusable Gradient Button */
.btn-gradient {
  background: var(--btn-gradient);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-block;
  text-align: center;
  font-size: 18;
}

.btn-gradient:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ================= NAVBAR ================= */

.navBar {
  position: sticky;
  top: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  font-family: var(--font-body);
}

.nav-container {
  margin: 0 auto;
  padding: 16px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-actions {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-green);
  font-size: 17px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

/* Active and Hover state matching design */
.nav-links a.active,
.nav-links a:hover {
  color: var(--dark-green);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--grad-start);
  border-radius: 2px;
}

/* Hamburger Icon */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2.5px;
  background-color: var(--dark-green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Responsive Styling */
@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-actions {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    justify-content: flex-start;
    padding: 90px 30px 40px;
    gap: 30px;
    transition: right 0.3s ease;
  }
  .nav-actions button{display: none;}
  .nav-actions.is-open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 24px;
    align-items: flex-start;
  }

  .nav-links a {
    font-size: 16px;
    width: 100%;
  }

  .btn-gradient {
    width: 100%;
    text-align: center;
  }
  .logo img { height: 35px;}
  /* Hamburger Toggle Animation */
  .mobile-menu-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  min-height: 560px;
  padding: 50px 24px;

  box-sizing: border-box;
  background-color: var(--white);
}
.hero-image-container{
 background-image: url('../images/hero-banner.jpg'); /* Replace with your actual hero image */
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
    display: flex;
  align-items: center;
  padding: 60px 30px;
  border-radius: 30px;
}
/* Gradient Overlay - Left dark green fading to subtle transparent on right */


.hero-container {
  position: relative;
  z-index: 2;
 padding: 0 5%;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Left Content Styles */
.hero-content {
  flex: 1;
  color: #ffffff;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  max-width: 580px;
}

.hero-divider {
  width: 100%;
  max-width: 520px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin: 26px 0;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 28%;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.hero-price {
  font-size: 48px;
  font-weight: 700;
  color: #D8FFC7;
  margin-bottom: 4px;
  line-height: 1;
}
.hero-price span{
  font-family: var(--font-heading);
  font-size: 65px;
  font-weight: 700;
  letter-spacing: 0;

}
.hero-rera {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  margin-bottom: 53px;
  font-weight: 400;
}

/* Specs Highlight Box (Desktop) */
.hero-specs-card {
  background: #EAFFEF;
  border-radius: 12px;
  padding: 27px 31px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.spec-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.spec-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #d1e5d0;
}

.spec-label {
  font-size: 130x;
  color: var(--dark-green);
  margin-bottom: 4px;
  font-weight: 400;
}

.spec-value {
  font-size: 19px;
  color: var(--dark-green);
  font-weight: 700;
  line-height: 1;
}

/* Form Card (Desktop) */
.hero-form-card {
  width: 380px;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 1px solid #eef4ee;
  box-sizing: border-box;
}

.hero-form-card h3 {
  font-family: var(--font-heading);
  font-size: 33px;
  color: var(--dark-green);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-subtext {
  font-size: 10px;
  color: #6B736D;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--grad-start);
  margin-bottom: 6px;
}

.form-group input {
  font-family: var(--font-body);
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e1ebe0;
  border-radius: 25px;
  font-size: 11px;
  outline: none;
  background-color: #fcfdfe;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: #459448;
}

/* Captcha styling */
.captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-box {
  background: #f0f4f0;
  border: 1px solid #d4e2d3;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: #20592b;
  user-select: none;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 20px 0;
}

.form-checkbox input {
  margin-top: 3px;
  accent-color: #20592b;
}

.form-checkbox label {
  font-size: 0.68rem;
  color: #70806f;
  line-height: 1.35;
}

.btn-hero-submit {
  width: 100%;
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(32, 89, 43, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(32, 89, 43, 0.4);
}
.mobile-hero-section{display: none;}
/* ================= MOBILE VIEW (MATCHES DESIGN EXACTLY) ================= */
@media (max-width: 768px) {
  .hero-section {
    padding: 16px 12px;
    background-color: var(--white);
    min-height: auto;
  }

  /* Main rounded image wrapper on mobile */
  .hero-image-container {
     background-image: url('../images/mob-banner.png');
    position: relative;
    padding: 24px 16px 36px 16px;
    border-radius: 20px;
    overflow: hidden;
  }
  .hero-container {
    flex-direction: column;
    gap: 24px;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  /* Re-ordering elements for Mobile Layout: Content -> Form -> Specs */
  .hero-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .hero-heading {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 14px;
    max-width: 100%;
  }

  .hero-divider {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size:10px;
    letter-spacing: 1.5px;
  }

  .hero-price {
    font-size: 28px;
    margin-bottom: 2px;
  }
  .hero-price span{font-size: 35px;}

  .hero-rera {
    font-size: 10px;
    margin-bottom: 0;
  }
  .hero-form-card{display: none;}
  .hero-specs-card{display: none;}
  .mobile-hero-section{padding: 16px 12px; display: block;}
  /* Move Specs Box out of hero-content flow to the bottom of the container */
  .mobile-specs-card {
    display: grid;
    order: 3; /* Places specs at the very bottom */
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr); /* 2x2 Grid as per mobile design */
    gap: 14px 16px;
    padding: 18px 16px;
    border-radius: 16px;
    box-sizing: border-box;
    background: var(--spec-bg);
    border: 1px solid #dce8dc;
  }

  /* Hide vertical dividers, use subtle row dividers instead */
  .spec-item:not(:last-child)::after {
    display: none;
  }

  .spec-item {
    padding-bottom: 6px;
    border-bottom: 1px solid #e1ebd0;
  }

  .spec-item:nth-child(3),
  .spec-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 0;
  }

  .spec-label {
    font-size:10px;
  }

  .spec-value {
    font-size: 15px;
  }

  /* Form Card on Mobile */
  .mobile-form-card {
    order: 2; /* Form sits right below banner heading */
    width: 100%;
    border-radius: 20px;
    padding: 24px 18px;
    border: 1px solid #dce8dc;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
  }

  .mobile-form-card h3 {
    font-size: 30px;
    text-align: center;
  }

  .form-subtext {
    text-align: center;
    margin-bottom: 16px;
  }

  .captcha-row {
    flex-direction: row;
  }

  .captcha-box {
    padding: 8px 14px;
    font-size: 0.95rem;
  }
}

/* ================= PRICING & BANNER ================= */
.pricing-section {
  margin: 0 auto;
  font-family: var(--font-body);
}

/* ================= DESKTOP SPLIT LAYOUT ================= */
.pricing-split-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}
.price-divider{
  width: 100%;
  color: var(--btn-gradient);
  height: 1px;
}
/* Left Image Card */
.pricing-building-card {
  flex: 1;
  max-width: 500px;
}

.pricing-hero-img {
  width: 100%;
  height: auto;
  min-height: 535px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Right Pricing List */
.pricing-list-container {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.pricing-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 28px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-row-item:last-child {
  border-bottom: none;
}

.unit-type-label {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 28%;
  color: var(--dark-green);
  text-transform: uppercase;
  display: block;
  margin:18px 0 26px;
}

.unit-price {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0 0 4px 0;
}

.unit-size-text {
  font-size: 18px;
  color: #657D6A;
  margin: 0;
}

.unit-size-text strong {
  color: #000;
  font-weight: 600;
}
/* Position the leaf over your design elements */
.decorative-leaf-top {
  position: absolute;
  top: -35px;
  right: 25%;
  width: 115px;
  height: auto;
  z-index: 5;
}
/* Add this class directly to your leaf <img> or <svg> container */
.floating-leaf {
  animation: floatDrift 6s ease-in-out infinite alternate;
  transform-origin: center center;
  pointer-events: none; /* Prevents blocking clicks on elements beneath it */
}

@keyframes floatDrift {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-12px) rotate(8deg) scale(1.03);
  }
  100% {
    transform: translateY(6px) rotate(-6deg) scale(0.98);
  }
}
/* On mobile, scale it down slightly so it doesn't overlap text */
@media (max-width: 768px) {
  .decorative-leaf-top {
    width: 80px;
    right: 5%;
    top: 10px;
  }
}

/* ================= FEATURE BANNER BAR ================= */
.banner-bar-gradient {
  background: var(--btn-gradient);
  border-radius: 20px;
  padding: 37px 93px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(30, 86, 42, 0.2);
}

.banner-item {
  text-align: left;
}

.banner-label {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.banner-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0;
}

.banner-divider {
  width: 1px;
  height: 38px;
  background: var(--white);
}

/* ================= MOBILE RESPONSIVE (MATCHES 2nd IMAGE) ================= */
@media (max-width: 768px) {
  .pricing-section {
    padding: 24px 16px;
  }

  .pricing-split-wrapper {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .pricing-building-card {
    max-width: 100%;
    width: 100%;
  }

  .pricing-hero-img {
    border-radius: 20px;
    min-height: 280px;
  }

  .pricing-list-container {
    width: 100%;
  }

  /* Vertical Stack on Mobile */
  .pricing-row-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
  }

  .unit-price {
    font-size: 30px;
  }

  .unit-size-text {
    font-size: 15px;
  }

  .pricing-action {
    width: auto;
  }


  /* Banner Grid Layout on Mobile (2 top, 1 full-width bottom) */
  .banner-bar-gradient {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .banner-divider {
    display: none; /* Hide vertical dividers */
  }

  .banner-item {
    padding-bottom: 8px;
  }
.banner-item:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 12px;
    padding-bottom: 0;
  }
  /* 3rd item spans full width at bottom */
  .banner-item:nth-child(5) {
    grid-column: span 2;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 12px;
    padding-bottom: 0;
  }

  .banner-label {
    font-size: 17px;
  }

  .banner-value {
    font-size: 23px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-section {
  margin: 0 auto;
  color: #2b3a2c;
}

.about-wrapper {
  display: flex;
  flex-direction: column;
}

/* ================= HEADER STYLES ================= */

.title-leaf-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.title-leaf-row h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1;
  margin: 0;
  max-width: 580px;
}

/* Floating Leaf Animation */
.leaf-container {
  flex-shrink: 0;
  margin-right: 45%;
  margin-top: 10px;
}

.floating-leaf {
  animation: floatDrift 5s ease-in-out infinite alternate;
  transform-origin: center center;
  pointer-events: none;
}

@keyframes floatDrift {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-10px) rotate(8deg) scale(1.05);
  }
  100% {
    transform: translateY(5px) rotate(-5deg) scale(0.98);
  }
}

/* ================= DESKTOP MAIN CONTENT ================= */
.about-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.about-img-container {
  flex: 1;
  position: relative;
}
/* Styling for thumbnail & play button */
.video-thumbnail-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px; /* Optional rounding */
}

.about-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.video-thumbnail-container:hover .about-img {
  transform: scale(1.03);
}

.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-thumbnail-container:hover .play-button-overlay {
  background: rgba(220, 38, 38, 0.9); /* Highlight on hover */
  transform: translate(-50%, -50%) scale(1.1);
}

/* Modal CSS */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.close-modal {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
}
.about-img {
  width: 100%;
  height: auto;
  min-height: 500px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: block;
}

.mobile-brochure-overlay {
  display: none; /* Desktop hidden */
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-text p {
  font-size: 20px;
  line-height: 1.65;
  color: var(--dark-green);
  margin: 0 0 20px 0;
}
.paragraph-2{margin-bottom: 15% !important;}
.mobile-learn-more {
  display: none; /* Desktop hidden */
}

/* Gradient Brochure Button */
.btn-gradient-brochure {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(45, 92, 47, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-gradient-brochure img{width: 30px;}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================= MOBILE VIEW (MATCHES IMAGE 2) ================= */
@media (max-width: 768px) {
  .about-section {
    padding: 30px 20px;
  }
  .about-text p {font-size: 16px;}
  .title-leaf-row h2 {
    font-size: 35px;
    max-width: 100%;
  }

  .leaf-container {
    display: none; /* Clean layout for mobile */
  }

  /* Reordering for Mobile Layout */
  .about-content {
    flex-direction: column;
    gap: 0;
  }

  .about-text {
    display: flex;
    flex-direction: column;
  }

  /* 1. First Paragraph */
  .paragraph-2 {
    display: none;
  }

  /* Show Paragraph 2 when expanded class is added */
  .paragraph-2.is-expanded {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
  }

  .mobile-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: #2b3a32;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    cursor: pointer;
    margin-bottom: 12px;
  }

  .mobile-learn-more .btn-icon {
    transition: transform 0.3s ease;
  }

  /* Rotate icon 180deg when expanded */
  .mobile-learn-more.is-expanded .btn-icon {
    transform: rotate(180deg);
  }

  /* 3. Image Container placed below Learn More */
  .about-img-container {
    order: 3;
    width: 100%;
    margin-bottom: 50px; /* Leave space for overlapping button */
  }

  .about-img {
    border-radius: 20px;
  }

  /* Centered Overlapping Brochure Button on Mobile */
  .mobile-brochure-overlay {
    display: block;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .mobile-brochure-overlay .btn-gradient-brochure {
    font-size: 1.05rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .desktop-brochure-wrapper {
    display: none;
  }
}

/* ================= AMENITIES ================= */

.amenities-card {
  border-radius: 24px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background-image: url('../images/amenities-bg.jpg');
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Container Layout (If not already styled) */
.amenities-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.amenities-left {
  flex: 1;
  position: sticky;
  top: 0;
}

/* Right Grid Scrollable Area */
.amenities-right {
  flex: 1.5;
  max-height: 380px; /* Adjust height to fit your card design */
  overflow-y: auto;
  padding-right: 15px; /* Adds space so icons don't touch the scrollbar */
}

/* Custom Scrollbar for Right Card Container */
.amenities-right::-webkit-scrollbar {
  width: 6px;
}

.amenities-right::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.15); /* Semi-transparent track for dark bg */
  border-radius: 10px;
}

.amenities-right::-webkit-scrollbar-thumb {
  background: #3f5d37; /* Theme green color */
  border-radius: 10px;
}

.amenities-right::-webkit-scrollbar-thumb:hover {
  background: #8cc665; /* Brighter accent green on hover */
}

/* Hide grid by default, show when active */
.amenities-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 20px;
}

.amenities-grid.active {
  display: grid;
}
.sub-heading-text{
    color: #DBFFE3;
    font-weight: 700;
    letter-spacing: 28%;
    text-transform: uppercase;
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
  }
.amenities-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Left Section */
.amenities-left {
  flex: 1;
  max-width: 420px;
}

.amenities-left h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
}

/* Desktop Tabs Vertical Stack */
.amenities-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.tab-btn {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border: none;
  padding: 10px 28px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.85;
}

.tab-btn.active {
  background: var(--btn-gradient);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  color: #ffffff;
  opacity: 1;
}

.tab-btn .bullet {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
}

/* Right Section & Grid Switching */
.amenities-right {
  flex: 1.5;
  width: 100%;
}

.amenities-grid {
  display: none; /* Hidden by default */
  grid-template-columns: repeat(4, 1fr);
  row-gap: 45px;
  column-gap: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.amenities-grid.active {
  display: grid;
  opacity: 1;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
}

.icon-item img {
 width: 50px;
}

.icon-item span {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* Subtle Row Dividers */
.icon-item::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* Remove divider on the last row */
.icon-item:nth-child(n+9)::after {
  display: none;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {
  .section-container {
    padding: 15px 16px;
  }
  .amenities-leaf-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%;
    background-image: url('../images/leaves-bg.png'); /* Replace with your leaf vector path */
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
  }
  .amenities-card {
    padding: 36px 20px 48px 20px;
    border-radius: 20px;
  }
  
  .amenities-content {
    flex-direction: column;
    gap: 32px;
  }

  .amenities-left {
    max-width: 100%;
  }

  .amenities-left h2 {
    font-size:35px;
    margin-bottom: 24px;
  }

  /* Segmented Horizontal Pill Bar on Mobile */
  .amenities-tabs-wrapper {
    background: rgba(128, 211, 146, 0.6);
    border-radius: 40px;
    padding: 5px;
    width: 100%;
    box-sizing: border-box;
  }

  .amenities-tabs {
    flex-direction: row;
    width: 100%;
    gap: 0;
  }

  .tab-btn {
    flex: 1;
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.95rem;
  }

  .tab-btn.active {
    background: var(--btn-gradient);
  }

  /* 2-Column Grid on Mobile */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
    column-gap: 16px;
  }
  .icon-item::after {
    bottom: -18px;
  }

  /* Hide row dividers for row 5 (items 9 & 10) on 2-col layout */
  .icon-item:nth-child(n+9)::after {
    display: none;
  }
}

/* ================= PLANS & GALLERY ================= */

.plans-section {
  margin: 0 auto;
}

/* Header Text */
.center-title {
  text-align: center;
  margin-bottom: 40px;
}

.center-title .sub-heading {
  color: var(--hero-grad-end);
  font-weight: 700;
  letter-spacing: 28%;
  text-transform: uppercase;
  font-size: 16px;
  display: block;
  margin-bottom: 6px;
}

.center-title h2 {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0;
}

/* Outer Flex Layout */
.plans-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  flex-direction: row-reverse;
}

/* Display Content Container */
.plans-display-card {
  flex: 1.8;
  background: #F6F8F7;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  min-height: 480px;
  width: 100%;
}

/* Bootstrap Tab Content Fixes */
.tab-content > .tab-pane {
  display: none;
  width: 100%;
}

.tab-content > .active {
  display: block !important;
}

/* Gallery & Slider Elements */
.gallery-carousel {
  position: relative;
  width: 100%;
  background: #f4f4f4;
  overflow: hidden;
}

.gallery-carousel .carousel-inner {
  width: 100%;
}

.gallery-carousel .carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-arrow {
  width: 48px;
  opacity: 1;
}

.gallery-arrow .carousel-control-prev-icon,
.gallery-arrow .carousel-control-next-icon {
  width: 32px;
  height: 32px;
  background-size: 16px;
  background-color: #000;
  border-radius: 50%;
}
/* Apply blur to locked gallery images on ALL devices */
.gallery-thumbs.locked img {
  filter: blur(3px);
  transition: filter 0.3s ease;
  pointer-events: none; /* Prevents dragging/right-clicking the image directly */
}

.gallery-thumbs.locked .thumb-btn {
  cursor: pointer;
}

.gallery-thumbs {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.thumb-btn {
  width: 142px;
  height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  flex: 0 0 auto;
  opacity: 0.88;
  transition: all 0.25s ease;
}

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

.thumb-btn.active,
.thumb-btn:hover {
  opacity: 1;
  outline: 3px solid #8a4a2a;
  outline-offset: -3px;
}

/* Specifications Styling */
.specifications-content {
  padding: 10px;
}

/* Navigation Card Styling */
.plans-nav-card {
  flex: 1;
  max-width: 380px;
  background: #F6F8F7;
  border-radius: 28px;
  padding: 40px 32px;
  position: relative;
}
.plans-nav-card .nav-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 12%;
  height: 1px;
  width: 80%;
  background-color: #d1e5d0;
}
.plans-nav-card ul li {
  list-style: none;
}

.nav-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
}

.nav-tab-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #384d39;
  background: transparent;
  border: none;
  padding: 14px 24px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
  width: 100%;
}

.nav-tab-btn .bullet {
  width: 6px;
  height: 6px;
  background-color: #233b25;
  border-radius: 50%;
  display: inline-block;
}
.nav-tab-btn.active {
  background: var(--btn-gradient);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(55, 95, 54, 0.2);
}

.nav-tab-btn.active .bullet {
  background-color: #ffffff;
}
.floor-plan-btn{
  position: absolute;
  bottom: -30%;
  right: 50%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(45, 92, 47, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-leaf-icon {
  position: absolute;
  bottom: -55%;
  right: 5%;
  pointer-events: none;
  animation: leafFloat 4s ease-in-out infinite alternate;
}
/* --- FIX: Force Tab Visibility & Opacity --- */
.plans-display-card.tab-content > .tab-pane {
  display: none !important;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}

/* Force active tab to display and be 100% visible */
.plans-display-card.tab-content > .tab-pane.active,
.plans-display-card.tab-content > .tab-pane.show.active {
  display: block !important;
  opacity: 1 !important;
}
/* Smooth Collapse & Expansion */
/* Scrollable Box Container */
.specs-scroll-container {
  max-height: 480px; /* Adjust height as needed */
  overflow-y: auto;
  padding-right: 15px;
  background-color: #fafafa;
}

/* Custom Scrollbar Styling */
.specs-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.specs-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.specs-scroll-container::-webkit-scrollbar-thumb {
  background: #3f5d37; /* Theme green color */
  border-radius: 10px;
}

.specs-scroll-container::-webkit-scrollbar-thumb:hover {
  background: #2c402e;
}
.btn-link{
  padding: 10px;
  margin-top: 30px;
  border-radius: 20px;
}
@keyframes leafFloat {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-8px) rotate(6deg); }
}

@media (max-width: 868px) {
  .specs-scroll-container p{font-size: 18px;}
  .center-title h2{font-size: 35px;}
  .plans-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .plans-nav-card {
    max-width: 100%;
    width: 100%;
  }
  .floor-plan-btn{right: 0; bottom: -25%; font-size: 18px; justify-content: center;}
  .plans-display-card {min-height: auto; margin-top: 25%;}
  .floating-leaf-icon {
    bottom: 0;
    right: 0;
  }
}
/* ================= AMENITIES SECTION ================= */
/* Typography & Container Setup */
.amenities-section {
  background-color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark-green);
  overflow: hidden;
}

/* Left Column Title */
.amenities-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark-green);
  margin: 0;
}

/* Green Gradient Enquire Pill Button */
.btn-enquire-pill {
  background: var(--btn-gradient);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 32px;
  border-radius: 40px;
  border: none;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(55, 95, 54, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.btn-enquire-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(55, 95, 54, 0.3);
}


.amenities-description {
  font-size: 20px;
  line-height: 1.5;
  color: var(--dark-green);
  max-width: 700px;
}

/* Hide expandable container initially */
.expandable-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease;
}

/* Expanded State */
.expandable-content.is-expanded {
  max-height: 1000px; /* High value to allow smooth expansion */
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease-in;
  margin-top: 1rem;
}

/* Arrow rotation on toggle */
.learn-more-link .icon-wrap i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.learn-more-link.is-active .icon-wrap i {
  transform: rotate(90deg);
}

.learn-more-link {
  color: #3f5d37;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 18px;
}

.learn-more-link:hover {
  color: #2c402e;
}

/* Floating Leaf Graphic */
.floating-leaf-top {
  position: absolute;
  top: -40px;
  right: 0;
  pointer-events: none;
}

.floating-leaf-top img {
  width: 90px;
  height: auto;
}

/* --- Auto-Carousel Image Slider Styles --- */
.amenities-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 10px 0 20px 0;
}

.amenities-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  scroll-behavior: smooth;
  cursor: grab;
}

.amenity-card {
  flex: 0 0 calc(38% - 16px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.card-img-holder {
  width: 100%;
  height: 310px;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--white);
}

.card-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.card-caption {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-green);
  text-align: left;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .amenities-title {
    font-size:35px;
  }
  .card-caption {font-size: 16px;}
  .amenity-card {
    flex: 0 0 calc(50% - 12px);
  }
  .floating-leaf-top{display: none;}
  .amenities-section button{display: none;}
}

@media (max-width: 576px) {

  .amenity-card {
    flex: 0 0 85%;
  }

  .card-img-holder {
    height: 200px;
    border-radius: 20px;
  }

  .floating-leaf-top {
    top: -20px;
    right: 10px;
  }
}
/* ================= LOCATION ================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

.location-section {
  background-color: #ffffff;
}

/* Outer Off-White Wrapper Container */
.location-wrapper {
  background-color: #f4f5f2;
  border-radius: 32px;
  padding: 50px;
  position: relative;
}

/* Main Grid Layout */
.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.location-left {
  position: relative;
}

/* Section Title */
.location-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark-green);
  margin-bottom: 28px;
}

/* Floating Leaf Graphic */
.location-leaf {
  position: absolute;
  top: 60px;
  right: -20px;
  pointer-events: none;
  z-index: 2;
}

.location-leaf img {
  width: 80px;
  height: auto;
}

/* --- Map Container --- */
.map-container {
  width: 100%;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* --- Right Side: Connectivity Card --- */
.connectivity-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 28px 36px 36px;
  border: 1px solid #e7ebe5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

/* Card Category Header */
.card-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.card-category-header i {
  font-size: 22px;
  color: #2b3a32;
}

.card-category-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: #2b3a32;
  margin: 0;
}

/* Scrollable Container */
.connectivity-scroll-list {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Custom Scrollbar */
.connectivity-scroll-list::-webkit-scrollbar {
  width: 3px;
}

.connectivity-scroll-list::-webkit-scrollbar-track {
  background: #f1f2f0;
  border-radius: 10px;
}

.connectivity-scroll-list::-webkit-scrollbar-thumb {
  background: #3e5d4e;
  border-radius: 10px;
}

/* Location Item Pill Styles */
.connectivity-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

/* Alternating Row Colors */
.connectivity-item.gray {
  background-color: #f4f5f3;
}

.connectivity-item.green {
  background-color: #edf3ee;
}

.connectivity-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.accordion-item {
  border: 1px solid #F6F8F7 !important;
  border-radius: 50px !important;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.connectivity-accordion .gray{
  background-color: #F6F8F7;
}

.connectivity-accordion .green{
  background-color: rgba(218, 235, 227, 0.54);
}
.accordion-item.is-open {
  border-color: #3f5d37;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.location-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-green);
}

.arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #f0f4ef;
  color: #3f5d37;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.accordion-item.is-open .arrow-icon {
  transform: rotate(180deg);
  background-color: #3f5d37;
  color: #ffffff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-body {
  padding: 0 20px 16px 20px;
  color: #555555;
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.accordion-item.is-open .accordion-body {
  border-top-color: #f0f0f0;
  padding-top: 12px;
} 

/* Responsive adjustments */
@media (max-width: 992px) {
  .location-container {
    grid-template-columns: 1fr;
  }
  
  .location-leaf {
    display: none;
  }
}

/* --- Responsive Styles --- */
@media (max-width: 991px) {
  .location-wrapper {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .location-title {
    font-size: 35px;
  }

  .location-leaf {
    right: 0;
    top: -10px;
  }

  .map-container {
    min-height: 320px;
  }
  .accordion-header {padding: 10px;}
  .accordion-item{border-radius: 30px;}
  .location-name {font-size: 10px;}
  .accordion-body p{font-size: 10px;}
  .connectivity-card {
    padding: 24px 16px;
  }

  .connectivity-scroll-list {
    max-height: 300px;
  }
}

/* ================= DEVELOPER & FAQ ================= */
/* Typography and Global Setup */
.dsr-about-section {
  background-color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #333333;
  position: relative;
}

/* --- Left Corner Soft Green Radial Gradient Glow --- */
.corner-glow-bg {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle at center,
    rgba(215, 238, 206, 0.7) 0%,
    rgba(235, 246, 230, 0.4) 40%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* Leaf Element in Bottom Left */
.bottom-left-leaf {
  position: absolute;
  bottom: 0;
  left: -7%;
  max-width: 140px;
  pointer-events: none;
  z-index: 1;
  filter: blur(3px);
}

.bottom-left-leaf img {
  width: 300px;
  height: auto;
  display: block;
}

/* Layering Helper */
.z-1 {
  z-index: 1;
}

/* --- Left Logo Styling --- */
.logo-wrapper {
  display: inline-block;
  padding: 10px 0;
}

.dsr-brand-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  position: relative;
}

/* --- Right Content Styling --- */
.about-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark-green);
  letter-spacing: 0;
}

.about-text-content p {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-green);
  font-weight: 400;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .about-section{
    display: flex;
    flex-direction: column-reverse;
  }
  .about-title {
    font-size: 18px;
  }
  .about-text-content p {font-size: 13px;}
  .dsr-brand-logo {
    max-width: 230px;
  }

  .corner-glow-bg {
   display: none;
  }
}

@media (max-width: 576px) {
  .bottom-left-leaf {
   display: none;
  }
}
/* ================= TESTIMONIAL SECTION ================= */
/* Outer Section Setup */
.testimonials-section {
  background-color: #f8f9f7;
  color: var(--dark-green);
}

/* Section Title */
.testimonial-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark-green);
  margin: 0;
}

/* Floating Leaf Asset Top Right */
.top-right-leaf {
  position: absolute;
  top: -55px;
  right: 15%;
  width: 140px;
  pointer-events: none;
  z-index: 0;
}

.top-right-leaf img {
  width: 155px;
  height: auto;
  filter: blur(2px);
  rotate: calc(150deg);
}

.z-1 {
  z-index: 1;
}

/* Slider Track Layout */
.testimonial-slider-container {
  width: 100%;
  overflow: hidden;
  padding-top: 25px; /* Leaves space for quote badge overlap */
  padding-bottom: 10px;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.testimonial-card-item {
  flex: 0 0 calc(33.333% - 16px); /* Default 3 cards visible */
  min-width: 280px;
  box-sizing: border-box;
}

/* Individual Card Styling */
.testimonial-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 36px 30px 28px 30px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Overlapping Quote Badge Top Left */
.quote-badge {
  position: absolute;
  top: -22px;
  left: 28px;
  width: 40px;
  align-items: center;
  justify-content: center;
}

.star-rating {
  color: var(--dark-green);
  font-size:20px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-green);
  margin-bottom: 24px;
}

/* Author Section Bottom */
.author-info {
  border-top: 1px solid #f0f2ee;
  padding-top: 18px;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0;
}

.author-role {
  font-size: 14px;
  color: var(--text-muted);
  margin: 2px 0 0 0;
}

/* --- Control Buttons --- */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--btn-gradient);
}
.nav-btn:disabled{
background-color: #e2e5df;
color: #000;
} 

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none !important;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .testimonial-title {
    font-size: 35px;
  }

  .testimonial-card-item {
    flex: 0 0 calc(50% - 12px); /* 2 cards visible on tablet */
  }
}

@media (max-width: 576px) {
  .testimonial-card-item {
    flex: 0 0 100%; /* 1 card visible on mobile */
  }

  .testimonial-card {
    padding: 32px 20px 24px 20px;
  }

  .top-right-leaf {
    width: 90px;
    right: 5%;
  }
}
/* ================= EXPLORE SECTION ================= */
/* Typography & Container Setup */
.explore-section {
  background-color: #ffffff;
}

/* Heading Styling */
.explore-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark-green);
  margin: 0;
}

/* Floating Leaf Graphic Accent */
.explore-leaf {
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  rotate: -30deg;
}

.explore-leaf img {
  width: 90px;
  height: auto;
}

/* Phone CTA Section */
.contact-subtext {
  font-size: 22px;
  line-height: 1.5;
  color: var(--dark-green);
}

.phone-link {
  color: var(--dark-green);
  transition: opacity 0.2s ease;
}

.phone-link:hover {
  opacity: 0.85;
}

.phone-icon-badge {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #578c52 0%, #89e172 100%);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(87, 140, 82, 0.25);
}

.phone-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-green);
  letter-spacing: 0;
}

/* Banner Image Holder */
.explore-banner-holder {
  width: 100%;
  height: 350px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #eef2ec;
}

.explore-banner-holder img {
  border-radius: 24px;
}

/* --- Right Side: Form Card --- */
.enquiry-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid #83B28D;  
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-logos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-width: 180px;
  height: auto;
}

.badge-logo {
  max-width: 48px;
  height: auto;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 6px;
}

/* Custom Input Styling */
.custom-input {
  border-radius: 30px !important;
  border: 1px solid #dcdfd8;
  padding: 10px 20px;
  font-size: 12px;
  color: #233b25;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.custom-input::placeholder {
  color: #9ea89c;
  font-size: 0.82rem;
}

.custom-input:focus {
  border-color: #578c52;
  box-shadow: 0 0 0 3px rgba(87, 140, 82, 0.15);
  outline: none;
}

/* Green Gradient Submit Pill Button */
.btn-enquire-submit {
  background: linear-gradient(90deg, #375f36 0%, #89e172 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 38px;
  border-radius: 40px;
  border: none;
  box-shadow: 0 4px 14px rgba(55, 95, 54, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-enquire-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(55, 95, 54, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .explore-title {
    font-size: 35px;
  }
  .amenities-description {font-size: 16px;}
  .explore-banner-holder {
    height: 260px;
    margin-bottom: 20px;
  }

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

  .phone-number {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {

  .explore-banner-holder {
    height: 220px;
    border-radius: 18px;
  }

  .phone-number {
    font-size: 1.05rem;
  }

  .explore-leaf {
    right: 10px;
  }
}
/* ================= FAQ SECTION ================= */
/* Typography and Global Setup */
.faq-section {
  background-color: #ffffff;
}

/* Section Title */
.faq-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark-green);
  margin: 0;
}

/* FAQ Card Wrapper */
.faq-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #eef1ec;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-card:hover {
  border-color: #d1dbcc;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.faq-card.active {
  border-color: #89e172;
}

/* FAQ Header Trigger Button */
.faq-header {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  outline: none;
  gap: 16px;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.45;
}

/* Plus/Minus Toggle Icon */
.faq-icon {
  width: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg); /* Rotates '+' into 'x' or '-' look */
}

/* Expandable Body Panel */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.faq-content {
  padding: 0 28px 22px 28px;
  font-size: 16px;
  line-height: 1.65;
  color: #556656;
  border-top: 1px solid transparent;
}

.faq-card.active .faq-body {
  max-height: 300px; /* Adjust according to maximum expected text height */
  transition: max-height 0.35s ease-in-out;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {

  .faq-title {
    font-size: 35px;
  }

  .faq-header {
    padding: 18px 20px;
  }
  .faq-question {font-size: 16px;}
  .faq-content {
    padding: 0 20px 18px 20px;
  }
}

@media (max-width: 576px) {

  .faq-header {
    padding: 16px 18px;
  }

  .faq-icon {
    font-size: 1.3rem;
  }
}
/* ================= FOOTER ================= */
/* Outer Footer Base */
.dsr-footer {
  background-color: #0e0f0e;
  color: #ffffff;
}

.z-1 {
  z-index: 1;
}

/* Brand Logo Image */
.brand-logo-img {
  max-width: 260px;
  height: auto;
}

/* Column Headings */
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 28%;
  color: #ffffff;
  text-transform: uppercase;
}

/* Body Text & Addresses */
.address-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 0;
  width: 400px;
}

/* Contact Link Items */
.contact-link {
  font-size: 18px;
  font-weight: 600;
  color: #C5E1C5;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #89e172;
}

/* Circular Green Icon Badges */
.icon-circle {
  width: 30px;
  height: 30px;
  background-color: #578c52;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Social Icon Buttons */
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #1F1F1F;
  color: var(--grad-end);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* Horizontal Line Divider */
.footer-divider {
  border-color: #232723;
  opacity: 0.8;
}

/* Disclaimer Styling */
.disclaimer-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #DBFFE3;
}

.disclaimer-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
}

/* Bottom Bar Copyright */
.footer-bottom {
  border-top: 1px solid #181c18;
  background-color: #080908;
}

.copyright-text {
  font-size: 16px;
  color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .footer-top {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .brand-logo-img {
    max-width: 220px;
  }
  .dsr-footer{margin-bottom: 45px;}
  .address-text,
  .contact-link {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .footer-heading {
    font-size: 16px;
  }

  .disclaimer-text {
    font-size: 12px;
  }

  .copyright-text {
    font-size: 11px;
  }
}

    .whatsapp-label{display: none;}
    .phn-label{display: none;}
    .phn::before{display: none;}
    .fa-calendar:before {display: none;}
    
    .phn-call .fa-phone:before{    margin-top: 9px; width: 48px; text-align: center; display: block; font-size: 30px;}
    .fa-whatsapp:before {display: none;}
    /* Container positioned relative to the viewport */
.floating-actions-wrapper {
  position: fixed;
  bottom: 10%; /* Distance from screen bottom */
  right: 0;  /* Distance from screen right */
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 15px;    /* Space between WhatsApp and Enquire button */
  z-index: 9999; /* Ensures it floats above all other sections */
}

/* Styling and rotating the Enquire Now button */
.sticky-enquiry-btn {
  background-color: #000; /* Match your green brand theme color */
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: 0px 12px 12px 0px; /* Curved look matching your asset snippet */
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  
  /* Vertical rotation code alignment */
  writing-mode: vertical-rl;
  transform: rotate(180deg); 
}
.sticky-enquiry-btn:hover{background-color: var(--dark-green); color: var(--white);}
/* Reset baseline style wrapper for your existing WhatsApp anchor tag if needed */
.whatsapp-sticky-btn {
  display: block;
  transition: transform 0.2s ease;
}
.floating-wrapper img{
  width: 50px;
}
.phone-sticky-btn {
  display: block;
  transition: transform 0.2s ease;
}
.whatsapp-sticky-btn:hover {
  transform: scale(1.08);
}
.phone-sticky-btn:hover {
  transform: scale(1.08);
}
.floating-wrapper {
  position: fixed;
  top: 60%;/* Distance from screen bottom */
  right: 30px;  /* Distance from screen right */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;    /* Space between WhatsApp and Enquire button */
  z-index: 9999; /* Ensures it floats above all other sections */
}
/* Mobile View: Converts the floating buttons into a fixed bottom bar */
@media (max-width: 767px) {
  .floating-actions-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    background-color: #000; 
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eef0f2;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    /* Uses dynamic padding to safely avoid mobile home indicator bars */
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px)) 0;
    z-index: 99999;
  }

  /* Split the bar into 3 perfectly identical structural blocks */
  .floating-actions-wrapper > a, 
  .floating-actions-wrapper > button {
    flex: 1;
    display: flex;
    flex-direction: column; /* Icon stacked neatly on top of text */
    align-items: center;
    justify-content: center;
    height: 52px;
    background: transparent !important; /* Removes background to merge into bar */
    color: #4a5568 !important; /* Neutral dark tint for general icon & text colors */
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: none;
  }
  .fa-calendar:before {display: block;}
  .fa-whatsapp:before {display: block;}
  .fa-phone:before {display: block;}
   .phn-call{display: none;}
  .whatsapp-sticky-btn img{display: none;}
  .phone-sticky-btn img{display: none;}
  /* Add subtle vertical divider lines between our 3 slots */
  .floating-actions-wrapper > a:not(:last-child),
  .floating-actions-wrapper > button:not(:last-child) {
    border-right: 1px solid #eef0f2 !important;
  }

  /* Icon Rules */
  .floating-actions-wrapper i {
    font-size: 20px !important;
    margin-bottom: 3px;
    display: inline-block;
  }
  
  .floating-actions-wrapper img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-bottom: 3px;
  }

  /* Unified Label Text Rules */
  .floating-actions-wrapper .btn-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: block !important;
    color: #fff;
  }

  /* Optional Brand Highlight Tweaks */
  .floating-actions-wrapper .phone-sticky-btn i {
    color: #fff; /* Your specific deep brown theme color for call */
  }

  .floating-actions-wrapper .whatsapp-sticky-btn i {
    color: #fff; /* Your specific deep brown theme color for call */
  }
  
  /* Highlight the Call To Action text or icon if you want it to stand out slightly */
  .floating-actions-wrapper .sticky-enquiry-btn {
    writing-mode: horizontal-tb !important;
    transform: rotate(0deg) !important;
  }
  .floating-actions-wrapper .sticky-enquiry-btn i,
  .floating-actions-wrapper .sticky-enquiry-btn .btn-label {
    color: #fff; /* Dark green accents for the main action */
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content h3{font-family: var(--font-heading);}
.modal-content {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  width: 100%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.captcha-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.captcha-box {
  background: #eee;
  padding: 8px 15px;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 4px;
}

/* Base state for all scroll-animated text */
.animate-on-scroll {
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), 
              opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* Direction 1: Slide from Left */
.from-left {
  transform: translateX(-60px);
}

/* Direction 2: Slide from Bottom */
.from-bottom {
  transform: translateY(80px);
}

/* Active State (Triggered by Scroll) */
.animate-on-scroll.show {
  opacity: 1;
  transform: translate(0, 0);
}

/* Optional Stagger Delays for consecutive elements */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

.abttitle span{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
}

.abttitle p{
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
.abttitle a{text-decoration: none;}

@media (min-width: 1920px) {
  .floating-wrapper {right: 67px;}
  .hero-specs-card {width: 90%;}
  .spec-item:not(:last-child)::after {right: 15%;}
  .amenities-card {min-height: 600px; align-content: center;   padding: 90px 130px;}
  .location-wrapper{padding: 96px 53px;}
  .map-container {min-width: 600px;}
  .location-leaf { top: 50px; right: 25%;}
  .contact-subtext{width: 350px;}
  .explore-title{width: 375px;}
  .explore-leaf {right: 10%;}
  .faq-title{margin-bottom: 63px;}
  .faq-icon {width: 18px;}
  .footer-heading {font-size: 20px;}
}
.error{color: #DC2528 !important;}