/* ===== ROOT COLORS ===== */
:root {
  --primary-dark: #0f0f0f;
  --overlay-dark: rgba(0, 0, 0, 0.65);
  --text-light: #ffffff;
  --text-muted: #cccccc;

  /* Dark Orange Luxury Palette */
  --orange-main: #cb4d28;
  --orange-deep: #ab300a;
  --orange-light: #e54f2c;
  --btn-border: #ffffff;
  --btn-bg-hover: #ffffff;
  --btn-text-hover: #000000;
}

/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--primary-dark);
}
/* ===== NAVBAR ===== */
.custom-navbar {
  background: #111;
  padding: 5px 20px;
  transition: all 0.3s ease;
}

.nav-link {
  color: var(--text-muted) !important;
  margin-left: 20px;
  position: relative;
}

.nav-link:hover {
  color: var(--text-light) !important;
}

.navbar-shrink {
  background: #000;
}

/* ===== BANNER ===== */
.banner-content * {
  will-change: transform, opacity;
}
.banner {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  overflow: hidden;
}

.banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.banner-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
}

/* ===== TEXT ===== */
.text-wrap {
  overflow: hidden;
}

.main-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 42px;
  letter-spacing: 6px;
  color: var(--text-light);
}

/* ===== HERO TEXT (DARK ORANGE) ===== */
.rise-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: 10px;
  line-height: 1;

  /* color: var(--orange-main); */

  /* depth without glow */
  /* text-shadow:
    0 8px 20px rgba(0,0,0,0.6),
    0 2px 5px rgba(0,0,0,0.8); */
}
.gradient-text {
  background: linear-gradient(to bottom, #c44c27 0%, #c44c27 25%, #9d2623 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ===== SUBTEXT ===== */
.sub-title {
  font-size: 20px;
  margin-top: 15px;
  letter-spacing: 2px;
  color: var(--text-light);
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: transparent; /* FIX */
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 13px;
  position: relative;
  z-index: 10; /* CRITICAL */
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: var(--orange-deep);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .main-title {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .rise-title {
    font-size: 60px;
    letter-spacing: 4px;
  }

  .sub-title {
    font-size: 16px;
  }

  .cta-btn {
    padding: 10px 24px;
    font-size: 12px;
  }
}

.rising-section {
  padding: 100px 0;
  background: #0b0b0b;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle premium glow */
.rising-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(203, 77, 40, 0.08),
    transparent 60%
  );
  z-index: 0;
}

.rising-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

/* TITLE */
.rising-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 48px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

/* TEXT */
.rising-lines p {
  font-size: 17px;
  color: #bbb;
  margin-bottom: 10px;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* EMPHASIS */
.rising-lines .highlight {
  font-size: 28px;
  font-weight: 600;
}

.rising-lines .final-line {
  margin-top: 10px;
  font-size: 22px;
  letter-spacing: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .rising-section {
    padding: 80px 20px;
  }

  .rising-title {
    font-size: 28px;
  }

  .rising-lines p {
    font-size: 16px;
  }

  .rising-lines .highlight {
    font-size: 20px;
  }
}

.growth-section {
  background: #0f0f0f;
  padding: 140px 60px;
  color: #fff;
  overflow: hidden;
}

/* LEFT SIDE */
.tagline {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 20px;
}

.big-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.big-title span {
  color: var(--orange-main);
}

/* Paragraph lines */
.content-lines p {
  opacity: 0.7;
  margin-bottom: 15px;
  font-size: 18px;
}

/* RIGHT SIDE */
.growth-right {
  text-align: right;
  position: relative;
}

/* BIG IMPACT WORD */
.impact-text {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 120px;
  color: var(--orange-main);
  line-height: 1;
  opacity: 0.1;
}

/* Sub line */
.impact-sub {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  letter-spacing: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .growth-section {
    padding: 80px 20px;
  }

  .big-title {
    font-size: 32px;
  }

  .impact-text {
    font-size: 60px;
    text-align: center;
  }

  .growth-right {
    text-align: center;
    margin-top: 40px;
  }

  .impact-sub {
    position: static;
    transform: none;
    margin-top: 10px;
  }
}

.infra-section {
  background: url('../img/infra.jpg') center/cover no-repeat;
  padding: 140px 0;
  position: relative;
  color: #fff;
}

.infra-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.container {
  position: relative;
  z-index: 2;
}

/* TITLE */
.infra-title {
  text-align: center;
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 52px;
  letter-spacing: 4px;
}

.infra-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

/* GRID */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.infra-card {
  background: rgb(4 4 4 / 21%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 22px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  position: relative;
  min-height: 320px;
}

/* glow effect */
.infra-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(194, 106, 0, 0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.infra-card:hover::before {
  opacity: 1;
}

.infra-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange-main);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
}

/* HEADING */
.infra-card h3 {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 18px;
  margin-bottom: 18px;
}

/* LIST */
.infra-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.infra-card li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
  line-height: 1.5;
  position: relative;
  padding-left: 16px;
}

.infra-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--orange-main);
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 50%;
}

