:root {
  --navy: #071d36;
  --navy-2: #0b2b55;
  --navy-3: #123f70;
  --gold: #c8a258;
  --gold-dark: #a9833e;
  --cream: #f6f2e8;
  --cream-2: #ede5d5;
  --surface: #ffffff;
  --ink: #18202a;
  --muted: #66717f;
  --line: #dfe4e9;
  --success: #0b7a4b;
  --shadow-sm: 0 8px 24px rgba(7, 29, 54, .08);
  --shadow-md: 0 18px 50px rgba(7, 29, 54, .14);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --header-height: 82px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { padding-right: 0 !important; }
img { max-width: 100%; height: auto; }
a { color: var(--navy-2); }
a:hover { color: var(--gold-dark); }
p, li { color: var(--muted); }
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 3.2vw, 3.1rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
strong { color: var(--ink); }
::selection { color: #fff; background: var(--navy-2); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); color: #fff; }

/* Header */
.header-section {
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  transition: background-color .25s ease, box-shadow .25s ease, padding .25s ease;
}
.header-section.fixed {
  position: fixed;
  padding: 7px 0;
  background: rgba(7, 29, 54, .96);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .2);
  backdrop-filter: blur(14px);
}
.header-section .navbar { padding: 0; }
.header-section .navbar > .container {
  max-width: 1400px;
  gap: 20px;
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
  margin: 0;
}
.project-logo {
  display: block;
  width: 176px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.header-section.fixed .project-logo { filter: brightness(0) invert(1); }
.navbar-collapse { min-width: 0; }
.asidebar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 999px;
  background: rgba(4, 18, 34, .56);
  backdrop-filter: blur(12px);
}
.nav-item { display: flex; align-items: center; }
.nav-item .nav-link {
  position: relative;
  padding: 9px 10px !important;
  border-radius: 999px;
  color: rgba(255, 255, 255, .92);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.nav-item .nav-link:hover,
.nav-item .nav-link:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .12);
}
.nav-item .nav-link.active,
.nav-item .nav-link[aria-current="page"] {
  color: var(--navy);
  background: var(--gold);
}
.navbar-toggler {
  width: 46px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .95);
  box-shadow: none !important;
}

/* Hero */
.banner-setion {
  position: relative;
  min-height: 760px;
  color: #fff;
  background: var(--navy);
  isolation: isolate;
}
.banner,
.banner-container,
.banner .carousel,
.banner .carousel-inner,
.banner .carousel-item { min-height: 760px; }
.banner-container { padding: 0; }
.banner .carousel-item { position: relative; }
.banner .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 16, 31, .88) 0%, rgba(4, 16, 31, .65) 42%, rgba(4, 16, 31, .25) 67%, rgba(4, 16, 31, .58) 100%),
    linear-gradient(0deg, rgba(4, 16, 31, .48), transparent 45%);
  pointer-events: none;
}
.banner .carousel-item img {
  display: block;
  width: 100%;
  height: 760px;
  object-fit: cover;
  object-position: center;
}
.m-view { display: none !important; }
.d-view { display: block !important; }
.carousel-control-prev,
.carousel-control-next {
  top: auto;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: rgba(7, 29, 54, .6);
  opacity: 1;
  backdrop-filter: blur(8px);
}
.carousel-control-prev { left: auto; right: 86px; }
.carousel-control-next { right: 28px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--gold-dark); }
.carousel-control-prev-icon,
.carousel-control-next-icon { width: 18px; height: 18px; }

.project-details-ban {
  position: absolute;
  z-index: 4;
  top: 51%;
  left: max(5vw, calc((100vw - 1320px) / 2));
  width: min(680px, 48vw);
  transform: translateY(-50%);
}
.project-details-ban > p:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: rgba(255, 255, 255, .93);
  background: rgba(7, 29, 54, .52);
  font-size: 14px;
  font-weight: 650;
  backdrop-filter: blur(10px);
}
.project-details-ban > p:first-child::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 162, 88, .18);
}
.project-details-ban h1 {
  max-width: 760px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(3.1rem, 5.7vw, 5.9rem);
  letter-spacing: -.045em;
  text-shadow: 0 4px 25px rgba(0, 0, 0, .28);
}
.project-key-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  max-width: 640px;
}
.key-high {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 12px;
  background: rgba(7, 29, 54, .58);
  backdrop-filter: blur(12px);
}
.key-high img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: sepia(1) saturate(.8) brightness(1.35);
}
.key-high p {
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}
.banner-price-typo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.banner-typology {
  padding: 11px 15px;
  border-radius: 10px;
  color: var(--navy);
  background: var(--gold);
  box-shadow: var(--shadow-sm);
}
.banner-typology-title {
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}
.banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  padding: 12px 20px;
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}
.banner-button p { margin: 0; color: inherit; }

