/* =========================
   FONT IMPORTS
======================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
/* =========================
   ROOT VARIABLES
========================= */
:root {
  /* ========= COLORS ========= */
  --primary-green: #173c34;
  --primary-green-dark: #0c221d;
  --secondary-green: #244d43;
  --soft-beige: #f4efe6;
  --light-beige: #faf7f2;
  --pure-white: #ffffff;
  --off-white: #f8f8f8;
  --gold: #cda768;
  --gold-light: #f6e27a;
  --gold-dark: #9f7928;
  --gold-deep: #7a5c1e;
  --gold-soft: #e7c35a;
  --gold-metallic: linear-gradient(
    135deg,
    #f6e6b4 0%,
    #d4b277 35%,
    #b98a44 70%,
    #f3dfab 100%
  );
  --text-dark: #1b1b1b;
  --text-light: #f7f7f7;
  --text-muted: #9a9a9a;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(0, 0, 0, 0.08);
  --overlay-dark: rgba(0, 0, 0, 0.45);
  --overlay-green: rgba(12, 34, 29, 0.72);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-luxury: 0 15px 60px rgba(0, 0, 0, 0.12);

  /* ========= TYPOGRAPHY ========= */
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Poppins', sans-serif;
  --fs-display: clamp(52px, 7vw, 110px);
  --fs-h1: clamp(42px, 5vw, 72px);
  --fs-h2: clamp(34px, 4vw, 58px);
  --fs-h3: clamp(28px, 3vw, 42px);
  --fs-h4: 26px;
  --fs-h5: 22px;
  --fs-body-lg: 20px;
  --fs-body: 16px;
  --fs-small: 14px;
  --line-height-heading: 1.2;
  --line-height-body: 1.8;
  --letter-spacing-heading: 1px;
  --letter-spacing-wide: 3px;
  /* ========= SPACING ========= */
  --section-space: 120px;
  --section-space-md: 90px;
  --section-space-sm: 70px;
  --container-width: 1320px;

  /* ========= RADIUS ========= */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  /* ========= TRANSITIONS ========= */
  --transition: all 0.45s ease;
  --transition-slow: all 0.8s ease;

  /* ========= Z INDEX ========= */
  --z-navbar: 999;
  --z-overlay: 10;
  --z-content: 20;

  /* ========= GRADIENTS ========= */
  --gold-gradient: linear-gradient(
    135deg,
    #f6e6b4 0%,
    #d4b277 35%,
    #b98a44 70%,
    #f3dfab 100%
  );
  --gold-gradient-soft: linear-gradient(
    135deg,
    rgba(246, 230, 180, 0.18),
    rgba(185, 138, 68, 0.12)
  );
}

@font-face {
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}

/* =========================
   GLOBAL RESET
========================= */

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

*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   HTML + BODY
========================= */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--line-height-body);
  color: var(--text-dark);
  background: var(--pure-white);
  overflow-x: hidden;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--primary-green-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 20px;
}

/* =========================
   IMAGES
========================= */

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

/* =========================
   LINKS
========================= */

a {
  text-decoration: none;
  transition: var(--transition);
  color: inherit;
}

