/* --------------------------------------------------
 * 1. IMPORT INTER TIGHT FROM GOOGLE FONTS
 * -------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');

/* --------------------------------------------------
 * 2. LOCAL @FONT-FACE DECLARATIONS FOR OUTFIT
 * -------------------------------------------------- */

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

/* Extra Light - 200 */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

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

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

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

/* Semi Bold - 600 */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

/* Extra Bold - 800 */
@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

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

:root {
    --primary-green: #AFD14B;
    --primary-green-hover: #c4f034;
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
    --green-text: #1C5127;
    --text-white: #ffffff;
    --text-dark: #222222;
    --input-border: #e2e8f0;
    --border-color: #6d8374;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter Tight', sans-serif;
}

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

body {
    background-color: var(--text-white);
    color: var(--text-white);
    overflow-x: hidden;
    font-family: var(--font-body);
}
.green-accent {
    position: absolute;
    background-color: var(--green-text);
    z-index: 1;
    overflow: hidden; /* Contains the shimmer */
}

.green-accent::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70% );
    animation: metallicShine 8s infinite;
}

@keyframes metallicShine {
    0% {
        left: -150%;
    }

    30%, 100% {
        left: 150%;
    }
}

/* Base hidden state */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* State added by JS when element enters viewport */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Stagger delays for sequential text elements */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
/* =========================================================
    HERO BANNER & EXACT GRADIENT OVERLAY
    ========================================================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Background building photo */
    background-image: url('../images/parkway-banner.jpg');
    background-size: cover;
    background-position: center;
}

/* Gradient overlay running from bottom (0% -> #1C2A1A) to middle/top (72% -> #0D3830) */

.main-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-white);
}

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

.brand-logo-text .title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-logo-text .subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.nav-links-pill {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px 12px;
    gap: 8px;
}

.nav-links-pill a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.nav-links-pill a:hover {
    color: var(--primary-green);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-contact {
    background-color: var(--primary-green);
    color: var(--green-text);
    font-weight: 700;
    font-size: 13px;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
    font-size: 26px;
    color: var(--text-white);
    cursor: pointer;
}

/* Content Area */
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: end;
    padding: 10% 0;
}

.hero-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 59px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-solid-green {
    background-color: var(--primary-green);
    color: #1a2e05;
    font-weight: 600;
    font-size: 13px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(6px);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 13px;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
}

/* Form & Stamp Badge */
.form-wrapper {
    position: relative;
}

.oc-badge {
    position: absolute;
    top: -25px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    z-index: 5;
    transform: rotate(-8deg);
}
.mobile-oc{display: none;}
.lead-form-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 32px 32px;
    color: var(--text-dark);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lead-form-card h3 {
  font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 24px;
}

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

.form-group label {
  font-family: var(--font-heading);
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-control {
    font-family: var(--font-heading);
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: 30px;
    font-size: 12px;
    outline: none;
}

textarea.form-control { border-radius: 12px; resize: none; height: 110px; font-family: var(--font-heading);}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 20px 0;
}

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

.form-checkbox label {
     font-family: var(--font-heading);
  font-size: 12px;
   color: var(--text-dark);
  line-height: 1.35;
}
.btn-submit {
  font-family: var(--font-heading);
    width: 50%;
    background-color: var(--primary-green);
    color: var(--green-text);
    border: none;
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
}

.banner-leaf{
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 480px;
}
/* Mobile Responsive Breakpoints */
@media (max-width: 992px) {
    .main-container{padding: 0 20px;}
    .nav-links-pill, .btn-contact { display: none; }
    .hamburger { display: block; }
    .hero-section{ background-image: url('../images/mobile-banner.jpg');}
    .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    }

    .hero-title { font-size: 28px; line-height: 32px; text-align: start; }
    .hero-subtitle { font-size: 14px; }
    .hero-buttons { justify-content: center; gap: 10px; }
    .btn-solid-green{padding: 14px 22px;}
    .btn-outline{padding: 14px 22px;}
    .form-row { grid-template-columns: 1fr; }
    .form-group label{text-align: start;}
    .mobile-oc{display: block;}
    .desktop-oc{display: none;}
    .oc-badge {
        position: relative;
        top: 0;
        right: 30%;
        margin: 0 auto 20px;
    }
    .oc-badge img{width: 70px;}
    .book-visit-vertical { display: none; }
    .lead-form-card h3{font-size: 18px;}
}
/* Mobile-only / Desktop-only helper classes */
.mobile-only { display: none; }
.desktop-only { display: inline-block; }