.banner-form-section {
  position: absolute;
  z-index: 5;
  top: 51%;
  right: max(4vw, calc((100vw - 1320px) / 2));
  width: min(360px, 28vw);
  transform: translateY(-50%);
}
.form-section { width: 100%; }
.banner-form,
.footer-form,
.popup-form {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(7, 29, 54, .94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
}
.form-bottom { padding: 20px 22px 0; }
.form_title,
.form_title_popup {
  display: block;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.form_title::after,
.form_title_popup::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--gold);
}
.lower-form-part { padding: 18px 22px 22px; }
.form-group { margin-bottom: 11px; }
.form-control {
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  box-shadow: none !important;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 88, .2) !important;
}
.form-control::placeholder { color: #7d8791; opacity: 1; }
.submit_btn,
.dark_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 49px;
  margin-top: 3px;
  border: 0;
  border-radius: 10px !important;
  color: var(--navy) !important;
  background: var(--gold) !important;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, background-color .2s ease;
}
.submit_btn:hover,
.submit_btn:focus-visible {
  color: var(--navy) !important;
  background: #dfbd76 !important;
  transform: translateY(-1px);
}
.submit_btn:disabled { opacity: .72; cursor: wait; }
.checkbox-section {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 11px;
}
.checkbox-section input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  accent-color: var(--gold);
}
.checkbox-section label,
.checkbox-section p {
  margin: 0;
  color: rgba(255, 255, 255, .74) !important;
  font-size: 10px;
  line-height: 1.45;
}
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }
.form-error { min-height: 0; color: #ffd9d9 !important; font-size: 12px; }

.circle {
  position: absolute;
  z-index: 6;
  bottom: 32px;
  left: max(5vw, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(7, 29, 54, .72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .2);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.circle .logo {
  position: absolute;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
}
.circle .logo img { width: 22px; height: 22px; object-fit: contain; }
.text-rotate { position: absolute; inset: 0; animation: spin 14s linear infinite; }
.text-rotate p { position: absolute; inset: 0; margin: 0; color: #fff; font-size: 9px; font-weight: 700; text-transform: uppercase; }
.text-rotate span { position: absolute; left: 45px; top: 4px; height: 42px; transform-origin: 0 42px; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Breadcrumb */
.breadcrumb-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.breadcrumb-bar .container { padding-top: 13px; padding-bottom: 13px; }
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.breadcrumb-list li { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.breadcrumb-list li + li::before { content: "/"; color: #a7b0ba; }
.breadcrumb-list a { font-weight: 700; text-decoration: none; }

/* Content sections */
.overview-section,
.price-section,
.amenities-section,
.floor-plan-section,
.gallery-section,
.location-advantages,
.about-builder-section {
  position: relative;
  padding: 88px 0;
}
.overview-section.bg-light { background: #fff !important; }
.price-section,
.floor-plan-section,
.location-advantages { background: #fff; }
.about-builder-section {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 162, 88, .2), transparent 30%),
    var(--navy);
}
.about-builder-section h2,
.about-builder-section h3,
.about-builder-section h4,
.about-builder-section strong { color: #fff; }
.about-builder-section p { color: rgba(255, 255, 255, .76); }
.overview-left-section > h2,
.overview-left-section > h4 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 15px;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}
.overview-left-section > h2::after,
.overview-left-section > h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
}
.overview-left-section p { margin-bottom: 16px; text-align: left !important; }
.heading-section { max-width: 860px; margin: 0 auto 36px; text-align: center; }
.heading-section h2 { margin-bottom: 12px; }
.heading-section h3 { margin: 13px 0 0; color: var(--muted); font-family: var(--font-sans); font-size: 16px; font-weight: 600; }
.divied {
  display: block;
  width: 76px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--gold);
}
.price-section > .container > p,
.amenities-section > .container > p { max-width: 900px; margin: 0 auto 28px; text-align: center; }

.img-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(7, 29, 54, .08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.img-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform .55s ease;
}
.img-card:hover img { transform: scale(1.025); }
.floor-plan-section .img-card img { min-height: 410px; object-fit: contain; padding: 14px; background: #f7f8fa; }
.location-advantages .img-fluid {
  display: block;
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.project-table-wrap {
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.project-info-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  background: #fff;
}
.project-info-table th,
.project-info-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
.project-info-table tr:last-child th,
.project-info-table tr:last-child td { border-bottom: 0; }
.project-info-table th {
  width: 36%;
  color: var(--navy);
  background: #f5f7f9;
  font-weight: 800;
}
.project-info-table tr:first-child th { color: #fff; background: var(--navy-2); }
.project-info-table tr:first-child th + th { border-left: 1px solid rgba(255, 255, 255, .18); }
.project-info-table td { color: var(--muted); }

.project-link-grid,
.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.project-link-grid a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 14px 42px 14px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 7px 20px rgba(7, 29, 54, .06);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.project-link-grid a::after {
  content: "→";
  position: absolute;
  right: 16px;
  color: var(--gold-dark);
  font-size: 20px;
}
.project-link-grid a:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.seo-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.seo-card h3 { margin-bottom: 10px; color: var(--navy); }
.seo-card p { margin: 0; }
.spec-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 5px 4px;
  padding: 8px 13px;
  border: 1px solid rgba(11, 43, 85, .1);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  box-shadow: 0 5px 16px rgba(7, 29, 54, .06);
  font-size: 13px;
  font-weight: 750;
}
.spec-pill::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold-dark);
  font-size: 11px;
}
.location-list,
.amenities-list { margin: 0; padding: 0; list-style: none; }
.location-list li,
.amenities-list li {
  position: relative;
  margin-bottom: 13px;
  padding: 13px 15px 13px 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 6px 18px rgba(7, 29, 54, .05);
}
.location-list li::before,
.amenities-list li::before {
  content: "✓";
  position: absolute;
  top: 14px;
  left: 15px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
}

.gallery-section .row > div { display: flex; }
.gallery-section .img-fluid,
.overview-section .row.g-3 .img-fluid {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-section .img-fluid:hover,
.overview-section .row.g-3 .img-fluid:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Footer */
.footer-section {
  padding: 34px 0 90px;
  color: rgba(255, 255, 255, .76);
  background: #041426;
}
.footer-section p { color: rgba(255, 255, 255, .7); }
.footer-section .rera {
  margin-bottom: 12px;
  color: #fff;
  font-weight: 750;
}
.footer-section .btm-foot {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}
.moreless-button {
  display: block;
  min-width: 110px;
  margin: 14px auto 0;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}
.moreless-button:hover { border-color: var(--gold); color: var(--gold); }
.moretext[hidden] { display: none !important; }

/* Modal */
.modal { z-index: 2000; }
.modal-backdrop { z-index: 1900; background: var(--navy); }
.modal-content {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}
.modal-body { position: relative; padding: 0; }
.modal .btn-close {
  position: absolute;
  z-index: 4;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 1;
}
.modal .banner-form,
.modal .footer-form { border-radius: var(--radius); }

/* Native lightbox */
.site-lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 10, 20, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.site-lightbox.open { opacity: 1; visibility: visible; }
.site-lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .48);
}
.site-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: 28px;
  line-height: 1;
}

/* Mobile conversion bar */
.mobile-section { display: none; }

@media (max-width: 1399px) {
  .header-section .navbar > .container { max-width: 1260px; }
  .project-logo { width: 154px; }
  .nav-item .nav-link { padding-right: 8px !important; padding-left: 8px !important; font-size: 12px; }
  .project-details-ban { left: 4vw; width: 52vw; }
  .banner-form-section { right: 4vw; width: 340px; }
}

@media (max-width: 1199px) {
  :root { --header-height: 72px; }
  .header-section {
    position: fixed;
    padding: 7px 0;
    background: rgba(7, 29, 54, .97);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
  }
  .project-logo { width: 164px; height: 52px; filter: brightness(0) invert(1); }
  .navbar-collapse {
    max-height: calc(100vh - 90px);
    margin-top: 9px;
    overflow-y: auto;
  }
  .asidebar {
    align-items: stretch;
    gap: 3px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(4, 18, 34, .98);
  }
  .nav-item { display: block; }
  .nav-item .nav-link { display: block; padding: 10px 12px !important; font-size: 14px; }
  .banner-setion,
  .banner,
  .banner-container,
  .banner .carousel,
  .banner .carousel-inner,
  .banner .carousel-item { min-height: 690px; }
  .banner .carousel-item img { height: 690px; }
  .project-details-ban { top: 49%; left: 4vw; width: 55vw; }
  .project-details-ban h1 { font-size: clamp(3rem, 6vw, 4.7rem); }
  .banner-form-section { width: 330px; }
  .circle { display: none; }
  .project-link-grid,
  .seo-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  body { padding-top: var(--header-height); }
  .banner-setion {
    min-height: auto;
    padding-bottom: 30px;
    background: var(--navy);
  }
  .banner,
  .banner-container,
  .banner .carousel,
  .banner .carousel-inner,
  .banner .carousel-item { min-height: 430px; }
  .banner .carousel-item::after { background: linear-gradient(0deg, rgba(4, 16, 31, .58), rgba(4, 16, 31, .1) 60%); }
  .banner .carousel-item img { height: 430px; }
  .project-details-ban {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 30px);
    max-width: 760px;
    margin: -58px auto 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: linear-gradient(145deg, #0b2b55, #071d36);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .28);
    transform: none;
  }
  .project-details-ban h1 { font-size: clamp(2.6rem, 8vw, 4.4rem); }
  .project-details-ban > p:first-child { background: rgba(255, 255, 255, .08); }
  .banner-form-section {
    position: relative;
    top: auto;
    right: auto;
    width: calc(100% - 30px);
    max-width: 760px;
    margin: 20px auto 0;
    transform: none;
  }
  .banner-form { box-shadow: 0 16px 42px rgba(0, 0, 0, .25); }
  .carousel-control-prev,
  .carousel-control-next { bottom: 76px; }
  .overview-section,
  .price-section,
  .amenities-section,
  .floor-plan-section,
  .gallery-section,
  .location-advantages,
  .about-builder-section { padding: 64px 0; }
  .overview-section .row > [class*="col-"],
  .location-advantages .row > [class*="col-"],
  .about-builder-section .row > [class*="col-"] { margin-bottom: 24px; }
  .img-card img { min-height: 300px; }
  .floor-plan-section .img-card { margin-bottom: 18px; }
  .floor-plan-section .img-card img { min-height: 330px; }
  .footer-section { padding-bottom: 86px; }
  .mobile-section {
    position: fixed;
    z-index: 1800;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 7px max(7px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left));
    border-top: 1px solid rgba(255, 255, 255, .15);
    background: rgba(7, 29, 54, .98);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, .22);
    backdrop-filter: blur(12px);
  }
  .mobile-section a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 8px 6px;
    border-right: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-section a:last-child { border-right: 0; color: var(--navy); background: var(--gold); border-radius: 9px; }
}

@media (max-width: 767px) {
  .d-view { display: none !important; }
  .m-view { display: block !important; }
  .banner,
  .banner-container,
  .banner .carousel,
  .banner .carousel-inner,
  .banner .carousel-item { min-height: 350px; }
  .banner .carousel-item img { height: 350px; }
  .carousel-control-prev,
  .carousel-control-next { bottom: 70px; width: 40px; height: 40px; }
  .carousel-control-prev { right: 70px; }
  .carousel-control-next { right: 18px; }
  .project-key-highlights { grid-template-columns: 1fr; }
  .banner-price-typo { display: grid; grid-template-columns: 1fr; }
  .banner-typology { width: 100%; }
  .project-link-grid,
  .seo-card-grid { grid-template-columns: 1fr; }
  .project-table-wrap { border-radius: 12px; }
  .project-info-table { min-width: 580px; }
  .gallery-section .row > div { margin-bottom: 14px; }
  .location-advantages .row { gap: 18px; }
}

@media (max-width: 575px) {
  :root { --header-height: 66px; }
  .header-section .container { padding-right: 14px; padding-left: 14px; }
  .project-logo { width: 142px; height: 46px; }
  .navbar-toggler { width: 42px; height: 40px; }
  .banner,
  .banner-container,
  .banner .carousel,
  .banner .carousel-inner,
  .banner .carousel-item { min-height: 305px; }
  .banner .carousel-item img { height: 305px; }
  .project-details-ban { width: calc(100% - 20px); margin-top: -42px; padding: 19px 16px; border-radius: 15px; }
  .project-details-ban > p:first-child { padding: 7px 10px; font-size: 11px; }
  .project-details-ban h1 { margin-bottom: 15px; font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .key-high { min-height: 49px; padding: 9px 10px; }
  .banner-form-section { width: calc(100% - 20px); }
  .form-bottom { padding: 18px 16px 0; }
  .lower-form-part { padding: 16px; }
  .form_title,
  .form_title_popup { font-size: 22px; }
  .overview-section,
  .price-section,
  .amenities-section,
  .floor-plan-section,
  .gallery-section,
  .location-advantages,
  .about-builder-section { padding: 50px 0; }
  .overview-left-section > h2,
  .overview-left-section > h4,
  .heading-section h2 { font-size: 2rem; }
  .heading-section { margin-bottom: 26px; }
  .img-card { border-radius: 16px; }
  .img-card img { min-height: 245px; }
  .floor-plan-section .img-card img { min-height: 280px; padding: 8px; }
  .project-info-table th,
  .project-info-table td { padding: 11px 12px; font-size: 13px; }
  .spec-pill { width: 100%; justify-content: flex-start; margin: 5px 0; }
  .footer-section { padding-right: 6px; padding-left: 6px; }
  .modal-dialog { margin: 10px; }
}
.circle { appearance: none; padding: 0; font: inherit; }


/* === Expert refinement update === */
.navbar-brand {
  padding: 6px 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
}
.project-logo,
.header-section.fixed .project-logo {
  filter: none !important;
}
.header-section.fixed .navbar-brand {
  background: rgba(255, 255, 255, .98);
}
.asidebar {
  box-shadow: 0 14px 38px rgba(0, 0, 0, .14);
}

.about-media-grid {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: minmax(230px, 1fr) minmax(230px, 1fr);
  gap: 16px;
  height: 100%;
}
.about-media-card {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.about-media-card--large {
  grid-row: 1 / span 2;
}
.about-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}
.about-media-card:hover img {
  transform: scale(1.04);
}

.faq-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f5ef 100%);
}
.faq-accordion {
  max-width: 980px;
  margin: 0 auto;
}
.faq-item {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(7, 29, 54, .10) !important;
  border-radius: 18px !important;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 29, 54, .07);
}
.faq-item .accordion-button {
  padding: 20px 24px;
  color: var(--navy);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: none !important;
}
.faq-item .accordion-button:not(.collapsed) {
  color: var(--navy);
  background: linear-gradient(180deg, #fff, #faf7f1);
}
.faq-item .accordion-button:focus {
  box-shadow: inset 0 0 0 2px rgba(200, 162, 88, .18) !important;
}
.faq-item .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px;
}
.faq-item .accordion-body {
  padding: 0 24px 22px;
  color: var(--muted);
}