a:hover {
  color: var(--gold);
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =========================
   HEADINGS
========================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  line-height: var(--line-height-heading);
  letter-spacing: var(--letter-spacing-heading);
  margin-bottom: 0;
  font-weight: 600;
  /* text-transform: uppercase; */
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

/* =========================
   PARAGRAPH
========================= */

p {
  margin-bottom: 0;
  color: inherit;
}

/* =========================
   SECTIONS
========================= */

section {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.container-fluid.custom-container,
.container.custom-container {
  max-width: var(--container-width);
  width: 100%;
}

/* =========================
   LUXURY SECTION THEMES
========================= */

.section-green {
  background:
    linear-gradient(rgba(12, 34, 29, 0.82), rgba(12, 34, 29, 0.82)),
    url('../images/bg-green-texture.webp');

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

  color: var(--text-light);
}

.section-beige {
  background:
    linear-gradient(rgba(244, 239, 230, 0.94), rgba(244, 239, 230, 0.94)),
    url('../images/bg-beige-texture.webp');

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

  color: var(--text-dark);
}

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

.text-gold {
  background: var(--gold-metallic);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  display: inline-block;
}

.text-light-soft {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================
   SECTION TAG
========================= */

.section-tag {
  display: inline-block;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;

  color: var(--gold-metallic);

  margin-bottom: 20px;
}

.btn-luxury {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 34px;
  border-radius: 100px;
  background: var(--gold-metallic);
  color: #0c221d;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.22);
  transition: all 0.4s ease;
}

.btn-luxury:hover {
  color: #0c221d;
  transform: translateY(-4px);
}

/* =========================
   BACKGROUND STROKES
========================= */

.bg-stroke-left {
  position: absolute;
  left: 0;
  top: 0;

  width: 320px;
  opacity: 0.08;
  pointer-events: none;
}

.bg-stroke-right {
  position: absolute;
  right: 0;
  bottom: 0;

  width: 320px;
  opacity: 0.08;
  pointer-events: none;
}

/* =========================
   GLASS EFFECT
========================= */

.glass-effect {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

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

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

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

.image-hover {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-hover img {
  transition: transform 1.2s ease;
}

.image-hover:hover img {
  transform: scale(1.08);
}

/* =========================
   AOS FIX
========================= */

[data-aos] {
  will-change: transform, opacity;
}

/* =========================
   COMMON ANIMATIONS
========================= */

@keyframes floatUp {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes zoomSoft {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  :root {
    --section-space: 90px;
  }

  br {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --section-space: 70px;
  }

  body {
    font-size: 15px;
  }

  .btn-luxury {
    height: 52px;
    padding: 0 26px;
    font-size: 13px;
  }
}
/* =========================
   SELECTION COLOR
========================= */

::selection {
  background: var(--gold);
  color: var(--primary-green-dark);
}

/* =========================
   INPUTS
========================= */

input,
textarea,
select {
  width: 100%;
  outline: none;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.15);

  color: var(--text-light);

  padding: 16px 20px;

  border-radius: var(--radius-sm);

  font-family: var(--body-font);

  transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
}

/* =========================
   PLACEHOLDER
========================= */

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

/* =========================
   CURSOR POINTER
========================= */

button,
a {
  cursor: pointer;
}

/* =========================
   BUTTON RESET
========================= */

button {
  border: none;
  background: none;
}

/* =========================
   VIDEO
========================= */

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   CANVAS FIX
========================= */

canvas {
  display: block;
}

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

.text-uppercase {
  text-transform: uppercase;
}

.text-spacing {
  letter-spacing: 2px;
}

.fw-light {
  font-weight: 300;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

/* =========================
   BACKGROUND UTILITIES
========================= */

.bg-green {
  background: var(--primary-green);
}

.bg-beige {
  background: var(--soft-beige);
}

.bg-dark-green {
  background: var(--primary-green-dark);
}

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

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

  background: var(--overlay-dark);
}

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

  background: var(--overlay-green);
}

/* =========================
   SECTION TITLE WRAPPER
========================= */

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 18px;
}

.section-title p {
  max-width: 720px;
}

/* =========================
   DIVIDER LINE
========================= */

.divider-gold {
  width: 100px;
  height: 1px;

  background: var(--gold);

  margin-top: 24px;
}

/* =========================
   HOVER TRANSITION
========================= */

.transition {
  transition: var(--transition);
}

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

.curved-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

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

.luxury-card {
  position: relative;

  height: 100%;

  padding: 40px;

  border-radius: var(--radius-lg);

  overflow: hidden;

  transition: var(--transition);
}

.luxury-card:hover {
  transform: translateY(-8px);
}

/* =========================
   GOLD BORDER
========================= */

.border-gold {
  border: 1px solid rgba(200, 169, 107, 0.3);
}

/* =========================
   NOISE TEXTURE
========================= */

.noise::before {
  content: '';

  position: absolute;
  inset: 0;

  background-image: url('../images/noise.png');

  opacity: 0.03;

  pointer-events: none;
}

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

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-navbar);
}

.eco-navbar {
  padding: 18px 0;
  background: rgb(21 47 28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.eco-navbar.scrolled {
  padding: 14px 0;
  background: rgb(11 28 16);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* LOGOS */

.eco-logo img {
  width: 160px;
  object-fit: contain;
}

.eco-peram-logo img {
  width: 120px;
  object-fit: contain;
}

/* MENU */

.eco-nav-menu {
  gap: 34px;
}

.eco-nav-menu .nav-link {
  position: relative;
  padding: 0 !important;

  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 500;

  letter-spacing: 1.5px;
  text-transform: uppercase;

  color: var(--pure-white);
  transition: var(--transition);
}

.eco-nav-menu .nav-link:hover,
.eco-nav-menu .nav-link.active {
  color: var(--gold);
}

.eco-nav-menu .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--gold);
  transition: var(--transition);
}

.eco-nav-menu .nav-link:hover::after,
.eco-nav-menu .nav-link.active::after {
  width: 100%;
}

/* TOGGLER */

.eco-toggler {
  border: none;
  box-shadow: none !important;
  padding: 0;
  width: 32px;
  height: 24px;

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

.eco-toggler span {
  width: 100%;
  height: 2px;
  background: var(--pure-white);
  border-radius: 50px;
  transition: var(--transition);
}

/* =========================================
LARGE LAPTOPS
========================================= */

@media (max-width: 1399px) {
  .eco-nav-menu {
    gap: 26px;
  }

  .eco-nav-menu .nav-link {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .eco-logo img {
    width: 150px;
  }

  .eco-peram-logo img {
    width: 110px;
  }
}

/* =========================================
LAPTOPS
========================================= */

@media (max-width: 1199px) {
  .eco-navbar {
    padding: 16px 0;
  }

  .eco-navbar .navbar-collapse {
    background: rgba(12, 34, 29, 0.98);
    margin-top: 25px;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .eco-nav-menu {
    gap: 22px;
    align-items: flex-start;
  }

  .eco-nav-menu .nav-link {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .eco-peram-logo {
    margin-top: 25px;
  }
}

/* =========================================
TABLETS
========================================= */

@media (max-width: 991px) {
  .eco-logo img {
    width: 135px;
  }

  .eco-peram-logo img {
    width: 100px;
  }

  .eco-nav-menu .nav-link {
    font-size: 13px;
  }
}

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

@media (max-width: 767px) {
  .eco-navbar {
    padding: 14px 0;
  }

  .eco-logo img {
    width: 120px;
  }

  .eco-peram-logo img {
    width: 90px;
  }

  .eco-navbar .navbar-collapse {
    padding: 24px;
  }

  .eco-nav-menu {
    gap: 18px;
  }

  .eco-nav-menu .nav-link {
    font-size: 13px;
    letter-spacing: 0.8px;
  }
}

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

@media (max-width: 480px) {
  .eco-logo img {
    width: 110px;
  }

  .eco-peram-logo img {
    width: 85px;
  }

  .eco-nav-menu .nav-link {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}
/* =========================================
CHANNEL PARTNER DROPDOWN
========================================= */

.eco-dropdown {
  position: relative;
}

.eco-dropdown-menu {
  min-width: 260px;

  background: #152f1c;
  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 12px;
  overflow: hidden;

  padding: 8px 0;
  margin-top: 18px;
}

.eco-dropdown-menu .dropdown-item {
  padding: 12px 18px;

  font-size: 13px;
  font-weight: 500;

  letter-spacing: 0.5px;

  color: #fff;

  transition: all 0.3s ease;
}

.eco-dropdown-menu .dropdown-item:hover {
  background: rgba(215, 179, 122, 0.12);
  color: var(--gold);
}

.eco-dropdown .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}

/* DESKTOP HOVER */

@media (min-width: 1200px) {
  .eco-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* MOBILE */

@media (max-width: 1199px) {
  .eco-dropdown-menu {
    min-width: 100%;

    margin-top: 10px;

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

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

  .eco-dropdown-menu .dropdown-item {
    padding: 12px 15px;
    font-size: 13px;
  }
}
.eco-menu-arrow {
  font-size: 11px;
  margin-left: 6px;
  transition: all 0.3s ease;
}

/* Rotate when open */
.eco-dropdown.show .eco-menu-arrow,
.eco-dropdown .dropdown-toggle[aria-expanded='true'] .eco-menu-arrow {
  transform: rotate(180deg);
}

/* Remove Bootstrap default arrow */
.eco-dropdown .dropdown-toggle::after {
  display: none;
}
/* =========================================================
HOME HERO CAROUSEL
FINAL RESPONSIVE VERSION
========================================================= */

.eco-hero-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* REMOVE TOP GAP */

html,
body {
  margin: 0;
  padding: 0;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.eco-hero-carousel,
.eco-hero-carousel .carousel-inner,
.eco-hero-carousel .carousel-item,
.eco-slide {
  min-height: 100vh;
}

/* =========================================================
COMMON SLIDE
========================================================= */

.eco-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.eco-slide .container {
  position: relative;
  z-index: 10;
}

/* =========================================================
SLIDE 1
LUXURY HERO
========================================================= */

.luxury-hero {
  padding: 150px 0 100px;
  background: #f8f4ef;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

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

  transform: scale(1.05);

  animation: heroZoom 14s ease-in-out infinite alternate;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 24px;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: #8f6b2f;
}

.hero-kicker::before {
  content: '';

  width: 42px;
  height: 1px;

  background: #b9914d;
}

.hero-content h1 {
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -2px;

  margin-bottom: 26px;

  color: #152f1c;
}

.hero-content p {
  max-width: 620px;

  color: rgb(35 35 35 / 95%);

  font-size: 15px;
  line-height: 1.95;

  margin-bottom: 48px;
}

/* STATS */

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  margin-bottom: 46px;
}

.hero-stat {
  min-width: 170px;

  padding: 24px 26px;

  border-radius: 22px;

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

  border: 1px solid rgba(255, 255, 255, 0.3);

  backdrop-filter: blur(12px);

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

  transition: 0.4s ease;
}

.hero-stat:hover {
  transform: translateY(-6px);
}

.hero-stat h3 {
  font-size: 32px;
  font-weight: 700;

  margin-bottom: 6px;

  color: #8b6228;
}

.hero-stat span {
  color: rgba(30, 30, 30, 0.78);

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1px;
}

/* =========================================================
BUTTONS
========================================================= */

.hero-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-btn {
  text-decoration: none;
}

.btn-luxury {
  height: 58px;
  padding: 0 36px;

  border-radius: 100px;
  border: none;

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

  background: linear-gradient(135deg, #f7e6b4 0%, #d4b277 45%, #b98a44 100%);

  color: #0c221d;

  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 12px 30px rgba(185, 138, 68, 0.22);

  transition: 0.4s ease;
}

.btn-luxury:hover {
  transform: translateY(-4px);
  color: #0c221d;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 58px;
  padding: 0 34px;

  border-radius: 100px;

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

  border: 1px solid rgba(255, 255, 255, 0.4);

  backdrop-filter: blur(10px);

  color: #152f1c;

  font-size: 14px;
  font-weight: 500;

  transition: 0.4s ease;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #ffffff;
  transform: translateY(-4px);
}

/* =========================================================
SLIDE 2
CIP HERO
========================================================= */

.cip-hero-section {
  padding: 170px 0 120px;

  background:
    linear-gradient(
      90deg,
      rgba(4, 14, 11, 0.6) 0%,
      rgba(4, 14, 11, 0.3) 45%,
      rgba(4, 14, 11, 0.1) 100%
    ),
    url('../img/cip-banner.webp');

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

.cip-hero-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.02) 100%
  );
}

.cip-hero-wrapper {
  position: relative;
  z-index: 5;
}

.cip-hero-title {
  margin-bottom: 42px;
}

.cip-hero-title h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* UPDATED GREEN + WHITE STROKE */

.cip-hero-title h1 span {
  color: #152f1c;

  -webkit-text-stroke: 1.5px #ffffff;

  font-weight: 900;
}

.investment-line {
  padding-left: 12px;
}

.cip-hero-content {
  max-width: 760px;
}

.cip-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;

  color: rgba(255, 255, 255, 0.82);
}

.cip-hero-label::before {
  content: '';

  width: 38px;
  height: 1px;

  background: #d7b37a;
}

.cip-hero-content h2 {
  margin-bottom: 22px;

  font-size: clamp(28px, 2.2vw, 42px);

  line-height: 1.24;

  font-weight: 600;

  color: #ffffff;
}

.cip-hero-content p {
  max-width: 680px;

  font-size: 15px;
  line-height: 2;

  color: rgba(255, 255, 255, 0.88);
}

/* =========================================================
SLIDE 3
ENTRANCE HERO - IMPROVED
========================================================= */

.entrance-section {
  padding: 160px 0 100px;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 38%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    url('../img/bg/entrance.webp');

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

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

.entrance-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 16px;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: #f1d49a;
}

.entrance-kicker::before {
  content: '';

  width: 42px;
  height: 1px;

  background: #d7b37a;
}

/* BIGGER & PREMIUM HEADING */

.entrance-content h2 {
  font-size: clamp(48px, 5vw, 82px);

  line-height: 1;

  font-weight: 800;

  letter-spacing: -2px;

  margin-bottom: 26px;

  color: #ffffff;

  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* HIGHLIGHT TEXT */

.entrance-content h2 span {
  display: block;

  color: #d7b37a;

  font-weight: 800;
}

.entrance-content p {
  max-width: 560px;

  font-size: 15px;
  line-height: 2;

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

  margin-bottom: 14px;

  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* =========================================================
CAROUSEL ARROWS
========================================================= */

.eco-carousel-arrow {
  width: 70px;
  opacity: 1;
  z-index: 30;
}

.eco-carousel-arrow span {
  width: 56px;
  height: 56px;

  border-radius: 50%;

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

  backdrop-filter: blur(10px);

  background-size: 18px;

  transition: 0.4s ease;
}

.eco-carousel-arrow:hover span {
  background-color: rgba(255, 255, 255, 0.22);
}

/* =========================================================
INDICATORS
========================================================= */

.eco-indicators {
  bottom: 28px;
  z-index: 20;
}

.eco-indicators button {
  width: 12px !important;
  height: 12px !important;

  border-radius: 50%;

  margin: 0 6px !important;

  border: none !important;

  background-color: rgba(255, 255, 255, 0.45) !important;

  opacity: 1;
}

.eco-indicators .active {
  background-color: #d7b37a !important;
}

/* =========================================================
SCROLL
========================================================= */

.hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 34px;

  transform: translateX(-50%);

  z-index: 5;
}

.hero-scroll span {
  display: block;

  width: 1px;
  height: 70px;

  background: rgba(255, 255, 255, 0.45);
}

/* =========================================================
ANIMATION
========================================================= */

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.12);
  }
}

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

@media (max-width: 991px) {
  .luxury-hero,
  .cip-hero-section,
  .entrance-section {
    padding: 130px 0 90px;
  }

  .cip-hero-title h1 {
    font-size: 72px;
  }

  .entrance-content h2 {
    font-size: 56px;
  }
}

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

@media (max-width: 767px) {
  .eco-hero-carousel,
  .eco-hero-carousel .carousel-inner,
  .eco-hero-carousel .carousel-item,
  .eco-slide {
    min-height: auto;
  }

  .luxury-hero,
  .cip-hero-section,
  .entrance-section {
    min-height: 100vh;

    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .cip-hero-title h1 {
    font-size: 44px;
    line-height: 1;
    letter-spacing: 2px;
  }

  .cip-hero-content h2 {
    font-size: 26px;
  }

  .entrance-content h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-content p,
  .cip-hero-content p,
  .entrance-content p {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-stat {
    width: 100%;
    min-width: 100%;
  }

  .eco-carousel-arrow {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero-stats {
    gap: 14px;
  }
}
/* =========================
BROCHURE POPUP
========================= */

.brochure-popup {
  position: fixed;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0.9);

  width: 100%;
  max-width: 430px;

  opacity: 0;
  visibility: hidden;

  z-index: 2000;

  transition: 0.35s ease;
}

/* ACTIVE */

.brochure-popup.active {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, -50%) scale(1);
}

/* INNER */

.brochure-popup-inner {
  position: relative;

  padding: 42px;

  border-radius: 28px;

  background: #10251f;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

/* OVERLAY */

.popup-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.45);

  opacity: 0;
  visibility: hidden;

  z-index: 1999;

  transition: 0.35s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* CLOSE */

.close-popup {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

  border: 0;
  outline: none;

  border-radius: 50%;

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

  color: #ffffff;

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

  cursor: pointer;

  transition: 0.3s ease;
}

.close-popup i {
  font-size: 12px;
}

.close-popup:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* LABEL */

.popup-label {
  position: relative;

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

  padding-left: 42px;

  margin-bottom: 18px;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 1.5px;

  color: rgba(255, 255, 255, 0.6);
}

.popup-label::before {
  content: '';

  position: absolute;
  left: 0;

  width: 30px;
  height: 1px;

  background: #d7b37a;
}

/* HEADING */

.brochure-popup h3 {
  margin-bottom: 16px;

  font-size: 34px;

  line-height: 1.08;

  font-weight: 600;

  letter-spacing: -1px;

  color: #ffffff;
}

.brochure-popup h3 span {
  display: block;

  color: #d7b37a;
}

/* TEXT */

.brochure-popup p {
  margin-bottom: 28px;

  font-size: 13px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.72);
}

/* FORM */

.brochure-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* INPUT */

.brochure-form input,
.brochure-form textarea {
  width: 100%;

  padding: 15px 16px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);

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

  color: #ffffff;

  font-size: 13px;

  outline: none;

  transition: 0.3s ease;
}

.brochure-form textarea {
  resize: none;
}

.brochure-form input::placeholder,
.brochure-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

/* FOCUS */

.brochure-form input:focus,
.brochure-form textarea:focus {
  border-color: rgba(215, 179, 122, 0.4);

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

/* BUTTON */

.submit-btn {
  margin-top: 6px;

  height: 52px;

  border: 0;
  outline: none;

  border-radius: 14px;

  background: #d7b37a;

  color: #13251f;

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition: 0.35s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);

  background: #e4c48f;
}

/* MOBILE */

@media (max-width: 767px) {
  .brochure-popup {
    max-width: calc(100% - 24px);
  }

  .brochure-popup-inner {
    padding: 34px 22px 24px;
  }

  .brochure-popup h3 {
    font-size: 28px;
  }
}
/* =========================================================
OXYGEN SECTION
========================================================= */

.oxygen-section {
  position: relative;
  padding: 120px 0;
  background: #f4ece3;
  overflow: hidden;
}

/* =========================================================
GRID
========================================================= */

.oxygen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

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

.oxygen-content {
  max-width: 620px;
}

.oxygen-content h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 3vw, 52px);
  /* line-height: 1.05; */
  font-weight: 500;
  color: #152f1c;
  letter-spacing: -2px;
  text-transform: none;
}

.oxygen-content p {
  margin: 0 0 18px;

  font-size: 17px;
  line-height: 2;

  color: rgba(35, 35, 35, 0.85);
}

.oxygen-content p:last-child {
  margin-bottom: 0;
}

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

.oxygen-image {
  position: relative;
}

.oxygen-image img {
  width: 100%;
  height: 620px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);

  transition: all 0.5s ease;
}

