﻿*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --primary-green: #1f4d3a;
  --light-green: #eef5f1;
  --accent-green: #2e7d5b;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
  --soft-beige: #f6f0e6;
  --soft-mint: #dae9e0;
  --soft-cream: #faf7f1;
  --soft-sage: #f2f7f3;
  --card-border: #e5ece7;
  --shadow-soft: 0 10px 30px rgba(31, 45, 37, 0.06);
  --shadow-hover: 0 18px 40px rgba(31, 45, 37, 0.12);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #ffffff;
  color: var(--text-dark);
}

/* =========================
NAVBAR
========================= */
.eco-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  width: 100%;
  /* padding: 14px 0; */
  background: rgba(15, 46, 35, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* CONTAINER */
.eco-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* LEFT LOGO */
.eco-navbar-left-logo {
  display: flex;
  align-items: center;
  z-index: 5;
}

.eco-navbar-logo {
  /* height: 52px; */
  width: auto;
  object-fit: contain;
  display: block;
}

/* CENTER MENU */
.eco-navbar-collapse {
  flex-grow: 0;
}

.eco-navbar-links {
  gap: 10px;
}

.eco-navbar-links .nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 16px;
  transition: all 0.3s ease;
}

.eco-navbar-links .nav-link:hover,
.eco-navbar-links .nav-link:focus {
  color: #ffffff;
}

/* RIGHT LOGO */
.eco-navbar-right-logo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
}

.eco-navbar-right-logo img {
  /* height: 48px; */
  width: auto;
  object-fit: contain;
}

/* TOGGLER */
.eco-navbar-toggler {
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none !important;
  padding: 6px 10px;
}

.eco-navbar .navbar-toggler-icon {
  filter: invert(1);
}

.eco-navbar-toggler:focus {
  box-shadow: none;
}

/* =========================
DESKTOP
========================= */

@media (min-width: 992px) {

  .eco-navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }

  .eco-navbar-left-logo {
    justify-self: start;
  }

  .navbar-collapse {
    justify-self: center;
  }

  .eco-navbar-right-logo {
    justify-self: end;
  }

}

/* =========================
MOBILE
========================= */

@media (max-width: 991.98px) {

  .eco-navbar {
    padding: 10px 0;
  }

  .eco-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .eco-navbar-logo {
    height: 42px;
  }

  .eco-navbar-right-logo {
    display: none !important;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #143427;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .eco-navbar-links {
    gap: 0;
    align-items: flex-start !important;
  }

  .eco-navbar-links .nav-link {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .eco-mobile-right-logo {
    margin-top: 20px;
  }

  .eco-mobile-right-logo img {
    height: 42px;
    width: auto;
  }

}

/* =========================
HERO SECTION
========================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* SLIDER */

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* CONTENT */

.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-row {
  min-height: 100vh;
  padding: 100px 0 60px;
}

/* LEFT CONTENT */

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: 34px;
}

/* HIGHLIGHTS */

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-highlight-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 12px 18px;
}

.hero-highlight-item span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* FORM */

.hero-form-box {
  background: rgba(255,255,255,0.98);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.20);
}

.form-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111827;
}

.form-subtext {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

.form-control,
.form-select {
  height: 54px;
  border-radius: 12px;
  border: 1px solid #dbe5de;
  box-shadow: none;
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: #aac4b5;
  box-shadow: 0 0 0 0.18rem rgba(46,125,91,0.10);
}

/* BUTTON */

.btn-eco {
  height: 54px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(180deg, #255842 0%, #1f4d3a 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-eco:hover {
  transform: translateY(-1px);
  color: #ffffff;
}

/* TRUST */

.trust-text {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  color: #6b7280;
}

.phone-link {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
}

/* =========================
MOBILE
========================= */

@media (max-width: 991.98px) {

  .hero-section {
    min-height: auto;
  }

  .hero-row {
    min-height: auto;
    padding: 120px 0 50px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-highlights {
    gap: 10px;
    margin-bottom: 30px;
  }

  .hero-highlight-item {
    padding: 10px 14px;
  }

  .hero-highlight-item span {
    font-size: 13px;
  }

  .hero-form-box {
    margin-top: 10px;
    padding: 22px;
  }

  .form-heading {
    font-size: 24px;
  }

}
@media (max-width: 767.98px) {

  .hero-row {
    padding-top: 110px;
    padding-bottom: 40px;
  }

}

/* =========================
PROJECT FACTS SECTION
========================= */

.project-facts-section {
  position: relative;
  margin-top: -70px;
  z-index: 5;
  padding-bottom: 80px;
}

/* CARD */

.fact-card {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7faf8 100%
  );

  border-radius: 22px;

  padding: 30px 22px;

  height: 100%;

  text-align: center;

  border: 1px solid rgba(201, 169, 97, 0.18);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.10);

  transition: all 0.35s ease;

  position: relative;
  overflow: hidden;
}

/* TOP GOLD LINE */

.fact-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(
    90deg,
    #0f5132,
    #c9a961,
    #e6c87f
  );
}