.desktop-cta-panel {
  position: fixed;
  z-index: 1700;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.desktop-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.desktop-cta-link:hover,
.desktop-cta-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .24);
}
.desktop-cta-whatsapp {
  color: #fff !important;
  background: #25d366;
}
.desktop-cta-enquire {
  color: var(--navy) !important;
  background: var(--gold);
}

@media (max-width: 1199px) {
  .project-logo { width: 164px; height: 52px; filter: none !important; }
}
@media (max-width: 991px) {
  .desktop-cta-panel { display: none; }
  .faq-section { padding: 64px 0; }
  .about-media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(200px, 1fr) minmax(200px, 1fr);
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .about-media-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-media-card--large {
    grid-row: auto;
  }
  .about-media-card img {
    min-height: 220px;
  }
}
@media (max-width: 575px) {
  .project-logo { width: 142px; height: 46px; filter: none !important; }
  .navbar-brand {
    padding: 5px 8px;
    border-radius: 14px;
  }
  .faq-item .accordion-button {
    padding: 17px 18px;
    font-size: .95rem;
  }
  .faq-item .accordion-body {
    padding: 0 18px 18px;
  }
}


/* === Refinement update 2 === */
.header-section .navbar > .container {
  gap: 14px;
}
.navbar-brand {
  padding: 4px 8px !important;
  border-radius: 14px;
}
.project-logo,
.header-section.fixed .project-logo {
  width: 152px;
  height: 48px;
}
.navbar-collapse {
  display: flex;
  justify-content: flex-end;
}
.asidebar {
  width: auto !important;
  max-width: 100%;
  margin-left: auto;
  padding: 5px;
  gap: 2px;
  border-radius: 26px;
}
.nav-item .nav-link {
  padding: 8px 9px !important;
  font-size: 12px;
}

