/* ============================================================
   JAFFAR ENCLAVE — Premium CSS
   Theme: Dark Green + Gold | Luxury Corporate
============================================================ */

/* ── Root Variables ── */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A8862E;
  --green: #1B3A2D;
  --green-mid: #22503D;
  --green-dark: #0F2218;
  --white: #FFFFFF;
  --off-white: #F5F0E8;
  --text-muted: rgba(255, 255, 255, 0.65);
  --border: rgba(201, 168, 76, 0.18);
  --body-bg: #0D1C14;
  --card-bg: rgba(27, 58, 45, 0.45);

  --font-serif: 'Optima', 'Segoe UI', 'Candara', 'Callibri', Arial, sans-serif;
  --font-sans: 'Optima', 'Segoe UI', 'Candara', 'Callibri', Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.5s var(--ease);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  font-family: var(--font-sans);
  background: var(--body-bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
}

/* ── Scroll Animation Base Classes ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.reveal-left {
  transform: translateX(-50px);
}

.reveal.reveal-right {
  transform: translateX(50px);
}

.reveal.reveal-scale {
  transform: scale(0.92);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ============================================================
   HEADER & NAVBAR
============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 22px 60px;
  transition: var(--transition);
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 12px 60px;
  background: rgba(13, 28, 20, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 1002;
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.logo:hover .logo-img {
  transform: scale(1.04);
}

/* Nav menu */
.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  z-index: 1003;
}

/* ============================================================
   HERO SLIDER
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--green-dark);
}

.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 1.4s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 9s ease-out;
  filter: brightness(0.8);
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(13, 28, 20, 0.3) 0%,
      rgba(13, 28, 20, 0.55) 50%,
      rgba(13, 28, 20, 0.75) 100%);
}

/* Slide content — centered */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.9s var(--ease) 0.2s;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.slide.active .eyebrow {
  opacity: 1;
  transform: translateY(0);
}

/* Title */
.title {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 26px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(32px);
  transition: all 1s var(--ease) 0.45s;
}

.slide.active .title {
  opacity: 1;
  transform: translateY(0);
}

.title .highlight {
  color: var(--gold);
}

/* Description */
.description {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(22px);
  transition: all 1s var(--ease) 0.65s;
}

.slide.active .description {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(22px);
  transition: all 1s var(--ease) 0.88s;
}

