/* =====================================================
   मुळे रेसिडेन्सी – Main Stylesheet
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #c8a951;
  --gold-light: #e8c96a;
  --gold-dark: #a07830;
  --dark: #1a1a2e;
  --dark2: #16213e;
  --dark3: #0f3460;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --text-dark: #2d2d2d;
  --text-mid: #555;
  --text-light: #888;
  --green-wa: #25d366;
  --green-wa-dark: #128c7e;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.2);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,81,0.2);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(26,26,46,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
}
.logo-icon { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.lang-toggle {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 99px;
  padding: 0.35rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
  font-family: inherit;
}
.lang-toggle:hover { background: var(--gold-light); transform: scale(1.05); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(26,26,46,0.98);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 2px solid var(--gold);
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.05rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  background: var(--dark); /* fallback while images load */
}

/* Slider background */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}

/* Dark gradient overlay on top of slider */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10,10,30,0.78) 0%, rgba(15,52,96,0.65) 50%, rgba(26,26,46,0.80) 100%);
  pointer-events: none;
}
/* Dot pattern on overlay */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a951' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Animated background particles */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,169,81,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,169,81,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-bg-overlay { display: none; } /* legacy - no longer needed */

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}
.hero-badge {
  display: inline-block;
  background: rgba(200,169,81,0.15);
  border: 1px solid rgba(200,169,81,0.4);
  color: var(--gold-light);
  padding: 0.4rem 1.2rem;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero-title {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.1;
}
.hero-title-small {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero-title-big {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.badge-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  padding: 0.85rem 2.2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,169,81,0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(200,169,81,0.55);
}
.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-wa) 0%, var(--green-wa-dark) 100%);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
.wa-icon { width: 22px; height: 22px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  letter-spacing: 1px;
  z-index: 3;
}
.scroll-arrow {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(200,169,81,0.6);
  border-bottom: 2px solid rgba(200,169,81,0.6);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* =====================================================
   SCROLL REVEAL ANIMATION
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   GALLERY
   ===================================================== */
.gallery-section { background: var(--white) !important; }

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item--wide {
  grid-column: span 3;
  aspect-ratio: 21/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,30,0.85) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 1.5rem 1rem 0.7rem;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 16/9; }
}

/* =====================================================
   STATS STRIP
   ===================================================== */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 2.5rem 2rem;
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  display: inline;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* =====================================================
   SECTION COMMONS
   ===================================================== */
.section {
  padding: 5rem 2rem;
}
.section:nth-child(even) { background: var(--white); }
.section:nth-child(odd) { background: var(--off-white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1.1rem;
  border-radius: 99px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =====================================================
   PROPERTY CARDS
   ===================================================== */
.cards-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.featured-card {
  border: 2px solid var(--gold);
  transform: scale(1.02);
}
.featured-card:hover { transform: scale(1.02) translateY(-8px); }
.featured-ribbon {
  position: absolute;
  top: 1rem; right: -0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 1.2rem;
  border-radius: 4px 0 0 4px;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.2);
}
.card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.property-card:hover .card-image img {
  transform: scale(1.06);
}

.card-img-overlay {
  position: absolute;
  bottom: 1rem; left: 1rem;
  z-index: 1;
}
.property-type {
  background: var(--gold);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.3rem 1rem;
  border-radius: 99px;
}
.card-body {
  padding: 1.5rem;
}
.card-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.card-body > p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}
.card-features li {
  font-size: 0.85rem;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.4;
}
.btn-card {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  color: var(--white);
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), transform 0.2s;
}
.btn-card:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  transform: scale(1.02);
}

/* =====================================================
   AMENITIES
   ===================================================== */
.amenities { background: var(--dark) !important; }
.amenities .section-header h2 { color: var(--white); }
.amenities .section-header p { color: rgba(255,255,255,0.6); }

.amenities-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,81,0.15);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}
.amenity-card:hover {
  background: rgba(200,169,81,0.08);
  border-color: rgba(200,169,81,0.4);
  transform: translateY(-5px);
}
.amenity-icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}
.amenity-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.amenity-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* =====================================================
   FLOOR PLAN
   ===================================================== */
.floorplan-section { background: var(--off-white) !important; }

.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: 0.6rem 2rem;
  border-radius: 99px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-family: inherit;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.floorplan-content { max-width: 900px; margin: 0 auto; }
.floorplan-content.hidden { display: none; }

.floor-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}
.floor-room {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 1.3rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floor-room:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.accent-room {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #fffaf0 0%, #fff8e7 100%);
}
.room-icon { font-size: 1.8rem; }
.room-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}
.room-size {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}
.floorplan-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}

/* =====================================================
   FLOOR PLAN – IMAGE VIEWER
   ===================================================== */