.about-media-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-media-card,
.about-media-card--large {
  grid-row: auto !important;
}
.about-media-card img {
  width: 100%;
  height: 220px;
  min-height: 220px;
  object-fit: cover;
}
.about-media-card:first-child img {
  height: 255px;
  min-height: 255px;
}

@media (max-width: 1399px) {
  .project-logo,
  .header-section.fixed .project-logo {
    width: 146px;
    height: 46px;
  }
  .nav-item .nav-link {
    padding: 8px 8px !important;
    font-size: 11.5px;
  }
}

@media (max-width: 1199px) {
  .project-logo,
  .header-section.fixed .project-logo {
    width: 150px;
    height: 48px;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: block;
  }
  .asidebar {
    width: 100% !important;
    margin-left: 0;
    padding: 10px;
    border-radius: 16px;
  }
  .about-media-grid {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    padding: 4px 6px !important;
  }
  .project-logo,
  .header-section.fixed .project-logo {
    width: 136px;
    height: 44px;
  }
  .about-media-card img {
    height: 205px;
    min-height: 205px;
  }
  .about-media-card:first-child img {
    height: 235px;
    min-height: 235px;
  }
}


/* === Refinement update 3 === */
.overview-section .col-md-6 .about-media-grid {
  max-width: 520px;
  margin-left: auto;
}
.about-media-grid {
  gap: 18px;
}
.about-media-card {
  border: 1px solid rgba(7, 29, 54, .08);
  box-shadow: 0 16px 42px rgba(7, 29, 54, .10);
}
.about-media-card img {
  height: 205px !important;
  min-height: 205px !important;
  object-position: center center;
}
.about-media-card:first-child img {
  height: 290px !important;
  min-height: 290px !important;
}