/* --------------------------------------------------
 * MOBILE MENU & BACKDROP STYLES
 * -------------------------------------------------- */

/* Background Overlay Blur */
.nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998; /* Just below header */
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent scrolling when menu is open */
body.no-scroll {
  overflow: hidden;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
  .mobile-only { display: inline-block; }
  .desktop-only { display: none; }

  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 24px;
    z-index: 1000;
  }

  /* Slide-down / Dropdown Mobile Menu */
  .nav-links-pill {
    position: fixed;
    top: -100%; /* Hidden above viewport by default */
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-radius: 10px;
  }
  .nav-links-pill a {color: var(--green-text);}
  /* Active state when menu is opened */
  .nav-links-pill.active {
    top: 70px; /* Adjust according to header height */
  }
}
/* =========================================================
   POJECT OVERVIEW SECTION
    ========================================================= */
.project-overview {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10%;
    align-items: center;
    padding: 0 8% 0 0;
}

/* Left - Image & Overlapping Price Box */
.image-container {
    position: relative;
    width: 100%;
}

.building-img {
    width: 660px;
    height: auto;
    object-fit: cover;
    display: block;
}

.price-badge {
    position: absolute;
    bottom: 0;
    right: -10%;
    color: #ffffff;
    padding: 36px 32px;
    width: 270px;
    z-index: 2;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    height: 270px;
    align-content: center;
}

.price-badge .label-start {
  font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    display: block;
}

.price-badge .price-value {
  font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.price-badge .label-onwards {
  font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    display: block;
}

/* Right - Specification List */
.specs-list {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.spec-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(13, 56, 48, 0.13);
}

.spec-item:first-child {
    padding-top: 0;
}

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

.spec-label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    color: rgba(101, 118, 115, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.spec-value {
    font-size: 20px;
    font-weight: 500;
    color: var(--green-text);
    line-height: 1.4;
}

.rera-line {
    display: block;
}

/* Mobile Responsive View */
@media (max-width: 768px) {

    .project-overview {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 20px;
    }

    .building-img {
    height: 320px;
    width: 100%;
    }

    .price-badge {
    position: absolute;
    bottom: -30%;
    left: 0;
    right: auto;
    width: 70%;
    max-width: 280px;
    padding: 28px 24px;
    height: 180px;
    }

    .price-badge .label-start {
    font-size: 12px;
    }

    .price-badge .label-onwards {
    font-size: 20px;
    }

    .specs-list {
    padding-left: 0;
    margin-top: 30%;
    }

    .spec-item {
    padding: 16px 0;
    }
    .spec-label{font-size: 14px;}
    .spec-value { font-size: 16px; }
}

/* =========================================================
    RESIDENCES SECTION
    ========================================================= */
.residences-section {
    background-color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
    width: 100%;
}

.residences-container {
    max-width: 880px;
    margin: 0 auto;
}

/* Top Subtitle / Tagline */
.residences-subtitle {
  font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 300;
    color: var(--green-text);
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 22px;
}

/* Main Section Heading */
.residences-title {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 500;
    color: var(--green-text);
    line-height: 50px;
    margin-bottom: 28px;
    letter-spacing: 0;
}

/* Description Paragraph */
.residences-description {
    font-size: 16px;
    line-height: 33px;
    color: rgba(101, 118, 115, 1);
    font-weight: 400;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .residences-section {
        padding: 50px 20px;
    }

    .residences-subtitle {
    font-size: 11px;
    letter-spacing: 1.8px;
    margin-bottom: 16px;
    }

    .residences-title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.3;
    }

    .residences-description {
    font-size: 14px;
    line-height: 26px;
    }
}

/* =========================================================
    PRICING BANNER SECTION
    ========================================================= */
.pricing-banner-section {
    position: relative;
    width: 100%;
    background-image: url('../images/pricing-banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    height: 700px;
}

/* Inner Container */
.banner-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Dark Green Price Card */
.price-card {
    color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 10% 6%;
    text-align: start;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: 0;
    height: 90%;
}

.unit-type {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: start;
}

.price-amount {
  font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 500;
    color: var(--primary-green);
    line-height: 1;
    letter-spacing: 0px;
}

.price-tagline {
  font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 500;
    color: var(--primary-green);
    line-height: 1.1;
    margin-bottom: 14px;
}

.unit-size {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 24px;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 25px 0;
}

.status-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 35px;
    letter-spacing: 0;
    text-align: center;
}

.btn-price-sheet {
    display: block;
    background-color: var(--primary-green);
    color: var(--green-text);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.btn-price-sheet:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
}

/* Mobile Responsive View */
@media (max-width: 992px) {
    .pricing-banner-section{height: 280px;}
    .banner-container {
    padding: 24px 16px;
    justify-content: center;
    }

    .price-card {
    max-width: 40%;
    padding: 12% 10px;
    right: 10%;
    }
    .unit-type{font-size: 10px; margin-bottom: 5px;}
    .price-amount {
    font-size: 25px;
    }

    .price-tagline {
    font-size: 20px;
    }
    .unit-size{font-size: 9px; margin-bottom: 5px;}
    .status-text{font-size: 7px; margin-bottom: 5px;}
    .divider{margin: 15px;}
    .btn-price-sheet{padding: 3px 10px; font-size: 6px; width: 60%;}
}

/* =========================================================
    AMENITIES SECTION
    ========================================================= */
.amenities-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.amenities-title {
    font-size: 35px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--green-text);
    margin-bottom: 32px;
    letter-spacing: 0;
}