.infra-card strong {
  color: #fff;
}

/* NOTE */
.infra-note {
  text-align: center;
  margin-top: 70px;
  font-size: 18px;
  color: #ddd;
  letter-spacing: 1px;
}

/* NOTE INSIDE CARD */
.infra-note-box {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);

  font-size: 13px;
  line-height: 1.6;
  color: #aaa;

  opacity: 0.85;
  transition: all 0.3s ease;
}

/* highlight second line */
.infra-note-box strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* subtle hover enhancement */
.infra-card:hover .infra-note-box {
  color: #ddd;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .infra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .infra-grid {
    grid-template-columns: 1fr;
  }

  .infra-title {
    font-size: 28px;
  }
}

/* ================= SECTION ================= */
.audience-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background-color: #0b0b0b;
}

/* ================= GRID FIX ================= */
.audience-section .row {
  display: flex;
  flex-wrap: wrap;
}

/* ================= CARD ================= */
.aud-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 420px;

  position: relative;
  padding: 50px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;

  background-size: cover;
  background-position: center;

  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.5s ease;
}

/* IMAGE BACKGROUNDS */
.bg-investor {
  background-image: url('../img/investor.jpg');
}

.bg-buyer {
  background-image: url('../img/buyer.jpg');
}

/* 🔥 CLEAN DARK OVERLAY (NO ORANGE) */
.aud-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25)
  );
  z-index: 1;
}

/* CONTENT ABOVE */
.aud-card * {
  position: relative;
  z-index: 2;
}

/* ================= HOVER ================= */
.aud-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--orange-main);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  background-size: 110%;
}

/* ================= TEXT ================= */
.aud-tag {
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--orange-light);
  margin-bottom: 15px;
  font-weight: bold;
}

.aud-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.aud-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.aud-list li {
  padding-left: 20px;
  margin-bottom: 10px;
  color: #ddd;
  position: relative;
  line-height: 1.5;
}

.aud-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange-main);
  position: absolute;
  left: 0;
  top: 8px;
  border-radius: 50%;
}

.aud-highlight {
  color: #ccc;
  margin-bottom: 20px;
}

.aud-highlight strong {
  color: var(--orange-main);
}

/* ================= BUTTON ================= */
.aud-btn {
  margin-top: auto;
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(to bottom, #c44c27 0%, #c44c27 25%, #9d2623 100%);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.5s;
}

.aud-btn:hover {
  color: #000;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .aud-card {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .aud-card {
    padding: 30px;
    min-height: auto;
  }

  .aud-title {
    font-size: 22px;
  }
}

.custom-modal {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px;
  color: #fff;
}

.modal-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

/* INPUTS */
.custom-modal input {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: #fff;
  outline: none;
}

.custom-modal input:focus {
  border-color: var(--orange-main);
}

/* BUTTON */
.modal-btn {
  width: 100%;
  padding: 12px;
  background: var(--orange-main);
  border: none;
  color: #fff;
  letter-spacing: 1px;
  transition: 0.3s;
}

.modal-btn:hover {
  background: #fff;
  color: #000;
}
/* POSITION */
.custom-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;

  /* make it visible on dark bg */
  filter: invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

/* HOVER */
.custom-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* statement SECTION */
.statement-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* BG IMAGE */
.statement-bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg/bg-1.jpg') center/cover no-repeat;
  z-index: 0;
  transform: scale(1.1);
}

/* OVERLAY */
.statement-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
    radial-gradient(circle at 30% 40%, rgba(194,106,0,0.25), transparent 60%);
  z-index: 1;
}