.slide.active .btn-group {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 38px;
  height: 52px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: 50px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.btn-primary {
  background: var(--gold);
  color: var(--green-dark);
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Slider nav arrows */
.slider-nav {
  position: absolute;
  bottom: 50px;
  right: 60px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.nav-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 15px;
  cursor: pointer;
  background: rgba(27, 58, 45, 0.5);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.nav-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 50px;
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

/* Decorative glow */
.glass-decor-1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   SHARED SECTION HEADER
============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.section-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.gold {
  color: var(--gold);
}

.gold-text {
  color: var(--gold);
}

/* ============================================================
   INSTALLMENT CALCULATOR
============================================================ */
.calc-section {
  background: #0f2519;
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}

.calc-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.calc-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Calculator Inputs ── */
.calc-box {
  background: rgba(27, 58, 45, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  padding: 30px 40px;
  margin-bottom: 40px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: flex-end;
}

#calc-reset:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ── Result Grid ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc-results-wrap {
  animation: fadeInUp 0.5s ease forwards;
}

.results-heading {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.results-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.res-card {
  background: linear-gradient(135deg, rgba(27, 58, 45, 0.6) 0%, rgba(15, 33, 25, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.res-card.highlight-card {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, rgba(27, 58, 45, 0.8) 0%, rgba(15, 33, 25, 0.95) 100%);
}

.res-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.res-val {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
}

.res-val.gold {
  color: var(--gold);
  font-size: 28px;
}

/* ── Schedule Table ── */
.schedule-table-wrap {
  overflow-x: auto;
  background: rgba(27, 58, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  margin-top: 24px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.schedule-table th,
.schedule-table td {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-table th {
  background: rgba(15, 33, 25, 0.8);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
}

.schedule-table td {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.dev-charge-row td {
  color: var(--gold);
  font-weight: 500;
  background: rgba(201, 168, 76, 0.05);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .calc-inputs {
    grid-template-columns: 1fr 1fr;
  }

  .calc-inputs .input-group:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .calc-section {
    padding: 70px 20px;
  }

  .calc-inputs {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .res-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .res-card {
    padding: 20px;
  }

  .res-val {
    font-size: 22px;
  }

  .res-val.gold {
    font-size: 26px;
  }

  .calc-box {
    padding: 24px 20px;
  }
}

/* ============================================================
   FEATURES & FACILITIES SECTION
============================================================ */
.features-section {
  background: var(--body-bg);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(27, 58, 45, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* 4-column grid, 2 rows (8 cards) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Feature Card */
.feature-card {
  background: linear-gradient(145deg, rgba(27, 58, 45, 0.3) 0%, rgba(15, 34, 25, 0.5) 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 18px;
  padding: 40px 28px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.45s var(--ease);
}

/* Subtle shimmer overlay on hover */
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 18px;
}

/* Bottom gold line that grows on hover */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transition: width 0.5s var(--ease);
  border-radius: 2px;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  width: 60%;
}

/* Icon wrapper */
.feature-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  font-size: 26px;
  transition: all 0.4s var(--ease);
  flex-shrink: 0;
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(201, 168, 76, 0.16);
  border-color: rgba(201, 168, 76, 0.45);
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(201, 168, 76, 0.2);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--gold-light);
}

.feature-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-frame {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 70px 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .feature-card {
    padding: 30px 20px 26px;
  }

  .feature-icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .feature-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LOCATION & MAPS SECTION
============================================================ */
.maps-section {
  background: var(--green-dark);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.maps-container {
  max-width: 1280px;
  margin: 0 auto;
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.map-card {
  background: rgba(13, 28, 20, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.map-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.1);
}

.map-card-head {
  padding: 24px 30px;
  background: rgba(201, 168, 76, 0.05);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.map-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.map-title i {
  font-size: 20px;
}

/* Google Map Embed */
.map-embed-wrap {
  width: 100%;
  height: 400px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
}

.map-embed-wrap iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(80%) contrast(90%);
  transition: filter 0.5s ease;
}

.map-card:hover .map-embed-wrap iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(105%);
}

/* Master Plan Placeholder */
.masterplan-wrap {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(27, 58, 45, 0.4) 0%, rgba(13, 28, 20, 0.8) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
}

.masterplan-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: rgba(201, 168, 76, 0.6);
  text-align: center;
}

.masterplan-placeholder i {
  font-size: 48px;
  opacity: 0.8;
}

.masterplan-placeholder span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.masterplan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}



/* Zoom Controls UI */
.zoom-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(13, 28, 20, 0.8);
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.zoom-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: none;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zoom-btn:hover {
  background: var(--gold);
  color: #000;
}

/* Responsive Maps */
@media (max-width: 992px) {
  .maps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .map-embed-wrap,
  .masterplan-wrap {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .maps-section {
    padding: 70px 20px;
  }

  .map-embed-wrap,
  .masterplan-wrap {
    height: 300px;
  }

  .map-card-head {
    padding: 20px 24px;
  }

  .map-title {
    font-size: 20px;
  }
}

/* ============================================================
   BOOKING / INQUIRY SECTION
============================================================ */
.contact-section {
  background: linear-gradient(135deg, var(--body-bg) 0%, rgba(13, 28, 20, 1) 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* Contact Info Column */
.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.c-item:hover .c-icon {
  background: var(--gold);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2);
}

.c-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.c-text span {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.c-text strong {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 50px;
  align-self: flex-start;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
  font-size: 22px;
}

/* Contact Form Column */
.contact-form-wrap {
  background: rgba(27, 58, 45, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}

.form-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
}

.input-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.input-group select option {
  background: var(--green-dark);
  color: var(--white);
}

.submit-btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 70px 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-title {
    font-size: 24px;
  }
}

/* ============================================================
   FOOTER SECTION
============================================================ */
.site-footer {
  background: var(--body-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 80px;
  color: var(--text-muted);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Col 1: About */
.footer-logo {
  height: 60px;
  margin-bottom: 24px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.8;
}

/* Col 2 & 3: Links */
.footer-heading {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  /* FontAwesome chevron-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Col 4: Social */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-4px);
  border-color: var(--gold);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom-links span {
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section {
  background: var(--body-bg);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle green glow on the left */
.about-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -200px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(27, 58, 45, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 90px;
  align-items: center;
}

/* Left: image frame */
.about-image-col {
  position: relative;
}

.about-img-frame {
  position: relative;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 70px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(201, 168, 76, 0.1);
}

.about-logo-display {
  width: 68%;
  max-width: 280px;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(201, 168, 76, 0.25));
}

/* Stat badges */
.about-stat-badge {
  position: absolute;
  background: var(--green);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.badge-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.badge-1 {
  bottom: -22px;
  left: -22px;
}

.badge-2 {
  top: -22px;
  right: -22px;
}

/* Right: content */
.about-content-col {
  color: var(--white);
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.about-eyebrow::before {
  content: '';
  display: block;
  width: 26px;
  height: 1px;
  background: var(--gold);
}

.about-title {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 18px;
}

.about-highlight {
  color: var(--gold);
}

.about-divider {
  width: 55px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 28px;
  border-radius: 2px;
}

.about-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 16px;
}

.about-text strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* Feature list */
.about-features {
  list-style: none;
  padding: 0;
  margin: 28px 0 38px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.about-features li i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}

.btn-about-primary {
  display: inline-flex;
  align-items: center;
  padding: 0 38px;
  height: 52px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--gold);
  border-radius: 50px;
  font-family: var(--font-sans);
  transition: all 0.35s var(--ease);
}

.btn-about-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

/* ============================================================
   RESPONSIVE — 1200px
============================================================ */
@media (max-width: 1200px) {
  .header {
    padding: 20px 40px;
  }

  .header.scrolled {
    padding: 12px 40px;
  }

  .nav-menu {
    gap: 24px;
  }

  .logo-img {
    height: 65px;
  }

  .title {
    font-size: 65px;
  }

  .about-section {
    padding: 100px 40px;
  }

  .about-container {
    gap: 60px;
  }
}

/* ============================================================
   RESPONSIVE — 992px
============================================================ */
@media (max-width: 992px) {
  .title {
    font-size: 52px;
  }

  .logo-img {
    height: 55px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-link {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .about-title {
    font-size: 42px;
  }

  .about-section {
    padding: 80px 40px;
  }
}

/* ============================================================
   RESPONSIVE — 768px (Mobile)
============================================================ */
@media (max-width: 768px) {

  /* Header */
  .header {
    padding: 12px 20px;
  }

  .header.scrolled {
    padding: 10px 20px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(13, 28, 20, 0.98);
  }

  /* Logo */
  .logo-img {
    height: 45px;
  }

  /* Hamburger */
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(27, 58, 45, 0.7);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 18px;
    color: var(--white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease;
  }

  .hamburger:hover {
    background: rgba(27, 58, 45, 0.9);
  }

  /* Slide-out drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78vw;
    max-width: 320px;
    height: 100dvh;
    background: rgba(10, 20, 14, 0.98);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 110px 32px 50px;
    gap: 0;
    transition: right 0.45s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    z-index: 1002;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-link {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 16px 0;
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link.active,
  .nav-link:hover {
    color: var(--gold);
    padding-left: 6px;
  }

  .nav-link::after {
    display: none;
  }

  /* Hero */
  .hero {
    height: 100dvh;
    min-height: 560px;
  }

  .slide-content {
    width: 92%;
    top: 52%;
    padding: 0;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 14px;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 18px;
  }

  .title {
    font-size: 28px;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.25;
  }

  .description {
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    height: 46px;
    font-size: 14px;
  }

  .slider-nav {
    display: none;
  }

  .slider-dots {
    bottom: 22px;
  }

  .dot {
    width: 22px;
  }

  .dot.active {
    width: 36px;
  }

  .glass-decor-1 {
    display: none;
  }

  /* About */
  .about-section {
    padding: 70px 20px;
  }

  .about-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .badge-1 {
    bottom: -14px;
    left: -8px;
  }

  .badge-2 {
    top: -14px;
    right: -8px;
  }

  .about-img-frame {
    padding: 50px 30px;
    min-height: 260px;
  }

  .badge-number {
    font-size: 26px;
  }
}

/* ============================================================
   AVAILABLE PLOTS SECTION
============================================================ */
.plots-section {
  background: linear-gradient(180deg, #0d1c14 0%, #0f2519 60%, #0d1c14 100%);
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.plots-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.plots-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(27, 58, 45, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.plots-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Grid ── */
.plots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* ── Plot Card ── */
.plot-card {
  position: relative;
  background: linear-gradient(145deg, rgba(27, 58, 45, 0.5) 0%, rgba(13, 28, 20, 0.8) 100%);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 22px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
  overflow: hidden;
}

.plot-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.plot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.25);
  border-color: rgba(201, 168, 76, 0.3);
}

/* ── Badge ── */
.plot-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plot-badge.popular {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--green-dark);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.plot-badge.premium {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 100%);
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.3);
}

/* ── Icon Wrap ── */
.plot-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(27, 58, 45, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.plot-icon-wrap.gold-icon {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18) 0%, rgba(201, 168, 76, 0.06) 100%);
  border-color: rgba(201, 168, 76, 0.35);
  color: var(--gold);
}

.plot-card:hover .plot-icon-wrap {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
  transform: scale(1.08);
}

/* ── Size & Dimensions ── */
.plot-size-tag {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 6px;
}

.plot-dims {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 22px;
}

/* ── Price Block ── */
.plot-price-wrap {
  width: 100%;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.plot-price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.plot-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.plot-price.gold {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

/* ── Installment Row ── */
.plot-installment-wrap {
  width: 100%;
  background: rgba(27, 58, 45, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plot-install-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.plot-install-inner>i {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.install-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.install-amount {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--gold);
}

.install-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 1px;
  text-align: right;
}

/* ── CTA Button ── */
.btn-plot-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: all 0.35s var(--ease);
  text-decoration: none;
}

.btn-plot-cta:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-plot-cta.gold-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.4);
}

.btn-plot-cta.gold-cta:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.3);
}

/* ── View More Area ── */
.plots-view-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 48px;
  height: 56px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  transition: all 0.35s var(--ease);
  text-decoration: none;
}

.btn-view-more:hover {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
  transform: translateY(-2px);
}

.view-more-note {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 440px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .plots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .plots-section {
    padding: 70px 20px;
  }

  .plots-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .plot-size-tag {
    font-size: 26px;
  }

  .btn-view-more {
    padding: 0 32px;
    height: 50px;
    font-size: 13px;
  }
}

/* ============================================================
   PAGE HERO (Gallery & Inner Pages)
============================================================ */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 80px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.55);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 28, 20, 0.92) 0%,
      rgba(13, 28, 20, 0.45) 60%,
      rgba(13, 28, 20, 0.25) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 15px;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.breadcrumb a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.75;
}

.breadcrumb i {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   GALLERY SECTION
============================================================ */
.gallery-section {
  background: var(--body-bg);
  padding: 100px 60px 120px;
  position: relative;
}

.gallery-container {
  max-width: 1340px;
  margin: 0 auto;
}

/* ── Filter Tabs ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 56px;
}

.filter-btn {
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: var(--font-sans);
  cursor: pointer;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(27, 58, 45, 0.3);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
  margin-bottom: 60px;
}

/* All cards same size — no wide/tall overrides */

/* ── Gallery Item ── */
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item.hidden {
  display: none;
}

.gi-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ── Thumb Backgrounds by Category ── */
.gi-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: transform 0.5s var(--ease);
}

.foundation-thumb {
  background: linear-gradient(135deg, #1a3a2a 0%, #0e2218 60%, #2a1a0a 100%);
}

.roads-thumb {
  background: linear-gradient(135deg, #1a2e3a 0%, #0e1c22 60%, #0a1e2a 100%);
}

.boundary-thumb {
  background: linear-gradient(135deg, #2a1a3a 0%, #1a0e22 60%, #1e0a2a 100%);
}

.plots-thumb {
  background: linear-gradient(135deg, #1a3a1a 0%, #0e220e 60%, #2a3a0a 100%);
}

.utilities-thumb {
  background: linear-gradient(135deg, #3a2a0a 0%, #221a0e 60%, #3a160a 100%);
}

.gi-inner:hover .gi-thumb {
  transform: scale(1.06);
}

.gi-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(201, 168, 76, 0.7);
  transition: all 0.4s ease;
}

.gi-inner:hover .gi-icon-wrap {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.gi-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Gallery card real image ── */
.gi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
}

.gi-inner:hover .gi-img {
  transform: scale(1.06);
}

/* ── Hover Overlay ── */
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 28, 20, 0.97) 0%,
      rgba(13, 28, 20, 0.7) 50%,
      rgba(13, 28, 20, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 22px;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gi-inner:hover .gi-overlay {
  opacity: 1;
}

.gi-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  justify-content: flex-end;
}

.gi-phase {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.gi-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.gi-date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.gi-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.gi-inner:hover .gi-zoom {
  opacity: 1;
  transform: scale(1);
}

.gi-zoom:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ── Empty State ── */
.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  flex-direction: column;
  gap: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-empty i {
  font-size: 52px;
  color: rgba(201, 168, 76, 0.2);
}

.gallery-empty p {
  font-size: 16px;
}

/* ── Progress Stats ── */
.progress-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(27, 58, 45, 0.5) 0%, rgba(15, 37, 25, 0.7) 100%);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  padding: 32px 40px;
  margin-top: 20px;
}

.pstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.pstat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pstat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pstat-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 168, 76, 0.15);
  flex-shrink: 0;
}

/* ============================================================
   LIGHTBOX MODAL
============================================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 16, 12, 0.92);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.lightbox-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  background: linear-gradient(145deg, #1b3a2d, #0f2519);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease);
}

.lightbox-modal.active .lightbox-box {
  transform: scale(1) translateY(0);
}

.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lb-close:hover {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

.lb-visual {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  overflow: hidden;
}

.lb-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lb-icon-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.lb-icon-area i {
  font-size: 72px;
  color: var(--gold);
  opacity: 0.7;
}

.lb-icon-area span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.lb-info {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.lb-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.lb-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.lb-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lb-detail-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.lb-detail-row i {
  width: 18px;
  color: var(--gold);
  font-size: 14px;
}

.lb-cta {
  width: 100%;
  margin-top: 4px;
}

/* ── Responsive for Gallery ── */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item.gi-wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .gallery-section {
    padding: 60px 20px 80px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.gi-wide {
    grid-column: span 2;
  }

  .gallery-item.gi-tall {
    grid-row: span 1;
  }

  .progress-stats {
    flex-wrap: wrap;
    gap: 24px;
    padding: 28px 24px;
  }

  .pstat-divider {
    display: none;
  }

  .pstat {
    min-width: 40%;
  }

  .lightbox-box {
    grid-template-columns: 1fr;
  }

  .lb-visual {
    min-height: 180px;
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  }
}

@media (max-width: 600px) {
  .page-hero {
    height: 360px;
  }

  .page-hero-title {
    font-size: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.gi-wide {
    grid-column: span 1;
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 18px;
    font-size: 12px;
  }
}

/* ============================================================
   ABOUT US PAGE — STORY SECTION
============================================================ */
.about-story-section {
  background: var(--body-bg);
  padding: 110px 60px;
  position: relative;
  overflow: hidden;
}

.about-story-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-story-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 28px;
}

.story-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 18px;
}

.story-text strong {
  color: var(--white);
  font-weight: 600;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.story-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.story-tag i {
  font-size: 11px;
}

/* Story visual + badges */
.story-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.story-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.story-badge-wrap {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.story-badge {
  background: rgba(15, 37, 25, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 18px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  min-width: 130px;
}

.story-badge.gold-badge {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.18) 0%, rgba(168, 134, 46, 0.1) 100%);
  border-color: rgba(201, 168, 76, 0.4);
}

.story-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.story-badge-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   ACHIEVEMENT STATS BAND
============================================================ */
.about-stats-section {
  background: linear-gradient(135deg, #060e09 0%, #0d2016 40%, #0a1a10 100%);
  padding: 80px 60px;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  position: relative;
  overflow: hidden;
}

.about-stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

/* ── Projects Listing ── */
.projects-listing {
  max-width: 1100px;
  margin: 60px auto 0;
}

.projects-listing-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.projects-listing-title span {
  color: var(--gold);
}

.projects-listing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.project-entry {
  background: rgba(15, 37, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.3s, background 0.3s;
}

.project-entry:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(27, 58, 45, 0.5);
}

.project-entry.pe-active {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.06);
}

.pe-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}

.pe-icon.gold-icon {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.pe-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.pe-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pe-location {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.pe-location i {
  font-size: 10px;
  color: var(--gold);
}

.pe-year {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.pe-year.pe-ongoing {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
}

@media (max-width: 900px) {
  .projects-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .projects-listing-grid {
    grid-template-columns: 1fr;
  }
}


.about-stat-card {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
}

.about-stat-card:last-child {
  border-right: none;
}

.about-stat-card>i {
  font-size: 32px;
  color: var(--gold);
  opacity: 0.8;
}

.astat-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.astat-plus {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  vertical-align: super;
}

.astat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   MISSION & VISION
============================================================ */
.mv-section {
  background: var(--body-bg);
  padding: 110px 60px;
  position: relative;
}

.mv-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 58, 45, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.mv-card {
  background: linear-gradient(145deg, rgba(27, 58, 45, 0.4) 0%, rgba(15, 33, 25, 0.7) 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 22px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.mv-card.mv-card-gold {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.08) 0%, rgba(15, 33, 25, 0.8) 100%);
}

.mv-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(27, 58, 45, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255, 255, 255, 0.5);
}

.mv-icon.gold-mv-icon {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold);
}

.mv-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.mv-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ============================================================
   CORE VALUES
============================================================ */
.values-section {
  background: linear-gradient(180deg, #0f2519 0%, #0d1c14 100%);
  padding: 110px 60px;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 22px;
  overflow: hidden;
}

.value-item {
  background: linear-gradient(145deg, rgba(15, 37, 25, 0.95) 0%, rgba(13, 28, 20, 0.98) 100%);
  padding: 44px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: background 0.3s ease;
}

.value-item:hover {
  background: linear-gradient(145deg, rgba(27, 58, 45, 0.6) 0%, rgba(15, 37, 25, 0.95) 100%);
}

.value-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.18);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -1px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
}

/* ============================================================
   TEAM SECTION
============================================================ */
.team-section {
  background: var(--body-bg);
  padding: 110px 60px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: linear-gradient(145deg, rgba(27, 58, 45, 0.4) 0%, rgba(13, 28, 20, 0.8) 100%);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border-color: rgba(201, 168, 76, 0.28);
}

.team-avatar {
  background: linear-gradient(135deg, rgba(27, 58, 45, 0.8) 0%, rgba(15, 33, 25, 0.9) 100%);
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.avatar-placeholder {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.08);
  border: 2px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: rgba(201, 168, 76, 0.6);
}

.team-info {
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.team-name {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}

.team-role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.team-bio {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-top: 8px;
  flex: 1;
}

.team-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.team-socials a:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   ABOUT CTA SECTION
============================================================ */
.about-cta-section {
  background: var(--body-bg);
  padding: 100px 60px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.about-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.about-cta-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.about-cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  height: 52px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  background: #25D366;
  border: 2px solid #25D366;
  color: #fff;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

/* ============================================================
   ABOUT PAGE — RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-story-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-img {
    height: 360px;
  }

  .story-badge-wrap {
    position: static;
    transform: none;
    margin-top: 40px;
    justify-content: center;
  }

  .about-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  }

  .about-stat-card:nth-child(odd) {
    border-right: 1px solid rgba(201, 168, 76, 0.12);
  }

  .about-stat-card:last-child {
    border-bottom: none;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .about-story-section,
  .about-stats-section,
  .mv-section,
  .values-section,
  .team-section,
  .about-cta-section {
    padding: 70px 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-title {
    font-size: 34px;
  }

  .astat-num {
    font-size: 40px;
  }
}

/* ============================================================
   AVAILABLE PLOTS PAGE
============================================================ */

/* ── Plots Stats Strip ── */
.plots-stats-section {
  background: var(--green-dark);
  padding: 60px;
  border-bottom: 1px solid var(--border);
}

.plots-stats-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.plot-stat-card {
  background: rgba(27, 58, 45, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.plot-stat-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
  background: rgba(27, 58, 45, 0.75);
}

.plot-stat-card i {
  font-size: 30px;
  color: var(--gold);
}

.pstat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pstat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Main Plots Section ── */
.plots-section {
  background: var(--body-bg);
  padding: 100px 60px 120px;
  position: relative;
  overflow: hidden;
}

.plots-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 58, 45, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.plots-section::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.plots-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Filter Bar ── */
.plots-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.plot-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  background: rgba(27, 58, 45, 0.3);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(6px);
}

.plot-filter-btn i {
  font-size: 14px;
}

.plot-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.plot-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

/* ── Results Count ── */
.plots-result-info {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.plots-result-info strong {
  color: var(--gold);
}

/* ── Plot Grid ── */
.plots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}


/* ── No Results ── */
.plots-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 20px;
  color: var(--text-muted);
}

.plots-no-results i {
  font-size: 48px;
  color: rgba(201, 168, 76, 0.3);
}

.plots-no-results p {
  font-size: 16px;
}

/* ── Payment Plan Strip ── */
.plots-payment-strip {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 60px;
}

.plots-payment-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.pps-icon {
  font-size: 52px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.85;
}

.pps-text {
  flex: 1;
}

.pps-text h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.pps-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.pps-text strong {
  color: var(--gold);
}

/* ── Responsive: Plots Page ── */
@media (max-width: 1200px) {
  .plots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .plots-stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .plots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .plots-stats-section,
  .plots-section {
    padding: 60px 24px 80px;
  }

  .plots-payment-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .plots-payment-strip {
    padding: 50px 24px;
  }
}

@media (max-width: 600px) {
  .plots-stats-container {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .plots-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plots-filter-bar {
    gap: 8px;
  }

  .plot-filter-btn {
    padding: 10px 18px;
    font-size: 11px;
  }

  .plots-section {
    padding: 60px 16px 80px;
  }

  .plot-card-size {
    font-size: 20px;
  }

  .plot-price-val {
    font-size: 20px;
  }
}

/* =========================================================================
   PLOT DETAILS PAGE
   ========================================================================= */

.plot-details-section {
  padding: 80px 5%;
  background: var(--bg-dark);
  /* or an alternate dark tone */
  position: relative;
}

.plot-details-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* MAIN CONTENT (LEFT) */
.pd-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pd-main-img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 450px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-gallery-thumbs {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.pd-gallery-thumbs img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.pd-gallery-thumbs img:hover,
.pd-gallery-thumbs img.active {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.pd-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
}

.pd-heading {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-block p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 15px;
}

.pd-block p:last-child {
  margin-bottom: 0;
}

/* Features Grid */
.pd-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.pd-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.2);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-feature i {
  font-size: 24px;
  color: var(--gold);
  width: 30px;
  text-align: center;
}

.pd-feature div {
  display: flex;
  flex-direction: column;
}

.pd-feature span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pd-feature strong {
  font-size: 14px;
  color: #fff;
  margin-top: 3px;
}

.pd-map-placeholder {
  height: 300px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.pd-map-placeholder i {
  font-size: 40px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.2);
}

/* SIDEBAR (RIGHT) */
.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 100px;
}

.pd-sidebar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.pd-card-eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}

.pd-price-total {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #fff;
  margin-bottom: 25px;
}

.pd-installments {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pdi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.pdi-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pdi-row span {
  color: rgba(255, 255, 255, 0.6);
}

.pdi-row strong {
  color: #fff;
}

.pd-btn-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.pd-card-title {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.pd-card-title.center {
  text-align: center;
}

.pd-summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pd-summary-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

.pd-summary-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pd-summary-list li i {
  color: var(--gold);
  width: 24px;
  margin-right: 10px;
  text-align: center;
}

.pd-summary-list li span {
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
}

.pd-summary-list li strong {
  color: #fff;
}

.pd-agent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 2px solid var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
}

.pd-agent-avatar i {
  font-size: 24px;
  color: var(--gold);
}

.pd-contact-text {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pd-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .plot-details-container {
    grid-template-columns: 1fr;
  }

  .pd-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .plot-details-section {
    padding: 60px 15px;
  }

  .pd-main-img {
    height: 250px;
  }

  .pd-gallery-thumbs img {
    width: 80px;
    height: 60px;
  }
}

/* =========================================================================
   NEWS & BLOG (news.php)
   ========================================================================= */

/* Featured Post */
.featured-post {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.fp-image-wrap {
  width: 50%;
  position: relative;
}

.fp-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fp-content {
  width: 50%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fp-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.fp-meta i {
  color: var(--gold);
}

.fp-title {
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.fp-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.fp-title a:hover {
  color: var(--gold);
}

.fp-excerpt {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.news-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nc-image-link {
  display: block;
  position: relative;
  height: 220px;
  overflow: hidden;
}

.nc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .nc-image {
  transform: scale(1.05);
}

.nc-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.nc-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nc-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.nc-meta i {
  color: var(--gold);
  margin-right: 5px;
}

.nc-title {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.nc-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nc-title a:hover {
  color: var(--gold);
}

.nc-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.nc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.3s ease;
}

.nc-read-more:hover {
  gap: 12px;
}

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.np-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.np-btn:not(.disabled):hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

.np-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.np-numbers {
  display: flex;
  gap: 8px;
}

.np-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.np-num:hover,
.np-num.active {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

/* =========================================================================
   NEWS DETAILS (news-details.php)
   ========================================================================= */

.news-details-hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}

.nd-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.nd-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nd-meta i {
  color: var(--gold);
  margin-right: 5px;
}

.nd-title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.nd-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.nda-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.nd-author div {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.nd-author strong {
  font-size: 14px;
  color: #fff;
}

.nd-author span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Layout Core */
.nd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
}

.nd-main {
  display: flex;
  flex-direction: column;
}

.nd-article-content {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.nd-article-content .nd-intro {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 40px;
}

.nd-article-content h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #fff;
  margin: 40px 0 20px;
}

.nd-article-content p {
  margin-bottom: 25px;
}

.nd-article-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}

.nd-article-content li {
  margin-bottom: 10px;
}

.nd-inline-img {
  width: 100%;
  border-radius: 12px;
  margin: 30px 0 10px;
}

.nd-img-caption {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 30px;
  font-style: italic;
}

.nd-quote {
  margin: 40px 0;
  padding: 30px 40px;
  background: rgba(201, 168, 76, 0.05);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
}

.nd-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--gold);
  font-style: normal;
  margin-top: 15px;
}

/* Share Block */
.nd-share {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 50px 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nd-share span {
  font-weight: 600;
  color: #fff;
}

.nds-links {
  display: flex;
  gap: 10px;
}

.nds-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nds-links a:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* Post Navigation */
.nd-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.nd-post-nav a {
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.nd-post-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 168, 76, 0.3);
}

.ndn-next {
  text-align: right;
}

.ndn-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.ndn-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* Sidebar Styling */
.nd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 100px;
}

.nds-widget {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
}

.nds-title {
  font-family: var(--font-sans);
  font-size: 18px;
  color: #fff;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nds-search-form {
  display: flex;
}

.nds-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 15px;
  color: #fff;
  border-radius: 6px 0 0 6px;
  outline: none;
}

.nds-submit {
  background: var(--gold);
  color: var(--green-dark);
  border: none;
  padding: 0 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nds-submit:hover {
  background: #fff;
}

.nds-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nds-list li {
  margin-bottom: 12px;
}

.nds-list li:last-child {
  margin-bottom: 0;
}

.nds-list a {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.nds-list a:hover {
  color: var(--gold);
}

.nds-list span {
  color: rgba(255, 255, 255, 0.4);
}

.nds-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nds-rp-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
}

.nds-rp-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.nds-rp-text h5 {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.nds-rp-item:hover .nds-rp-text h5 {
  color: var(--gold);
}

.nds-rp-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .featured-post {
    flex-direction: column;
  }

  .fp-image-wrap,
  .fp-content {
    width: 100%;
  }

  .fp-content {
    padding: 30px;
  }

  .nd-layout {
    grid-template-columns: 1fr;
  }

  .nd-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .fp-title {
    font-size: 22px;
  }

  .nd-title {
    font-size: 32px;
  }

  .nd-post-nav {
    grid-template-columns: 1fr;
  }
}