/* HOVER */

.fact-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 20px 45px rgba(0,0,0,0.14);
}

.fact-card:hover .fact-icon {
  transform: scale(1.06);

  background: linear-gradient(
    135deg,
    #144d35 0%,
    #246b49 100%
  );
}

/* ICON */

.fact-icon {
  width: 72px;
  height: 72px;

  margin: 0 auto 20px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #0f5132 0%,
    #1f7a4d 100%
  );

  border: 2px solid rgba(201, 169, 97, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 24px rgba(15, 81, 50, 0.25);

  transition: all 0.3s ease;
}

/* ICON STYLE */

.fact-icon i {
  font-size: 28px;

  color: #e6c87f;

  line-height: 1;
}

/* NUMBER */

.fact-number {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;

  color: #0f5132;

  margin-bottom: 10px;
}

/* LABEL */

.fact-label {
  font-size: 14px;
  line-height: 1.7;

  color: #5f6b63;

  margin: 0;
}

/* =========================
TABLET
========================= */

@media (max-width: 991.98px) {

  .project-facts-section {
    margin-top: -40px;
    padding-bottom: 60px;
  }

  .fact-card {
    padding: 24px 18px;
  }

  .fact-number {
    font-size: 20px;
  }

}

/* =========================
MOBILE
========================= */

@media (max-width: 767.98px) {

  .project-facts-section {
    margin-top: -20px;
    padding-bottom: 50px;
  }

  .fact-card {
    border-radius: 18px;
    padding: 20px 16px;
  }

  .fact-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
  }

  .fact-icon i {
    font-size: 22px;
  }

  .fact-number {
    font-size: 18px;
  }

  .fact-label {
    font-size: 13px;
    line-height: 1.5;
  }

}
/* =========================
LOCATION SECTION
========================= */

.location-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;

  background-image:
    linear-gradient(rgba(7,18,12,0.88), rgba(7,18,12,0.88)),
    url('../img/location-bg.webp');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.location-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(3px);
}

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

.location-header {
  margin-bottom: 60px;
}

.location-top-tag {
  display: inline-flex;
  align-items: center;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(201,169,97,0.14);

  border: 1px solid rgba(230,200,127,0.24);

  color: #f0d48b;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 20px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);

  max-width: 760px;
  margin: 0 auto;
}

/* =========================
COMMON CARD HEIGHT
========================= */

.location-dark-card,
.location-main-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* =========================
LEFT CARD
========================= */

.location-dark-card {

  border-radius: 28px;

  padding: 38px;

  background:
    linear-gradient(
      180deg,
      rgba(22,63,45,0.98) 0%,
      rgba(13,37,26,0.98) 100%
    );

  border: 1px solid rgba(230,200,127,0.12);

  box-shadow:
    0 25px 70px rgba(0,0,0,0.30);
}

.location-badge {

  display: inline-flex;
  align-items: center;

  width: fit-content;

  padding: 9px 16px;

  border-radius: 999px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(230,200,127,0.18);

  color: #f0d48b;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 24px;
}

.location-heading {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;

  margin-bottom: 18px;
}

.location-content {
  font-size: 15px;
  line-height: 1.9;

  color: rgba(255,255,255,0.78);

  margin-bottom: 30px;
}

/* =========================
LOCATION ADVANTAGE POINTS
========================= */

.location-h3-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-h3-list h3 {

  display: flex;
  align-items: flex-start;

  gap: 14px;

  margin: 0;

  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;

  color: #ffffff;
}

