/* ===== NUANSA ASRI PROPERTI — Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* ── Blue Palette (replaces gold) ── */
  --gold:       #0071C2;   /* main blue  */
  --gold-light: #e8f1f5;   /* very light blue-tint (was gold-light) */
  --gold-dark:  #0060a5;   /* dark blue  */

  /* ── Extended Blue Tones ── */
  --blue:       #0071C2;
  --blue-light: #1e95eb;
  --blue-dark:  #0060a5;
  --blue-pale:  #e8f1f5;   /* backgrounds, badges */
  --blue-mid:   #c2ddf0;   /* borders, dividers */
  --blue-accent:#d6ecf8;   /* hover tints */

  /* ── Neutrals (unchanged) ── */
  --charcoal:   #0f2233;   /* deep navy-charcoal instead of pure black */
  --dark:       #081624;   /* very deep navy */
  --mid:        #3a5068;   /* blue-grey mid */
  --muted:      #6e8da3;   /* blue-grey muted */
  --smoke:      #f0f6fa;   /* blue-tinted smoke */
  --white:      #f8fbfd;   /* blue-white */
  --cream:      #e8f1f5;   /* blue-cream */

  /* ── Status ── */
  --green:      #1a6e3c;
  --green-light:#28a057;
  --red:        #c1121f;

  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,113,194,.10);
  --shadow-md:  0 8px 40px rgba(0,113,194,.14);
  --shadow-lg:  0 20px 60px rgba(0,113,194,.18);
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { font-size: .95rem; color: var(--mid); }
a  { text-decoration: none; color: inherit; }

/* ─── LAYOUT UTILITIES ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header p { max-width: 540px; margin: 1rem auto 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.2rem auto 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,113,194,.35);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn-sm { padding: .55rem 1.2rem; font-size: .8rem; }
.btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }

/* ─── NAVBAR ─── */
#navbar {
  background: rgba(8,22,36,.97);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(8,22,36,.97);
  backdrop-filter: blur(16px);
  padding: .85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
}
.nav-logo .logo-sub {
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  background: none; border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 12s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,22,36,.88) 0%,
    rgba(0,64,128,.70) 50%,
    rgba(30,149,235,.18) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
}
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 3rem; right: 0; left: 0; z-index: 2;
}
.hero-stats .container { display: flex; justify-content: flex-end; }
.stats-bar {
  display: flex; gap: 2rem;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.5rem 2.5rem;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat-item .label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .25rem;
}
.stat-divider { width: 1px; background: rgba(255,255,255,.15); }

/* ─── PROPERTY TYPE CARDS ─── */
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 1.5rem;
}
.type-card {
  background: var(--white);
  border: 1px solid rgba(0,113,194,.10);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.type-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.type-card:hover::before { opacity: 1; }
.type-card:hover .type-icon,
.type-card:hover h4,
.type-card:hover p { color: var(--white) !important; position: relative; z-index: 1; }
.type-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  transition: color var(--transition);
  position: relative; z-index: 1;
}
.type-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: .4rem;
  position: relative; z-index: 1;
  transition: color var(--transition);
}
.type-card p {
  font-size: .8rem;
  position: relative; z-index: 1;
  transition: color var(--transition);
}
.type-card .btn-sm {
  margin-top: 1rem;
  position: relative; z-index: 1;
}

/* ─── PROPERTY CARDS ─── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 2rem;
}
.prop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.prop-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.prop-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.prop-card:hover .prop-image img { transform: scale(1.06); }
.prop-badges {
  position: absolute; top: 1rem; left: 1rem;
  display: flex; gap: .5rem; flex-wrap: wrap;
}
.badge {
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-type { background: rgba(8,22,36,.78); color: var(--white); backdrop-filter: blur(6px); }
.badge-ready { background: var(--green); color: var(--white); }
.badge-sold  { background: var(--red); color: var(--white); }
.badge-zone  { background: rgba(0,113,194,.85); color: #fff; }

.prop-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.prop-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: .4rem;
  color: var(--charcoal);
}
.prop-body .location {
  font-size: .8rem;
  color: var(--muted);
  display: flex; align-items: center; gap: .3rem;
  margin-bottom: .75rem;
}
.prop-body .description {
  font-size: .85rem;
  color: var(--mid);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
  flex: 1;
}
.prop-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}
.prop-price span { font-size: .75rem; font-weight: 400; color: var(--muted); }
.prop-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.prop-actions .btn { flex: 1; justify-content: center; font-size: .8rem; padding: .6rem 1rem; }

/* ─── ACTIVITY CARDS ─── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
  gap: 2rem;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.activity-img { height: 200px; overflow: hidden; }
.activity-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.activity-card:hover .activity-img img { transform: scale(1.05); }
.activity-body { padding: 1.5rem; }
.activity-date {
  font-size: .75rem;
  color: var(--gold-dark);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.activity-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--charcoal);
}
.activity-body p { font-size: .85rem; color: var(--mid); margin-bottom: 1.2rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ─── ABOUT STRIP ─── */
.about-strip {
  background: var(--charcoal);
  padding: 5rem 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .eyebrow { color: var(--gold); }
.about-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-text p { color: rgba(255,255,255,.65); margin-bottom: 1rem; }
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  position: relative;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::before {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  transform: translate(16px,16px);
  z-index: -1;
}

/* ─── WHY US ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
}
.why-item {
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0,113,194,.08);
  transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.why-item h4 { font-family: var(--font-display); margin-bottom: .5rem; font-size: 1.1rem; }
.why-item p  { font-size: .85rem; }

/* ─── CTA BANNER ─── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, #081624 0%, #003366 60%, #0060a5 100%);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .12;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 1rem; }
.cta-content p  { color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FILTER BAR ─── */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 1.5rem 2rem;
  display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: flex-end;
  margin-bottom: 3rem;
}
.filter-group { display: flex; flex-direction: column; gap: .4rem; flex: 1; min-width: 160px; }
.filter-group label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.filter-group select,
.filter-group input {
  padding: .65rem 1rem;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--charcoal);
  background: var(--smoke);
  transition: border-color var(--transition);
  cursor: pointer;
}
.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--charcoal);
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,113,194,.18) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.6); margin-top: .75rem; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  list-style: none;
  font-size: .8rem;
  margin-bottom: 1rem;
  color: var(--muted);
}
.breadcrumb li a { color: var(--gold); transition: opacity var(--transition); }
.breadcrumb li a:hover { opacity: .7; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: .5rem; }

