:root {
  --brand: #2596be;
  --brand-dark: #1b7696;
  --brand-soft: rgba(37, 150, 190, 0.14);
  --dark: #07131d;
  --dark-2: #0e1c28;
  --text: #d8e6ee;
  --muted: #9ab4c3;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(37, 150, 190, 0.15), transparent 28%),
    radial-gradient(circle at bottom left, rgba(37, 150, 190, 0.12), transparent 25%),
    linear-gradient(180deg, #06111a 0%, #091622 35%, #0b1823 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.container-xxl {
  max-width: var(--container);
}

.section-space {
  padding: 110px 0;
}

.section-space-sm {
  padding: 80px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #d9f4ff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 20px var(--brand);
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.display-title,
h1,
h2,
h3,
h4,
.brand-wordmark {
  font-family: "Cormorant Garamond", serif;
  color: var(--white);
  letter-spacing: 0.02em;
}

.display-title {
  font-size: clamp(2.75rem, 5vw, 5.5rem);
  line-height: 0.94;
  margin: 20px 0 22px;
}

.section-title {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1;
  margin: 18px 0;
}

.lead {
  font-size: 1.08rem;
}

.glass-panel,
.luxury-card,
.page-hero-card,
.contact-panel,
.faq-panel,
.stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  position: relative;
  z-index: 1035;
  background: rgba(6, 17, 26, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
  color: #d8f3ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: all 0.3s ease;
}

.site-header .navbar {
  padding: 18px 0;
  transition: all 0.3s ease;
}

.site-header.scrolled .navbar {
  padding: 12px 0;
  background: rgba(7, 19, 29, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(37, 150, 190, 0.28), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e8fbff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.brand-wordmark {
  font-size: 1.7rem;
  line-height: 1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  padding: 10px 14px !important;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #dff9ff;
}

.btn-luxury,
.btn-outline-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  border-radius: 999px;
  padding: 0 28px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-luxury {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--brand), #38b6de);
  box-shadow: 0 18px 35px rgba(37, 150, 190, 0.32);
}

.btn-outline-luxury {
  color: #f4fcff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.btn-luxury:hover,
.btn-outline-luxury:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.offcanvas {
  background: linear-gradient(180deg, #08131d, #0c1d2a);
  color: var(--text);
}

.offcanvas .nav-link {
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-slider .carousel-item {
  min-height: calc(100vh - 48px);
}

.hero-slide {
  position: relative;
  min-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 10, 15, 0.88) 0%, rgba(3, 10, 15, 0.58) 46%, rgba(3, 10, 15, 0.3) 100%),
    linear-gradient(180deg, rgba(3, 10, 15, 0.1), rgba(3, 10, 15, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e5faff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.hero-facts .fact {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts strong {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.info-strip,
.luxury-card,
.stat-card,
.timeline-card,
.testimonial-card,
.gallery-card,
.plan-card,
.location-card,
.contact-panel,
.developer-card {
  border-radius: var(--radius);
}

.luxury-card,
.info-strip,
.timeline-card,
.testimonial-card,
.gallery-card,
.plan-card,
.location-card,
.developer-card {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(37, 150, 190, 0.26), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e6fbff;
  font-size: 1.4rem;
}

.metric {
  font-size: 3rem;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  margin-bottom: 10px;
}

.about-image-stack {
  position: relative;
}

.about-image-stack img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  right: -24px;
  bottom: 30px;
  max-width: 240px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(7, 19, 29, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.amenity-thumb,
.gallery-thumb,
.plan-thumb,
.page-hero-image,
.map-frame iframe {
  width: 100%;
  border-radius: 24px;
}

.amenity-thumb,
.gallery-thumb,
.plan-thumb {
  height: 250px;
  object-fit: cover;
}

.gallery-card,
.plan-card {
  overflow: hidden;
}

.gallery-card .gallery-thumb,
.plan-card .plan-thumb {
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-thumb,
.plan-card:hover .plan-thumb {
  transform: scale(1.04);
}

.gallery-action {
  position: absolute;
  inset: auto 22px 22px 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(7, 19, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-band {
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(37, 150, 190, 0.16), rgba(255, 255, 255, 0.02));
}

.stat-card {
  position: relative;
  padding: 34px 26px;
  border-radius: 28px;
}

.testimonial-card {
  height: 100%;
}

.quote-mark {
  font-size: 3.2rem;
  color: rgba(37, 150, 190, 0.7);
  line-height: 1;
}

.accordion-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px !important;
  overflow: hidden;
  margin-bottom: 16px;
}

.accordion-button,
.accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  box-shadow: none;
}

.accordion-body {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.form-control,
.form-select {
  min-height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.form-control:focus,
.form-select:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(37, 150, 190, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(37, 150, 190, 0.18);
}

.form-control::placeholder {
  color: rgba(216, 230, 238, 0.6);
}

textarea.form-control {
  min-height: 150px;
}

.page-hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 18, 0.82), rgba(4, 12, 18, 0.48)),
    url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1600&q=80") center/cover;
  opacity: 0.45;
}

.page-hero > .container-xxl {
  position: relative;
  z-index: 1;
}

.breadcrumb-nav {
  color: rgba(255, 255, 255, 0.72);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: #d9edf7;
}

.list-check li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
}

.map-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  height: 430px;
  border: 0;
  filter: grayscale(0.25) contrast(1.1);
}

.footer-main {
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 13, 19, 0.72);
}

.footer-bottom {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(216, 230, 238, 0.7);
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  margin-right: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 1040;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.32);
  font-size: 1.7rem;
}

.mobile-action-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1038;
  padding: 10px;
  border-radius: 22px;
  background: rgba(7, 19, 29, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.mobile-action-bar a {
  flex: 1;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #eafcff;
  font-weight: 600;
  border-radius: 14px;
}

.mobile-action-bar a.primary {
  background: linear-gradient(135deg, var(--brand), #38b6de);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 8, 12, 0.92);
  z-index: 1060;
}

.gallery-lightbox.open {
  display: flex;
}

.gallery-lightbox img {
  max-width: min(1100px, 100%);
  max-height: 84vh;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.5rem;
}

.luxury-popup-modal .modal-content {
  position: relative;
  padding: 22px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 24, 35, 0.96), rgba(6, 17, 26, 0.94)),
    linear-gradient(135deg, rgba(37, 150, 190, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.luxury-popup-modal .modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37, 150, 190, 0.26), transparent 34%);
  pointer-events: none;
}

.luxury-popup-modal .modal-body {
  position: relative;
  z-index: 1;
  padding: 32px 20px 20px;
}

.luxury-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  opacity: 0.9;
}

.luxury-modal-title {
  margin: 24px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1;
}

.luxury-modal-button {
  min-width: 220px;
  margin-top: 12px;
}

.policy-content h2 {
  font-size: 2rem;
  margin-top: 40px;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
}

.divider-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

@media (max-width: 1199.98px) {
  .hero-facts {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 991.98px) {
  .section-space {
    padding: 85px 0;
  }

  .hero-slide,
  .hero-slider .carousel-item {
    min-height: auto;
  }

  .hero-slide {
    padding: 130px 0 90px;
  }

  .page-hero {
    padding: 130px 0 70px;
  }
}

@media (max-width: 767.98px) {
  .topbar .small {
    font-size: 0.76rem;
  }

  .display-title {
    font-size: 2.55rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .luxury-card,
  .info-strip,
  .timeline-card,
  .testimonial-card,
  .gallery-card,
  .plan-card,
  .location-card,
  .developer-card,
  .contact-panel,
  .stat-card {
    padding: 24px;
  }

  .floating-badge {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-luxury,
  .btn-outline-luxury {
    width: 100%;
  }

  .mobile-action-bar {
    display: flex;
    gap: 10px;
  }

  .floating-whatsapp {
    bottom: 86px;
  }

  .map-frame iframe {
    height: 340px;
  }

  .luxury-popup-modal .modal-content {
    padding: 16px;
    border-radius: 26px;
  }

  .luxury-popup-modal .modal-body {
    padding: 28px 12px 12px;
  }
}