.location-h3-list i {

  color: #e6c87f;

  font-size: 15px;

  margin-top: 5px;

  flex-shrink: 0;
}

/* =========================
RIGHT CARD
========================= */

.location-main-card {

  background: #ffffff;

  border-radius: 28px;

  padding: 34px;

  box-shadow:
    0 25px 70px rgba(0,0,0,0.16);
}

/* =========================
FEATURE BOX
========================= */

.location-feature-box {

  background:
    linear-gradient(
      180deg,
      #fbfcfb 0%,
      #f5f8f6 100%
    );

  border: 1px solid #e4ece6;

  border-radius: 22px;

  padding: 26px;

  height: 100%;
}

.location-feature-box h4 {

  font-size: 19px;

  font-weight: 800;

  color: #0f5132;

  margin-bottom: 22px;
}

/* =========================
LIST
========================= */

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-list li {

  display: flex;
  align-items: flex-start;

  gap: 14px;

  margin-bottom: 18px;
}

.location-list li:last-child {
  margin-bottom: 0;
}

.location-list li i {

  width: 34px;
  height: 34px;

  min-width: 34px;

  border-radius: 50%;

  background: rgba(15,81,50,0.08);

  color: #c9a961;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;

  margin-top: 2px;
}

.location-list h5 {

  font-size: 14px;

  line-height: 1.7;

  font-weight: 600;

  color: #1f2937;

  margin: 0;
}

/* =========================
CTA
========================= */

.location-cta-row {

  display: flex;

  gap: 16px;

  flex-wrap: wrap;

  margin-top: auto;

  padding-top: 32px;
}

.location-secondary-btn {

  min-height: 54px;

  padding: 12px 24px;

  border-radius: 14px;

  border: 1px solid #d6e0d9;

  background: #ffffff;

  color: #0f5132;

  font-weight: 700;
}

.location-secondary-btn:hover {

  background: #f4f8f5;

  color: #0f5132;
}

/* =========================
TABLET
========================= */

@media (max-width: 991.98px) {

  .location-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .location-heading {
    font-size: 26px;
  }

  .location-dark-card,
  .location-main-card {
    padding: 28px;
  }

}

/* =========================
MOBILE
========================= */

@media (max-width: 767.98px) {

  .location-section {
    padding: 65px 0;
  }

  .location-header {
    margin-bottom: 40px;
  }

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

  .section-subtitle {
    font-size: 14px;
  }

  .location-dark-card,
  .location-main-card {

    padding: 22px;

    border-radius: 20px;
  }

  .location-heading {
    font-size: 24px;
  }

  .location-h3-list h3 {
    font-size: 14px;
  }

  .location-feature-box {
    padding: 20px;
    border-radius: 18px;
  }

  .location-feature-box h4 {
    font-size: 17px;
  }

  .location-list h5 {
    font-size: 13px;
  }

  .location-list li i {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 12px;
  }

  .location-cta-row {
    flex-direction: column;
  }

  .location-cta-row .btn {
    width: 100%;
  }

}

/* -------------------------
SECTION 4: PRODUCT
-------------------------- */

.product-section {
  padding: 68px 0;
  background: #ffffff;
}

/* HEADER */

.product-mini-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 10px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

/* ROW FIX */

.product-section .row {
  align-items: stretch;
}

/* CARD */

.product-card {

  height: 100%;

  display: flex;
  flex-direction: column;

  background: #fff;
  border-radius: 22px;
  overflow: hidden;

  border: 1px solid var(--card-border);

  box-shadow: var(--shadow-soft);

  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* IMAGE */

.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
}

/* CONTENT */

.product-content {

  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 22px;
  text-align: center;
}

.product-content h3 {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-green);
}

/* H4 */

.product-spec-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 12px;
}

.product-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* BUTTON */

.product-content .btn {
  margin-top: auto;
}

/* DESKTOP */

@media (min-width: 768px) {

  .product-section {
    padding: 88px 0;
  }

}

/* TABLET */

@media (max-width: 991.98px) {

  .product-img {
    height: 220px;
  }

}

/* MOBILE */