/* ─── GALLERY ─── */
.gallery-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 16/9;
}
.gallery-slider img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: none;
}
.gallery-slider img.active { display: block; }
.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  z-index: 2;
}
.gallery-btn:hover { background: var(--gold); border-color: var(--gold); }
.gallery-btn.prev { left: 1rem; }
.gallery-btn.next { right: 1rem; }
.gallery-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 2;
}
.gallery-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer; transition: var(--transition);
}
.gallery-dots span.active { background: var(--gold); transform: scale(1.3); }

/* ─── PROPERTY DETAIL ─── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.detail-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}
.detail-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.detail-price small {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
}
.detail-meta {
  list-style: none;
  margin-bottom: 1.5rem;
}
.detail-meta li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(0,113,194,.08);
  font-size: .875rem;
}
.detail-meta li:last-child { border-bottom: none; }
.detail-meta .key { color: var(--muted); }
.detail-meta .val { font-weight: 500; color: var(--charcoal); }
.detail-actions { display: flex; flex-direction: column; gap: .75rem; }
.detail-actions .btn { justify-content: center; }

.detail-section { margin-bottom: 2.5rem; }
.detail-section h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--cream);
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px,1fr));
  gap: 1rem;
}
.spec-item {
  background: var(--smoke);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.spec-item .spec-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dark);
}
.spec-item .spec-label {
  font-size: .75rem;
  color: var(--muted);
  margin-top: .25rem;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .5rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--charcoal);
  background: var(--smoke);
  transition: border-color var(--transition);
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info-item .icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
}
.contact-info-item h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: .25rem;
}
.contact-info-item p { font-size: .875rem; }

/* ─── ABOUT PAGE ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 2rem;
}
.team-card {
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); }
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--gold-light);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: .25rem; }
.team-card .role { font-size: .8rem; color: var(--gold-dark); letter-spacing: .06em; text-transform: uppercase; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  display: block;
  margin-bottom: .25rem;
}
.footer-brand .logo-sub {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { color: rgba(255,255,255,.5); font-size: .85rem; max-width: 300px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; gap: .75rem;
  margin-bottom: .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.footer-contact-item .icon { color: var(--gold); margin-top: 2px; }
.footer-social {
  display: flex; gap: .75rem; margin-top: 1.5rem;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  font-size: .9rem;
}
.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.75rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ─── FLOATING WA ─── */
.float-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  text-decoration: none;
}
.float-wa:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.55);
  background: #1da851;
}
.float-wa::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: waRing 2s ease-out infinite;
}
@keyframes waRing {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ─── MOBILE MENU — default hidden on all screen sizes ─── */
/* Always hidden by default; only revealed via JS .open class on mobile */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(8,22,36,.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* hamburger hidden by default on desktop */
.hamburger { display: none; }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

/* ─── MOBILE NAV ─── */
@media (max-width: 1024px) {
  .detail-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .mobile-menu { display: flex; }

  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    transition: color var(--transition);
  }
  .mobile-menu a:hover { color: var(--gold); }

  .hero-stats .container { justify-content: center; }
  .stats-bar { gap: 1.2rem; padding: 1.2rem 1.5rem; }
  .stat-item .num { font-size: 1.6rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .section { padding: 4rem 0; }
  .properties-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; }
}

/* ─── MAP ─── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ─── PAGINATION ─── */
.pagination {
  display: flex; gap: .5rem; justify-content: center; margin-top: 3rem;
}
.page-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid rgba(0,113,194,.18);
  font-size: .875rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--mid);
}
.page-btn:hover, .page-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ─── TOAST / FORM STATES ─── */
.form-success {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .9rem;
  display: none;
}
.form-success.visible { display: block; }

/* ─── EMPTY STATE ─── */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--muted);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state p { max-width: 320px; margin: .5rem auto 1.5rem; font-size: .9rem; }

/* ─── LOADING ─── */
.skeleton {
  background: linear-gradient(90deg, #f0ede6 25%, #e8e4dc 50%, #f0ede6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
