/* Floating Button Styling */
.floating-button {
  position: fixed;
  font-size: 13px;
  text-transform: uppercase;
  right: 0px;
  top: 170px;
  background: linear-gradient(90deg, #9f846f, #c9af9e 46%, #967d67);
  color: #000;
  padding: 10px 5px;
  text-align: center;
  text-decoration: none;
  z-index: 999;
  font-weight: 600;
  border-left: none !important;
  cursor: pointer;
  writing-mode: vertical-rl;
  transform: rotate(-180deg);
}

.luxury-preloader {
  background: #fff !important;
}

/* Visibility Utilities */
@media (max-width:767px) {
  .hidden-xs {
    display: none !important;
  }
}

/* Slider & Header Alignment */
.slider {
  margin-top: 0px !important;
  padding-top: 0px !important;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block !important;
  background: none !important;
  height: auto !important;
  /* Force height to match image size */
  line-height: 0;
  /* Remove potential inline spacing */
}

.slider picture {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Force ScrollDown to be Absolute and out of the flow */
.scrollDown {
  position: absolute !important;
  top: 80% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 100 !important;
  margin: 0 !important;
}

/* Fix for phantom gap caused by picture/source tags */
picture source {
  display: none !important;
}

/* Professional Image Proportsions */
.slide-img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 3 / 4 !important;
  /* Premium mobile verticality */
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 768px) {
  .slide-img {
    aspect-ratio: 1920 / 1080 !important;
    /* Cinematic desktop landscape */
  }
}

.mcp-invest-img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: auto !important;
  /* Keep original plan ratio */
  object-fit: contain !important;
  display: block;
}

@media (min-width: 768px) {
  .slide-img {
    aspect-ratio: 1920 / 1080 !important;
    /* Cinematic desktop landscape */
  }
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  padding: 20px 0;
}

#header.fixed {
  background: var(--primary);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap !important;
  /* Force single line */
}