@media (max-width: 767.98px) {

  .product-section {
    padding: 60px 0;
  }

  .product-content {
    padding: 20px;
  }

  .product-content h3 {
    font-size: 18px;
  }

  .product-mini-title {
    font-size: 14px;
  }

  .product-img {
    height: 210px;
  }

}
/* =========================
INVESTMENT SECTION
========================= */

.investment-section {

  position: relative;

  padding: 100px 0;

  background:
    linear-gradient(
      180deg,
      #f7faf8 0%,
      #eef4f0 100%
    );

  overflow: hidden;
}

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

.investment-header {
  margin-bottom: 60px;
}

.investment-tag {

  display: inline-flex;
  align-items: center;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(201,169,97,0.12);

  border: 1px solid rgba(201,169,97,0.20);

  color: #b28a3c;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 18px;
}

.investment-main-title {

  font-size: 42px;

  font-weight: 800;

  line-height: 1.25;

  color: #0f5132;

  margin-bottom: 18px;
}

.investment-subtitle {

  max-width: 760px;

  margin: 0 auto;

  font-size: 16px;

  line-height: 1.8;

  color: #5f6b63;
}

/* =========================
CARD
========================= */

.investment-card {

  position: relative;

  height: 100%;

  border-radius: 26px;

  padding: 36px 30px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(247,250,248,0.96) 100%
    );

  border: 1px solid rgba(201,169,97,0.14);

  box-shadow:
    0 14px 40px rgba(0,0,0,0.08);

  transition: all 0.35s ease;

  overflow: hidden;
}

/* GOLD TOP BORDER */

.investment-card::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #0f5132,
      #c9a961,
      #e7cf8c
    );
}

/* HOVER */

.investment-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 24px 55px rgba(0,0,0,0.12);
}

.investment-card:hover .investment-icon {

  transform: scale(1.06);

  background:
    linear-gradient(
      135deg,
      #144d35 0%,
      #236b48 100%
    );
}

/* =========================
ICON
========================= */

.investment-icon {

  width: 74px;
  height: 74px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #0f5132 0%,
      #1f7a4d 100%
    );

  border: 2px solid rgba(201,169,97,0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 24px;

  box-shadow:
    0 12px 26px rgba(15,81,50,0.20);

  transition: all 0.3s ease;
}

.investment-icon i {

  font-size: 28px;

  color: #e6c87f;
}

/* =========================
TEXT
========================= */

.investment-card h3 {

  font-size: 22px;

  line-height: 1.45;

  font-weight: 800;

  color: #0f5132;

  margin-bottom: 18px;
}

.investment-card p {

  font-size: 14px;

  line-height: 1.9;

  color: #5f6b63;

  margin: 0;
}

/* =========================
TABLET
========================= */

@media (max-width: 991.98px) {

  .investment-section {
    padding: 80px 0;
  }

  .investment-main-title {
    font-size: 34px;
  }

}

/* =========================
MOBILE
========================= */

@media (max-width: 767.98px) {

  .investment-section {
    padding: 65px 0;
  }

  .investment-header {
    margin-bottom: 40px;
  }

  .investment-main-title {
    font-size: 28px;
  }

  .investment-subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  .investment-card {

    border-radius: 20px;

    padding: 28px 22px;
  }

  .investment-icon {

    width: 62px;
    height: 62px;

    margin-bottom: 20px;
  }

  .investment-icon i {
    font-size: 22px;
  }

  .investment-card h3 {
    font-size: 19px;
  }

  .investment-card p {
    font-size: 13px;
    line-height: 1.8;
  }

}
/* -------------------------
SECTION 5: PRICING
-------------------------- */
.pricing-section {
  padding: 68px 0;
  background: linear-gradient(135deg, #1f4d3a, #16382b);
  color: #ffffff;
}

.pricing-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-subtext {
  font-size: 14px;
  color: #d1d5db;
  margin-bottom: 25px;
  line-height: 1.5;
}

.pricing-image-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  /* box-shadow: 0 16px 34px rgba(0,0,0,0.18); */
}

.pricing-img {
  width: 100%;
  filter: blur(6px);
  transform: scale(1.05);
}

.pricing-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-overlay span {
  background: rgba(0,0,0,0.6);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
}

.btn-pricing {
  padding: 12px 24px;
}

.price-hint {
  margin-top: 10px;
  font-size: 13px;
  color: #d1d5db;
}

