/* ============================================================
   AURUM ESTATE – LUXURY REAL ESTATE CSS
   Dark Gold Theme | Cinzel + Poppins
   ============================================================ */

/* --- CSS VARIABLES --- */
:root {
  --bg: #0f0f0e;
  --bg-card: #111111;
  --bg-card2: #161616;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --gold-dark: #A8882A;
  --white: #FFFFFF;
  --subtext: #A0A0A0;
  --border: rgba(212, 175, 55, 0.2);
  --border-h: rgba(212, 175, 55, 0.7);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  --glow: 0 0 30px rgba(212, 175, 55, 0.25);
  --radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

/* --- CONTAINER --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- TYPOGRAPHY --- */
.section-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--subtext);
  max-width: 560px;
  margin: 0 auto;
}

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

.gold-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- PARTICLES --- */
#particles-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

#particles-bg::before,
#particles-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  animation: floatBall 12s ease-in-out infinite;
}

#particles-bg::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

#particles-bg::after {
  width: 400px;
  height: 400px;
  bottom: 10%;
  left: -100px;
  animation-delay: -6s;
}

@keyframes floatBall {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(40px) rotate(180deg);
  }
}

/* --- NAVBAR --- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 11, 11, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}


.logo-img{
    width:60px;
    height:60px;
    object-fit:contain;
    border-radius:50%;
    background:#fff;
    padding:4px;
    box-shadow:0 0 15px rgba(212,175,55,0.4);
}
.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 900;
    color: #D4AF37; /* gold only, no separate spans */
    letter-spacing: 1px;
}

/* Remove any .logo-aurum, .logo-estate spans if not used */
.nav-links {
  display: flex;
  flex-direction: row;      /* horizontal layout */
  flex-wrap: nowrap;        /* prevent wrapping to next line */
  align-items: center;
  gap: 32px;                /* space between links */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Individual link items */
.nav-links li {
  display: inline-block;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--subtext);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: #0B0B0B !important;
  padding: 10px 22px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- BUTTONS --- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  color: #0B0B0B;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 4px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 15px 36px;
  border-radius: 4px;
  transition: all var(--transition);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transform: translateY(-3px);
}

.btn-gold-sm {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0B0B0B;
  font-weight: 700;
  font-size: 12px;
  padding: 10px 22px;
  border-radius: 3px;
  transition: all var(--transition);
  overflow: hidden;
  position: relative;
  letter-spacing: 0.5px;
}

.btn-gold-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-gold-sm:hover {
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-gold-sm:hover::before {
  left: 100%;
}

.full-width {
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  animation: kenBurns 10s ease-in-out infinite alternate;
}

.slide.active {
  opacity: 1;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(11, 11, 11, 0.88) 0%,
      rgba(11, 11, 11, 0.65) 50%,
      rgba(20, 15, 5, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-tagline {
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(36px, 6vw, 74px);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 11px;
  color: var(--subtext);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollAnim 1.8s ease infinite;
}

@keyframes scrollAnim {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 26px;
    opacity: 0;
  }
}

/* --- TRUST SECTION --- */
.trust-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0B0B0B 0%, #0f0e0a 100%);
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.trust-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: var(--glow);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--gold);
  transition: all var(--transition);
}

.trust-card:hover .trust-icon {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.trust-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 13px;
  color: var(--subtext);
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.marble-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600&q=20') center/cover;
  opacity: 0.03;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--radius);
  width: 100%;
  border: 1px solid var(--border);
  transition: transform var(--transition);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0B0B0B;
  padding: 24px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.badge-num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 32px;
  font-weight: 900;
}

.badge-txt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-para {
  color: var(--subtext);
  margin-bottom: 36px;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  transition: all var(--transition);
}

.feat-item:hover {
  border-color: var(--gold);
  box-shadow: var(--glow);
}

.feat-item i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.feat-item strong {
  font-size: 13px;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.feat-item p {
  font-size: 12px;
  color: var(--subtext);
}

/* --- PLOTS SECTION --- */
.plots-section {
  padding: 100px 0;
  background: #0D0D0D;
}

.plots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.plot-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.plot-card:hover {
  border-color: var(--border-h);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow);
}

.plot-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0B0B0B;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
}

.plot-img-wrap {
  overflow: hidden;
  height: 220px;
}

.plot-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.plot-card:hover .plot-img-wrap img {
  transform: scale(1.1);
}

.plot-info {
  padding: 24px;
}

.plot-location {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.plot-location i {
  margin-right: 4px;
}

.plot-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}

.plot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.plot-size {
  font-size: 13px;
  color: var(--subtext);
}

.plot-size i {
  color: var(--gold);
  margin-right: 4px;
}

.plot-price {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}

.plot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.plot-tags span {
  font-size: 10px;
  letter-spacing: 0.5px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--subtext);
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: uppercase;
}
.plot-availability {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 12px 0 8px;
        padding: 8px 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .avail-count {
        font-size: 13px;
        font-weight: 600;
        color: #D4AF37;
    }
    .btn-view-list {
        background: #22c55e;
        color: #000;
        border: none;
        padding: 5px 12px;
        border-radius: 30px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        text-decoration: none;
    }
    .btn-view-list:hover {
        background: #16a34a;
        transform: translateY(-2px);
        color: #000;
    }

/* --- LOCATION SECTION --- */
.location-section {
  padding: 100px 0;
}

.location-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.location-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 48px;
  align-items: center;
  gap: 32px;
}