.oxygen-image:hover img {
  transform: scale(1.03);
}

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

@media (max-width: 991px) {
  .oxygen-section {
    padding: 100px 0;
  }

  .oxygen-grid {
    gap: 50px;
  }

  .oxygen-content h2 {
    font-size: 52px;
  }

  .oxygen-image img {
    height: 500px;
  }
}

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

@media (max-width: 767px) {
  .oxygen-section {
    padding: 80px 0;
  }

  .oxygen-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .oxygen-content {
    max-width: 100%;
    order: 1;
  }

  .oxygen-image {
    order: 2;
  }

  .oxygen-content h2 {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .oxygen-content p {
    font-size: 14px;
    line-height: 1.9;
  }

  .oxygen-image img {
    height: 320px;
    border-radius: 20px;
  }
}
/* =========================================================
AMENITIES SECTION
========================================================= */

.eco-amenities-section {
  position: relative;
  overflow: hidden;

  padding: 140px 0;

  background: #0d341c;
}

/* =========================================================
BACKGROUND
========================================================= */

.eco-amenities-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.eco-amenities-bg img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.eco-amenities-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    180deg,
    rgba(6, 26, 14, 0.88) 0%,
    rgba(6, 26, 14, 0.78) 100%
  );
}

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

.eco-amenities-section .container {
  position: relative;
  z-index: 5;
}