.tab-toggle-container {
    display: inline-flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 50px;
}

.tab-btn {
    border: none;
    background: transparent;
    padding: 10px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    color: var(--green-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn.active {
    background-color: var(--primary-green);
    color: #1a2e05;
    box-shadow: 0 4px 12px rgba(178, 210, 53, 0.3);
}


.amenities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.amenities-grid.fade-out {
    opacity: 0;
}

/* Card Wrapper (Provides moving border effect) */
.card-wrapper {
    position: relative;
    border-radius: 16px;
    padding: 1.5px; /* Border thickness */
    background-size: 200% 200%;
    animation: movingBorder 4s ease infinite;
    overflow: hidden;
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Precision gradient border setup */
  border: 1px solid transparent;
  background-image: 
    linear-gradient(var(--text-white), var(--text-white)), 
    linear-gradient(90deg, var(--border-color) 0%, rgba(109, 131, 116, 0.15) 80%, transparent 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

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

.card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 56, 48, 0.15);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--green-text) 100%);
    background-size: 200% 200%;
}

/* Inner Card Content */
.amenity-card {
    border-radius: 15px;
    padding: 36px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 170px;
    cursor: pointer;
    transition: background-color 0.35s ease, color 0.35s ease;
}

/* Circular Icon Holder */
.icon-box {
    width: 87px;
    height: 87px;
    border-radius: 50%;
    background-color: #f1f7f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--green-text);
    font-size: 22px;
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.icon-box img{width: 45px;}
.amenity-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.35s ease;
}

.card-wrapper:hover .amenity-card,
.card-wrapper.active-dark .amenity-card {
    background-color: var(--green-text);
}

.card-wrapper:hover .icon-box,
.card-wrapper.active-dark .icon-box {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-lime);
    transform: scale(1.08);
}

.card-wrapper:hover .amenity-name,
.card-wrapper.active-dark .amenity-name {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    }
}

@media (max-width: 768px) {
    .amenities-section {
    padding: 50px 16px;
    }

    .amenities-title {
    font-size: 25px;
    }

    .tab-btn {
    padding: 10px 24px;
    font-size: 11px;
    }
    .amenity-wrapper{
        max-height: 500px; /* Adjust to your container height */
        overflow-y: auto;
        padding-right: 12px;
        /* Modern Standard Syntax */
        scrollbar-width: thin;
        scrollbar-color: #0b3d2c #e8ede9;
    }
    .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    }

    .amenity-card {
    padding: 24px 10px;
    min-height: 140px;
    }

    .icon-box {
    width: 50px;
    height: 50px;
    font-size: 18px;
    margin-bottom: 12px;
    }

    .amenity-name {
    font-size: 12px;
    }
}

/* =========================================================
    PROMO BANNER SECTION
    ========================================================= */
.promo-banner {
  width: 100%;
  padding: 50px 0 80px 10%;
}

.promo-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 10%;
  align-items: center;
}

/* Left Column Styling */
.promo-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.promo-subtitle {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 300;
  color: var(--green-text);
  margin-bottom: 16px;
  letter-spacing: 0;
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 33px;
  line-height: 50px;
  font-weight: 500;
  color: var(--green-text); /* Deep forest green */
  margin-bottom: 20px;
}