@media(min-width: 768px) {
  .pricing-section {
    padding: 96px 0;
  }

  .pricing-title {
    font-size: 32px;
  }

  .pricing-subtext {
    font-size: 15px;
  }
}

/* =========================
FLOOR PLANS SECTION
========================= */

.floorplans-section {
  padding: 90px 0;
  background: var(--soft-beige);
}

.floorplan-header {
  margin-bottom: 52px;
}

/* =========================
CARD
========================= */

.floorplan-card {
  position: relative;

  overflow: hidden;

  border-radius: 24px;

  min-height: 460px;

  box-shadow:
    0 18px 50px rgba(0,0,0,0.12);

  border: 1px solid rgba(255,255,255,0.10);
}

/* =========================
IMAGE
========================= */

.floorplan-blur-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(12px);
  transform: scale(1.08);
  transition: transform 0.5s ease;
}

.floorplan-card:hover .floorplan-blur-img {
  transform: scale(1.12);
}

/* =========================
OVERLAY
========================= */

.floorplan-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.55) 100%
    );
}

/* =========================
CONTENT
========================= */

.floorplan-content {
  position: absolute;

  inset: 0;

  z-index: 2;

  display: flex;

  flex-direction: column;

  justify-content: flex-end;

  padding: 34px;
}

/* BADGE */

.floorplan-badge {
  display: inline-flex;

  width: fit-content;

  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(255,255,255,0.14);

  backdrop-filter: blur(8px);

  color: #ffffff;

  font-size: 12px;

  font-weight: 700;

  margin-bottom: 18px;
}

/* TITLE */

.floorplan-content h3 {
  font-size: 30px;

  line-height: 1.3;

  font-weight: 800;

  color: #ffffff;

  margin-bottom: 14px;

  max-width: 420px;
}

/* SPECS */

.floorplan-specs {
  font-size: 14px;

  line-height: 1.7;

  color: rgba(255,255,255,0.86);

  margin-bottom: 28px;

  font-weight: 500;
}

/* BUTTON */

.floorplan-btn {
  width: fit-content;

  min-width: 240px;

  padding: 15px 24px;
}

/* =========================
TABLET
========================= */

@media (max-width: 991.98px) {

  .floorplans-section {
    padding: 75px 0;
  }

  .floorplan-card {
    min-height: 400px;
  }

  .floorplan-content {
    padding: 28px;
  }

  .floorplan-content h3 {
    font-size: 24px;
  }

}

/* =========================
MOBILE
========================= */

@media (max-width: 767.98px) {

  .floorplans-section {
    padding: 60px 0;
  }

  .floorplan-header {
    margin-bottom: 36px;
  }

  .floorplan-card {
    min-height: 340px;

    border-radius: 18px;
  }

  .floorplan-content {
    padding: 22px;
  }

  .floorplan-badge {
    font-size: 11px;

    padding: 7px 12px;

    margin-bottom: 14px;
  }

  .floorplan-content h3 {
    font-size: 20px;

    margin-bottom: 10px;
  }

  .floorplan-specs {
    font-size: 13px;

    margin-bottom: 20px;
  }

  .floorplan-btn {
    width: 100%;

    min-width: auto;
  }

}
/* -------------------------
SECTION 7: SOCIAL PROOF
-------------------------- */
.testimonial-section {
  padding: 68px 0;
  background: #ffffff;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: all 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 10px;
  font-size: 14px;
}

.testimonial-header h5 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.testimonial-header span {
  font-size: 12px;
  color: var(--text-light);
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 12px;
}

.stars {
  color: #fbbf24;
  font-size: 14px;
}

@media(min-width: 768px) {
  .testimonial-section {
    padding: 88px 0;
  }

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

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

.amenities-section {

  position: relative;

  padding: 100px 0;

  background:
    linear-gradient(
      180deg,
      #f8faf8 0%,
      #eef4f0 100%
    );

  overflow: hidden;
}

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

.amenities-header {
  margin-bottom: 60px;
}

.amenities-tag {

  display: inline-flex;
  align-items: center;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(201,169,97,0.12);

  border: 1px solid rgba(201,169,97,0.22);

  color: #b28a3c;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 18px;
}

.section-title {

  font-size: 42px;

  line-height: 1.25;

  font-weight: 800;

  color: #0f5132;

  margin-bottom: 18px;
}

.section-subtitle {

  max-width: 760px;

  margin: 0 auto;

  font-size: 16px;

  line-height: 1.8;

  color: #5f6b63;
}

/* =========================
AMENITY CARD
========================= */

.amenity-item {

  position: relative;

  height: 100%;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.96) 0%,
      rgba(248,250,248,0.96) 100%
    );

  border-radius: 24px;

  padding: 32px 18px;

  border: 1px solid rgba(201,169,97,0.14);

  box-shadow:
    0 14px 38px rgba(0,0,0,0.06);

  transition: all 0.35s ease;

  overflow: hidden;
}