/* =========================================================
HEADING
========================================================= */

.eco-amenities-heading {
  max-width: 860px;

  margin: 0 auto 90px;

  text-align: center;
}

.eco-section-kicker {
  position: relative;

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

  padding-left: 52px;

  margin-bottom: 22px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.82);
}

.eco-section-kicker::before {
  content: '';

  position: absolute;

  left: 0;
  top: 50%;

  transform: translateY(-50%);

  width: 38px;
  height: 1px;

  background: #d7b37a;
}

.eco-amenities-heading h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -2px;
  color: #ffffff;
}

.eco-amenities-heading p {
  max-width: 760px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.9;

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

/* =========================================================
HONEYCOMB WRAPPER
========================================================= */

.eco-honeycomb-wrapper {
  max-width: 900px;

  margin: 0 auto 80px;

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

  gap: 0;
}

/* =========================================================
HEX ITEMS
========================================================= */

.eco-hex-item {
  width: 260px;

  text-align: center;

  position: relative;
}

.eco-hex-item.top {
  margin-bottom: -38px;
}

.eco-hex-item.bottom {
  margin-top: -10px;
}

.eco-hex-item h4 {
  margin-bottom: 18px;

  font-size: 18px;
  line-height: 1.35;

  font-weight: 700;

  color: #ffffff;
}

/* =========================================================
HEXAGON
========================================================= */

.eco-hexagon {
  width: 200px;
  height: 220px;
  margin: 0 auto;
  position: relative;
  /* clip-path: polygon(
    25% 6%,
    75% 6%,
    100% 50%,
    75% 94%,
    25% 94%,
    0 50%
  ); */
  overflow: hidden;
  transition: 0.5s ease;
}

.eco-hexagon img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: 0.6s ease;
}

.eco-hexagon::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.02) 0%,
      rgba(0,0,0,0.18) 100%
    ); */
}

.eco-hex-item:hover .eco-hexagon {
  transform: translateY(-8px);
}

.eco-hex-item:hover .eco-hexagon img {
  transform: scale(1.08);
}

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

.eco-amenities-footer {
  max-width: 720px;

  margin: 0 auto;

  text-align: center;
}

.eco-amenities-footer p {
  margin-bottom: 10px;
  /* font-size: 20px; */
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.92);
}

.eco-amenities-footer p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 991px) {
  .eco-amenities-section {
    padding: 120px 0;
  }

  .eco-honeycomb-wrapper {
    gap: 10px;
  }

  .eco-hex-item {
    width: 220px;
  }

  .eco-hexagon {
    width: 180px;
    height: 200px;
  }

  .eco-amenities-heading h2 {
    font-size: 58px;
  }
}

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