.promo-description {
  font-size: 14px;
  line-height: 33px;
  color: #657673;
  margin-bottom: 40px;
  max-width: 640px;
  font-weight: 400;
}

/* CTA Button */
.promo-btn {
  display: inline-block;
  background-color: var(--primary-green); /* Accent lime green */
  color: var(--green-text);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.promo-btn:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-1px);
}

/* Right Column & Image Layout */
.promo-media-col {
  position: relative;
  width: 100%;
}

.project-overview .image-container {
  position: relative;
  width: 600px;
  height: 630px;
  border-radius: 2px;
  overflow: visible;
}

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

/* Overlapping Price Badge */
.promo-price-card {
  position: absolute;
  bottom: 0;
  left: -20%; /* Overlaps into the left gutter */
  padding: 32px 28px;
  min-width: 230px;
  height: 245px;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  align-content: center;
}

.price-tag {
  display: block;
  color: var(--text-white);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.price-value {
  font-family: var(--font-heading);
  color: var(--primary-green);
  font-size: 55px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0;
}

.price-sub {
  display: block;
  color: var(--text-white);
  font-size: 30px;
  font-weight: 500;
  font-family: var(--font-heading);
}

/* Responsive Behavior */
@media (max-width: 768px) {
  .promo-banner{padding: 25px 0 25px 20px;}
  .promo-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .promo-text-col{padding-right: 20px;}
  .promo-title { font-size: 20px; line-height: 30px;}
  .promo-description{line-height: 25px;}

  .project-overview .image-container { width: 100%; height: 360px; }
  .price-value{font-size: 44px;}
  .promo-price-card{right: 0; left: 30%;}
  .promo-btn{width: 100%; text-align: center;}
}

/* =========================================================
    GALLERY SECTION
    ========================================================= */
.gallery-section {
  background: #ffffff;
  padding: 80px 0 50px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: var(--green-text);
  line-height: 33px;
}

.gallery-title {
  font-family: var(--font-heading);
  color: var(--green-text);
  font-size: 35px;
  font-weight: 500;
  line-height: 50px;
  margin: 0 0 36px;
}

.gallery-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  background: #ffffff;
  border: 1px solid rgba(13, 56, 48, 0.2);
  border-radius: 999px;
  padding: 4px;
  margin: 50px auto;
  gap: 4px;
}

.gallery-tabs .nav-item {
  margin: 0;
  list-style: none;
}

.gallery-tabs .nav-link {
  border: 0;
  border-radius: 999px;
  color: var(--green-text);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  line-height: 36px;
  text-transform: uppercase;
}

.gallery-tabs .nav-link.active {
  background: var(--primary-green);
}

.gallery-copy {
  margin: 0 auto;
  color: #657673;
  font-size: 17px;
  line-height: 33px;
  font-weight: 400;
  max-width: 1100px;
}

.gallery-tab-content {
  margin: 0 auto;
  font-size: 14px;
}
/* Fix tab visibility behavior */
.gallery-tab-content .tab-pane {
  display: none !important;
}

.gallery-tab-content .tab-pane.active,
.gallery-tab-content .tab-pane.show.active {
  display: block !important;
}
.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: rgba(0, 0, 0, 0.35);
  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;
  cursor: pointer;
}

.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;
}

/* .gallery-thumbs .thumb-btn.active, */
.thumb-btn:hover {
  opacity: 1;
  outline: 3px solid var(--green-text);
  outline-offset: -3px;
}
.specifications-content a{color: var(--green-text);}
.spec-section h5{font-size: 16px;}
.gallery-copy-wrapper{display: none;}
@media (max-width: 767px) {
  .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; }
}
/* Tablet */
@media (max-width: 991px) {
  .gallery-section { padding: 48px 0 54px; }
  .gallery-title { font-size: 30px; }
  .gallery-copy { font-size: 13px; padding: 0 8px; }
  .gallery-carousel .carousel-item img { height: 390px;}
  .thumb-btn { width: 125px; height: 64px;}
}

