/* ===== 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.webp') 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.65);
}

.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);
  }
  .nav-link {
    margin-left: 6px;
    font-size: 13px;
}
}

@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.webp');
}

.bg-buyer {
  background-image: url('../img/buyer.webp');
}

/* 🔥 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.webp') 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;
}


/* 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;
  min-height: 100vh; /* 🔥 flexible instead of fixed */
  padding: 120px 20px; /* 🔥 prevents crop */
  overflow: hidden;
  color: #fff;
}

/* BG IMAGE */
.location-bg {
  position: absolute;
  inset: 0;
  background: url('../img/bg/parallax-1.webp') 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.85)),
    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;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  max-width: 1100px;
  margin: auto;
}

/* TITLE */
.location-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: clamp(28px, 5vw, 52px); /* 🔥 fluid typography */
  letter-spacing: 4px;
  margin-bottom: 40px;
}

/* GRID */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 🔥 better than max-content */
  gap: 18px;
  width: 100%;
}

/* ITEMS */
.loc-item {
  padding: 14px 16px;
  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;
  text-align: center;

  transition: 0.3s ease;
}

/* HOVER */
.loc-item:hover {
  background: var(--orange-main);
  border-color: var(--orange-main);
  transform: translateY(-6px);
}

/* NOTE */
.location-note {
  margin-top: 40px;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 2px;
  color: #ddd;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .location-section {
    padding: 100px 20px;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ================= MOBILE ================= */
@media (max-width: 576px) {

  .location-section {
    padding: 80px 15px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .loc-item {
    font-size: 13px;
    padding: 12px;
  }

}

.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 ================= */
.footer-section {
  background: #0a0a0a;
  padding: 80px 20px 50px;
  text-align: center;
  position: relative;
}

/* subtle 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: 10px;
  letter-spacing: 1px;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--orange-main);
}

/* ================= SOCIAL ICONS ================= */
.footer-social {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ICON STYLE */
.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 18px;
  transition: 0.4s ease;
  text-decoration: none;
}

/* HOVER */
.footer-social a:hover {
  background: var(--orange-main);
  border-color: var(--orange-main);
  transform: translateY(-5px) scale(1.05);
}

/* DIVIDER */
.footer-line {
  width: 60px;
  height: 2px;
  background: var(--orange-main);
  margin: 25px auto;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .footer-section {
    padding: 60px 20px 40px;
  }

  .footer-contact {
    font-size: 14px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media(max-width:480px){

  .footer-brand img {
    max-width: 110px;
  }

  .footer-tagline {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 11px;
  }

}
/* ================= MASTERPLAN SECTION ================= */
.masterplan-section {
  position: relative;
  min-height: 100vh; /* 🔥 FIX: was height */
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

/* BG */
.masterplan-bg {
  position: absolute;
  inset: 0;
  background: url('../img/masterplan/masterplan-1.webp') center/cover no-repeat;
  transform: scale(1.8);
  filter: blur(8px);
  z-index: 0;
}

/* OVERLAY */
.masterplan-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.95)),
    radial-gradient(circle at 50% 30%, rgba(194,106,0,0.25), transparent 60%);
  z-index: 1;
}

/* CONTENT */
.masterplan-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  max-width: 900px;
  margin: auto;
  padding: 80px 20px; /* 🔥 IMPORTANT spacing */
}

/* TITLE */
.masterplan-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 52px;
  letter-spacing: 6px;
  margin-bottom: 20px;
}

/* SUBTEXT */
.masterplan-sub {
  font-size: 18px;
  color: #f3f3f3;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

/* LINES */
.masterplan-lines span {
  display: block;
  font-size: 18px;
  color: #f3f3f3;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

/* ================= 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);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .masterplan-title {
    font-size: 38px;
    letter-spacing: 4px;
  }

  .masterplan-sub {
    font-size: 16px;
  }

  .masterplan-lines span {
    font-size: 16px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .masterplan-section {
    padding: 60px 0;
  }

  .masterplan-content {
    padding: 60px 20px;
  }

  .masterplan-title {
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1.3;
  }

  .masterplan-sub {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .masterplan-lines span {
    font-size: 14px;
  }

  .statement-btn {
    padding: 10px 24px;
    font-size: 12px;
  }

  /* Modal */
  .mp-close {
    top: 15px;
    right: 20px;
    font-size: 28px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .masterplan-title {
    font-size: 22px;
  }

  .masterplan-lines span {
    font-size: 13px;
  }
}

/* ================= SIDEBAR FORM ================= */

.side-form-wrapper {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

/* TOGGLE TAB */
.side-form-toggle {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background: linear-gradient(to bottom, #c44c27, #9d2623);
  color: #fff;
  padding: 12px 8px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 6px 0 0 6px;
}

/* OVERLAY */
.side-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  z-index: 9998;
}

/* PANEL */
.side-form-panel {
  position: fixed;
  right: -400px;
  top: 0;
  width: 380px;
  height: 100vh;
  background: #0f0f0f;
  padding: 40px 30px;
  transition: 0.5s ease;
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0,0,0,0.8);
}

/* ACTIVE STATE */
.side-form-panel.active {
  right: 0;
}

.side-form-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* CLOSE */
.side-form-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #c34c27;
}

/* TEXT */
.side-form-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}