@media (max-width: 767px) {
  .eco-amenities-section {
    padding: 90px 0;
  }

  .eco-amenities-heading {
    margin-bottom: 60px;
  }

  .eco-amenities-heading h2 {
    font-size: 36px;

    line-height: 1.12;

    margin-bottom: 18px;
  }

  .eco-amenities-heading p {
    font-size: 14px;
    line-height: 1.85;
  }

  .eco-honeycomb-wrapper {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px 12px;

    max-width: 100%;
  }

  .eco-hex-item {
    width: 100%;

    margin: 0 !important;
  }

  .eco-hex-item h4 {
    font-size: 14px;

    margin-bottom: 14px;
  }

  .eco-hexagon {
    width: 140px;
    height: 155px;
  }

  .eco-amenities-footer {
    margin-top: 60px;
  }

  .eco-amenities-footer p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* =========================================
MASTERPLAN SECTION
========================================= */

.masterplan-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 90px 0;
  background:
    linear-gradient(
      90deg,
      rgb(0 0 0 / 40%) 42%,
      rgb(0 0 0 / 85%) 72%,
      rgb(0 0 0 / 35%) 100%
    ),
    url(../img/masterplan-bg.jpeg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

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

.masterplan-content {
  max-width: 420px;

  margin-left: auto;

  animation: masterFade 1s ease;
}

/* =========================================
KICKER
========================================= */

.masterplan-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
}

.masterplan-kicker::before {
  content: '';

  width: 40px;
  height: 1px;

  background: var(--gold-metallic);
}

/* =========================================
HEADING
========================================= */

.masterplan-content h2 {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;

  font-weight: 600;

  color: #fff;

  margin-bottom: 18px;

  letter-spacing: -0.8px;

  text-transform: none;
}

/* =========================================
PARAGRAPH
========================================= */

.masterplan-content p {
  font-size: 14px;
  line-height: 1.9;

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

  margin: 0 0 32px;
}

/* =========================================
BUTTON
========================================= */

.masterplan-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.masterplan-btn {
  position: relative;

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

  height: 58px;
  padding: 0 34px;

  border-radius: 100px;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 0.3px;

  color: #0c221d;

  background: linear-gradient(135deg, #f7e6b4 0%, #d4b277 45%, #b98a44 100%);

  box-shadow: 0 14px 35px rgba(185, 138, 68, 0.28);

  transition: all 0.4s ease;
}

.masterplan-btn:hover {
  transform: translateY(-4px);

  color: #0c221d;

  box-shadow: 0 18px 40px rgba(185, 138, 68, 0.35);
}

/* =========================================
ANIMATION
========================================= */

@keyframes masterFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 991px) {
  .masterplan-section {
    min-height: 780px;

    padding: 100px 0;

    background-position: 58% center;
  }

  .masterplan-content {
    max-width: 360px;
  }

  .masterplan-content h2 {
    font-size: 38px;
  }
}

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

@media (max-width: 767px) {
  .masterplan-section {
    min-height: 620px;

    padding: 80px 0 40px;

    align-items: flex-end;

    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 10%,
        rgba(0, 0, 0, 0.52) 52%,
        rgba(0, 0, 0, 0.08) 100%
      ),
      url('../img/bg/masterplan-bg.webp');

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

  .masterplan-content {
    max-width: 100%;
  }

  .masterplan-kicker {
    margin-bottom: 14px;
  }

  .masterplan-content h2 {
    font-size: 32px;
    line-height: 1.12;

    margin-bottom: 14px;
  }

  .masterplan-content p {
    font-size: 13px;
    line-height: 1.8;

    margin-bottom: 24px;
  }

  .masterplan-buttons {
    width: 100%;
  }

  .masterplan-btn {
    width: 100%;

    height: 54px;

    font-size: 13px;
  }
}
/* =========================================
ENTRANCE SECTION
========================================= */

.entrance-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  /* display: flex; */
  align-items: center;
  padding: 90px 0;
  background:
    linear-gradient(
      90deg,
      rgb(0 0 0 / 60%) 0%,
      rgb(0 0 0 / 40%) 38%,
      rgb(0 0 0 / 30%) 100%
    ),
    url(../img/bg/entrance.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

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

.entrance-content {
  max-width: 600px;
  animation: fadeEntrance 1s ease;
}

/* =========================================
KICKER
========================================= */

.entrance-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgb(255 255 255);
}

.entrance-kicker::before {
  content: '';

  width: 42px;
  height: 1px;

  background: var(--gold-metallic);
}

/* =========================================
HEADING
========================================= */

.entrance-content h2 {
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.1;
  font-weight: 900;
  color: #fffdfb;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-transform: none;
}

/* =========================================
PARAGRAPH
========================================= */

.entrance-content p {
  font-size: 15px;
  line-height: 1.95;
  color: rgb(255 255 255);
  margin-bottom: 10px;
  max-width: 500px;
}

.entrance-content p:last-child {
  margin-bottom: 0;
}

/* =========================================
ANIMATION
========================================= */

@keyframes fadeEntrance {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 991px) {
  .entrance-section {
    min-height: 760px;

    padding: 100px 0;

    background-position: 62% center;
  }

  .entrance-content {
    max-width: 440px;
  }

  .entrance-content h2 {
    font-size: 46px;
  }
}

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

@media (max-width: 767px) {
  .entrance-section {
    min-height: 620px;
    padding: 80px 0;
    align-items: flex-start;
    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, 0.02) 12%,
        rgba(0, 0, 0, 0.05) 48%,
        rgba(0, 0, 0, 0) 100%
      ),
      url('../img/bg/entrance-bg.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .entrance-content {
    max-width: 100%;
  }

  .entrance-kicker {
    margin-bottom: 14px;
  }

  .entrance-content h2 {
    font-size: 34px;
    line-height: 1.12;

    margin-bottom: 18px;
  }

  .entrance-content p {
    font-size: 13px;
    line-height: 1.85;

    margin-bottom: 14px;
  }
}

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

.eco-lifestyle-section {
  position: relative;
  overflow: hidden;

  padding: 120px 0;

  background:
    linear-gradient(
      180deg,
      rgba(6, 31, 19, 0.92) 0%,
      rgba(8, 39, 24, 0.96) 100%
    ),
    url('../img/bg/bg-2.webp');

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

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

.eco-lifestyle-bg {
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top right,
    rgba(199, 164, 94, 0.1),
    transparent 30%
  );

  pointer-events: none;
}

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

.eco-lifestyle-head {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto 50px;
}

.eco-lifestyle-kicker {
  position: relative;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: #d7b37a;
}

.eco-lifestyle-kicker::before,
.eco-lifestyle-kicker::after {
  content: '';

  width: 42px;
  height: 1px;

  background: #d7b37a;
}

.eco-lifestyle-head h2 {
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.eco-lifestyle-head p {
  font-size: 17px;
  line-height: 1.9;

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

  margin: 0;
}

/* =========================================
TOP HIGHLIGHTS
========================================= */

.eco-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.eco-highlight-card {
  position: relative;
  padding: 20px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
}

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

  background: rgba(255, 255, 255, 0.09);
}

.eco-highlight-card h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  color: #e3c88f;
  text-align: center;
}

/* =========================================
DESCRIPTION
========================================= */

.eco-lifestyle-desc {
  text-align: center;
  margin-bottom: 50px;
}

.eco-lifestyle-desc p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================================
BLOCK
========================================= */

.eco-amenity-block {
  position: relative;

  margin-bottom: 50px;

  padding: 45px;

  border-radius: 32px;

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

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
}

.eco-block-title {
  margin-bottom: 30px;
}

.eco-block-title h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.5px;
}

/* =========================================
GRID
========================================= */

.eco-amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.eco-amenity-item {
  position: relative;
  padding: 7px 22px 11px 48px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  transition: 0.3s ease;
}

.eco-amenity-item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7b37a;
}

.eco-amenity-item:hover {
  transform: translateY(-4px);

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

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

@media (max-width: 991px) {
  .eco-lifestyle-section {
    padding: 100px 0;
  }

  .eco-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-amenity-block {
    padding: 35px;
  }
}

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

@media (max-width: 767px) {
  .eco-lifestyle-section {
    padding: 80px 0;
  }

  .eco-lifestyle-head {
    margin-bottom: 50px;
  }

  .eco-lifestyle-head h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .eco-lifestyle-head p {
    font-size: 14px;
    line-height: 1.9;
  }

  .eco-highlight-grid {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-bottom: 32px;
  }

  .eco-highlight-card {
    padding: 24px;
    border-radius: 20px;
  }

  .eco-highlight-card h4 {
    font-size: 18px;
  }

  .eco-lifestyle-desc {
    margin-bottom: 50px;
  }

  .eco-lifestyle-desc p {
    font-size: 14px;
  }

  .eco-amenity-block {
    padding: 24px;

    border-radius: 24px;

    margin-bottom: 28px;
  }

  .eco-block-title {
    margin-bottom: 20px;
  }

  .eco-block-title h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .eco-amenity-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .eco-amenity-item {
    padding: 16px 18px 16px 42px;

    font-size: 13px;
    line-height: 1.7;
  }

  .eco-amenity-item::before {
    left: 18px;
    top: 23px;
  }
}
/* =========================================
VIEW MORE AMENITIES
========================================= */

.eco-more-amenities {
  display: none;
}

.eco-more-amenities.active {
  display: block;
  animation: ecoAmenitiesReveal 0.5s ease;
}

.eco-view-more-wrap {
  text-align: center;
  margin: 25px 0 60px;
}

.eco-view-more-btn {
  border: none;
  outline: none;
  cursor: pointer;

  padding: 16px 42px;

  border-radius: 60px;

  background: #d7b37a;

  color: #082117;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 1px;

  transition: 0.3s ease;
}

.eco-view-more-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 10px 30px rgba(215, 179, 122, 0.25);
}

@keyframes ecoAmenitiesReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */

@media (max-width: 767px) {
  .eco-view-more-wrap {
    margin: 20px 0 40px;
  }

  .eco-view-more-btn {
    width: 100%;
    padding: 16px;
  }
}
/* =========================
PARK EXPERIENCE SECTION
========================= */

.park-experience {
  position: relative;

  padding: 110px 0;

  background: #f4ece3;

  overflow: hidden;
}

/* WRAPPER */

.park-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */

.park-left {
  position: sticky;
  top: 120px;
}

