:root {
  --navy: #061b3d;
  --navy-2: #092b63;
  --red: #c9362e;
  --red-dark: #a8231e;
  --gold: #d6a24a;
  --cream: #fff8ef;
  --white: #ffffff;
  --text: #172033;
  --muted: #6b7280;
  --line: #e6ebf2;
  --shadow: 0 18px 45px rgba(6, 27, 61, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", Arial, sans-serif;
  background: #f5f7fb;
  color: var(--text);
  line-height: 1.55;
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(6, 27, 61, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}

.brand-main {
  font-weight: 900;
  letter-spacing: 0.5px;
  font-size: 18px;
}

.brand-sub {
  font-size: 12px;
  color: #cbd5e1;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  gap: 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.nav-menu span {
  display: block;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 600;
}

.header-whatsapp {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(201, 54, 46, 0.28);
  white-space: nowrap;
}

/* Hero */

.hero {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 14%, rgba(214, 162, 74, 0.26), transparent 21%),
    radial-gradient(circle at 75% 84%, rgba(201, 54, 46, 0.22), transparent 25%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  overflow: hidden;
}

.hero-inner {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 38px;
  align-items: center;
  padding: 62px 0 48px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffe0a3;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 900;
}

.hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -2px;
}

.hero h1 span {
  color: #ffdf91;
}

.hero h2 {
  margin: 18px 0 8px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.15;
  color: var(--white);
}

.hero h3 {
  margin: 0 0 16px;
  color: #ff6b62;
  font-size: clamp(20px, 2.4vw, 28px);
}

.hero-text {
  color: #dbe4f1;
  font-size: 16px;
  max-width: 620px;
}

.appointed-line {
  margin-top: 16px;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff6df;
  font-weight: 800;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 28px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 950;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}

.btn span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 12px 26px rgba(201, 54, 46, 0.28);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
}

.hero-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  max-width: 600px;
}

.hero-tags div {
  padding: 14px 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-tags strong {
  display: block;
  font-size: 15px;
}

.hero-tags span {
  font-size: 12px;
  color: #d5deea;
}

/* Hero Image */

.hero-image-card {
  border-radius: 30px;
  overflow: hidden;
  border: 14px solid var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.26);
  background: var(--white);
}

.hero-image-card img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Highlight Strip */

.highlight-strip {
  background: var(--white);
  padding: 22px 0;
  box-shadow: 0 14px 35px rgba(6, 27, 61, 0.08);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.highlight-item {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 18px 14px;
  text-align: center;
}

.highlight-item .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.highlight-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.highlight-item span {
  color: #d5deea;
  font-size: 11px;
}

/* General Sections */

.section {
  padding: 44px 0;
}

.section-label {
  color: var(--red);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.section h2,
.section-heading h2 {
  margin: 7px 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.12;
}

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

.two-col {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 22px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin-top: 20px;
}

.stats-grid div {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 10px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  color: var(--red);
  font-size: 24px;
}

.stats-grid span {
  display: block;
  font-size: 11px;
  color: var(--muted);
}

/* Image Cards */

.image-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
}

.masterplan-image-card img {
  object-fit: cover;
}

/* Rental */

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

.section-heading p {
  font-size: 13px;
  max-width: 320px;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.rental-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rental-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.rental-card h3 {
  font-size: 26px;
  margin: 10px 0 4px;
  color: var(--navy);
}

.rental-card p {
  font-size: 13px;
}

.rental-card strong {
  display: block;
  color: var(--red);
  font-size: 32px;
  margin: 14px 0 4px;
}

.rental-card span {
  color: var(--muted);
  font-size: 13px;
}

/* ROI */

.roi-section {
  background: #edf3fb;
}

.roi-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 30px;
  padding: 30px;
  color: var(--white);
  box-shadow: 0 24px 58px rgba(6, 27, 61, 0.24);
}

.roi-box h2,
.roi-box p {
  color: var(--white);
}

.roi-form label {
  display: block;
  font-weight: 850;
  font-size: 13px;
  margin: 12px 0 6px;
}

.roi-form input,
.roi-form select,
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid #d0d8e5;
  font: inherit;
  background: var(--white);
  color: #111827;
}

.full-btn {
  width: 100%;
  margin-top: 16px;
}

.roi-results {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 24px;
}

.roi-results h3 {
  margin-top: 0;
  font-size: 24px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.result-row strong {
  color: #ffdf91;
  text-align: right;
}

.roi-note {
  font-size: 12px;
  color: #d5deea !important;
}

/* Shoplots */

.shoplot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.shoplot-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.shoplot-image {
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  background: #eef3f8;
  margin-bottom: 16px;
}

.shoplot-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.shoplot-card h3 {
  color: var(--navy);
  font-size: 26px;
  margin: 0;
}

.shoplot-card p {
  font-size: 13px;
}

/* Contact */

.contact-section {
  background: #eef4fb;
}

.contact-box {
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lead-form .full-btn {
  grid-column: 1 / -1;
}

/* Final CTA */

.final-cta {
  background:
    radial-gradient(circle at 88% 20%, rgba(214, 162, 74, 0.22), transparent 25%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 36px 0;
}

.final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.final-inner h2 {
  margin: 0 0 8px;
  font-size: 34px;
}

.final-inner p {
  margin: 0;
  color: #d5deea;
}

.final-whatsapp {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 16px 28px;
  border-radius: 18px;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 14px 28px rgba(201, 54, 46, 0.28);
}

/* Footer */

footer {
  background: var(--white);
}

.footer-inner {
  padding: 18px 0;
  font-size: 12px;
  color: var(--muted);
}

/* Floating WhatsApp */

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 88;
  background: #25d366;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

/* Responsive */

@media (max-width: 980px) {
  .nav-menu {
    display: none;
  }

  .hero-inner,
  .two-col,
  .roi-box,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rental-grid,
  .shoplot-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .final-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-image-card img {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-main {
    font-size: 15px;
  }

  .header-whatsapp {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-inner {
    min-height: auto;
    padding: 42px 0 34px;
  }

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

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 34px 0;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .roi-box,
  .contact-box {
    padding: 20px;
  }

  .floating-whatsapp {
    left: 18px;
    text-align: center;
  }
}