/* CONTENT */
.statement-content {
  position: relative;
  z-index: 2;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* TITLES */
.statement-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 56px;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

/* TEXT */
.statement-lines span {
  display: block;
  font-size: 20px;
  color: #ddd;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* BUTTON */
.statement-btn {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(to bottom, #c44c27, #9d2623);
  color: #fff;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 14px;
  transition: 0.3s ease;
}

.statement-btn:hover {
  background: #fff;
  color: #000;
}

/* ================= MODAL ================= */

.masterplan-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.masterplan-modal.active {
  opacity: 1;
  visibility: visible;
}

.mp-image {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  transform: scale(0.9);
  transition: 0.4s ease;
}

.masterplan-modal.active .mp-image {
  transform: scale(1);
}

.mp-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.mp-close:hover {
  color: var(--orange-main);
  transform: rotate(90deg);
}

/* MOBILE */
@media (max-width:768px){
  .statement-title {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .statement-lines span {
    font-size: 14px;
  }

  .mp-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
}

/* Location */
.location-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* BG IMAGE */
.location-bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg/parallax-1.jpg') center/cover no-repeat;
  transform: scale(1.15);
  z-index: 0;
}

/* OVERLAY */
.location-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.8)),
    radial-gradient(circle at 70% 40%, rgba(194,106,0,0.25), transparent 60%);
  z-index: 1;
}

/* CONTENT */
.location-content {
  position: relative;
  z-index: 2;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

/* TITLE */
.location-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 52px;
  letter-spacing: 5px;
  margin-bottom: 50px;
}

/* GRID */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: center; /* 🔥 centers entire grid */
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ITEMS */
.loc-item {
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.03);
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s ease;
  min-width: 200px; /* keeps uniform card width */
  text-align: center;
}

/* HOVER */
.loc-item:hover {
  background: var(--orange-main);
  border-color: var(--orange-main);
  transform: translateY(-6px);
}

/* NOTE */
.location-note {
  margin-top: 50px;
  font-size: 18px;
  letter-spacing: 2px;
  color: #ddd;
}

/* MOBILE */
@media(max-width:992px){
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px){
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-title {
    font-size: 28px;
  }
}
@media(max-width:992px){
  .location-grid {
    grid-template-columns: repeat(2, max-content);
  }
}

@media(max-width:576px){
  .location-grid {
    grid-template-columns: 1fr;
  }

  .loc-item {
    min-width: unset;
    width: 100%;
  }
}

.lead-section {
  padding: 140px 0;
  background: #0b0b0b;
  text-align: center;
  color: #fff;
  position: relative;
}

/* subtle background effect */
.lead-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(194, 106, 0, 0.06),
    transparent 50%
  );
  z-index: 0;
}

.lead-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

/* TITLE */
.lead-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 42px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

/* SUBTEXT */
.lead-sub {
  color: #bbb;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* FORM */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* INPUT */
.form-group input {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: var(--orange-main);
}

/* BUTTON */
.lead-btn {
  margin-top: 20px;
  padding: 14px;
  background:linear-gradient(to bottom, #c44c27 0%, #c44c27 25%, #9d2623 100%);
  border: none;
  color: #fff;
  letter-spacing: 2px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

.lead-btn:hover {
  background: #fff;
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .lead-title {
    font-size: 26px;
  }
}

.footer-section {
  background: #0a0a0a;
  padding: 80px 0 50px;
  text-align: center;
  position: relative;
}

/* subtle top divider */
.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #333, transparent);
  transform: translateX(-50%);
}

.footer-content {
  max-width: 700px;
  margin: auto;
}

/* BRAND */
.footer-brand img {
  max-width: 140px;
  margin-bottom: 15px;
}

/* TAGLINE */
.footer-tagline {
  color: var(--orange-main);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* CONTACT */
.footer-contact {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 6px;
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: var(--orange-main);
}

/* DIVIDER LINE */
.footer-line {
  width: 60px;
  height: 2px;
  background: var(--orange-main);
  margin: 0 auto 25px;
}

/* COPYRIGHT TEXT */
.footer-copy {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* MOBILE */
@media(max-width:768px){
  .footer-contact {
    font-size: 14px;
  }
}