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

html {
  scroll-behavior: smooth;
}

/* ===============================
   DESIGN TOKENS
================================ */
:root {
  --bg-main: #070b16;
  --bg-elevated: rgba(255,255,255,0.04);
  --bg-card: rgba(255,255,255,0.06);

  --accent: #cfae70;
  --accent-soft: rgba(207,174,112,.18);

  --text-main: #eef2f7;
  --text-muted: #9aa4b2;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-lg: 0 30px 70px rgba(0,0,0,.55);
  --shadow-md: 0 18px 40px rgba(0,0,0,.4);
}

/* ===============================
   BASE
================================ */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at top, #10172f, transparent 60%),
    var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ===============================
   PAGE TRANSITION
================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: #05070f;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.page-transition.active {
  opacity: 1;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7,11,22,.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
}

.logo img {
  height: 40px;
}

.navbar nav {
  display: flex;
  gap: 32px;
}

.navbar nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: var(--text-main);
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===============================
   HERO
================================ */
.hero,
.about-hero,
.listings-hero {
  min-height: clamp(60vh, 70vh, 85vh);
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(80px, 12vw, 120px) 24px;
}

.hero h1,
.about-hero h1,
.listings-hero h1 {
  font-size: clamp(32px, 5vw, 64px);
  max-width: 900px;
  margin-bottom: 14px;
}

.hero p,
.about-hero p,
.listings-hero p {
  color: var(--text-muted);
  font-size: clamp(15px, 2.5vw, 18px);
}

/* ===============================
   FILTERS (CENTERED)
================================ */
.filters {
  max-width: 1240px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 16px;
  padding: 40px 24px 24px;
}

.filters input,
.filters select {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--text-main);
}

/* ===============================
   LISTINGS GRID (FIXED CENTER)
================================ */
.listings-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: clamp(24px, 4vw, 42px);
  padding: 60px 24px 100px;
}

.listing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  transition: transform .3s ease;
}

.listing-card:hover {
  transform: translateY(-6px);
}

.listing-card img {
  height: 220px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #080b14;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 999px;
  font-weight: 700;
}

.listing-info {
  padding: 24px;
}

.price {
  color: var(--accent);
  font-weight: 700;
  margin: 8px 0;
}

   PREMIUM REVIEW GRID (4 ACROSS)
================================ */
.testimonials-grid {
  padding: 110px 40px;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.05), transparent 60%),
    linear-gradient(to bottom, #0f172a, #020617);
}

.testimonials-grid h2 {
  text-align: center;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 70px;
}

/* GRID */
.reviews-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */
.review-card {
  background: linear-gradient(
    180deg,
    rgba(2,6,23,0.96),
    rgba(2,6,23,0.9)
  );
  padding: 34px 30px;
  border-radius: 22px;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.06);

  opacity: 0;
  transform: translateX(-30px);
  animation: cardIn 0.9s ease forwards;
}

/* STAGGER */
.review-card:nth-child(1) { animation-delay: 0.05s; }
.review-card:nth-child(2) { animation-delay: 0.15s; }
.review-card:nth-child(3) { animation-delay: 0.25s; }
.review-card:nth-child(4) { animation-delay: 0.35s; }

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* STARS */
.review-card .stars {
  color: #f5d76e;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

/* TEXT */
.review-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #e5e7eb;
  margin-bottom: 22px;
  font-style: italic;
}

/* NAME */
.review-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* ROLE */
.review-card span {
  font-size: 13px;
  color: #94a3b8;
}

/* HOVER (LUXURY FEEL) */
.review-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .review-card {
    min-width: 240px;
  }

  .reviews-track {
    animation-duration: 60s;
  }
}
.reviews-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #0a1020, #050814);
  color: #fff;
}

.reviews-section h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 60px;
}

/* VIEWPORT */
.reviews-marquee {
  overflow: hidden;
  width: 100%;
}

/* MOVING TRACK */
.reviews-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: scrollLeft 45s linear infinite;
}

/* Pause = premium UX */
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

/* CARD */
.review-card {
  min-width: 280px;
  max-width: 280px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.06),
    rgba(0,0,0,0.9)
  );
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* TEXT ORDER */
.review-card h4 {
  font-size: 18px;
  margin-bottom: 14px;
}

.review-card p {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 18px;
}

.review-card .stars {
  color: #f6c65b;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card span {
  color: #9fb0c8;
  font-size: 14px;
}

/* LEFT FLOW */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 568px) {
  .review-card {
    min-width: 70px;
  }
  .reviews-track {
    animation-duration: 75s;
  }
}
.page-transition {
  pointer-events: none;
}
   SAFETY
================================ */

.page-transition {
  pointer-events: none;
}

/* ===============================
   CONTACT
================================ */
.contact-section {
  padding: 100px 24px;
  text-align: center;
}

.contact-form {
  max-width: 520px;
  margin: auto;
  display: grid;
  gap: 16px;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 700px) {
  .navbar {
    padding: 16px 20px;
  }

  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #05070f;
    flex-direction: column;
    padding: 24px;
    display: none;
  }

  .navbar nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}
/* ===============================
   LISTINGS CTA — FIXED MOBILE
================================ */
.listings-cta {
  padding: 100px 24px;
  display: flex;
  justify-content: center;
}

.listings-cta .cta-box {
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: clamp(56px, 8vw, 80px) clamp(24px, 6vw, 64px);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.03)
    );
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Headline */
.listings-cta h2 {
  max-width: 18ch; /* keeps lines straight */
  margin: 0 auto 16px;
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.15;
  letter-spacing: -.02em;
}

/* Sub / Button spacing */
.listings-cta .btn-primary {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* stops button text breaking */
}

/* ===============================
   MOBILE POLISH
================================ */
@media (max-width: 600px) {
  .listings-cta h2 {
    max-width: 14ch;
    font-size: 30px;
  }
}
/* ===============================
   LISTINGS PAGE – MOBILE POSITION FIX ONLY
   (does NOT affect home/about)
================================ */
@media (max-width: 600px) {
  .listings-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .listings-cta {
    padding-top: 60px;
  }
}
/* ===============================
   ABOUT SECTION
================================ */
.about-section {
  background: linear-gradient(180deg, #070b16, #0b1225);
  padding: clamp(3rem, 6vw, 6rem) 1.25rem;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===============================
   CONTENT CARD
================================ */
.about-section .about-container > div {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* ===============================
   HEADINGS
================================ */
.about-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #3b82f6, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================
   TEXT
================================ */
.about-section p {
  font-size: 1.05rem;
  color: #cbd5f5;
  margin-bottom: 1.1rem;
  line-height: 1.75;
  max-width: 800px;
}

/* ===============================
   BADGES
================================ */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.badge {
  padding: 0.55rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  color: #eaf2ff;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.25),
    rgba(34, 211, 238, 0.25)
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

/* ===============================
   RESPONSIVE TWEAKS
================================ */
@media (max-width: 600px) {
  .about-section p {
    font-size: 1rem;
  }

  .badges {
    justify-content: center;
  }

  .about-section h2 {
    text-align: center;
  }
}
.about-section {
  margin-top: -10rem;
}
/* ===============================
   BUTTON
================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f5d76e, #d4af37);
  color: #000;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}
/* ===============================
   WHATSAPP BUTTON
================================ */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 999;
}