.h-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.samplenav {
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.samplenav li a {
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .h-left {
    gap: 20px;
  }

  .samplenav {
    gap: 15px;
  }

  .samplenav li a {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

@media (max-width: 1200px) {
  .h-left {
    gap: 12px;
  }

  .samplenav {
    gap: 8px;
  }

  .samplenav li a {
    font-size: 10px;
    letter-spacing: 0px;
  }
}

.samplenav li a:hover {
  color: var(--accent);
}

/* ===== AURUM REFINED POPUP — by Stitch Design System ===== */

/* Fonts for popup */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

/* Overlay */
.sec-eq {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(1, 13, 24, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.sec-eq.show {
  opacity: 1;
  visibility: visible;
}

/* Modal card */
.sec-eq .container {
  max-width: 1020px;
  width: 96%;
  background: #faf9fc;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  position: relative;
  box-shadow:
    0 2px 4px rgba(1, 37, 66, 0.04),
    0 12px 40px rgba(1, 37, 66, 0.12),
    0 40px 80px rgba(1, 37, 66, 0.18);
  transform: translateY(0) scale(1);
  animation: aurumModalIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes aurumModalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

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

/* ── LEFT IMAGE PANEL ── */
.modal-img-side {
  width: 42%;
  min-height: 540px;
  background: url('../images/aurum-5.webp') center / cover no-repeat;
  position: relative;
  flex-shrink: 0;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

/* Deep gradient overlay — darker bottom for text legibility */
.modal-img-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(1, 25, 42, 0.20) 0%,
      rgba(1, 25, 42, 0.55) 45%,
      rgba(1, 25, 42, 0.90) 100%);
  z-index: 1;
}

.modal-img-side::after {
  display: none;
  /* reset old rule */
}

/* Gold shimmer bar at top of image panel */
.modal-img-side .gold-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b8960c 0%, #D4AF37 40%, #f0d060 60%, #D4AF37 80%, #b8960c 100%);
  z-index: 3;
}

/* Overlay content */
.modal-img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 30px;
  z-index: 2;
}

.modal-img-logo {
  display: block;
  width: 72px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.90;
}

/* Location badge */
.modal-img-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: #D4AF37;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.modal-img-title {
  font-family: 'Noto Serif', 'Philosopher', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.35;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.modal-img-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

/* Feature chips */
.modal-img-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.modal-img-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px 12px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

/* ── RIGHT FORM PANEL ── */
.modal-content-side {
  width: 58%;
  padding: 44px 48px;
  background: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Navy→Gold gradient top edge on form panel */
.modal-content-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #012542 0%, #1D3B59 40%, #D4AF37 100%);
}

/* Close button */
.sec-eq .closeIcon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  background: #eeedf0;
  color: #43474d;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;
  font-size: 18px;
  transform: rotate(45deg);
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
  border: none;
  line-height: 1;
}

.sec-eq .closeIcon:hover {
  background: #1D3B59;
  color: #D4AF37;
  transform: rotate(135deg);
}

/* Form title */
.sec-eq .eqTitle {
  font-family: 'Noto Serif', 'Philosopher', serif;
  font-size: 28px;
  font-weight: 700;
  color: #012542;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 8px;
}

/* Subtitle + gold divider */
.sec-eq .eqSub {
  font-family: 'Manrope', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #43474d;
  margin: 0 0 8px;
  line-height: 1.5;
}

/* Gold thin divider */
.sec-eq .eqSub::after {
  content: '';
  display: block;
  margin-top: 20px;
  height: 1.5px;
  width: 48px;
  background: linear-gradient(90deg, #D4AF37, #cca72f);
  border-radius: 2px;
}

/* Inputs — Premium design per Aurum Refined system */
.sec-eq form {
  width: 100%;
  margin-top: 10px;
}

.sec-eq .formControl {
  margin-bottom: 22px;
  position: relative;
}

.sec-eq .form-control {
  width: 100%;
  padding: 14px 18px 14px 45px; /* Extra left padding for icons */
  border: 1.5px solid #e2e4e8;
  background: #fcfcfd;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #012542;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.sec-eq .form-control::placeholder {
  color: #9499a3;
  font-size: 13.5px;
  font-weight: 400;
}

/* Icons for each field */
.sec-eq .formControl::before {
  font-family: 'FontAwesome';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #9499a3;
  transition: color 0.3s ease;
  pointer-events: none;
  z-index: 5;
}

.sec-eq .formControl:nth-of-type(1)::before { content: "\f007"; } /* User */
.sec-eq .formControl:nth-of-type(2)::before { content: "\f0e0"; } /* Email */
.sec-eq .formControl:nth-of-type(3)::before { content: "\f095"; } /* Phone */

.sec-eq .formControl:focus-within::before {
  color: #D4AF37;
}

.sec-eq .form-control:hover {
  border-color: #ced2d9;
  background: #fff;
}

.sec-eq .form-control:focus {
  border-color: #D4AF37;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

/* Remove the old gold underline animation as we now use full borders */
.sec-eq .formControl::after {
  display: none;
}

/* Submit CTA Enhancement */
.sec-eq .subBtn {
  width: 100%;
  background: linear-gradient(135deg, #012542 0%, #1D3B59 100%);
  color: #fff;
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(1, 37, 66, 0.15);
}

.sec-eq .subBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(1, 37, 66, 0.25);
  background: linear-gradient(135deg, #1D3B59 0%, #012542 100%);
}

.sec-eq .subBtn:active {
  transform: translateY(0);
}

/* Gold shimmer line at bottom of button */
.sec-eq .subBtn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #b8960c, #D4AF37, #f0d060, #D4AF37, #b8960c);
  opacity: 0.8;
}

/* Disclaimer */
.sec-eq .input_wrap.block {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 16px;
}

.sec-eq .input_wrap.block input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #D4AF37;
  width: 14px;
  height: 14px;
}

.sec-eq .input_wrap.block .input_label {
  font-family: 'Manrope', sans-serif !important;
  font-size: 10.5px !important;
  color: #73777e !important;
  line-height: 1.5;
  width: auto !important;
}

/* Mobile */
@media (max-width: 767px) {
  .modal-img-side {
    display: none;
  }

  .modal-content-side {
    width: 100%;
    padding: 40px 28px 36px;
  }

  .sec-eq .container {
    max-width: 440px;
    border-radius: 16px;
  }
}

/* ===== END AURUM REFINED POPUP ===== */



.right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.eq-header {
  background: var(--accent);
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  white-space: nowrap;
}

@media (max-width: 1366px) {
  .eq-header {
    padding: 8px 18px;
    font-size: 12px;
  }

  .right {
    gap: 10px;
  }
}

.eq-header:hover {
  background: #fff;
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.hamburger {
  display: none !important;
  /* Hide on desktop */
}

@media (max-width: 991px) {
  .samplenav {
    display: none;
  }

  .hamburger {
    display: flex !important;
  }
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  border-radius: 4px;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width:800px) {
  .slider {
    padding-top: 0px;
  }
}

:root {
  --primary: #1D3B59;
  --accent: #D4AF37;
  --bg-light: #F8F9FA;
  --text-dark: #1A2B48;
  --text-grey: #666666;
}

/* Luxury Typography & Main Styles */
/* Global Space Resets */
body,
html {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  font-family: 'Poppins', sans-serif !important;
  color: var(--text-dark) !important;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.title1,
.title2 {
  font-family: 'Philosopher', serif !important;
}

p,
span,
li,
a,
label,
input {
  font-family: 'Poppins', sans-serif !important;
}

body.showMenu {
  overflow: hidden !important;
}

/* Full-screen Mobile Nav Overlay Overlay */
@media only screen and (max-width: 800px) {
  nav {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: #000000 !important;
    z-index: 999999 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  nav.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999999 !important;
    /* Ensure it's above everything */
    background: var(--primary) !important;
    /* Branded Navy background */
  }

  nav ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
  }

  .hamburger span {
    background: #fff !important;
    /* White on transparent */
  }

  header.fixed .hamburger span {
    background: #000 !important;
    /* Black on white scroll */
  }

  .hamburger.open span {
    background: #000 !important;
    /* Black when menu is open/gold circle */
  }

  nav ul li {
    margin: 20px 0 !important;
    opacity: 1 !important;
    /* Force visibility over JS animations */
    transform: none !important;
    /* Force reset of JS matrix transforms */
    visibility: visible !important;
  }

  /* ULTRA SPECIFIC Fix for Mobile Menu Text - FORCE VISIBILITY */
  nav.open ul li a,
  nav.active ul li a,
  .samplenav li a {
    color: #d4af37 !important;
    /* Premium Gold */
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    font-family: 'Philosopher', serif !important;
    font-size: 24px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
  }

  nav.open ul li a:hover {
    color: #ffffff !important;
  }

  nav.open ul li a:hover,
  nav.open ul li a:active,
  nav.active ul li a:hover {
    color: #d4af37 !important;
  }

  /* Bulletproof Hamburger Button */
  .hamburger {
    display: flex !important;
    width: 50px !important;
    height: 50px !important;
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: #d4af37 !important;
    border-radius: 50% !important;
    z-index: 1000000 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: none;
  }

  .hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #000 !important;
    position: absolute !important;
    transition: 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045);
  }

  .hamburger span:nth-child(1) {
    top: 24px;
    transform: rotate(0);
  }

  .hamburger span:nth-child(2) {
    top: 18px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 24px;
  }

  /* Improved Bottom Sticky Buttons */
  .sec-eqMobile {
    background: rgba(17, 17, 17, 0.95) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
    padding: 5px 0 !important;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  }

  .sec-eqMobile a {
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #d4af37 !important;
    font-family: 'Inter', sans-serif !important;
  }

  .sec-eqMobile a.mobEqNow {
    background: rgba(212, 175, 55, 0.9) !important;
    color: #111 !important;
    border-radius: 4px;
    margin: 5px 10px 5px 5px;
    border: none !important;
  }

  .footernumber span {
    color: #d4af37 !important;
  }
}

/* Additional Layout Overrides */
dl,
ol,
ul {
  margin-bottom: 0;
}

.hidetext {
  margin-top: -28px;
  margin-left: 261px;
}

@media only screen and (max-width:1024px) {
  .hidetext {
    margin-top: 86px;
    margin-left: 211px;
  }

  .main-slider .swiper-slide .slide-bgimg {
    width: 100%;
  }

  .sec-banner {
    height: calc(var(--vh, 1vh) * 41);
  }
}

@media only screen and (max-width:767px) {
  .hidetext {
    display: none;
  }

  .sec-banner {
    height: calc(var(--vh, 1vh) * 100);
  }
}

@media only screen and (max-width:760px) {
  .hidetext {
    display: none;
  }
}

#sec-high img {
  filter: hue-rotate(48deg);
}

.buy_a_plot {
  padding: 30px 20%;
}

@media only screen and (max-width: 480px) {
  .backopimg {
    opacity: 0.3;
  }

  #sec-about .contentmain {
    text-align: center;
  }

  .buy_a_plot {
    padding: 0px 0%;
  }

  .buy_a_plot_row {
    display: unset !important;
  }
}

