:root {
  --bg: #07111f;
  --bg-2: #0d1b2f;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f7f7f7;
  --muted: #b9c3d1;
  --gold: #f5c76b;
  --gold-dark: #d7a847;
  --accent: #78d7ff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(120, 215, 255, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(245, 199, 107, 0.1), transparent 25%),
    linear-gradient(180deg, #06101c 0%, #0b1627 40%, #08121f 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

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

.container {
  width: min(92%, var(--max-width));
  margin: 0 auto;
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 215, 255, 0.16), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  mix-blend-mode: screen;
  filter: blur(8px);
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.25;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 180px;
  height: 180px;
  background: rgba(245, 199, 107, 0.18);
  top: 110px;
  left: -40px;
}

.shape-2 {
  width: 240px;
  height: 240px;
  background: rgba(120, 215, 255, 0.12);
  right: -50px;
  top: 280px;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(6, 16, 28, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5c76b, #b98523);
  color: #111;
  font-weight: 800;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(245, 199, 107, 0.22);
}

.brand-text h1 {
  font-size: 1.02rem;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
  transition: 0.25s ease;
}

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

.nav-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111 !important;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(245, 199, 107, 0.25);
  transition: 0.25s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: 92px 0 72px;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(245, 199, 107, 0.24);
  border-radius: 999px;
  background: rgba(245, 199, 107, 0.08);
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero h2 {
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.04;
  letter-spacing: -1.8px;
  max-width: 700px;
}

.hero h2 .gold {
  color: var(--gold);
}

.hero p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #101010;
  box-shadow: 0 16px 32px rgba(245, 199, 107, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(245, 199, 107, 0.32);
  color: var(--gold);
}

.small-btn {
  padding: 10px 16px;
  font-size: 0.9rem;
}

.full-btn {
  width: 100%;
}

.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.stat {
  min-width: 155px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.stat h3 {
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid var(--card-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 580px;
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(4, 10, 18, 0.84) 88%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.hero-overlay-card {
  width: 100%;
  padding: 22px;
  border-radius: 20px;
  background: rgba(7, 17, 31, 0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-overlay-card small {
  color: var(--gold);
  letter-spacing: 0.2px;
}

.hero-overlay-card h3 {
  margin-top: 8px;
  font-size: 1.45rem;
}

.hero-overlay-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.no-margin {
  margin-bottom: 0;
}

.section-head span,
.mini-heading {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 0.92rem;
  display: inline-block;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

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

.property-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.28s ease;
  backdrop-filter: blur(10px);
}

.property-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 199, 107, 0.25);
}

.property-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.property-image img {
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.property-card:hover .property-image img {
  transform: scale(1.06);
}

.property-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.78);
  color: var(--gold);
  border: 1px solid rgba(245, 199, 107, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.property-content {
  padding: 22px;
}

.property-content h3 {
  font-size: 1.24rem;
  margin-bottom: 8px;
}

.location {
  color: var(--accent);
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.property-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.meta-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #dfe8f3;
  font-size: 0.86rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.property-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--gold);
}

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

.about-card,
.why-card,
.contact-card,
.form-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.about-card {
  padding: 28px;
}

.about-card p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.about-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #e8eef5;
}

.check {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(245, 199, 107, 0.14);
  color: var(--gold);
  font-weight: 800;
  margin-top: 1px;
}

.about-image {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  min-height: 450px;
}

.about-image img {
  height: 100%;
  object-fit: cover;
}

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

.why-card {
  padding: 24px;
  transition: 0.28s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 199, 107, 0.24);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(245, 199, 107, 0.2), rgba(245, 199, 107, 0.06));
  border: 1px solid rgba(245, 199, 107, 0.16);
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.why-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.why-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.contact-card,
.form-card {
  padding: 28px;
}

.contact-card h3,
.form-card h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}

form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 15px 16px;
  border-radius: 16px;
  outline: none;
  font-size: 0.98rem;
  transition: 0.2s ease;
}

select option {
  color: #111;
}

input::placeholder,
textarea::placeholder {
  color: #a7b4c5;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(245, 199, 107, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 199, 107, 0.08);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.wa-wrap {
  margin-top: 18px;
}

.map-card {
  margin-top: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  line-height: 1.7;
}

footer {
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 10, 18, 0.4);
  margin-top: 10px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-wrap p {
  color: var(--muted);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .why-grid,
  .property-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    min-height: 480px;
  }
}

@media (max-width: 780px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .property-grid,
  .why-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-card {
    min-height: 390px;
  }

  .hero-actions,
  .hero-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .stat {
    width: 100%;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .contact-card,
  .form-card,
  .about-card {
    padding: 22px;
  }
}