/* Mobile */
@media (max-width: 575px) {
  .gallery-section {
    padding: 0 0 40px;
  }
  .gallery-title {
    font-size: 25px;
    margin-bottom: 18px;
  }
  .gallery-tabs {
    border: none;
    justify-content: center;
    padding: 0;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  p{font-size: 14px !important;}
  .gallery-tabs .nav-link {
    font-size: 10px;
    padding: 9px 14px;
    line-height: 1;
    margin: 0 auto;
  }
  .gallery-copy{display: none;}
  .gallery-copy-wrapper {
    display: block;
    margin: 0 auto 28px;
    }

    .mobile-gallery-copy {
        color: #657673;
        font-size: 12px;
        line-height: 26px;
        margin-bottom: 22px;
        text-align: justify;
    }

    /* Style for the trigger link */
    .copy-read-more-btn {
        color: var(--green-text);
        font-weight: 600;
        font-size: 15px;
        text-decoration: underline;
        cursor: pointer;
        display: flex;
        margin-top: 6px;
        transition: color 0.2s ease;
    }


  .specifications-content{font-size: 12px;}
  .gallery-carousel .carousel-item img {
    height: 260px;
  }
  .gallery-arrow { width: 38px;}
  .gallery-arrow .carousel-control-prev-icon,
  .gallery-arrow .carousel-control-next-icon {
    width: 26px;
    height: 26px;
    background-size: 12px;
  }

  .thumb-btn {
    width: 92px;
    height: 52px;
  }
}

/* =========================================================
    LOCATION SECTION
    ========================================================= */
/* Layout Resets */
.location-section {
  width: 100%;
  padding: 80px 0 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Column */
.location-title {
  font-size: 35px;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--green-text); /* Dark Forest Green */
  margin-bottom: 35px;
}

.location-desc {
  font-size: 16px;
  line-height: 33px;
  color: #727d77;
  margin-bottom: 40px;
  max-width: 520px;
}

.map-card {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.google-map {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Right Column (Accordion) */
.accordion-list {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid #e2e7e4;
}

.accordion-header {
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.2s ease;
}

.accordion-header:hover {
  color: #1a5341;
}

.chevron {
  width: 18px;
  height: 18px;
  stroke: var(--green-text);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.3s ease;
}

.accordion-content p {
  font-size: 16px;
  line-height: 26px;
  color: #657673;
  padding-bottom: 20px;
  margin: 0;
}
.accordion-list {margin-bottom: 20px;}
/* Active Accordion State */
.accordion-item.active .chevron {
  transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
  max-height: 350px; /* Adjust according to max potential text size */
}

/* CTA Button */
.cta-wrapper {
  margin-top: 36px;
}

.enquire-btn {
  display: inline-block;
  background-color: var(--primary-green); /* Accent Lime Green */
  color: var(--green-text);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0;
  line-height: 35px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.enquire-btn:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-1px);
}
.mobile-map-card{display: none;}

/* Responsive Styles */
@media (max-width: 768px) {
    .location-section{padding: 25px 20px;}
  .location-container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .map-card{display: none;}
  .mobile-map-card{height: 250px; display: block;}

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

  .location-desc {
    font-size: 14px; line-height: 26px;
  }
  .accordion-header {padding: 10px 0; font-size: 15px;}
  .faq-accordion .accordion-button {padding: 0 10px !important; font-size: 15px !important;}
  .enquire-btn{width: 100%; text-align: center; line-height:1;}
}

/* =========================================================
    DSR OVERVIEW SECTION
    ========================================================= */
/* Container & Background */
.dsr-overview-section {
  position: relative;
  background-color: #0b3325; /* Deep Forest Green */
  padding: 90px 0;
  overflow: hidden;
  color: #ffffff;
}

.dsr-overview-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Leaves Positioning */
.leaf-img {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.leaf-top-left {
  top: 0;
  left: 0;
  max-width: 240px;
  transform: rotate(-180deg);
}

.leaf-bottom-right {
  bottom: 0;
  right: 0;
  max-width: 320px;
}

/* Background Pattern */
.contour-pattern {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 350px;
  height: 450px;
  pointer-events: none;
  z-index: 1;
}

.contour-pattern svg {
  width: 100%;
  height: 100%;
}
.contour-pattern-bottom {
  position: absolute;
  bottom: -15%;
  left: 15%;
  width: 350px;
  height: 450px;
  pointer-events: none;
  z-index: 1;
}
.contour-pattern-bottom svg {
  width: 100%;
  height: 100%;
}
/* Left Logo Styling */
.overview-logo-col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
}

.dsr-logo-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

/* Right Text Content */
.overview-title {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 35px;
  letter-spacing: 0;
}

.overview-text p {
  font-size: 17px;
  line-height: 33px;
  color: #B4C0BE; /* Muted Soft Greenish-Gray */
  margin-bottom: 22px;
  font-weight: 400;
}

.overview-text p:last-child {
  margin-bottom: 0;
}

/* Responsive Breakdown */
@media (max-width: 768px) {
    .dsr-overview-section{padding: 60px 20px; ;}
  .dsr-overview-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-logo-col {
    padding-left: 0;
    justify-content: flex-start;
  }
  .logo-box {margin: 0 auto}
  .leaf-top-left {
    max-width: 160px;
  }

  .leaf-bottom-right {
    max-width: 220px;
  }

  .overview-title {
    font-size: 26px;
  }

  .overview-text p {
    font-size: 14px;
    line-height: 25px;
  }

  .leaf-top-left {
    max-width: 120px;
  }

  .leaf-bottom-right {
    max-width: 160px;
  }
}

/* =========================================================
    REVIEW SECTION
    ========================================================= */
.reviews-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 50px;
}
/* --- Carousel Container Framework --- */
.review-carousel-container {
    width: 100%;
    overflow-x: auto; /* Enables native responsive touch swiping on mobile */
    scroll-behavior: smooth;
    scrollbar-width: none; /* Hides horizontal default scrollbar in Firefox */
    -webkit-overflow-scrolling: touch;
}

.review-carousel-container::-webkit-scrollbar {
    display: none; /* Hides horizontal default scrollbar in Chrome/Safari */
}

.review-carousel-track {
    display: flex;
    gap: 24px;
    padding: 10px 0;
}

.review-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}
.dot.active {
    background-color: #333; /* Darker/active color */
}
/* --- Individual Review Card Configuration --- */
.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    
    /* Configures layout math: 3 cards showing together with gaps accountancy */
    flex: 0 0 calc((100% - (24px * 2)) / 3); 
    width: calc((100% - (24px * 2)) / 3);
}

