:root {
  --bg: #fff8f2;
  --text: #1d1d1f;
  --muted: #5c5c66;
  --primary: #ff6a3d;
  --secondary: #7b61ff;
  --accent: #00b894;
  --gold: #f5b301;
  --card: rgba(255, 255, 255, 0.92);
  --shadow: 0 18px 50px rgba(30, 17, 50, 0.18);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,106,61,.18), transparent 22%),
    radial-gradient(circle at top right, rgba(123,97,255,.18), transparent 22%),
    linear-gradient(180deg, #fffaf6 0%, #fff3eb 100%);
  color: var(--text);
}
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,20,.7), rgba(86,22,20,.38));
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  padding: 64px 0;
}
.badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  font-size: 14px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 1.02;
  margin: 0 0 18px;
}
.hero-subtext {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  max-width: 700px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), #ff8b46); color: #fff; box-shadow: var(--shadow); }
.btn-secondary { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; backdrop-filter: blur(8px); }
.compact .btn { min-width: 120px; }

.highlight-bar {
  margin-top: -48px;
  position: relative;
  z-index: 3;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255,255,255,.96);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.highlight-grid div {
  padding: 12px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,106,61,.09), rgba(123,97,255,.08));
}
.highlight-grid strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.highlight-grid span { font-weight: 700; }

.section-head { text-align: center; margin-bottom: 26px; }
.section-head.left { text-align: left; }
.section-head span {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}
.section-head h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  font-family: 'Playfair Display', serif;
}
.gallery-section { padding: 84px 0 32px; }
.slider-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.slider-window { overflow: hidden; }
.slides {
  display: flex;
  transition: transform .45s ease;
}
.slides img {
  width: 100%;
  flex: 0 0 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  cursor: pointer;
  z-index: 5;
  font-size: 26px;
}
.prev { left: 14px; }
.next { right: 14px; }
.dots { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%; cursor: pointer;
  background: #d7d1e8; border: 0;
}
.dot.active { width: 26px; border-radius: 999px; background: var(--secondary); }

.details-section { padding: 30px 0 24px; }
.details-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 24px;
}
.details-card, .amenities-card, .price-card, .contact-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.details-card {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    radial-gradient(circle at top right, rgba(123,97,255,.15), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0,184,148,.15), transparent 30%);
}
.details-card p { color: var(--muted); line-height: 1.8; margin: 0 0 16px; }
.amenities-card {
  padding: 32px;
  background: linear-gradient(180deg, #1d1533 0%, #2f224c 100%);
  color: #fff;
}
.amenities-card h3 { margin-top: 0; font-size: 28px; font-family: 'Playfair Display', serif; }
.amenities-card ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.amenities-card li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}

.location-price {
  padding: 24px 0 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.price-card, .contact-card { padding: 30px; }
.price-card {
  background: linear-gradient(135deg, #ff6a3d 0%, #f5b301 100%);
  color: #fff;
}
.price-card h3 { font-size: 42px; margin: 10px 0 8px; font-family: 'Playfair Display', serif; }
.price-card p { margin: 0; line-height: 1.7; }
.contact-card h3 { font-size: 34px; margin: 10px 0; font-family: 'Playfair Display', serif; }
.contact-card p { color: var(--muted); line-height: 1.7; }
.small-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 700;
}

.footer {
  padding: 24px 0 80px;
  text-align: center;
  color: var(--muted);
}

.floating-btn {
  position: fixed;
  top: 50%;
  z-index: 20;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 14px 22px;
  border-radius: 16px 16px 0 0;
  box-shadow: var(--shadow);
}
.whatsapp-btn {
  left: -44px;
  background: linear-gradient(135deg, #00b894, #00d489);
}
.call-btn {
  right: -34px;
  background: linear-gradient(135deg, #1f1f1f, #343434);
}

@media (max-width: 900px) {
  .highlight-grid,
  .details-grid,
  .location-price { grid-template-columns: 1fr; }
  .highlight-bar { margin-top: -24px; }
}
@media (max-width: 640px) {
  .hero { min-height: 78vh; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .floating-btn {
    top: auto;
    bottom: 12px;
    transform: none;
    border-radius: 14px;
    padding: 12px 16px;
  }
  .whatsapp-btn { left: 12px; }
  .call-btn { right: 12px; }
  .nav { width: 44px; height: 44px; }
  .details-card, .amenities-card, .price-card, .contact-card { padding: 22px; }
}