.eq-header {
  cursor: pointer;
}

/* Global Fix for Legacy CSS Image Distortion */
img {
  height: auto !important;
}

.slide-img,
.mcp-invest-img,
#sec-amenities img {
  height: auto !important;
}

/* Highlights Section Re-Design (Matching Uploaded Layout) */
.sec-highlights-new {
  background: #ffffff;
  /* Pure white background */
  padding: 80px 0;
}

.promise-img-col {
  padding: 20px !important;
}

.promise-img-col img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.promise-content {
  padding: 40px 60px !important;
  background: transparent !important;
  color: #1c1b1b !important;
}

.promise-subtitle-tag {
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promise-subtitle-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  display: inline-block;
}

.promise-title {
  color: #1a2b48 !important;
  /* Dark blue/black */
  font-size: 44px !important;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 25px;
  letter-spacing: -1px;
}

.promise-desc-top {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Gap handled by item padding */
}

.highlight-item {
  display: flex;
  gap: 30px;
  position: relative;
  padding-bottom: 40px;
}

/* Vertical line connecting items */
.highlight-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 50px;
  bottom: 0;
  width: 1px;
  background: #e0e0e0;
}

.highlight-number {
  font-family: 'Bodoni Moda', serif;
  font-size: 40px;
  color: #ccd0d5;
  /* Light grey numbers */
  line-height: 1;
  min-width: 45px;
  margin-bottom: 0;
  opacity: 1;
}