/* Card Body (Light Grey Layout) */
.card-body {
    background-color: #F5F7F7;
    padding: 35px 30px;
    flex-grow: 1;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.stars {
    color: var(--green-text);
    font-size: 1.25rem;
    letter-spacing: 2px;
}
.review-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 400;
}

/* Card Footer (Earthy Brown Layout) */
.card-footer {
    background-color: #F5F7F7;
    padding:0 30px 40px;
}

.reviewer-name {
    color: var(--green-text);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.reviewer-title {
    color: var(--green-text);
    font-size: 14px;
    font-weight: 400;
}

/* --- Navigation Indicator Dots --- */
.review-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cccccc;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--green-text); /* Active dot matches footer styling theme */
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
      }
}

@media (max-width: 650px) {
    .review-card { flex: 0 0 100%; width: 100%; padding: 0 20px;}
    .card-body { padding: 25px 20px; }
    .card-footer { padding: 20px;}
}

/* =========================================================
    EXPLORE SECTION
    ========================================================= */
/* Container Base Styles */
.explore-section {
  position: relative;
  background-color: #0b3325; /* Match design deep dark green */
  padding: 80px 0 50px;
  overflow: hidden;
  color: #ffffff;
}

.explore-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Typography & Left Content */
.explore-title {
  font-family: var(--font-heading);
  font-size: 35px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 0;
}

.explore-sub {
  font-size: 17px;
  color: #869492;
  font-weight: 400;
  line-height: 33px;
  margin-bottom: 32px;
  max-width: 400px;
}

/* Phone Display */
.phone-wrapper {
  display: flex;
  align-items: center;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.phone-icon-box {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon-box svg {
  width: 20px;
  height: 20px;
}

.phone-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-green); /* Bright Accent Lime */
  letter-spacing: 0.5px;
}

/* Form Layout */
.explore-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.explore-section .form-group {
  display: flex;
  flex-direction: column;
}

.explore-section .form-group label {
  font-family: var(--font-heading);
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 400;
}