.amenities-section {
  background: linear-gradient(180deg, #fff 0%, #f7f3eb 100%);
}
.amenities-section > .container > p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto 10px;
}
.spec-pill {
  min-height: 54px;
  margin: 0 !important;
  padding: 10px 20px;
  border: 1px solid rgba(11, 43, 85, .08);
  box-shadow: 0 10px 28px rgba(7, 29, 54, .08);
  font-size: 15px;
  font-weight: 800;
}
.spec-pill::before {
  width: 28px;
  height: 28px;
  margin-right: 12px;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 991px) {
  .overview-section .col-md-6 .about-media-grid {
    max-width: 100%;
    margin-left: 0;
  }
  .about-media-card img {
    height: 215px !important;
    min-height: 215px !important;
  }
  .about-media-card:first-child img {
    height: 255px !important;
    min-height: 255px !important;
  }
  .amenities-section > .container > p {
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .about-media-card img {
    height: 190px !important;
    min-height: 190px !important;
  }
  .about-media-card:first-child img {
    height: 225px !important;
    min-height: 225px !important;
  }
  .amenities-section > .container > p {
    justify-content: flex-start;
    gap: 10px;
  }
  .spec-pill {
    min-height: 50px;
    padding: 10px 16px;
    font-size: 14px;
  }
}


/* === Refinement update 4 === */
.about-media-card img,
.about-media-card:first-child img {
  height: 290px !important;
  min-height: 290px !important;
}

@media (max-width: 991px) {
  .about-media-card img,
  .about-media-card:first-child img {
    height: 255px !important;
    min-height: 255px !important;
  }
}

@media (max-width: 767px) {
  .about-media-card img,
  .about-media-card:first-child img {
    height: 225px !important;
    min-height: 225px !important;
  }
}


/* === SEO content depth update === */
.seo-content-depth {
  margin: 30px 0 34px;
  padding: 26px 28px;
  border: 1px solid rgba(7, 29, 54, .09);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  box-shadow: 0 12px 32px rgba(7, 29, 54, .06);
}
.seo-content-depth h3 {
  position: relative;
  margin: 26px 0 12px;
  padding-left: 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}
.seo-content-depth h3:first-child { margin-top: 0; }
.seo-content-depth h3::before {
  content: "";
  position: absolute;
  top: .18em;
  bottom: .18em;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--gold);
}
.seo-content-depth p {
  margin-bottom: 15px;
  text-align: left !important;
}
.seo-content-depth p:last-child { margin-bottom: 0; }
.seo-content-depth a {
  color: var(--navy-2);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media (max-width: 575px) {
  .seo-content-depth {
    margin: 24px 0 28px;
    padding: 20px 18px;
    border-radius: 15px;
  }
}


/* === Content depth SEO update === */
.content-depth-block {
  margin: 34px 0 38px;
  padding: 30px;
  border: 1px solid rgba(7, 29, 54, .09);
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #faf8f3);
  box-shadow: 0 12px 34px rgba(7, 29, 54, .06);
}
.content-depth-block h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}
.content-depth-block h3:first-child { margin-top: 0; }
.content-depth-block p { margin-bottom: 14px; }
.content-depth-block p:last-child { margin-bottom: 0; }
.content-depth-block a { font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 3px; }
@media (max-width: 575px) {
  .content-depth-block { margin: 26px 0 30px; padding: 22px 18px; border-radius: 16px; }
}