/* LABEL */

.park-label {
  position: relative;

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

  padding-left: 54px;

  margin-bottom: 24px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1.5px;

  color: #9c7545;
}

.park-label::before {
  content: '';

  position: absolute;
  left: 0;

  width: 40px;
  height: 1px;

  background: #c69b64;
}

/* HEADING */

.park-left h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -1.4px;
  color: #1f1f1f;
  margin: 0;
}

.park-left h2 span {
  display: block;

  color: #b8894f;
}

/* RIGHT */

.park-right {
  padding-top: 12px;
}

/* TEXT */

.park-intro,
.park-description {
  font-size: 15px;
  line-height: 2;

  color: #5c5751;

  margin-bottom: 26px;

  max-width: 640px;
}

/* POINTS */

.park-points {
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 26px;
}

.park-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.park-point span {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #b8894f;

  margin-top: 11px;

  flex-shrink: 0;
}

.park-point p {
  margin: 0;

  font-size: 15px;
  line-height: 1.9;

  color: #2f2f2f;
}

/* FOOTER */

.park-footer {
  margin-top: 90px;

  padding-top: 40px;

  border-top: 1px solid rgba(184, 137, 79, 0.18);

  text-align: center;
}

.park-footer p {
  /* margin-bottom: 10px; */
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 300;
  color: #2b2b2b;
}

.park-footer span {
  font-size: clamp(24px, 2vw, 34px);

  font-weight: 600;

  color: #b8894f;
}

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

@media (max-width: 991px) {
  .park-experience {
    padding: 90px 0;
  }

  .park-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .park-left {
    position: relative;
    top: 0;
  }
}

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

@media (max-width: 767px) {
  .park-experience {
    padding: 75px 0;
  }

  .park-label {
    margin-bottom: 18px;

    font-size: 11px;
  }

  .park-left h2 {
    font-size: 34px;

    line-height: 1.18;

    letter-spacing: -1px;
  }

  .park-intro,
  .park-description {
    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 22px;
  }

  .park-points {
    margin-top: 30px;

    gap: 22px;
  }

  .park-point p {
    font-size: 14px;
  }

  .park-footer {
    margin-top: 70px;

    padding-top: 30px;
  }

  .park-footer p,
  .park-footer span {
    font-size: 26px;

    line-height: 1.5;
  }
}
/* =========================================================
LOCATION SECTION
========================================================= */

.eco-location-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background: #0f2417;
}

/* BG */

.eco-location-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(8, 18, 12, 0.92) 0%,
      rgba(8, 18, 12, 0.84) 100%
    ),
    url('../img/bg/bg-1.webp');

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

  z-index: 1;
}

.eco-location-section .container {
  position: relative;
  z-index: 5;
}

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

.eco-location-top {
  max-width: 860px;
  margin: 0 auto 50px;
  text-align: center;
}

.eco-location-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 18px;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 2px;
  text-transform: uppercase;

  color: #d7b37a;
}

.eco-location-kicker::before,
.eco-location-kicker::after {
  content: '';

  width: 38px;
  height: 1px;

  background: #d7b37a;
}

.eco-location-top h2 {
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -2px;
}

.eco-location-top h2 span {
  color: #d7b37a;
}

.eco-location-top p {
  max-width: 760px;
  margin: 0 auto;

  font-size: 15px;
  line-height: 1.9;

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

/* =========================================================
GRID
========================================================= */

.eco-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

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

.eco-location-left {
  padding: 34px;

  border-radius: 28px;

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

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(12px);
}

.eco-location-left h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;

  color: #ffffff;

  margin-bottom: 24px;
}

/* LIST */

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

.eco-location-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 13px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.eco-location-list li:last-child {
  border-bottom: none;
}

.eco-location-list span {
  font-size: 14px;
  line-height: 1.5;

  color: rgba(255, 255, 255, 0.82);
}

.eco-location-list strong {
  font-size: 14px;
  font-weight: 600;

  color: #d7b37a;

  white-space: nowrap;
}

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

.eco-location-right {
  display: flex;
}

.eco-location-map-wrap {
  position: relative;
  width: 100%;

  border-radius: 28px;
  overflow: hidden;

  cursor: pointer;

  border: 1px solid rgba(255, 255, 255, 0.08);

  background: rgba(255, 255, 255, 0.04);
}

.eco-location-map {
  width: 100%;
  height: 100%;
  object-fit: contain;

  display: block;

  transition: transform 0.5s ease;
}

.eco-location-map-wrap:hover .eco-location-map {
  transform: scale(1.02);
}

/* OVERLAY */

.eco-map-overlay {
  position: absolute;
  inset: 0;

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

  background: rgba(0, 0, 0, 0.2);

  opacity: 0;

  transition: 0.35s ease;
}

.eco-map-overlay span {
  padding: 12px 22px;

  border-radius: 100px;

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

  backdrop-filter: blur(10px);

  font-size: 13px;
  font-weight: 500;

  color: #ffffff;
}

.eco-location-map-wrap:hover .eco-map-overlay {
  opacity: 1;
}

/* =========================================================
POPUP
========================================================= */

.eco-map-popup {
  position: fixed;
  inset: 0;

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

  background: rgba(0, 0, 0, 0.94);

  padding: 40px;

  z-index: 99999;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;
}

.eco-map-popup.active {
  opacity: 1;
  visibility: visible;
}

.eco-popup-image {
  max-width: 95%;
  max-height: 92vh;

  object-fit: contain;

  border-radius: 18px;
}

.eco-map-close {
  position: absolute;
  top: 22px;
  right: 36px;

  font-size: 48px;
  line-height: 1;

  color: #ffffff;

  cursor: pointer;

  z-index: 10;
}

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

@media (max-width: 991px) {
  .eco-location-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 767px) {
  .eco-location-section {
    padding: 80px 0;
  }

  .eco-location-top {
    margin-bottom: 36px;
  }

  .eco-location-top h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .eco-location-top p {
    font-size: 13px;
    line-height: 1.85;
  }

  .eco-location-left {
    padding: 24px;
    border-radius: 22px;
  }

  .eco-location-left h3 {
    font-size: 24px;
  }

  .eco-location-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .eco-map-popup {
    padding: 20px;
  }

  .eco-map-close {
    top: 14px;
    right: 18px;
    font-size: 38px;
  }
}
/* =========================
HOMES SECTION
========================= */

.homes-section {
  position: relative;

  padding: 120px 0;

  background-image: url('../img/bg/banner-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* OVERLAY */

.homes-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(20, 14, 8, 0.22) 0%,
    rgba(20, 14, 8, 0.55) 35%,
    rgba(20, 14, 8, 0.78) 70%,
    rgba(20, 14, 8, 0.88) 100%
  );
  z-index: 1;
}

/* CONTAINER */

.homes-section .container {
  position: relative;
  z-index: 3;
}

/* WRAPPER */

.homes-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* LEFT */

.homes-content {
  position: sticky;
  top: 120px;
}

/* LABEL */

.homes-label {
  position: relative;

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

  padding-left: 54px;

  margin-bottom: 24px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1.5px;

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

.homes-label::before {
  content: '';

  position: absolute;
  left: 0;

  width: 40px;
  height: 1px;

  background: #d7b37a;
}

/* HEADING */

.homes-content h2 {
  margin: 0;

  font-size: clamp(36px, 4vw, 58px);

  line-height: 1.1;

  font-weight: 600;

  letter-spacing: -1.5px;

  color: #ffffff;
}

.homes-content h2 span {
  display: block;

  color: #e0bb7d;
}

/* RIGHT */

.homes-details {
  padding-top: 10px;
}

/* INTRO */

.homes-intro {
  max-width: 650px;

  font-size: 15px;
  line-height: 2;

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

  margin-bottom: 34px;
}

/* HIGHLIGHT */

.homes-highlight {
  display: inline-flex;

  padding: 16px 28px;

  margin-bottom: 44px;

  border-radius: 100px;

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

  border: 1px solid rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 2px;

  color: #f0d6a7;

  text-transform: lowercase;
}

/* SPECS */

.homes-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  margin-bottom: 46px;
}