.highlight-number::after {
  display: none;
  /* Remove previous underline */
}

.highlight-text {
  padding-top: 5px;
}

.highlight-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  color: #1a2b48 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.highlight-desc {
  font-size: 14px !important;
  color: #666 !important;
  line-height: 1.6;
}

.download-btn-wrap {
  margin-top: 20px;
}

.btn-brochure {
  background: #1a2b48;
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  text-transform: capitalize;
  box-shadow: 0 10px 20px rgba(26, 43, 72, 0.2);
  transition: all 0.3s ease;
}

.btn-brochure:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(26, 43, 72, 0.3);
}

@media (max-width: 1366px) {
  .promise-title {
    font-size: 36px !important;
  }
}

@media (max-width: 991px) {
  .promise-content {
    padding: 40px 20px !important;
  }

  .highlight-item {
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .promise-title {
    font-size: 30px !important;
  }
}

/* Card Components */
.mcp-glass-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0px 20px 50px rgba(26, 43, 72, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid #eee;
}

.mcp-glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 30px 60px rgba(26, 43, 72, 0.1);
}

.mcp-gold-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.mcp-card-title {
  color: var(--primary);
  font-family: 'Philosopher', serif;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.mcp-card-p {
  color: var(--text-grey);
  font-size: 15px;
  line-height: 1.6;
}

/* Section Backgrounds */
.sec-bg-navy {
  background: var(--primary);
  color: #fff;
}

.sec-bg-light {
  background: var(--bg-light);
}

/* Footer Styles */
#footer {
  background: var(--primary);
  padding: 80px 0 40px;
  color: #fff;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 30px;
  filter: brightness(0) invert(1);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent);
}

.submit-btn {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 12px 35px !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: var(--accent) !important;
}

/* Restored Investment Section Styles */
.mcp-invest-card {
  position: relative;
  z-index: 10;
  padding: 50px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

.mcp-invest-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
  border-radius: 4px;
  box-shadow: 0px 30px 60px -15px rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
  .mcp-invest-card {
    margin-right: -80px;
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  .mcp-invest-card {
    margin-right: 0;
    margin-top: 0;
    margin-bottom: -40px;
    padding: 30px !important;
  }

  .mcp-invest-img {
    min-height: 300px;
  }
}

/* Location Proximity Accordion (Aspire Style) */
.sec-location-new {
  background: #ffffff;
  padding: 80px 0;
}

.loc-map-container {
  padding: 0 15px;
}

.loc-map-container iframe,
.loc-map-container .map-placeholder {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.loc-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.loc-acc-item {
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.loc-acc-item.active {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.05);
}

.loc-acc-header {
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.loc-acc-title-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.loc-acc-icon {
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.loc-acc-name {
  font-family: 'Philosopher', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.loc-acc-chevron {
  font-size: 14px;
  color: var(--text-grey);
  transition: transform 0.3s ease;
}

.loc-acc-item.active .loc-acc-chevron {
  transform: rotate(180deg);
}

.loc-acc-body {
  max-height: 0;
  transition: max-height 0.3s ease;
  padding: 0 25px 0 90px;
  /* Aligned with title */
  overflow: hidden;
}

.loc-acc-item.active .loc-acc-body {
  max-height: 400px;
  padding-bottom: 25px;
}

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

.loc-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.loc-list-item:last-child {
  border-bottom: none;
}

.loc-name {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

.loc-dist {
  font-size: 13px;
  color: var(--text-grey);
  background: #eee;
  padding: 4px 12px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .loc-map-container {
    margin-bottom: 40px;
  }

  .loc-map-container iframe {
    height: 350px;
  }
}