/* ============================================================
   Season Hive — Luxury Dubai Rentals
   Design: Elegant dark/gold luxury hospitality aesthetic
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:        #0c0c0c;
  --dark-2:      #141414;
  --dark-3:      #1c1c1c;
  --dark-4:      #242424;
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;
  --gold-dark:   #a07840;
  --white:       #ffffff;
  --cream:       #faf7f4;
  --gray:        #888888;
  --gray-light:  #cccccc;
  --text-dark:   #1a1a1a;
  --text-mid:    #555555;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', -apple-system, sans-serif;

  --nav-h: 80px;
  --max-w: 1280px;
  --section-pad: 120px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

section, header, footer, div, nav {
  max-width: 100%;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.35s var(--ease-out);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn--outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}
.btn--outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  padding: 18px 40px;
  border-radius: 4px;
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
}

.btn--full { width: 100%; justify-content: center; }

/* ---------- SECTION LABELS & TITLES ---------- */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.section-label--light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-title--light { color: var(--white); }
.section-title--light em { color: var(--gold-light); }

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

/* Motion: see css/motion.css */

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(12, 12, 12, 0.97);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo {
  height: 60px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__cta { padding: 12px 28px; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 90vw);
  height: 100vh;
  background: var(--dark-2);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu__overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu__close {
  position: absolute;
  top: 28px; right: 32px;
  color: var(--gray);
  font-size: 24px;
  transition: color 0.2s;
}
.mobile-menu__close:hover { color: var(--white); }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 48px;
}
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  line-height: 1.5;
}
.mobile-menu__link:hover { color: var(--gold-light); }
.mobile-menu__cta { align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,12,0.75) 0%,
    rgba(12,12,12,0.5) 60%,
    rgba(12,12,12,0.3) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__subtitle {
  max-width: 560px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 48px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.8; }
  50% { transform: scaleY(0.7); opacity: 0.4; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
  max-width: 100%;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.marquee__dot { color: var(--gold) !important; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/5;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.about__img-wrap:hover img { transform: scale(1.04); }
.about__badge {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--dark);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 24px;
  text-align: center;
  min-width: 120px;
}
.about__badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.about__badge-text {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
  line-height: 1.5;
}
.about__copy { padding-left: 20px; }
.about__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.about__values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__values li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.about__values-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,169,110,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__values strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.about__values p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--dark);
  padding: 64px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.stats__item {
  text-align: center;
  padding: 20px 40px;
}
.stats__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stats__symbol {
  font-size: 32px;
}
.stats__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.stats__divider {
  width: 1px;
  height: 60px;
  background: rgba(201,169,110,0.2);
}

/* ============================================================
   PROPERTIES
   ============================================================ */
.properties {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-mid);
  margin-top: 16px;
}

.prop-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.prop-card {
  display: block;
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.prop-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.prop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.prop-card:hover .prop-card__img {
  transform: scale(1.06);
}

.prop-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 12, 12, 0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.prop-card:hover .prop-card__overlay {
  opacity: 1;
}

.prop-card__discover {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prop-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  z-index: 1;
}

.prop-card__body {
  padding: 28px;
}

.prop-card__location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.prop-card__name {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.prop-card__name em {
  font-style: italic;
  color: var(--gold-dark);
}

.prop-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.prop-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #ebebeb;
}

.prop-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.prop-card__meta i {
  color: var(--gold);
}

.prop-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.3s, gap 0.3s;
}

.prop-card:hover .prop-card__cta {
  color: var(--gold-dark);
  gap: 12px;
}

.property {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.property:last-child { margin-bottom: 0; }
.property--reverse { direction: rtl; }
.property--reverse > * { direction: ltr; }

.property__visual {}
.property__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  margin-bottom: 16px;
}
.property__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.property__img-wrap:hover .property__img { transform: scale(1.04); }
.property__tag {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 2px;
}
.property__thumbnails {
  display: flex;
  gap: 10px;
}
.property__thumb {
  flex: 1;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
}
.property__thumb.active,
.property__thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

.property__info { padding: 10px 0; }
.property__location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.property__name {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.property__name em {
  font-style: italic;
  color: var(--gold-dark);
}
.property__desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.property__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--cream);
  border-radius: 2px;
}
.property__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-mid);
}
.property__meta-item i {
  color: var(--gold);
  width: 16px;
  text-align: center;
}
.property__amenities-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.property__amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: var(--cream);
  border-radius: 2px;
  border: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  text-align: center;
}
.amenity:hover {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.05);
}
.amenity i {
  font-size: 18px;
  color: var(--gold);
}
.amenity span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-mid);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery__item--large {
  grid-column: span 2;
  aspect-ratio: auto;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
  font-size: 24px;
}
.gallery__item:hover .gallery__hover { opacity: 1; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  pointer-events: none;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.45);
}
.lightbox__close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
}
.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 18px;
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover,
.lightbox__next:hover {
  transform: translateY(-50%);
}