/* CARD */

.homes-spec {
  padding: 30px;

  border-radius: 28px;

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

  border: 1px solid rgba(255, 255, 255, 0.12);

  backdrop-filter: blur(12px);

  transition: 0.4s ease;
}

.homes-spec:hover {
  transform: translateY(-5px);

  background: rgba(255, 255, 255, 0.12);
}

/* NUMBER */

.homes-spec span {
  display: block;

  margin-bottom: 12px;

  font-size: 34px;
  font-weight: 300;

  line-height: 1;

  color: #e3c08a;
}

/* TEXT */

.homes-spec p {
  margin: 0;

  font-size: 14px;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.82);
}

/* POINTS */

.homes-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.homes-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.homes-point span {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #ddb77b;

  margin-top: 11px;

  flex-shrink: 0;
}

.homes-point p {
  margin: 0;

  font-size: 15px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.88);
}

/* FOOTER */

.homes-footer {
  margin-top: 46px;

  padding-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  font-size: 24px;
  line-height: 1.5;

  font-weight: 500;

  color: #e3c08a;
}

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

@media (max-width: 991px) {
  .homes-section {
    padding: 90px 0;
  }

  .homes-wrapper {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .homes-content {
    position: relative;
    top: 0;
  }

  .homes-specs {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (max-width: 767px) {
  .homes-section {
    padding: 75px 0;
  }

  .homes-overlay {
    background: linear-gradient(
      to top,
      rgba(20, 14, 8, 0.75) 0%,
      rgba(20, 14, 8, 0.58) 45%,
      rgba(20, 14, 8, 0.25) 100%
    );
  }

  .homes-label {
    margin-bottom: 18px;

    font-size: 11px;
  }

  .homes-content h2 {
    font-size: 34px;

    line-height: 1.18;

    letter-spacing: -1px;
  }

  .homes-intro {
    font-size: 14px;

    line-height: 1.9;

    margin-bottom: 28px;
  }

  .homes-highlight {
    padding: 14px 22px;

    margin-bottom: 34px;

    font-size: 11px;

    letter-spacing: 1.5px;
  }

  .homes-specs {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-bottom: 36px;
  }

  .homes-spec {
    padding: 24px;
  }

  .homes-spec span {
    font-size: 30px;
  }

  .homes-point p {
    font-size: 14px;
  }

  .homes-footer {
    margin-top: 38px;

    font-size: 22px;
  }
}

/* =========================
FOOTER
========================= */

.eco-footer {
  position: relative;

  padding: 110px 0 40px;

  background-image: url('../img/bg/eco-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

/* OVERLAY */

.eco-footer-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(5, 18, 15, 0.92) 0%,
    rgba(5, 18, 15, 0.88) 100%
  );

  z-index: 1;
}

/* CONTAINER */

.eco-footer .container {
  position: relative;
  z-index: 3;
}

/* =========================
TOP
========================= */

.eco-footer-top {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;

  gap: 80px;

  padding-bottom: 70px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* LABEL */

.eco-footer-label {
  position: relative;

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

  padding-left: 50px;

  margin-bottom: 22px;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 1.5px;

  color: rgba(255, 255, 255, 0.68);
}

.eco-footer-label::before {
  content: '';

  position: absolute;
  left: 0;

  width: 36px;
  height: 1px;

  background: #d6b178;
}

/* HEADING */

.eco-footer-brand h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -1.5px;
  color: #ffffff;
}

.eco-footer-brand h2 span {
  display: block;

  color: #dfbc84;
}

/* CONTACT */

.eco-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 28px;

  min-width: 280px;
}

.eco-footer-item span {
  display: block;

  margin-bottom: 10px;

  font-size: 11px;
  font-weight: 500;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.5);
}

.eco-footer-item a {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

/* =========================
MIDDLE
========================= */

.eco-footer-middle {
  padding: 38px 0;
}

/* LINKS */

.eco-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.eco-footer-links a {
  position: relative;

  font-size: 15px;
  font-weight: 400;

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

  transition: 0.35s ease;
}

.eco-footer-links a:hover {
  color: #dfbc84;
}

/* =========================
BOTTOM
========================= */

.eco-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 32px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.eco-footer-bottom p,
.eco-footer-bottom span {
  margin: 0;

  font-size: 13px;
  line-height: 1.8;

  color: rgba(255, 255, 255, 0.56);
}

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

@media (max-width: 991px) {
  .eco-footer {
    padding: 90px 0 34px;
  }

  .eco-footer-top {
    grid-template-columns: 1fr;

    gap: 50px;
  }
}

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

@media (max-width: 767px) {
  .eco-footer {
    padding: 75px 0 30px;
  }

  .eco-footer-top {
    padding-bottom: 50px;

    gap: 40px;
  }

  .eco-footer-label {
    margin-bottom: 18px;

    font-size: 11px;
  }

  .eco-footer-brand h2 {
    font-size: 34px;

    line-height: 1.15;

    letter-spacing: -1px;
  }

  .eco-footer-contact {
    gap: 24px;
  }

  .eco-footer-item p {
    font-size: 14px;
  }

  .eco-footer-middle {
    padding: 28px 0;
  }

  .eco-footer-links {
    gap: 18px;
  }

  .eco-footer-links a {
    font-size: 14px;
  }

  .eco-footer-bottom {
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
  }

  .eco-footer-bottom p,
  .eco-footer-bottom span {
    font-size: 12px;
  }
}
/* =========================
RERA
========================= */

.eco-rera-box {
  margin-top: 35px;
  padding: 18px 22px;
  border: 1px solid rgba(223, 188, 132, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  max-width: 520px;
}

.eco-rera-box span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.eco-rera-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #dfbc84;
  word-break: break-word;
}

/* =========================
CONTACT FORM
========================= */

.eco-footer-form-wrap h4 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
}

.eco-footer-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  min-width: 320px;
}

.eco-footer-form input,
.eco-footer-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.eco-footer-form input::placeholder,
.eco-footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.eco-footer-form input:focus,
.eco-footer-form textarea:focus {
  border-color: #dfbc84;
}

.eco-footer-form textarea {
  resize: none;
  min-height: 120px;
}

.eco-footer-form button {
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  background: #173c34;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.eco-footer-form button:hover {
  background: #244d43;
}

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

@media (max-width: 1199px) {
  .eco-footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .eco-footer-form {
    min-width: 100%;
  }
}

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

@media (max-width: 767px) {
  .eco-rera-box {
    margin-top: 25px;
    padding: 16px;
  }

  .eco-rera-box p {
    font-size: 13px;
  }

  .eco-footer-form-wrap h4 {
    font-size: 22px;
  }

  .eco-footer-form input,
  .eco-footer-form textarea {
    padding: 13px 16px;
    font-size: 14px;
  }

  .eco-footer-form button {
    width: 100%;
  }
}

/* =========================
FLOATING BUTTONS
========================= */

/* COMMON */

.whatsapp-float,
.to-top-btn {
  position: fixed;

  right: 20px;

  width: 46px;
  height: 46px;

  border-radius: 16px;

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

  backdrop-filter: blur(10px);

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);

  transition: 0.35s ease;

  z-index: 999;
}