.side-form-sub {
  color: #aaa;
  margin-bottom: 30px;
}

/* FORM */
.side-form input {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #444;
  color: #fff;
}

.side-form input:focus {
  border-color: var(--orange-main);
  outline: none;
}

/* BUTTON */
.side-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to bottom, #c44c27, #9d2623);
  border: none;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

.side-form button:hover {
  background: #fff;
  color: #000;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .side-form-wrapper {
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
  }

  .side-form-toggle {
    writing-mode: horizontal-tb;
    transform: none;
    width: 100%;
    text-align: center;
    border-radius: 0;
  }

  .side-form-panel {
    width: 100%;
    height: 75vh;
    bottom: -100%;
    top: auto;
    right: 0;
    border-radius: 16px 16px 0 0;
  }

  .side-form-panel.active {
    bottom: 0;
  }

}

/* ================= BLOG SECTION ================= */
.blog-section {
  padding: 140px 20px;
  background: #0b0b0b;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* subtle glow */
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(203,77,40,0.08), transparent 60%);
}

/* ================= TITLE ================= */
.blog-title {
  text-align: center;
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 48px;
  letter-spacing: 4px;
  line-height: 1.2;
}

.blog-subtitle {
  text-align: center;
  color: #dbdbdb;
  margin-bottom: 60px;
  letter-spacing: 2px;
  font-size: 16px;
}

/* ================= GRID ================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ================= CARD ================= */
.blog-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;

  display: flex;
  flex-direction: column;
}

/* IMAGE */
.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.6s ease;
}

/* CONTENT */
.blog-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 12px;
  color: var(--orange-main);
  letter-spacing: 1px;
}

.blog-content h3 {
  font-size: 20px;
  margin: 10px 0;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 15px;
  flex-grow: 1;
}

/* LINK */
.blog-link {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  transition: 0.3s;
  margin-top: auto;
}

.blog-link:hover {
  color: var(--orange-main);
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--orange-main);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.blog-card:hover img {
  transform: scale(1.1);
}

/* ================= CTA ================= */
.blog-cta {
  text-align: center;
  margin-top: 60px;
}

.blog-cta p {
  margin-bottom: 20px;
  color: #ccc;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {

  .blog-section {
    padding: 100px 20px;
  }

  .blog-title {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .blog-subtitle {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .blog-img img {
    height: 200px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .blog-section {
    padding: 80px 16px;
  }

  .blog-title {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .blog-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 30px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card {
    border-radius: 12px;
  }

  .blog-img img {
    height: 180px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-content h3 {
    font-size: 18px;
  }

  .blog-content p {
    font-size: 13px;
  }

  .blog-link {
    font-size: 12px;
  }

  .blog-cta {
    margin-top: 40px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .blog-title {
    font-size: 22px;
  }

  .blog-img img {
    height: 160px;
  }

}


/* ================= HORIZONTAL GALLERY ================= */
.gallery-horizontal-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #0b0b0b;
}

/* HEADER */
.gallery-header {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.gallery-title {
  font-family: 'Lemon/Milk', sans-serif;
  font-size: 42px;
  letter-spacing: 5px;
  color: #fff;
}

/* WRAPPER */
.gallery-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: flex-start;     /* 🔥 FIX */
  padding-top: 220px;          /* 🔥 space for header */
  overflow: hidden;
}

/* TRACK */
.gallery-track {
  display: flex;
  gap: 30px;
  padding: 0 8vw;

  align-items: center;         /* 🔥 keeps visual center */
}

/* ITEM */
.gallery-item {
  flex: 0 0 auto;
  width: 28vw;
  height: 70vh;

  max-width: 420px;
  max-height: 520px;
  min-width: 260px;
  min-height: 320px;

  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ================= VIEWER ================= */
.gallery-viewer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.gallery-viewer.active {
  opacity: 1;
  visibility: visible;
}

#gvImage {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
}

/* NAV */
.gv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  cursor: pointer;
  color: #fff;
}

.gv-prev { left: 20px; }
.gv-next { right: 20px; }

/* CLOSE */
.gv-close {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 44px;
  height: 44px;
  font-size: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);

  cursor: pointer;
  z-index: 10000;
  transition: 0.3s ease;
}

.gv-close:hover {
  background: var(--orange-main);
  transform: rotate(90deg);
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {

  .gallery-item {
    width: 40vw;
    height: 60vh;
  }

  .gallery-track {
    gap: 20px;
  }

}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .gallery-header {
    top: 40px;
  }

  .gallery-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .gallery-wrapper {
    padding-top: 130px;     /* 🔥 adjusted spacing */
  }

  .gallery-track {
    gap: 16px;
    padding: 0 5vw;
  }

  .gallery-item {
    width: 70vw;
    height: 60vh;           /* 🔥 increased to remove empty space */
    min-width: unset;
  }

  .gv-nav {
    font-size: 28px;
  }

  .gv-close {
    top: 15%;
    right: 8%;
    width: 38px;
    height: 38px;
  }

}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

  .gallery-wrapper {
    padding-top: 160px;
  }

  .gallery-item {
    width: 85vw;
    height: 55vh;           /* 🔥 balanced for small screens */
  }

}