:root {
  --bg: #f6f3ee;
  --ink: #111319;
  --muted: #596168;
  --primary: #f5c400;
  --secondary: #0f8b8d;
  --dark: #1f2a2e;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 80px 0;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 40px;
}

.section-heading span {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 600;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  margin: 10px 0 12px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn.is-loading::after {
  content: '';
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn.btn-primary.is-loading::after {
  border-color: rgba(17, 19, 25, 0.2);
  border-top-color: rgba(17, 19, 25, 0.8);
}

.btn .btn-loading-text {
  display: none !important;
}

.btn.is-loading .btn-default-text {
  display: none !important;
}

.btn.is-loading .btn-loading-text {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: var(--ink);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.site-header {
  background: var(--dark);
  color: var(--white);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px min(5%, 36px);
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  backdrop-filter: blur(12px);
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.nav-links a:hover {
  color: var(--primary);
}

#nav-toggle {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 20, 25, 0.86) 0%, rgba(15, 20, 25, 0.35) 60%, rgba(15, 20, 25, 0.1) 100%);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  width: min(1120px, 92%);
  margin: 0 auto;
  z-index: 2;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  margin: 14px 0 18px;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}

.hero-tag {
  display: inline-block;
  background: rgba(245, 196, 0, 0.15);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 26px 0;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 16px;
  border-radius: 16px;
}

.hero-stats span {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-stats strong {
  display: block;
  font-size: 18px;
  margin-top: 6px;
}

.hero-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-card {
  background: var(--white);
  color: var(--ink);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.form-card p {
  color: var(--muted);
  font-size: 14px;
}

.form-card .form-control {
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  padding: 12px 14px;
}

.form-note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-message {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
}

.form-message.success {
  color: #0f8b8d;
}

.form-message.error {
  color: #c1121f;
}

.form-note a {
  color: var(--secondary);
  font-weight: 600;
}

.form-note-sub {
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0.4px;
}

.intro {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-image img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.intro-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  margin-bottom: 12px;
}

.highlight-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.highlight {
  background: var(--bg);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight h4 {
  margin-bottom: 6px;
  font-size: 16px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.amenity-card {
  background: var(--white);
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.amenity-card img {
  width: 48px;
  margin-bottom: 12px;
}

.promise {
  background: var(--dark);
  color: var(--white);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.promise-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 24px;
  border-radius: 18px;
}

.promise-card img {
  width: 40px;
  margin-bottom: 16px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.plan-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.plan-meta {
  padding: 18px;
}

.walkthrough {
  background: linear-gradient(140deg, #111319, #1c2a2f);
  color: var(--white);
}

.walkthrough .section-heading span {
  color: #a6f0e5;
}

.walkthrough .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.video-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid img {
  border-radius: 16px;
  height: 240px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.location-map img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.location-item ul {
  padding-left: 18px;
}

.cta {
  background: var(--dark);
  color: var(--white);
}

.cta-card {
  background: linear-gradient(120deg, rgba(245, 196, 0, 0.15), rgba(15, 139, 141, 0.2));
  border-radius: 24px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-card span {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  color: var(--primary);
}

.cta-card h2 {
  font-family: "Playfair Display", serif;
  margin: 10px 0 8px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.contact-card {
  background: var(--bg);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contact-image-card {
  padding: 24px;
  text-align: center;
}

.contact-image-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.contact-partner {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-rera {
  display: inline-block;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 6px;
}

.contact-website {
  font-size: 14px;
  color: var(--muted);
}

.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px 0;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.site-footer img {
  width: 150px;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-note {
  text-align: right;
  color: rgba(255, 255, 255, 0.6);
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--secondary);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 80;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 12, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 120;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(900px, 90%);
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .amenities-grid,
  .promise-grid,
  .plans-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-note {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    background: rgba(17, 19, 25, 0.98);
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    width: 220px;
    transform: translateX(120%);
    transition: transform 0.3s ease;
  }

  #nav-toggle:checked ~ .nav-links {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .amenities-grid,
  .promise-grid,
  .plans-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 200px;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
  }
}
