:root {
  --bg: #ffffff;
  --surface: #f8f8f8;
  --nav: rgba(255,255,255,0.96);
  --text: #081E63;
  --muted: #5a668e;
  --gold: #C8A66A;
  --gold-soft: rgba(200,166,106,0.16);
  --dark: #081E63;
  --dark-soft: rgba(8,30,99,0.9);
  --charcoal: #12131a;
  --border: rgba(8,30,99,0.08);
  --shadow: 0 28px 80px rgba(8,30,99,0.08);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

section {
  position: relative;
}

.btn-gold {
  background: linear-gradient(135deg, #c8a66a 0%, #efdfb5 100%);
  color: #081e63;
  border: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.btn-gold:hover,
.btn-gold:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(200,166,106,0.28);
}

.btn-outline-gold {
  border: 1px solid rgba(200,166,106,0.8);
  color: #081e63;
  background: rgba(255,255,255,0.88);
}

.btn,
.btn-outline-gold,
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn::after,
.btn-outline-gold::after,
.btn-gold::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.btn:active::after,
.btn-outline-gold:active::after,
.btn-gold:active::after {
  width: 180px;
  height: 180px;
  opacity: 0.25;
  transition: 0s;
}

.btn-outline-gold:hover,
.btn-outline-gold:focus {
  background: rgba(200,166,106,0.08);
  border-color: #c8a66a;
}

.text-gold {
  color: var(--gold) !important;
}

.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: all 0.4s ease;
  backdrop-filter: blur(16px);
  background: var(--nav);
  border-bottom: 1px solid rgba(8,30,99,0.06);
}

.header-nav.shrink {
  padding: 8px 0;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 18px 60px rgba(8,30,99,0.08);
}

.header-nav .navbar {
  padding: 14px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar-brand img {
  width: 76px;
  transition: transform 0.4s ease;
}

.header-nav.shrink .navbar-brand img {
  transform: scale(0.92);
}

.nav-link {
  position: relative;
  color: #202840;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: 1px solid rgba(8,30,99,0.16);
}

.hero-banner {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  background: linear-gradient(180deg, rgba(8,30,99,0.44), rgba(8,30,99,0.72)), url('../assets/images/hero-bg.png') center/cover no-repeat;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200,166,106,0.12), transparent 30%);
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-intro {
  max-width: 660px;
}

.hero-intro .eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5e8cd;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero-intro h1 {
  font-family: 'Georgia', serif;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.hero-intro p {
  color: rgba(255,255,255,0.9);
  font-size: 1.06rem;
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions .btn {
  min-width: 170px;
}

.hero-float {
  position: absolute;
  right: 3rem;
  bottom: 6rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 24px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 32px 90px rgba(8,30,99,0.18);
  backdrop-filter: blur(22px);
  max-width: 360px;
}

.hero-float strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.hero-float p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.hero-float span {
  color: #f1f1f5;
  font-size: 0.95rem;
}

.section-title {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 0.82rem;
}

.section-heading {
  font-family: 'Georgia', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.6rem);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--muted);
  max-width: 680px;
}

.feature-card,
.plan-card,
.landmark-card,
.testimonial-card,
.contact-card {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8,30,99,0.06);
}

.feature-card {
  overflow: hidden;
}

.feature-card:hover,
.plan-card:hover,
.landmark-card:hover,
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 38px 96px rgba(8,30,99,0.14);
}

@supports (backdrop-filter: blur(0)) {
  .feature-card,
  .plan-card,
  .testimonial-card {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(18px);
  }
}

.highlight-grid {
  gap: 1.4rem;
}

.highlight-card {
  padding: 2rem;
  border-top: 4px solid var(--dark);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.highlight-card:hover {
  border-color: var(--gold);
}

.highlight-card .icon-wrapper {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(8,30,99,0.08);
  border-radius: 18px;
  margin-bottom: 1.25rem;
}

.highlight-card h5 {
  margin-bottom: 0.85rem;
  font-size: 1.12rem;
}

.highlight-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-section {
  padding: 120px 0;
}

.about-section .about-image {
  border-radius: 28px;
  overflow: hidden;
  /* min-height: 520px; */
}

.about-section img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.full-width-showcase {
  min-height: 650px;
  background: url('../assets/images/showcase-bg.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.full-width-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 38%);
}

.showcase-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
  font-weight: 600;
}

.achievement-section {
  background: var(--dark);
  color: #ffffff;
  padding: 100px 0;
}

.counter-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 2rem;
  border-radius: 24px;
  text-align: center;
}