/* ============================================================
   EXPERIENCE BANNER
   ============================================================ */
.experience {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}
.experience__bg {
  position: absolute;
  inset: 0;
}
.experience__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,12,12,0.88) 0%, rgba(12,12,12,0.65) 100%);
}
.experience__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.experience__text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  margin-top: 16px;
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.location__text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.location__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.location__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}
.location__list i {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.location__map-wrap {}
.location__map-placeholder {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.location__map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location__map-pin {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  border: 1px solid var(--gold);
  color: var(--white);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 2px;
}
.location__map-pin i { color: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--dark-2);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact .section-label { color: var(--gold); }
.contact .section-title { color: var(--white); }
.contact .section-title em { color: var(--gold-light); }
.contact__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  margin-top: 8px;
}
.contact__details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__detail i {
  width: 40px;
  height: 40px;
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 16px;
  flex-shrink: 0;
}
.contact__detail strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.contact__detail span,
.contact__detail a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.25s;
}
.contact__detail a:hover {
  color: var(--gold-light);
}

/* ---------- FORM ---------- */
.contact__form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 4px;
  padding: 48px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-optional {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9em;
  letter-spacing: 0;
  text-transform: none;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; line-height: 1.6; }
.form-group input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(0.5); cursor: pointer; }
.form-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: -8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
}
.footer__inner {
  padding: 64px 0 0;
}
.footer__main {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) minmax(0, 2fr);
  gap: 56px 72px;
  padding-bottom: 48px;
}
.footer__brand {
  max-width: 300px;
}
.footer__logo {
  display: inline-flex;
  margin-bottom: 20px;
}
.site-logo--footer {
  height: 52px;
}
.footer__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}
.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.footer__label {
  margin: 0 0 18px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__list a {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s;
}
.footer__list a:hover {
  color: var(--gold-light);
}
.footer__list-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  transition: color 0.25s;
}
.footer__list a:hover .footer__list-title {
  color: var(--gold-light);
}
.footer__list-sub {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
}
.footer__list--contact a,
.footer__list--contact .footer__list-static {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.footer__list--contact i {
  width: 18px;
  flex-shrink: 0;
  text-align: center;
  font-size: 15px;
  color: var(--gold);
}
.footer__list--contact a[href*="wa.me"] i {
  color: #25d366;
}
.footer__list--contact a[href*="wa.me"]:hover {
  color: #3dde7a;
}
.footer__list--contact a[href^="mailto:"]:hover {
  color: var(--gold-light);
}
.footer__list-static {
  cursor: default;
}
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0 26px;
}
.footer__bar p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(37,211,102,0.5);
}
.whatsapp-float__tooltip {
  position: absolute;
  right: 72px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  .about__grid { gap: 60px; }
  .property { gap: 60px; }
  .contact__grid { gap: 60px; }
  .footer__main { grid-template-columns: 1fr; gap: 40px; }
  .footer__columns { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(40px, 9vw, 80px); }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .about__copy { padding-left: 0; }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .stats__divider:nth-child(2) { display: none; }
  .stats__divider:nth-child(4) { display: none; }
  .stats__divider:nth-child(6) {
    grid-column: span 2;
    width: 100%;
    height: 1px;
  }
  .stats__item { padding: 24px 16px; }

  .prop-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .property,
  .property--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .property__amenities-grid { grid-template-columns: repeat(4, 1fr); }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--large { grid-column: span 2; }

  .location__grid { grid-template-columns: 1fr; gap: 48px; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 36px 28px; }

  .footer__inner { padding-top: 52px; }
  .footer__main { gap: 36px; padding-bottom: 36px; }
  .footer__columns { grid-template-columns: 1fr 1fr; gap: 28px 32px; }
  .footer__brand { max-width: none; }
}

@media (max-width: 600px) {
  .lightbox__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .lightbox__prev,
  .lightbox__next {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }

  :root { --section-pad: 60px; }
  .container { padding: 0 18px; }
  .nav__inner { padding: 0 18px; }

  .hero__content { padding: 0 18px; padding-top: var(--nav-h); }
  .hero__title { font-size: clamp(36px, 11vw, 60px); }
  .hero__subtitle { font-size: 14px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; width: 100%; }

  .section-title { font-size: clamp(32px, 9vw, 48px); }
  .section-header { margin-bottom: 40px; }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__number { font-size: 40px; }

  .property__amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .property__meta { grid-template-columns: 1fr 1fr; }
  .property__name { font-size: clamp(32px, 9vw, 48px); }

  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .gallery__item--large { aspect-ratio: 16/9; }

  .contact__form-wrap { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  .footer__columns { grid-template-columns: 1fr; gap: 28px; }
  .footer__inner { padding-top: 44px; }
  .footer__main { padding-bottom: 28px; }

  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 24px; }

  .experience { padding: 100px 0; }
  .mobile-menu { padding: 60px 32px; }
  .mobile-menu__link { font-size: 28px; }
}
