
    * { box-sizing: border-box; }
    body { font-family: 'DM Sans', sans-serif; background: #F9F6F0; color: #1A1A1A; }
    h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

    /* Gold divider */
    .gold-rule { width: 60px; height: 2px; background: #D4AF37; display: inline-block; }

    /* Hero */
    .hero-bg {
      background: linear-gradient(135deg, #0D0D0D 0%, #1A1612 40%, #1A1612 100%);
      position: relative;
      overflow: hidden;
    }
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
    }
    .hero-img-placeholder {
      position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
      background: linear-gradient(135deg, #2C2416 0%, #3D3020 50%, #1A1612 100%);
      clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero-img-placeholder::after {
      content: 'Project Imagery';
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      color: rgba(212,175,55,0.25); font-family: 'Cormorant Garamond',serif;
      font-size: 1.1rem; letter-spacing: 0.3em; text-transform: uppercase;
    }

    /* KPI Cards */
    .kpi-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(212,175,55,0.2);
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
    }
    .kpi-card:hover { border-color: rgba(212,175,55,0.5); background: rgba(212,175,55,0.06); }

    /* Project Cards */
    .project-card {
      background: #fff;
      border: 1px solid #E8E0D0;
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative; overflow: hidden;
    }
    .project-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #B8960C, #D4AF37, #B8960C);
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .project-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.12); transform: translateY(-4px); }
    .project-card:hover::before { transform: scaleX(1); }
    .project-img {
      background: linear-gradient(135deg, #2C2416 0%, #4A3B28 50%, #3D3020 100%);
      height: 220px; position: relative; overflow: hidden;
    }
    .project-img span {
      position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
      color: rgba(212,175,55,0.3); font-family: 'Cormorant Garamond',serif;
      font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
    }
    .badge-luxury {
      background: linear-gradient(135deg, #B8960C, #D4AF37);
      color: #fff; font-size: 0.65rem; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 3px 10px; border-radius: 2px;
    }
    .price-tag { color: #B8960C; font-family: 'Cormorant Garamond',serif; font-size: 1.5rem; font-weight: 600; }
    .btn-primary {
      background: linear-gradient(135deg, #B8960C, #D4AF37);
      color: #fff; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 10px 20px; border: none; cursor: pointer;
      transition: all 0.3s; font-family: 'DM Sans',sans-serif; font-weight: 500;
    }
    .btn-primary:hover { background: linear-gradient(135deg, #D4AF37, #B8960C); box-shadow: 0 4px 20px rgba(184,150,12,0.35); }
    .btn-outline {
      border: 1px solid #D4AF37; color: #D4AF37; background: transparent;
      font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 10px 20px; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans',sans-serif;
    }
    .btn-outline:hover { background: rgba(212,175,55,0.1); }
    .btn-dark {
      background: #1A1A1A; color: #D4AF37; border: 1px solid #1A1A1A;
      font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
      padding: 10px 24px; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans',sans-serif;
    }
    .btn-dark:hover { background: #2C2C2C; }

    /* Section Titles */
    .section-label {
      font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
      color: #B8960C; font-family: 'DM Sans',sans-serif; font-weight: 500;
    }
    .section-title { font-family: 'Cormorant Garamond',serif; line-height: 1.15; }

    /* Why Invest cards */
    .invest-card {
      background: #fff; border-left: 3px solid #D4AF37;
      padding: 28px 24px; transition: all 0.3s ease;
    }
    .invest-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

    /* Timeline */
    .timeline-item { position: relative; padding-left: 32px; }
    .timeline-item::before {
      content: ''; position: absolute; left: 9px; top: 28px; bottom: -8px;
      width: 1px; background: linear-gradient(to bottom, #D4AF37, transparent);
    }
    .timeline-dot {
      position: absolute; left: 0; top: 18px;
      width: 20px; height: 20px; border-radius: 50%;
      background: #D4AF37; border: 3px solid #F9F6F0;
      box-shadow: 0 0 0 3px rgba(212,175,55,0.3);
    }

    /* Comparison Table */
    .comp-table th { background: #1A1A1A; color: #D4AF37; font-family: 'DM Sans',sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
    .comp-table td { border-bottom: 1px solid #E8E0D0; }
    .comp-table tr:hover td { background: #FBF8F2; }
    .comp-table .proj-col { color: #B8960C; font-family: 'Cormorant Garamond',serif; font-size: 1.1rem; }

    /* Persona Cards */
    .persona-card {
      background: linear-gradient(135deg, #1A1A1A 0%, #2C2416 100%);
      color: #fff; border: 1px solid rgba(212,175,55,0.2);
      transition: all 0.3s ease; position: relative; overflow: hidden;
    }
    .persona-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, #B8960C, #D4AF37);
    }
    .persona-card:hover { border-color: rgba(212,175,55,0.5); transform: translateY(-3px); }

    /* Location Cards */
    .loc-card {
      background: #fff; border: 1px solid #E8E0D0;
      transition: all 0.3s; text-decoration: none; display: block;
    }
    .loc-card:hover { border-color: #D4AF37; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
    .loc-card-img { height: 140px; background: linear-gradient(135deg, #2C2C2C 0%, #4A3B28 100%); }

    /* FAQ */
    .faq-item { border-bottom: 1px solid #E8E0D0; }
    .faq-btn { background: none; border: none; width: 100%; text-align: left; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
    .faq-answer.open { max-height: 300px; padding-bottom: 16px; }
    .faq-icon { transition: transform 0.3s; width: 22px; height: 22px; flex-shrink: 0; }
    .faq-icon.open { transform: rotate(45deg); }

    /* Lead Form */
    .lead-input {
      width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(212,175,55,0.25);
      color: #fff; padding: 14px 16px; font-family: 'DM Sans',sans-serif; font-size: 0.9rem;
      outline: none; transition: border-color 0.3s;
    }
    .lead-input:focus { border-color: rgba(212,175,55,0.6); }
    .lead-input::placeholder { color: rgba(255,255,255,0.35); }
    .lead-select { background: rgba(255,255,255,0.06); color: #fff; }
    .lead-select option { background: #1A1A1A; }

    /* Sticky CTA bar */
    .sticky-cta {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
      background: #1A1A1A; border-top: 1px solid rgba(212,175,55,0.3);
      padding: 12px 20px; display: flex; align-items: center; justify-content: space-between;
    }

    /* Breadcrumb */
    nav[aria-label="breadcrumb"] ol { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; margin: 0; padding: 0; }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #F9F6F0; }
    ::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 3px; }

    /* Animations */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .fade-up { animation: fadeUp 0.6s ease forwards; }
    .delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; }
    .delay-3 { animation-delay: 0.3s; } .delay-4 { animation-delay: 0.4s; }

    @media (max-width: 768px) {
      .hero-img-placeholder { display: none; }
    }






a:hover {
  color: #D4AF37;
}
.btn-check:focus+.btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: unset;
  border-color: unset;
  box-shadow: unset;
}
select.countryCode {
  width: 150px;
}
.project-card .project-img {
  background-size: 100%;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  width: 500px !important;
  margin: 25px auto;
}
img.img-fluid.loc-logo {
  width: 100%;
  filter: invert(1) brightness(100);
}
.close:hover {
  color: #f44336;
}
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #7a6967;
  cursor: pointer;
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
button.btn.btn-sm.btn-outline-info.sectio-bro-btn.overflow-hidden.enqModal {
  margin-bottom: 15px;
}
button.btn.btn-info.micro-form-btn.effetMoveGradient.submitBtn.enqModal {
  margin-bottom: 15px;
}
button.btn.btn-info.micro-form-btn.enqModal.effetMoveGradient.effectScale.desk_disp {
  margin-left: 17% !important;
}
.carousel-inner, .modal {
  overflow: hidden
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  outline: 0
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none
}
.carousel-inner, .carousel-item, .modal-content {
  width: 100%;
  position: relative
}
.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px)
}
.modal-dialog-centered {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem)
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: ""
}
.modal-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5
}
.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem
}
.kpi-card.rounded-sm.p-5.text-center {
  background-color: #00000075;
  border: 1px solid #D4AF37;
}
.modal-head {
  border-radius: 3px 3px 0 0
}
.text-gray-400 {
  color: #fff !important;
}


.submit-btn {
  background: linear-gradient(135deg, #B8960C, #D4AF37);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}
.popup-btn {
  display: flex;
  margin-top: 20px;
}
.popup-btn .form-call-btn, .popup-btn .subt-btn {
  width: 49%;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  display: inline-block;
  border-radius: .25rem;
}
.popup-btn .form-call-btn {
    border-right: 4px solid #fff;
    margin-top: 0;
    color: #fff !important;
}
.popup-btn .subt-btn {
  border-left: 4px solid #fff;
}
.countryCode {
  color: #818181 !important;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
}
.form-control:focus, .btn-check:focus+.btn, a.open-popup-btn, button.open-popup-btn, .btn:focus, .btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
  outline: 0;
  box-shadow: unset !important;
}





@media only screen and (max-width:768px) {
  .modal-content {
    width: 360px !important;
    margin: 35% auto;
  }
}

@media (min-width: 1024px) {
  .lg\:text-7xl {
    font-size: 3.5rem;
    line-height: 1;
  }
}

@media (prefers-reduced-motion:reduce) {
  .btn, .carousel-item, .fade, .form-control, .modal.fade .modal-dialog {
    transition: none
  }
}

@media only screen and (min-width: 992px) {
  .modal-body, .navbar.micro-navbar {
    padding: 0
  }
  .modal-dialog.enq-modal {
    max-width: 35vw;
    border-radius: 3px
  }
  .modal-head {
    background-color: var(--colorPrimary)
  }
  .modal-title {
    display: block;
    font-size: 1.5vw;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--colorBtn);
    padding: 1.2vw 0
  }
  .modal-title-secondary {
    display: block;
    font-size: 1vw;
    text-transform: capitalize;
    font-weight: 600;
    padding: 1vw 0 .5vw
  }
  .modal-highlight-bg {
    background-color: #f9f9f9;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    vertical-align: top;
    border-top-left-radius: 15px
  }
  .modal-highlight-title {
    display: block;
    text-align: center;
    font-size: 1.3vw;
    font-weight: 500;
    padding: 25px 0 .1vw;
    color: var(--colorthird);
    /*color: var(--colorPrimary)*/
  }
  .modal-highlight {
    list-style: none;
    padding: 10px 0;
    margin-bottom: 0;
    width: 11vw
  }
  .modal-highlight li i {
    display: inline-block;
    font-size: 2.8vw;
    color: var(--colorthird);
  }
  .modal-highlight li span {
    display: block;
    font-size: .9vw;
    color: var(--colorthird);
    padding: 0 0 1.3vw
  }
  .modal-call-btn, .modal-call-btn:hover {
    display: block;
    background-color: var(--colorPrimary);
    color: var(--colorBtn);
    text-decoration: none;
    font-size: 1.3vw;
    border-radius: 0 0 3px 3px
  }
}

@media only screen and (max-width: 991px) {
  .modal-title, .price-amt, .price-amt .mi, .price-type, .pro-price, .pro-title {
    font-weight: 600
  }
  .micro-side, .modal-highlight, .modal-highlight-title {
    display: none
  }
  .modal-title, .modal-title-secondary, .pro-add, .pro-dev, .pro-tag-line {
    text-transform: capitalize;
    display: block
  }
  .mi.action-icon, .modal-title {
    font-size: 18px;
    color: var(--colorBtn)
  }
  .modal-head {
    background-color: var(--colorPrimary)
  }
  .modal-body {
    padding: 0
  }
  .modal-title {
    padding: 10px 0;
  }
  .modal-title-secondary {
    font-size: 15px;
    font-weight: 600;
    padding: 10px 0 5px
  }
  .modal-call-btn, .modal-call-btn:hover {
    display: block;
    background-color: var(--colorPrimary);
    color: var(--colorBtn);
    padding: 5px 0;
    text-decoration: none;
    font-size: 16px
  }
}

@media (min-width: 576px) {
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
  }
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem)
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content
  }
  .d-sm-inline {
    display: inline !important
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important
  }
}


@media only screen and (max-width: 991px) {
  .mob-action {
    background-color: var(--colorthird);
  }
  .logo {
    height: 40px;
    margin-left: 10px;
  }
  .modal-head {
    background-color: var(--colorthird);
  }
  .pro-title {
    font-size: 15px;
  }
  .modal-head {
    background-color: var(--colorthird);
  }
  .pro-title {
    font-size: 20px;
  }
  .pro-status {
    padding: 5px;
    font-size: 11px;
    font-weight: 600;
    background: #fff;
  }
  .pro-tag-line {
    line-height: 0.4vw;
    font-size: 11px;
  }
}