.counter-card h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.counter-card p {
  color: rgba(255,255,255,0.78);
}

.why-section {
  padding: 100px 0;
}

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 0.95;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.why-list .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(8,30,99,0.04);
  border: 1px solid rgba(8,30,99,0.06);
  font-size: 1.25rem;
}

.why-list h6 {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(8,30,99,0.12);
}

@media (max-width: 991.98px) {
  .why-heading {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .about-image img {
    height: 420px;
  }
}

.why-card {
  border: 1px solid rgba(8,30,99,0.08);
  padding: 1.8rem;
}

.why-card h5 {
  margin-bottom: 0.8rem;
}

.dark-cta {
  background: #13141d;
  color: #f7f6f3;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.dark-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(200,166,106,0.18), transparent 14%), radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08), transparent 16%);
}

.dark-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/cta-17.jpg') center/cover no-repeat fixed;
  background-attachment: fixed;
  background-position: center center;
  background-size: cover;
  opacity: 0.48;
  z-index: 1;
  filter: saturate(0.9) contrast(0.95) brightness(0.6);
}

.dark-cta .container {
  position: relative;
  z-index: 2;
}

.advantage-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f7f6f3;
  padding: 2rem;
}

.advantage-card:hover {
  border-color: rgba(200,166,106,0.6);
}

.property-collection {
  padding: 100px 0;
  padding-top: 30px;
}

.property-summary {
  display: grid;
  gap: 2rem;
}

.property-summary .summary-image {
  max-height: 520px;
  border-radius: 28px;
  overflow: hidden;
}

.property-summary .summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-cards .plan-card {
  overflow: hidden;
}

.property-cards .card-img-top {
  height: 240px;
  object-fit: cover;
}

.plan-meta {
  font-size: 0.92rem;
  color: var(--muted);
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,166,106,0.12);
  color: #fff7e2;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.84rem;
}

.landmarks {
  padding: 90px 0;
}

.landmark-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(8,30,99,0.08);
  background: #ffffff;
}

.landmark-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.landmark-card:hover img {
  filter: none;
  transform: scale(1.04);
}

.partners-section {
  padding: 90px 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(8,30,99,0.08);
  min-height: 180px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.partner-logo:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(8,30,99,0.12);
}

.partner-logo img {
  max-width: 90%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(8,30,99,0.06));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.partner-logo:hover img {
  filter: drop-shadow(0 4px 16px rgba(8,30,99,0.14));
}

.gallery-section {
  padding: 100px 0;
  padding-bottom: 30px;
}

.swiper-slide {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section {
  padding: 100px 0;
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-card .client-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.testimonial-card .client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section {
  padding: 100px 0;
  padding-top: 30px;
}

.contact-card {
  padding: 2rem;
}

.map-responsive {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.form-floating input,
.form-floating textarea {
  border-radius: 16px;
}

.form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.form-control:focus,
textarea.form-control:focus {
  border-color: rgba(200,166,106,0.9);
  box-shadow: 0 0 0 0.16rem rgba(200,166,106,0.18);
}

.cta-badges {
  display: grid;
  gap: 1rem;
}

.cta-badges a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
}

.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.86);
  padding: 80px 0 30px;
}

.footer p,
.footer h6,
.footer li {
  color: rgba(255,255,255,0.82);
}

.footer .text-muted {
  color: rgba(255,255,255,0.72) !important;
}

.footer a {
  color: rgba(255,255,255,0.85);
}

.footer a:hover {
  color: #ffffff;
}

.footer .social-icons a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.9);
}

.footer .bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

.sticky-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #c8a66a, #ffffff);
  z-index: 1090;
  transition: width 0.2s ease;
}

.preloader {
  position: fixed;
  inset: 0;
  background: #081e63;
  z-index: 2000;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.preloader .spinner {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(255,255,255,0.16);
  border-top-color: #c8a66a;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.whatsapp-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-floating:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(0,0,0,0.28);
}

.call-floating {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a66a 0%, #efdfb5 100%);
  color: #081e63;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 48px rgba(0,0,0,0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-floating:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 68px rgba(0,0,0,0.28);
}

@media (max-width: 991.98px) {
  .hero-float {
    position: static;
    margin-top: 2rem;
    max-width: 320px;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .section-heading {
    font-size: 2.4rem;
  }

  .hero-intro h1 {
    font-size: clamp(2.4rem, 9vw, 3.8rem);
  }

  .navbar-brand img {
    width: 76px;
  }
}
.swiper-pagination-bullet-active {
    background: #c8a66a ;
}
.card-body {
    padding: 0px 10px;
}