/* === Performance-only hero delivery === */
.hero-picture { display: block; width: 100%; height: 100%; }
.hero-picture .hero-image { display: block; width: 100%; height: 760px; object-fit: cover; object-position: center; }
@media (max-width: 1199px) { .hero-picture .hero-image { height: 690px; } }
@media (max-width: 991px) { .hero-picture .hero-image { height: 430px; } }
@media (max-width: 767px) { .hero-picture .hero-image { height: 350px; } }
@media (max-width: 575px) { .hero-picture .hero-image { height: 305px; } }


/* === Amenities page horizontal card refinement === */
.amenity-card-grid-horizontal {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}
.amenity-card-grid-horizontal .amenity-card-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  min-height: 0;
  padding: 24px 26px;
}
.amenity-card-grid-horizontal .amenity-card-horizontal h3 {
  flex: 0 0 34%;
  margin: 0;
  color: var(--navy);
  line-height: 1.08;
}
.amenity-card-grid-horizontal .amenity-card-horizontal p {
  flex: 1 1 auto;
  margin: 0;
}
@media (max-width: 991px) {
  .amenity-card-grid-horizontal .amenity-card-horizontal {
    gap: 18px;
    padding: 20px 20px;
  }
  .amenity-card-grid-horizontal .amenity-card-horizontal h3 {
    flex-basis: 38%;
  }
}
@media (max-width: 767px) {
  .amenity-card-grid-horizontal {
    gap: 14px;
  }
  .amenity-card-grid-horizontal .amenity-card-horizontal {
    display: block;
    padding: 18px 18px;
  }
  .amenity-card-grid-horizontal .amenity-card-horizontal h3 {
    margin-bottom: 10px;
  }
}


/* === Full-width inner content cards (reference layout) === */
.inner-wide-content-column {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.inner-wide-content-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  margin-top: 38px;
}
.inner-wide-content-card {
  width: 100%;
  padding: 42px 46px;
  border: 1px solid rgba(7, 29, 54, .10);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(7, 29, 54, .07);
}
.inner-wide-content-card h3 {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}
.inner-wide-content-card p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
}
.inner-wide-content-card p:last-child {
  margin-bottom: 0;
}
.inner-wide-content-card a {
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media (max-width: 991px) {
  .inner-wide-content-stack {
    margin-top: 28px;
    gap: 18px;
  }
  .inner-wide-content-card {
    padding: 30px 28px;
    border-radius: 22px;
  }
  .inner-wide-content-card p {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .inner-wide-content-card {
    padding: 24px 20px;
    border-radius: 18px;
  }
  .inner-wide-content-card h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
  }
  .inner-wide-content-card p {
    font-size: 15px;
    line-height: 1.7;
  }
}
