/* ═════════════════════════════════════════════
   WunderHomes — Premium Vacation Villas
   Complete Design System
   ═════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* ── Color Palette (Light Theme) ── */
  --bg: #ffffff;
  --bg2: #f9f8f6;
  --bg3: #f0eee9;
  --white: #1a1a1a;
  --text: #4a4a4a;
  --text-muted: #7a7a7a;
  --gold: #b38b36;
  --gold-light: #cfa858;
  --gold-dark: #8c6a25;
  --gold-glow: rgba(179, 139, 54, 0.12);
  --brown: #6b5233;
  --brown-dark: #5c4a2f;
  --green: #25D366;
  --green-dark: #1da851;
  --border: rgba(0, 0, 0, 0.08);
  --glass: rgba(0, 0, 0, 0.03);

  /* ── Typography ── */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* ── Transitions ── */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul { list-style: none; }


/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  max-height: 42px;
  width: auto;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-phone {
  color: var(--text) !important;
  font-weight: 600 !important;
}

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1.4rem;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}


/* ═══════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════ */

.wa-float {
  position: fixed;
  bottom: 90px;
  right: 26px;
  z-index: 999;
  width: 62px;
  height: 62px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.wa-float:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

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

.wa-float { animation: waFloat 3s ease-in-out infinite; }
.wa-float:hover { animation: none; }


/* ═══════════════════════════════════════
   STICKY BOTTOM BAR (MOBILE)
   ═══════════════════════════════════════ */

.sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid var(--border);
  padding: 14px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.s-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.s-price span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.s-btn {
  background: var(--gold);
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.s-btn:hover {
  background: var(--gold-light);
}


/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  display: block;
  min-height: auto;
  height: auto;
  overflow: hidden;
}

.hero-bg {
  display: block;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 72px;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 90%;
  margin: -60px auto 0 auto;
  background: var(--bg);
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
  border: 1px solid var(--border);
}

.hero-badge {
  display: inline-block;
  background: var(--gold-glow);
  border: 1px solid var(--gold-glow);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero h1 .accent {
  color: var(--gold);
  display: block;
  font-size: 0.75em;
  margin-top: 8px;
  font-style: italic;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: flex-start;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.hero-loc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Hero Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.anim {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }


/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 15px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
  border: none;
  cursor: pointer;
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 15px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-glow);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--bg);
  padding: 15px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--gold-glow);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--gold-glow);
}


/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */

.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 24px;
}

.trust-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.trust-bar .item strong {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
}


/* ═══════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════ */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section .desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin-bottom: 40px;
}


/* ═══════════════════════════════════════
   WHY US GRID
   ═══════════════════════════════════════ */

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

.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.why-card .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.why-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--white);
}

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

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, var(--gold-glow), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

.why-card:hover::after {
  opacity: 1;
}


/* ═══════════════════════════════════════
   PROPERTY CARDS (Home Page)
   ═══════════════════════════════════════ */

.prop-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.prop-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.prop-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.prop-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: var(--transition);
}

.prop-card:hover img {
  transform: scale(1.04);
}

.prop-card .body {
  padding: 28px;
}

.prop-card h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.loc-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pc-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.pc-price span {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid transparent;
}

.btn-card:hover {
  border-bottom-color: var(--gold);
  padding-left: 4px;
}


/* ═══════════════════════════════════════
   GALLERY (Property Pages)
   ═══════════════════════════════════════ */

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

.gi {
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  position: relative;
}

.gi:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gi:hover img {
  transform: scale(1.06);
}


/* ═══════════════════════════════════════
   HIGHLIGHTS (Property Pages)
   ═══════════════════════════════════════ */

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

.h-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.h-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.h-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.h-card:hover img {
  transform: scale(1.05);
}

.h-card .info {
  padding: 24px;
}

.h-card h4 {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.h-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ═══════════════════════════════════════
   AMENITIES
   ═══════════════════════════════════════ */

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
  transition: var(--transition);
}

.amenity-item:hover {
  border-color: var(--gold-dark);
  background: var(--bg3);
}

.amenity-item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   PRICING CARD
   ═══════════════════════════════════════ */

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--gold-dark);
  padding: 44px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.pricing-card h3 {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 28px;
  text-align: center;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}

.price-row:last-of-type {
  border: none;
}

.price-row .label {
  color: var(--text-muted);
}

.price-row .val {
  font-weight: 600;
  color: var(--white);
}

.included {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.included h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.included li {
  padding: 5px 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.included li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════ */

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.dist-list {
  display: grid;
  gap: 10px;
}

.dist-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--bg2);
  border: 1px solid var(--border);
  font-size: 0.92rem;
}

.dist-item .place {
  color: var(--text);
}