/* GOLD TOP LINE */

.amenity-item::before {

  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #0f5132,
      #c9a961,
      #e6c87f
    );
}

/* HOVER */

.amenity-item:hover {

  transform: translateY(-8px);

  box-shadow:
    0 22px 48px rgba(0,0,0,0.10);
}

.amenity-item:hover .amenity-icon {

  transform: scale(1.08);

  background:
    linear-gradient(
      135deg,
      #144d35 0%,
      #236b48 100%
    );
}

/* =========================
ICON
========================= */

.amenity-icon {

  width: 72px;
  height: 72px;

  margin: 0 auto 20px;

  border-radius: 50%;

  background:
    linear-gradient(
      135deg,
      #0f5132 0%,
      #1f7a4d 100%
    );

  border: 2px solid rgba(201,169,97,0.34);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 12px 28px rgba(15,81,50,0.18);

  transition: all 0.3s ease;
}

.amenity-icon i {

  font-size: 28px;

  color: #e6c87f;
}

/* =========================
TEXT
========================= */

.amenity-item p {

  margin: 0;

  font-size: 15px;

  font-weight: 700;

  color: #1f2937;

  line-height: 1.6;
}

/* =========================
TABLET
========================= */

@media (max-width: 991.98px) {

  .amenities-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 34px;
  }

}

/* =========================
MOBILE
========================= */

@media (max-width: 767.98px) {

  .amenities-section {
    padding: 65px 0;
  }

  .amenities-header {
    margin-bottom: 40px;
  }

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

  .section-subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  .amenity-item {

    border-radius: 20px;

    padding: 26px 16px;
  }

  .amenity-icon {

    width: 60px;
    height: 60px;

    margin-bottom: 16px;
  }

  .amenity-icon i {
    font-size: 22px;
  }

  .amenity-item p {
    font-size: 13px;
  }

}
/* -------------------------
SECTION 9: FAQ
-------------------------- */
.faq-section {
  padding: 68px 0;
  /* background: var(--soft-cream); */
}

.accordion-item {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.accordion-button {
  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  background: #f9fbfa;
}

.accordion-button:not(.collapsed) {
  background: #eef5f1;
  color: var(--primary-green);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  padding: 14px 16px;
  background: #fff;
}

@media(min-width: 768px) {
  .faq-section {
    padding: 88px 0;
  }

  .accordion-button {
    font-size: 15px;
  }

  .accordion-body {
    font-size: 15px;
  }
}

/* -------------------------
SECTION 10: FINAL CTA
-------------------------- */
.final-cta {
  padding: 48px 0;
  background: linear-gradient(135deg, #1f4d3a, #16382b);
  color: #ffffff;
}

.cta-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.btn-cta {
  padding: 12px 22px;
}

@media(min-width: 768px) {
  .final-cta {
    padding: 66px 0;
  }

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

/* -------------------------
SECTION 11: FOOTER
-------------------------- */
.footer {
  padding: 34px 0;
  background: #0f2e23;
  color: #d1d5db;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-text {
  font-size: 13px;
  margin: 4px 0;
}

.footer-text a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 8px;
}

@media(min-width: 768px) {
  .footer {
    padding: 42px 0;
  }

  .footer-text {
    font-size: 14px;
  }
}

/* -------------------------
GLOBAL: MOBILE STICKY CTA
-------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
}

.sticky-call,
.sticky-enquire {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-weight: 700;
  font-size: 14px;
  border: none;
}

.sticky-call {
  background: #ffffff;
  color: var(--primary-green);
}

.sticky-enquire {
  background: var(--primary-green);
  color: #fff;
}