.floorplan-images-wrap {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.floorplan-img-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}
.floorplan-img-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.floorplan-img-label {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  padding: 0.7rem 1rem;
  letter-spacing: 0.5px;
}
.floorplan-img-card a {
  display: block;
  overflow: hidden;
}
.floorplan-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  cursor: zoom-in;
}
.floorplan-img-card a:hover .floorplan-img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .floorplan-images-wrap {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   LOCATION – GOOGLE MAPS EMBED
   ===================================================== */
.maps-embed-wrap {
  max-width: 900px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.maps-embed-wrap iframe {
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}
.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--gold);
  padding: 0.7rem 2rem;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(200,169,81,0.2);
  transition: background var(--transition), color var(--transition), transform 0.2s;
}
.btn-maps:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,169,81,0.35);
}

/* =====================================================
   LOCATION
   ===================================================== */
.location-content {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Quick Connectivity */
.connectivity-wrap {
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.connectivity-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark3);
  margin-bottom: 1.2rem;
  text-align: center;
}
.connectivity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.conn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  min-width: 130px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.conn-item:hover { transform: translateY(-4px); }
.conn-icon { font-size: 1.8rem; }
.conn-label { font-size: 0.85rem; font-weight: 600; color: var(--dark); text-align: center; }
.conn-dist { font-size: 1rem; font-weight: 800; color: var(--gold); }

/* Location Benefits */
.loc-benefits-wrap {
  max-width: 900px;
  margin: 2rem auto 0;
}
.loc-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.loc-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--dark3);
  color: var(--white);
  border-radius: 2rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.loc-benefit-item span:first-child { font-size: 1.1rem; }
.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  transition: transform var(--transition);
}
.location-card:hover { transform: translateY(-4px); }
.location-icon { font-size: 1.8rem; flex-shrink: 0; }
.location-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.location-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--white) !important; }

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem; left: 1.2rem;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.18;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.stars { font-size: 1rem; margin-bottom: 0.8rem; }
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 700;
}
.reviewer span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* =====================================================
   BROCHURE
   ===================================================== */
.brochure-section { background: var(--off-white) !important; }

.brochure-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.brochure-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.brochure-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  border-color: var(--gold);
}
.brochure-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.brochure-card-footer {
  background: var(--dark3);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.brochure-wa-cta {
  text-align: center;
  margin-top: 2rem;
}
.brochure-wa-cta p {
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 0.95rem;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact-section { background: var(--dark) !important; }
.contact-section .section-header h2 { color: var(--white); }
.contact-section .section-header p { color: rgba(255,255,255,0.6); }

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h3,
.contact-form-wrap h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,81,0.12);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  transition: background var(--transition), border-color var(--transition);
}
.contact-item:hover {
  background: rgba(200,169,81,0.07);
  border-color: rgba(200,169,81,0.3);
}
.contact-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.contact-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.eng-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
.contact-phone {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s;
}
.contact-phone:hover { color: var(--gold-light); }
.wa-btn-small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--green-wa);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.wa-btn-small:hover { background: var(--green-wa-dark); transform: scale(1.1); }
.wa-btn-small img { width: 20px; height: 20px; }

.location-address {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: rgba(200,169,81,0.08);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: 10px;
  padding: 1rem;
}
.location-address span { font-size: 1.2rem; flex-shrink: 0; }
.location-address p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,81,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--white);
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.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 d='M1 1l5 5 5-5' stroke='%23c8a951' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  background-color: rgba(255,255,255,0.07);
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(200,169,81,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group textarea { resize: vertical; min-height: 80px; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--green-wa) 0%, var(--green-wa-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-submit:hover { opacity: 0.92; transform: scale(1.02); }
.wa-icon-btn { width: 22px; height: 22px; }

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: floatPulse 2.5s infinite;
}
.floating-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.65);
}
.floating-wa img { width: 34px; height: 34px; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0); }
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #0a0a1a;
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(200,169,81,0.15);
}
.footer-content {
  max-width: 800px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.footer-logo .logo-icon { font-size: 1.5rem; }
.footer-content > p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .featured-card { transform: scale(1); }
  .featured-card:hover { transform: translateY(-8px); }

  .stats-container { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .location-content { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .brochure-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .floor-layout { grid-template-columns: repeat(2, 1fr); }

  .hero-title-big { font-size: clamp(2rem, 10vw, 3rem); }
}

@media (max-width: 480px) {
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-primary, .btn-whatsapp { width: 100%; max-width: 300px; justify-content: center; }
  .section { padding: 3.5rem 1.2rem; }
  .floor-layout { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .contact-form-wrap { padding: 1.5rem 1rem; }
}