.timeline-item.right {
  flex-direction: row-reverse;
}

.timeline-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  z-index: 1;
  transition: all var(--transition);
}

.timeline-item:hover .timeline-icon {
  background: rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.timeline-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: all var(--transition);
  position: relative;
}

.timeline-card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow);
}

.timeline-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}

.timeline-card p {
  font-size: 13px;
  color: var(--subtext);
}

.timeline-dist {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* --- AMENITIES --- */
.amenities-section {
  padding: 100px 0;
  background: #0D0D0D;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.amenity-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.amenity-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.amenity-card:hover {
  border-color: var(--border-h);
  transform: translateY(-8px);
  box-shadow: var(--glow);
}

.amenity-card:hover::after {
  transform: scaleX(1);
}

.amenity-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.amenity-card:hover .amenity-icon {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

.amenity-card h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}

.amenity-card p {
  font-size: 12px;
  color: var(--subtext);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  padding: 100px 0;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
}

.test-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 24px;
  letter-spacing: 4px;
}

.test-quote {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.test-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.test-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.test-author strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.test-author span {
  font-size: 12px;
  color: var(--gold);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  box-shadow: var(--glow);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.placeholder-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #2a2a34;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 24px;
}
.review-submit-section .form-group input:focus,
.review-submit-section .form-group select:focus,
.review-submit-section .form-group textarea:focus {
    border-color: #D4AF37;
    outline: none;
}
.review-submit-section label {
    font-weight: 500;
    font-size: 0.9rem;
}
/* --- GALLERY --- */
.gallery-section {
  padding: 100px 0;
  background: #0D0D0D;
}

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-overlay span {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 2px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item {
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.gallery-item:hover {
  border-color: var(--border-h);
}

/* --- CONTACT SECTION --- */
.contact-section {
  padding: 100px 0;
}

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

.contact-sub {
  color: var(--subtext);
  margin-bottom: 36px;
  font-size: 15px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item strong {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 14px;
  color: var(--subtext);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--subtext);
  font-size: 15px;
  transition: all var(--transition);
}

.social-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.social-btn.whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25D366;
  color: #25D366;
}

/* --- FORM --- */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
  pointer-events: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--subtext);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 14px;
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  background: rgba(212, 175, 55, 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
}

.form-msg {
  text-align: center;
  font-size: 14px;
  padding: 12px;
  border-radius: 6px;
  display: none;
}

.form-msg.success {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.3);
  display: block;
}

.form-msg.error {
  background: rgba(255, 80, 80, 0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255, 80, 80, 0.3);
  display: block;
}

/* --- MAP --- */
.map-container{
    width:100%;
    height:500px;
    overflow:hidden;
    margin:0;
    padding:0;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.map-container iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
    filter: grayscale(100%) invert(92%) contrast(83%);
}
/* --- FOOTER --- */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--subtext);
  margin: 16px 0 24px;
  line-height: 1.8;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--subtext);
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--subtext);
  gap: 8px;
  max-width: 1280px;
  margin: 0 auto;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse 2.5s ease infinite;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.15);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
  }
}

/* --- BACK TO TOP --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: var(--glow);
}

/* --- SCROLL REVEAL ANIMATIONS --- */
.reveal-fade,
.reveal-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-fade {
  transform: translateY(0);
}

.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

.delay-7 {
  transition-delay: 0.7s !important;
}

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    max-width: 600px;
    margin: 0 auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .location-timeline::before {
    display: none;
  }

  .timeline-item,
  .timeline-item.right {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .gallery-item.large {
    grid-column: span 2;
  }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: 75%;
    max-width: 320px;
    background: rgba(11, 11, 11, 0.99);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px 32px;
    border-left: 1px solid var(--border);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99;
  }

  .nav-links.open {
    right: 0;
  }

.logo-img {
        height: 40px;
        max-width: 140px;
    }

  .nav-links a {
    font-size: 15px;
  }

  .hamburger {
    display: flex;
  }

  .hero-heading {
    font-size: clamp(30px, 8vw, 52px);
  }

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

  .hero-stats {
    padding: 16px 20px;
    gap: 20px;
  }

  .stat-div {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-badge {
    bottom: -12px;
    right: 12px;
  }

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

  .gallery-item.large {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .section-heading {
    font-size: clamp(24px, 6vw, 36px);
  }

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

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

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

  .testimonial-card {
    padding: 28px 20px;
  }

  .test-quote {
    font-size: 15px;
  }

  .hero-content {
    padding: 100px 20px 60px;
  }

  .stat-num {
    font-size: 20px;
  }
}

/* FORCE HORIZONTAL NAVIGATION ON DESKTOP */
@media screen and (min-width: 769px) {
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-end !important;
    gap: 32px !important;
    background: none !important;
    backdrop-filter: none !important;
    position: static !important;
    width: auto !important;
    padding: 0 !important;
    border: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-links li {
    display: inline-block !important;
  }
  .hamburger {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-div {
    display: none;
  }
}