/* =========================
WHATSAPP
========================= */

.whatsapp-float {
  bottom: 20px;

  background: rgba(37, 211, 102, 0.92);

  color: #ffffff;

  font-size: 20px;

  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-4px);

  background: #25d366;

  color: #ffffff;

  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

/* =========================
TO TOP
========================= */

.to-top-btn {
  bottom: 76px;

  border: 1px solid rgba(255, 255, 255, 0.06);

  background: rgba(7, 24, 19, 0.92);

  color: #dfbc84;

  font-size: 15px;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transform: translateY(12px);
}

/* SHOW */

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

  transform: translateY(0);
}

/* HOVER */

.to-top-btn:hover {
  transform: translateY(-4px);

  background: #0d2b23;

  color: #ffffff;

  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

/* ICONS */

.whatsapp-float i,
.to-top-btn i {
  line-height: 1;
}

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

@media (max-width: 767px) {
  .whatsapp-float,
  .to-top-btn {
    width: 42px;
    height: 42px;

    right: 14px;

    border-radius: 14px;
  }

  .whatsapp-float {
    bottom: 14px;

    font-size: 18px;
  }

  .to-top-btn {
    bottom: 62px;

    font-size: 14px;
  }
}

/* =========================
ENQUIRY SIDEBAR
========================= */

/* CTA BUTTON */

.enquiry-toggle {
  position: fixed;

  top: 50%;
  right: -44px;

  transform: translateY(-50%) rotate(-90deg);

  border: 0;
  outline: none;

  height: 42px;

  padding: 0 22px;

  border-radius: 12px 12px 0 0;

  background: #d7b37a;

  color: #13251f;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 1px;

  cursor: pointer;

  z-index: 999;

  transition: 0.35s ease;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.enquiry-toggle:hover {
  background: #e3c28f;
}

/* SIDEBAR */

.enquiry-sidebar {
  position: fixed;

  top: 0;
  right: -390px;

  width: 370px;
  height: 100vh;

  background: #0f201b;

  z-index: 1002;

  overflow-y: auto;

  transition: 0.45s cubic-bezier(0.77, 0, 0.18, 1);

  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.22);
}

/* ACTIVE */

.enquiry-sidebar.active {
  right: 0;
}

/* OVERLAY */

.enquiry-overlay {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.42);

  opacity: 0;
  visibility: hidden;

  z-index: 1001;

  transition: 0.35s ease;
}

.enquiry-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* CONTENT */

.enquiry-content {
  padding: 60px 30px 30px;
}

/* CLOSE */

.close-enquiry {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.08);

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

  color: #ffffff;

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

  cursor: pointer;

  transition: 0.3s ease;
}

.close-enquiry i {
  font-size: 12px;
}

.close-enquiry:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* LABEL */

.enquiry-label {
  position: relative;

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

  padding-left: 42px;

  margin-bottom: 18px;

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 1.5px;

  color: rgba(255, 255, 255, 0.6);
}

.enquiry-label::before {
  content: '';

  position: absolute;
  left: 0;

  width: 30px;
  height: 1px;

  background: #d7b37a;
}

/* HEADING */

.enquiry-content h3 {
  margin-bottom: 18px;

  font-size: 34px;

  line-height: 1.08;

  font-weight: 600;

  letter-spacing: -1px;

  color: #ffffff;
}

.enquiry-content h3 span {
  display: block;

  color: #d7b37a;
}

/* TEXT */

.enquiry-content p {
  margin-bottom: 28px;

  font-size: 13px;
  line-height: 1.9;

  color: rgba(255, 255, 255, 0.72);
}

/* FORM */

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* INPUT */

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 15px 16px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);

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

  color: #ffffff;

  font-size: 13px;

  outline: none;

  transition: 0.3s ease;
}

.form-group textarea {
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

/* FOCUS */

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(215, 179, 122, 0.4);

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

/* SUBMIT */

.submit-btn {
  margin-top: 4px;

  height: 50px;

  border: 0;
  outline: none;

  border-radius: 14px;

  background: #d7b37a;

  color: #13251f;

  font-size: 13px;
  font-weight: 600;

  letter-spacing: 0.3px;

  cursor: pointer;

  transition: 0.35s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);

  background: #e4c48f;
}

/* SCROLLBAR */

.enquiry-sidebar::-webkit-scrollbar {
  width: 5px;
}

.enquiry-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);

  border-radius: 10px;
}

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

@media (max-width: 767px) {
  .enquiry-sidebar {
    width: 100%;
    right: -100%;
  }

  .enquiry-content {
    padding: 56px 22px 24px;
  }

  .enquiry-content h3 {
    font-size: 30px;
  }

  .enquiry-toggle {
    right: -40px;

    height: 40px;

    padding: 0 18px;

    font-size: 10px;
  }
}

/* =========================
VILLA SECTION
========================= */

.villa-section {
  padding: 100px 0;
  background: #f4ece3;
}

.villa-header h2 {
  font-size: clamp(34px, 3vw, 52px);
  font-weight: 500;
  color: #1a2b22;
  line-height: 1.1;
}

.villa-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.villa-tab {
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s ease;
}

.villa-tab:hover,
.villa-tab.active {
  background: #1a2b22;
  color: #fff;
}

.villa-panel {
  display: none;
}

.villa-panel.active {
  display: block;
}

/* =========================
LAYOUT
========================= */

.villa-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* =========================
LEFT SIDE IMAGES
========================= */

.villa-images {
  flex: 0 0 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.villa-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.villa-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: 0.4s ease;
}

.villa-card:hover .villa-img {
  transform: scale(1.05);
}

.villa-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

/* =========================
RIGHT SIDE DETAILS
========================= */

.villa-details {
  flex: 0 0 45%;
  position: sticky;
  top: 110px;

  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* BIGGER VILLA IMAGE */

.villa-3d-img {
  width: 100%;
  max-width: 580px;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.villa-details h3 {
  margin-top: 25px;
  margin-bottom: 15px;

  font-size: 30px;
  font-weight: 600;
  color: #1a2b22;
}

.villa-details p {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
}

.villa-details p b {
  color: #1a2b22;
}

/* =========================
LIGHTBOX
========================= */

.villa-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.villa-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
}

/* =========================
LARGE LAPTOPS
========================= */

@media (max-width: 1400px) {
  .villa-3d-img {
    max-width: 520px;
  }

  .villa-img {
    height: 310px;
  }
}

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

@media (max-width: 991px) {
  .villa-layout {
    flex-direction: column;
  }

  .villa-images {
    width: 100%;
    flex: 100%;
  }

  .villa-details {
    width: 100%;
    flex: 100%;
    position: relative;
    top: auto;
    text-align: center;
    margin-top: 20px;
  }

  .villa-3d-img {
    max-width: 650px;
  }

  .villa-details h3 {
    margin-top: 20px;
  }
}

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

@media (max-width: 767px) {
  .villa-section {
    padding: 70px 0;
  }

  .villa-header h2 {
    font-size: 32px;
  }

  .villa-tabs {
    gap: 8px;
  }

  .villa-tab {
    padding: 10px 16px;
    font-size: 12px;
  }

  .villa-images {
    grid-template-columns: 1fr;
  }

  .villa-img {
    height: auto;
  }

  .villa-3d-img {
    width: 100%;
    max-width: 100%;
  }

  .villa-details h3 {
    font-size: 24px;
  }

  .villa-details p {
    font-size: 14px;
  }
}
.villa-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.villa-lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 34px;
  color: #fff;
  cursor: pointer;
}

[data-aos] {
  transition-duration: 1s !important;
}