.explore-section .form-group input {
  font-family: var(--font-heading);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 13px 22px;
  color: #ffffff;
  font-size: 13px;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.explore-section .form-group input::placeholder {
  color: #AAC9C3;
}

.explore-section .form-group input:focus {
  border-color: var(--primary-green);
  background-color: rgba(255, 255, 255, 0.06);
}

.form-submit-wrapper {
  grid-column: span 2;
  margin-top: 10px;
}

.submit-btn {
  background-color: var(--primary-green);
  color: var(--green-text);
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 42px;
  border-radius: 30px;
  cursor: pointer;
  letter-spacing: 0;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
  background-color: var(--primary-green-hover);
  transform: translateY(-2px);
}

/* ===================================================
   ANIMATION & VECTOR STYLES
   =================================================== */

/* Contour Vector Rings Background */
.contour-vector {
  position: absolute;
  width: 550px;
  height: 550px;
  pointer-events: none;
  z-index: 1;
}

.contour-left {
  bottom: -150px;
  left: -120px;
  animation: pulseRings 8s ease-in-out infinite alternate;
}

.contour-right {
  bottom: -150px;
  right: -120px;
  animation: pulseRings 10s ease-in-out infinite alternate-reverse;
}

.contour-vector svg {
  width: 100%;
  height: 100%;
}

@keyframes pulseRings {
  0% {
    transform: scale(0.96);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Floating Cross & Plus Icons */
.vector-icon {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.icon-cross {
  width: 22px;
  height: 22px;
  top: 52%;
  left: 40%;
  animation: floatAndRotate 6s ease-in-out infinite;
}

.icon-plus {
  width: 26px;
  height: 26px;
  bottom: 12%;
  right: 17%;
  animation: floatAndRotate 8s ease-in-out infinite reverse;
}

@keyframes floatAndRotate {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(15deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* Leaf Position & Breezy Sway Animations */
.leaf-element {
  position: absolute;
  bottom: 0;
  pointer-events: none;
  z-index: 4;
  transform-origin: bottom center;
}

.leaf-left {
  left: 0;
  max-width: 260px;
  animation: leafSwayLeft 7s ease-in-out infinite alternate;

}

.leaf-right {
  right: 0;
  max-width: 220px;
  animation: leafSwayRight 6s ease-in-out infinite alternate;
}

@keyframes leafSwayLeft {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(3deg) scale(1.02);
  }
}

@keyframes leafSwayRight {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(-3deg) scale(1.03);
  }
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .explore-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .icon-cross {
    top: 38%;
    left: 80%;
  }

  .leaf-left, .leaf-right {
    max-width: 160px;
  }

  .explore-section {
    padding: 60px 20px;
  }

  .explore-title {
    font-size: 28px;
  }

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

  .form-submit-wrapper {
    grid-column: span 1;
  }

  .phone-number {
    font-size: 20px;
  }
  .submit-btn{width: 100%; text-align: center;}
}

/* =========================================================
    FAQ SECTION
    ========================================================= */
.faq-section{padding:80px 0 50px;background:#fff}
.faq-title{text-align:center;font-size:35px;font-weight:500;margin-bottom:24px; color: var(--green-text); font-family: var(--font-heading);}
.faq-accordion .accordion-button{font-size:16px;line-height:1.45;align-items:flex-start}
.faq-accordion .accordion-item{
  border:0;
  border-bottom:1px solid #e9e9e9;
  border-radius:0;
}
.faq-accordion .accordion-button{
  box-shadow:none;
  background:#fff !important;
  color:var(--text-dark);
  font-size:16px;
  font-weight:400;
  padding:18px 22px;
  border-radius:999px!important;
  margin:6px 0;
}
.faq-accordion .accordion-button:not(.collapsed){background:#f8f8f8;color:#111}
.accordion-body,.faq-accordion .accordion-body{font-size:14px;color:#606267;padding:0 22px 18px;line-height:1.7}
@media (max-width: 768px) {
    .faq-title {font-size: 25px; margin-bottom: 0;} 
    .faq-accordion .accordion-body {font-size: 14px;}
}

/* =========================================================
    FOOTER SECTION
    ========================================================= */
/* Base Footer Setup */
.dsr-footer {
  position: relative;
  background-color: #001713; /* Dark forest green background */
  color: var(--text-white);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1.15fr 0.8fr;
  gap: 50px;
  position: relative;
  z-index: 5;
  padding-bottom: 60px;
}

/* Logo Block */
.footer-logo {
  max-width: 1200px;
  margin: 0 auto 35px;
}

.footer-logo img{
  width: 180px;
  height: auto;
  display: block;
}

/* Headings */
.col-title {
  color: var(--primary-green); /* Bright Lime Accent */
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.social-col .col-title {
  text-transform: none;
  font-size: 17px;
}

/* Text & Address Formatting */
.address-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-white);
  margin-bottom: 20px;
  max-width: 360px;
}

.contact-info p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-white);
  margin: 0 0 4px;
}

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

.contact-info a:hover {
  color: var(--primary-green-hover);
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.25s ease, color 0.3s ease;
}

.social-btn svg {
  width: 16px;
  height: 16px;
}

.social-btn:hover {
  background-color: var(--primary-green-hover);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.46);
  margin: 0;
}


/* Right Radial Contour Circles */
.footer-contour-right {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 1;
  animation: pulseContour 10s ease-in-out infinite alternate;
}

.footer-contour-right svg {
  width: 100%;
  height: 100%;
}

@keyframes pulseContour {
  0% {
    transform: scale(0.96);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.04);
    opacity: 1;
  }
}

/* Floating Plus & Cross Accent Icons */
.vector-accent {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.vector-cross {
  width: 22px;
  height: 22px;
  right: 14%;
  top: 35%;
  animation: floatCross 7s ease-in-out infinite alternate;
}

.vector-plus {
  width: 26px;
  height: 26px;
  right: 32%;
  bottom: 22%;
  animation: floatPlus 8s ease-in-out infinite alternate-reverse;
}

@keyframes floatCross {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-10px) rotate(18deg) scale(1.05);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

@keyframes floatPlus {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-14px) rotate(-15deg) scale(1.1);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .social-col {
    grid-column: span 2;
  }

  .vector-plus {
    right: 10%;
    bottom: 35%;
  }

  .dsr-footer {
    padding: 50px 20px 10%;
  }

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

  .social-col {
    grid-column: span 1;
  }

  .address-text {
    max-width: 100%;
  }
}

/* ==========================================================================
      Floating Action Buttons  
========================================================================== */
/* ==================== FLOATING CONTACT BUTTONS ==================== */
.floating-actions {
    position: fixed;
    bottom: 20%;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.float-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background-color: #25d366;
    font-size: 28px;
}

.float-btn.call {
    background-color: var(--primary-green);
    color: #fff;
}

.floating-actions-wrapper {
    position: fixed;
    bottom: 50%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}
.sticky-enquiry-btn {
    font-family: var(--font-body) !important;
    background-color: #000;
    color: #ffffff;
    border: none;
    padding: 12px 6px;
    border-radius: 0px 12px 12px 0px;
    font-weight: 400;
    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;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 16px;
    text-decoration: none;
}

.sticky-enquiry-btn:hover{background-color: var(--green-text);}
.float-whatsapp { background-color: #25D366; }
.float-phone img{width: 50px; }
.float-whatsapp i{font-size: 35px;}
.phone-sticky-btn{display: none;}
.whatsapp-sticky-btn{ display: none;}
.fa-calendar::before{ display: none;}
@media (max-width: 768px) {
  .floating-actions{display: none;}

  .floating-actions-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    background-color: var(--text-dark);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #313234;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px)) 0;
    z-index: 99999;
    height: 60px;
    gap: 5px;
  }
  .floating-actions-wrapper .sticky-enquiry-btn {
      writing-mode: horizontal-tb !important;
      transform: rotate(0deg) !important;
  }
  .floating-actions-wrapper > a:not(:last-child), .floating-actions-wrapper > button:not(:last-child) {
    border-right: 1px solid #313234 !important;
  }
  .floating-actions-wrapper > a, .floating-actions-wrapper > button {
    flex: 1;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #4a5568 !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: none;
    font-weight: 600;
    white-space: nowrap;
  }
  .floating-actions-wrapper .phone-sticky-btn i {
     color: var(--text-white);
  }
  .floating-actions-wrapper .sticky-enquiry-btn i {
     color: var(--text-white);
  }
  .floating-actions-wrapper .whatsapp-sticky-btn i {
     color: var(--text-white);
     font-size: 20px;
  }
  .floating-actions-wrapper i {
    font-size: 16px;
    margin-bottom: 3px;
    display: inline-block;
  }
  .floating-actions-wrapper .btn-label{color: var(--text-white); font-size: 14px;}
  .whatsapp-sticky-btn{display: block;}
  .phone-sticky-btn{ display: block;}
  .fa-calendar::before{ display: block;}
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 450px;
  position: relative;
  gap: 20px;
}
.modal-content h3{color: var(--green-text);}
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-dark);
}
.btn-submit:disabled {
  background-color: var(--primary-green) !important;
  border-color: var(--primary-green) !important;
  cursor: not-allowed !important;
  opacity: 0.75;
}
@media (min-width: 1900px) {
  .price-card {padding: 7% 4%;}
  .spec-item{width: 60%;}
  .contour-pattern-bottom {left: 5%;}
}