.dist-item .dist {
  color: var(--gold);
  font-weight: 600;
}

.map-box {
  border: 1px solid var(--gold-dark);
  overflow: hidden;
  min-height: 400px;
  background: var(--bg3);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}


/* ═══════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════ */

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.review-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
}

.review-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-card .text {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.75;
}

.review-card .author {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-card .from {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 4px;
}


/* ═══════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════ */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-q {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  font-family: var(--font-heading);
}

.faq-q:hover {
  color: var(--gold);
}

.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
  font-family: var(--font-body);
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding-top: 16px;
}


/* ═══════════════════════════════════════
   CROSS-SELL / SISTER PROPERTY
   ═══════════════════════════════════════ */

.cross-sell {
  background: var(--bg2);
  border: 1px solid var(--gold-dark);
  padding: 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.cross-sell img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}


/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */

.final-cta {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(to bottom, var(--bg), var(--bg2));
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
  position: relative;
}

.final-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 50px 24px;
  text-align: center;
}

footer p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
}

footer a {
  color: var(--gold);
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 20px 0;
}

.footer-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold);
  text-decoration: none;
}


/* ═══════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    z-index: 1001;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 8px 0;
    color: var(--text);
  }

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

  .nav-links a::after { display: none; }

  .mobile-menu-btn {
    display: block;
  }

  /* Hero */
  .hero-bg {
    height: 50vh;
    min-height: 300px;
  }

  .hero-content {
    width: 95%;
    padding: 28px 20px;
    margin-top: -40px;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-features {
    gap: 6px 14px;
    font-size: 0.85rem;
  }

  /* Grids */
  .why-grid,
  .highlights,
  .prop-cards,
  .loc-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px 180px;
  }

  .gi:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  /* Section spacing */
  .section {
    padding: 70px 20px;
  }

  /* Trust bar */
  .trust-bar .inner {
    justify-content: center;
    gap: 12px;
  }

  .trust-bar .item {
    font-size: 0.8rem;
  }

  /* Cross-sell */
  .cross-sell img {
    width: 100%;
    height: 200px;
  }

  .booking-section {
    padding: 50px 16px;
  }

  /* Urgency banner */
  .urgency-banner {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  /* Sticky bar */
  .sticky-bottom {
    display: flex;
  }

  .wa-float {
    bottom: 90px;
    right: 18px;
    width: 56px;
    height: 56px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  body {
    padding-bottom: 75px;
  }

  /* Pricing card */
  .pricing-card {
    padding: 30px 22px;
  }

  /* Map */
  .map-box {
    min-height: 300px;
  }

  .map-box iframe {
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-ctas,
  .ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn-green,
  .btn-outline,
  .btn-gold {
    width: 100%;
    justify-content: center;
  }

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

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .gi:first-child {
    grid-column: 1;
    grid-row: 1;
  }

  .prop-card img {
    height: 220px;
  }

  .section {
    padding: 60px 16px;
  }

  .final-cta {
    padding: 70px 16px;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

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


/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ═══════════════════════════════════════ */

.why-card,
.amenity-item,
.review-card,
.h-card,
.prop-card,
.dist-item {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.why-card.visible,
.amenity-item.visible,
.review-card.visible,
.h-card.visible,
.prop-card.visible,
.dist-item.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════\n   LIGHTBOX — Handled by GLightbox CDN\n   ═══════════════════════════════════════ */


/* ═══════════════════════════════════════
   GALLERY "VIEW ALL" OVERLAY
   ═══════════════════════════════════════ */

.gi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Let clicks pass through to the <a> tag */
  transition: var(--transition);
  z-index: 2;
}

.gi:hover .gi-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.gi-overlay span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.gi-overlay:hover span {
  background: rgba(255,255,255,0.25);
  transform: scale(1.05);
}


/* ═══════════════════════════════════════
   URGENCY BANNER
   ═══════════════════════════════════════ */

.urgency-banner {
  background: linear-gradient(90deg, #dc2626, #ef4444);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
}


/* ═══════════════════════════════════════
   VIDEO / VIRTUAL TOUR SECTION
   ═══════════════════════════════════════ */

.video-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 90px;
}

.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  background: var(--bg2);
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ═══════════════════════════════════════
   LEAD FORM SECTION (Replaces Booking Widget)
   ═══════════════════════════════════════ */

.booking-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}

.booking-section .inner {
  max-width: 700px;
  margin: 0 auto;
}

.lead-form {
  margin-top: 30px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: left;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row > * {
  flex: 1;
}

.lead-form input,
.lead-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 1rem;
  background: #fafafa;
  transition: var(--transition);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
  .lead-form {
    padding: 24px;
  }
}

.booking-embed iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}
