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

body {
  font-family: 'Inter', sans-serif;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  padding: 20px 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 26px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* ============================
   MOBILE NAV (Hamburger + Drawer)
============================ */

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  line-height: 0;
}

.nav-toggle-bar {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-backdrop {
  display: none;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    width: 280px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(8px);
    padding: 90px 20px 20px;
    transition: right 0.25s ease;
    z-index: 1200;
  }

  .nav-links {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links a {
    display: block;
    padding: 14px 12px;
    border-radius: 8px;
    font-weight: 500;
  }

  .nav-links a:hover {
    background: rgba(197, 164, 126, 0.18);
    opacity: 1;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    z-index: 1100;
  }

  body.nav-open .nav { right: 0; }
  body.nav-open .nav-backdrop { display: block; }

  body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero { background-attachment: scroll; }
  .hero h1, .hero h2 { font-size: 34px; padding: 0 10px; }
}

/* HERO */
.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.hero-overlay {
  background: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease-out;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 700px;
}

.hero h1, .hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p { margin-bottom: 30px; font-weight: 300; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  background: white;
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover { background: #ddd; }

/* Hero CTA visibility */
.hero-btn-desktop  { display: inline-block; }
.hero-btns-mobile  { display: none; }

/* Mobile hero CTA buttons */
.hero-btns-mobile {
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-btn-primary {
  display: block;
  width: 100%;
  padding: 15px 20px;
  background: #C5A47E;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}
.hero-btn-primary:hover { background: #b59670; transform: translateY(-2px); }

.hero-btn-secondary {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
}
.hero-btn-secondary:hover { border-color: #C5A47E; color: #C5A47E; transform: translateY(-2px); }

@media (max-width: 768px) {
  .hero-btn-desktop { display: none; }
  .hero-btns-mobile { display: flex; }
}

/* SECTIONS */
section {
  padding: 100px 0;
  scroll-margin-top: 90px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
}

/* PROJECTS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background: #f8f8f8;
  padding-bottom: 20px;
  transition: 0.3s;
}

.project-card:hover { transform: translateY(-10px); }

.project-img {
  height: 200px;
  background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c') center/cover no-repeat;
}

.project-card h3 { margin: 20px; font-family: 'Playfair Display', serif; }
.project-card p  { margin: 0 20px; font-size: 14px; color: #555; }

/* ABOUT */
.about p {
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #555;
}

/* CONTACT (base) */
.contact {
  background: #111;
  color: white;
  text-align: center;
}

.contact p { margin-top: 10px; }

/* ============================
   Investor Credibility Section
============================ */

.credibility {
  padding: 80px 20px;
  background: #111;
  text-align: center;
  color: #fff;
}

.credibility h2 { font-size: 2.5rem; margin-bottom: 50px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.stat h3 { font-size: 3rem; color: #c5a47e; margin-bottom: 10px; }
.stat p  { font-size: 1rem; color: #ccc; }

/* ============================
   Partners Section (legacy)
============================ */

.partners {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.partner-logos {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.partner-logos img {
  height: 40px;
  opacity: 0.7;
  transition: 0.3s ease;
  filter: grayscale(100%);
}

.partner-logos img:hover { opacity: 1; filter: grayscale(0%); }

/* ============================
   RERA Section (legacy)
============================ */

.rera {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}

.rera-box {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #c5a47e;
  max-width: 800px;
  margin: auto;
}

.rera-box h3 { color: #c5a47e; margin-bottom: 20px; }
.rera-number { display: block; margin-top: 15px; color: #999; font-size: 0.9rem; }

/* ============================
   Testimonials
============================ */

.testimonials {
  padding: 100px 20px;
  background: #0d0d0d;
  text-align: center;
  color: #fff;
}

.testimonial-slider {
  max-width: 700px;
  margin: 40px auto 0;
  position: relative;
}

.testimonial { display: none; transition: opacity 0.5s ease; }
.testimonial.active { display: block; }
.testimonial p  { font-size: 1.2rem; font-style: italic; margin-bottom: 20px; }
.testimonial h4 { color: #c5a47e; }

/* ============================
   Property Listings (legacy)
============================ */

.properties {
  padding: 100px 20px;
  background: #111;
  color: #fff;
  text-align: center;
}

.filters {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filters select {
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
}

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

.property-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}

.property-card:hover { transform: translateY(-8px); }
.property-card img { width: 100%; height: 200px; object-fit: cover; }
.property-card h3 { margin: 15px 0 5px; }
.property-card p  { font-size: 0.9rem; color: #aaa; }

.price-btn {
  margin: 15px 0 20px;
  padding: 10px 20px;
  background: #c5a47e;
  border: none;
  color: #000;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

/* Popup */
/* ============================
   PROPERTY ENQUIRY MODAL
============================ */

.enq-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.enq-modal.enq-modal--open { display: flex; }
body.enq-modal-active { overflow: hidden; }

.enq-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(3px);
}

.enq-box {
  position: relative;
  background: #1a1a1a;
  border-radius: 14px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 1px solid #2a2a2a;
  animation: enqSlideIn 0.3s ease;
}

@keyframes enqSlideIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.enq-close {
  position: absolute;
  top: 16px; right: 16px;
  background: #2a2a2a;
  border: none;
  color: #aaa;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.enq-close:hover { background: #C5A47E; color: #000; }

.enq-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding-right: 30px;
}

.enq-header-icon { font-size: 2rem; flex-shrink: 0; }

.enq-title {
  color: #C5A47E;
  font-size: 1.15rem;
  margin: 0 0 4px;
  font-family: 'Playfair Display', serif;
}

.enq-property-name {
  color: #888;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.enq-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.enq-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.enq-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.enq-field label {
  color: #ccc;
  font-size: 0.82rem;
  font-weight: 500;
}

.enq-field input,
.enq-field select,
.enq-field textarea {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus {
  outline: none;
  border-color: #C5A47E;
  background: #1a1a1a;
}

.enq-field textarea { resize: vertical; min-height: 80px; }

.enq-field select option { background: #1a1a1a; }

.enq-error {
  color: #ff6b6b;
  font-size: 0.75rem;
  min-height: 14px;
}

.enq-submit-btn {
  background: #C5A47E;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
.enq-submit-btn:hover { background: #b59670; transform: translateY(-1px); }
.enq-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.enq-note {
  text-align: center;
  color: #666;
  font-size: 0.78rem;
  margin: 0;
}

/* Success state */
.enq-success {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0;
  gap: 12px;
}
.enq-success-icon { font-size: 3rem; }
.enq-success h3 { color: #C5A47E; font-size: 1.3rem; margin: 0; }
.enq-success p  { color: #aaa; line-height: 1.6; margin: 0; }

@media (max-width: 480px) {
  .enq-box { padding: 24px 18px; }
  .enq-row { grid-template-columns: 1fr; }
}

/* ============================
   SERVICES SECTION
============================ */

.services {
  padding: 100px 20px;
  background: #f9f9f9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: white;
  padding: 28px 20px 18px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  cursor: pointer;
  border-bottom: 2px solid #C5A47E;
  position: relative;
  overflow: hidden;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-icon  { font-size: 2.4rem; margin-bottom: 14px; }
.service-card h3 { margin-bottom: 0; color: #222; font-size: 1rem; }

/* Description — visible on desktop, hidden on mobile by default */
.service-desc { overflow: hidden; transition: max-height 0.4s ease, opacity 0.4s ease; }
.service-desc p { color: #666; line-height: 1.7; margin-top: 12px; font-size: 0.92rem; }

/* Cue — hidden on desktop (desc always visible), shown on mobile */
.service-cue {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  color: #C5A47E;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.service-cue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1.5px solid #C5A47E;
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.service-card.open .service-cue-icon { transform: rotate(45deg); }
.service-card.open .service-cue-text::after { content: "less"; }
.service-card:not(.open) .service-cue-text::after { content: "more"; }
.service-cue-text { font-size: 0; } /* hide word, show via ::after */
.service-cue-text::before { content: "know "; font-size: 0.78rem; }
.service-cue-text::after  { font-size: 0.78rem; }

/* ============================
   HOT DEALS SECTION
============================ */

.hot-deals {
  padding: 100px 20px;
  background: #0d0d0d;
  color: #fff;
}

.section-subtitle {
  text-align: center;
  color: #aaa;
  margin-top: -40px;
  margin-bottom: 40px;
}

.deal-tabs { display: flex; justify-content: center; gap: 20px; margin: 40px 0; }

.tab-btn {
  padding: 12px 30px;
  background: #1a1a1a;
  border: 2px solid #333;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
  font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover { background: #c5a47e; color: #000; border-color: #c5a47e; }

.deal-slider { display: none; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.deal-slider.active { display: grid; }

.deal-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: 0.3s ease;
}

.deal-card:hover { transform: translateY(-10px); }

.deal-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: #c5a47e;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
}

.deal-card img { width: 100%; height: 220px; object-fit: cover; }

.deal-content { padding: 20px; }
.deal-content h3 { margin-bottom: 10px; font-size: 1.2rem; }
.deal-content p  { color: #aaa; font-size: 0.9rem; margin-bottom: 15px; }

.deal-price { font-size: 1.5rem; color: #c5a47e; font-weight: bold; margin-bottom: 15px; }
.old-price  { font-size: 1rem; color: #666; text-decoration: line-through; margin-left: 10px; }

.deal-btn {
  width: 100%;
  padding: 12px;
  background: #c5a47e;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
}

.deal-btn:hover { background: #b59670; }

/* ============================
   WHY CHOOSE US
============================ */

.why-choose { padding: 80px 20px; background: #f9f9f9; }

/* ── Carousel wrapper ── */
.why-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 10px;
}

.why-carousel-track-outer {
  overflow: hidden;
  flex: 1;
}

.why-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.why-card {
  background: white;
  padding: 32px 28px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
}

.why-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-4px); }
.why-card-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { margin-bottom: 12px; color: #222; font-size: 1rem; }
.why-card p  { color: #666; line-height: 1.7; font-size: 0.92rem; }

/* ── Arrows ── */
.why-carousel-arrow {
  background: white;
  border: 1.5px solid #C5A47E;
  color: #C5A47E;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.why-carousel-arrow:hover { background: #C5A47E; color: white; }
.why-carousel-arrow:disabled { opacity: 0.3; cursor: default; }

/* ── Dots ── */
.why-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.why-dot.active { background: #C5A47E; transform: scale(1.3); }

/* ============================
   PARTNER SUBTITLE
============================ */

.partner-subtitle {
  color: #aaa;
  text-align: center;
  margin-top: -30px;
  margin-bottom: 20px;
}

/* ============================
   DEAL CONTROLS & FILTERS
============================ */

.deal-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.price-filters { display: flex; gap: 10px; flex-wrap: wrap; }

.filter-btn {
  padding: 10px 20px;
  background: #1a1a1a;
  border: 2px solid #333;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover { background: #c5a47e; color: #000; border-color: #c5a47e; }

.sort-options select {
  padding: 10px 15px;
  background: #1a1a1a;
  border: 2px solid #333;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-size: 0.9rem;
}

.sort-options select:focus { outline: none; border-color: #c5a47e; }

/* ============================
   FEATURED BADGE
============================ */

.deal-badge.featured {
  left: 15px;
  right: auto;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #000;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

.deal-badge.hot          { background: #ff4444; }
.deal-badge.urgent       { background: #ff6b35; }
.deal-badge.investment   { background: #4ecdc4; }
.deal-badge.ready        { background: #95e1d3; color: #000; }
.deal-badge.luxury       { background: #9b59b6; }
.deal-badge.construction { background: #3498db; }
.deal-badge.prime        { background: #e74c3c; }
.deal-badge.value        { background: #2ecc71; }
.deal-badge.appreciation { background: #f39c12; }
.deal-badge.roi          { background: #16a085; }
.deal-badge.warehouse    { background: #7f8c8d; }
.deal-badge.showroom     { background: #e67e22; }
.deal-badge.restaurant   { background: #c0392b; }
.deal-badge.logistics    { background: #34495e; }
.deal-badge.medical      { background: #1abc9c; }

/* ============================
   SOLD OUT OVERLAY
============================ */

.deal-card.sold-out { position: relative; opacity: 0.7; }

.sold-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 10px;
}

.sold-text {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff4444;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  transform: rotate(-15deg);
}

.sold-overlay p { color: #ccc; font-size: 1rem; }
.deal-card.sold-out .deal-btn { background: #555; cursor: not-allowed; opacity: 0.5; }

/* ============================
   LOAD MORE BUTTON
============================ */

.deal-card.hidden-deal { display: none; }

.load-more-container { text-align: center; margin-top: 50px; }

.load-more-btn {
  padding: 15px 40px;
  background: #c5a47e;
  border: none;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
  margin-bottom: 15px;
}

.load-more-btn:hover { background: #b59670; transform: translateY(-2px); }
.load-more-btn:disabled { background: #555; cursor: not-allowed; opacity: 0.5; }

.showing-count { color: #aaa; font-size: 0.9rem; margin-top: 10px; }

/* ============================
   RESPONSIVE ADJUSTMENTS
============================ */

@media (max-width: 768px) {
  /* Service cards — 2 column compact on mobile */
  .service-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
  .service-card { padding: 20px 12px 14px; }
  .service-icon { font-size: 1.8rem; margin-bottom: 10px; }
  .service-card h3 { font-size: 0.82rem; }

  /* Show cue on mobile, hide description by default */
  .service-cue { display: flex; }
  .service-desc { max-height: 0; opacity: 0; }
  .service-card.open .service-desc { max-height: 200px; opacity: 1; }

  /* Why carousel — 1 card visible at a time on mobile */
  .why-card { flex: 0 0 100%; }
  .why-carousel-arrow { width: 32px; height: 32px; font-size: 1.2rem; }

  /* Stats — 2x2 grid on mobile */
  .stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .credibility h2 { font-size: 1.6rem; margin-bottom: 32px; }
  .stat h3 { font-size: 2.2rem; }
  .stat p  { font-size: 0.85rem; }

  .deal-slider { grid-template-columns: 1fr; }

  .deal-tabs      { flex-direction: column; }
  .tab-btn        { width: 100%; }

  .deal-controls  { flex-direction: column; align-items: stretch; }
  .price-filters  { justify-content: center; }
  .filter-btn     { flex: 1; min-width: 120px; }
  .sort-options select { width: 100%; }
  .sold-text      { font-size: 2rem; }
}

/* ============================
   CONTACT FORM SECTION
============================ */

.contact {
  background: #111;
  color: white;
  padding: 100px 20px;
}

.contact-intro {
  text-align: center;
  color: #aaa;
  margin-top: -40px;
  margin-bottom: 60px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  text-align: left;
}

.contact-form-container h3 { margin-bottom: 30px; color: #c5a47e; font-size: 1.8rem; text-align: center; }

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

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

.form-group label { margin-bottom: 8px; color: #ddd; font-weight: 500; font-size: 0.95rem; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  background: #0d0d0d;
  border: 2px solid #333;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  transition: 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #c5a47e; background: #1a1a1a; }

.form-group textarea { resize: vertical; min-height: 120px; }

.error-message { color: #ff4444; font-size: 0.85rem; margin-top: 5px; display: none; }

.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #ff4444; }

.form-group.error .error-message { display: block; }

.submit-btn {
  padding: 15px 40px;
  background: #c5a47e;
  border: none;
  color: #000;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
  margin-top: 10px;
  position: relative;
}

.submit-btn:hover { background: #b59670; transform: translateY(-2px); }
.submit-btn:disabled { background: #555; cursor: not-allowed; transform: none; }

.btn-loader { display: inline-block; }

.form-note { color: #888; font-size: 0.85rem; margin-top: 10px; text-align: center; }

.success-message { text-align: center; padding: 60px 40px; animation: fadeIn 0.5s ease; }

.success-icon {
  width: 80px; height: 80px;
  background: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 20px;
  color: white;
}

.success-message h3 { color: #2ecc71; margin-bottom: 10px; }
.success-message p  { color: #aaa; }

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.contact-info-container {
  background: #1a1a1a;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  text-align: left;
}

.contact-info-container h3 { margin-bottom: 30px; color: #c5a47e; font-size: 1.8rem; text-align: center; }

.info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.info-icon {
  font-size: 1.4rem;
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: #0d0d0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
  overflow: hidden;
}

.info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 2px;
}

.info-content h4   { color: #c5a47e; margin-bottom: 4px; font-size: 1rem; font-weight: 600; }
.info-content p,
.info-content a    { color: #aaa; line-height: 1.6; text-decoration: none; font-size: 0.95rem; }
.info-content a:hover { color: #c5a47e; }

.social-links { margin-top: 40px; padding-top: 30px; border-top: 1px solid #333; }
.social-links h4 { color: #c5a47e; margin-bottom: 15px; }
.social-icons { display: flex; gap: 15px; }



@media (max-width: 968px) {
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .form-row        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-form-container,
  .contact-info-container  { padding: 25px; }
  .contact-form-container h3,
  .contact-info-container h3 { font-size: 1.4rem; }
  .submit-btn { padding: 12px 30px; }
}


/* ============================================================
   HOVER SLIDESHOW — MEDIA STACK  ← ONE copy only
============================================================ */

.media-stack {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}

.property-card .media-stack { height: 200px; }

.media-layer {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.media-layer--active { opacity: 1; }
.media-stack--no-transition .media-layer { transition: none; }

.media-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-card:hover .media-dots,
.deal-card:hover .media-dots,
.ep-card:hover .media-dots { opacity: 1; }

.media-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.3s ease, transform 0.3s ease;
}

.media-dot--active { background: #fff; transform: scale(1.25); }

.media-stack[data-has-video="true"]::after {
  content: "▶ Tour";
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.property-card:hover .media-stack[data-has-video="true"]::after,
.deal-card:hover .media-stack[data-has-video="true"]::after,
.ep-card:hover .media-stack[data-has-video="true"]::after { opacity: 1; }

@media (hover: none) { .media-dots { display: none; } }


/* ============================================================
   EXPLORE PROPERTIES — unified section  ← ONE copy only
============================================================ */

.explore-properties {
  padding: 100px 20px;
  background: #0d0d0d;
  color: #fff;
}

.ep-header { text-align: center; margin-bottom: 10px; }

.ep-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 30px;
  flex-wrap: wrap;
}

.ep-tab {
  padding: 11px 28px;
  background: #1a1a1a;
  border: 2px solid #333;
  color: #ccc;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  font-family: 'Inter', sans-serif;
}

.ep-tab:hover,
.ep-tab.active { background: #c5a47e; border-color: #c5a47e; color: #000; }

.ep-tab--hot { border-color: #ff4444; color: #ff6666; }
.ep-tab--hot.active,
.ep-tab--hot:hover { background: #ff4444; border-color: #ff4444; color: #fff; }

.ep-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.ep-filters { display: flex; gap: 10px; flex-wrap: wrap; }

.ep-filters select,
.ep-sort select {
  padding: 10px 14px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.ep-filters select:focus,
.ep-sort select:focus { outline: none; border-color: #c5a47e; }

.ep-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  min-height: 28px;
}

.ep-count { color: #888; font-size: 0.88rem; }
.ep-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.ep-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197,164,126,0.15);
  border: 1px solid #c5a47e;
  color: #c5a47e;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.82rem;
}

.ep-chip-x {
  background: none;
  border: none;
  color: #c5a47e;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
}

.ep-chip-x:hover { color: #fff; }

.ep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.ep-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.ep-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.ep-card--sold { opacity: 0.72; }

.ep-card-media { position: relative; }
.ep-card-media .media-stack { height: 220px; }

.ep-badge {
  position: absolute;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 10;
  pointer-events: none;
}

.ep-badge--deal     { top: 12px; right: 12px; background: #c5a47e; color: #000; }
.ep-badge--featured { top: 12px; left: 12px; background: linear-gradient(135deg,#FFD700,#FFA500); color: #000; animation: pulse 2s infinite; }

.ep-badge.hot          { background: #ff4444; color: #fff; }
.ep-badge.urgent       { background: #ff6b35; color: #fff; }
.ep-badge.investment   { background: #4ecdc4; color: #000; }
.ep-badge.ready        { background: #95e1d3; color: #000; }
.ep-badge.luxury       { background: #9b59b6; color: #fff; }
.ep-badge.construction { background: #3498db; color: #fff; }
.ep-badge.prime        { background: #e74c3c; color: #fff; }
.ep-badge.value        { background: #2ecc71; color: #000; }
.ep-badge.appreciation { background: #f39c12; color: #000; }
.ep-badge.roi          { background: #16a085; color: #fff; }
.ep-badge.warehouse    { background: #7f8c8d; color: #fff; }
.ep-badge.showroom     { background: #e67e22; color: #fff; }
.ep-badge.restaurant   { background: #c0392b; color: #fff; }
.ep-badge.logistics    { background: #34495e; color: #fff; }
.ep-badge.medical      { background: #1abc9c; color: #000; }
.ep-badge.new          { background: #27ae60; color: #fff; }

.ep-cat-label {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
  z-index: 10;
  pointer-events: none;
  letter-spacing: 0.03em;
}

.ep-cat--residential { background: rgba(197,164,126,0.85); color: #000; }
.ep-cat--commercial  { background: rgba(52,152,219,0.85);  color: #fff; }

.ep-sold-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  border-radius: 12px;
}

.ep-sold-text { font-size: 2rem; font-weight: 700; color: #ff4444; letter-spacing: 3px; transform: rotate(-12deg); margin-bottom: 8px; }
.ep-sold-overlay p { color: #ccc; font-size: 0.9rem; }

.ep-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.ep-card-title { font-size: 1.1rem; font-family: 'Playfair Display', serif; margin-bottom: 6px; color: #fff; }
.ep-card-desc  { font-size: 0.88rem; color: #aaa; margin-bottom: 16px; flex: 1; }

.ep-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.ep-price     { font-size: 1.35rem; font-weight: 700; color: #c5a47e; }
.ep-old-price { font-size: 0.9rem; color: #666; text-decoration: line-through; margin-left: 6px; }

.ep-card-btn {
  padding: 9px 18px;
  background: #c5a47e;
  border: none;
  border-radius: 6px;
  color: #000;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background 0.25s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.ep-card-btn:hover:not(:disabled) { background: #b59670; }
.ep-card-btn:disabled { background: #555; cursor: not-allowed; }

.ep-empty { grid-column: 1/-1; text-align: center; padding: 80px 20px; color: #888; }
.ep-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.ep-empty h3   { color: #ccc; margin-bottom: 8px; }
.ep-empty p    { margin-bottom: 24px; }

.ep-reset-btn {
  padding: 10px 24px;
  background: transparent;
  border: 2px solid #c5a47e;
  color: #c5a47e;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.ep-reset-btn:hover { background: #c5a47e; color: #000; }
.ep-load-more { text-align: center; margin-top: 50px; }

@media (max-width: 768px) {
  .ep-grid { grid-template-columns: 1fr; }
  .ep-tabs { gap: 8px; }
  .ep-tab  { padding: 9px 18px; font-size: 0.88rem; }
  .ep-controls { flex-direction: column; align-items: stretch; }
  .ep-filters  { flex-direction: column; }
  .ep-filters select, .ep-sort select { width: 100%; }
  .ep-card-footer { flex-direction: column; align-items: flex-start; }
  .ep-card-btn { width: 100%; text-align: center; }
}


/* ============================================================
   PROPERTY CARD — attribute teaser pills  ← ONE copy only
============================================================ */

.ep-card-teaser {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.ep-card-teaser span {
  font-size: 0.76rem;
  color: #bbb;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.ep-card-details-btn {
  padding: 8px 16px;
  background: transparent;
  border: 2px solid #c5a47e;
  border-radius: 6px;
  color: #c5a47e;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.ep-card-details-btn:hover { background: #c5a47e; color: #000; }


/* ============================================================
   PROPERTY DETAIL DRAWER  ← ONE copy only
============================================================ */

.ep-drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1400;
  backdrop-filter: blur(3px);
}

.ep-drawer {
  position: fixed;
  top: 0;
  right: -560px;
  width: 540px;
  max-width: 100vw;
  height: 100vh;
  background: #111;
  z-index: 1500;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}

.ep-drawer--open { right: 0; }

body.ep-drawer-active .ep-drawer-backdrop { display: block; }
body.ep-drawer-active { overflow: hidden; }

.ep-drawer-inner { padding: 0 0 40px 0; }

/* Topbar (sticky) */
.ep-drawer-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.ep-drawer-topbar-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #c5a47e;
  max-width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ep-drawer-close {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid #333;
  border-radius: 6px;
  color: #ccc;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ep-drawer-close:hover { background: #c5a47e; border-color: #c5a47e; color: #000; }
.ep-drawer-close-icon  { font-size: 0.9rem; line-height: 1; }
.ep-drawer-close-label { font-weight: 500; }

.ep-drawer-media .media-stack {
  height: auto;
  max-height: 480px;
  border-radius: 0;
  background: #0d0d0d;
}

.ep-drawer-media .media-layer {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  opacity: 1;
}

.ep-drawer-media .media-layer:not(.media-layer--active) {
  display: none;
}

.ep-drawer-info { padding: 24px 28px; }

.ep-drawer-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 14px; flex-wrap: wrap; }

.ep-drawer-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.ep-drawer-desc  { color: #aaa; font-size: 0.92rem; margin-bottom: 16px; }
.ep-drawer-price { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid #2a2a2a; }

.ep-attrs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }

.ep-attr-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 10px 12px;
  transition: border-color 0.2s;
}

.ep-attr-pill:hover { border-color: #c5a47e44; }
.ep-attr-pill--negative { border-color: #ff444433; background: rgba(255,68,68,0.05); }

.ep-attr-icon  { font-size: 1.4rem; flex-shrink: 0; }
.ep-attr-text  { display: flex; flex-direction: column; min-width: 0; }
.ep-attr-label { font-size: 0.7rem; color: #777; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.ep-attr-value { font-size: 0.88rem; color: #ddd; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ep-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: rgba(197,164,126,0.1);
  border: 2px solid #c5a47e44;
  border-radius: 8px;
  color: #c5a47e;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 16px;
  transition: all 0.25s;
}

.ep-map-btn:hover { background: rgba(197,164,126,0.2); border-color: #c5a47e; }

.ep-drawer-enquire {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: 8px;
  background: #c5a47e;
  border: none;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s;
  font-family: 'Inter', sans-serif;
}

.ep-drawer-enquire:hover:not(:disabled) { background: #b59670; }
.ep-drawer-enquire:disabled { background: #444; color: #888; cursor: not-allowed; }

@media (max-width: 600px) {
  .ep-drawer { width: 100vw; }
  .ep-attrs-grid { grid-template-columns: 1fr; }
  .ep-drawer-media .media-stack { max-height: 300px; }
}


/* ============================
   1. NAV CLOSE BUTTON
============================ */

.nav-close {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2px solid #c5a47e;
  color: #c5a47e;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.25s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.nav-close:hover { background: #c5a47e; color: #000; transform: rotate(90deg); }

body.nav-open .nav-close  { display: flex; }
body.nav-open .nav-toggle { display: none; }


/* ============================
   2. LOGO IMAGE
============================ */

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 48px;
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #c5a47e;
  white-space: nowrap;
}


/* ============================
   4. PARTNERS REVAMP
============================ */

.partners-revamp {
  padding: 100px 0 80px;
  background: #0a0a0a;
  overflow: hidden;
}

.partners-header { text-align: center; padding: 0 20px 40px; }

.partners-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c5a47e;
  margin-bottom: 12px;
  padding: 4px 14px;
  border: 1px solid #c5a47e44;
  border-radius: 20px;
}

.partners-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem,3vw,2.4rem); color: #fff; margin-bottom: 10px; }
.partners-header p  { color: #888; font-size: 1rem; max-width: 480px; margin: 0 auto; }

.partners-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; padding: 0 20px; }

.ptab {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid #2a2a2a;
  background: transparent;
  color: #888;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.ptab.active,
.ptab:hover { border-color: #c5a47e; color: #c5a47e; background: rgba(197,164,126,0.08); }

.partners-track-wrap { position: relative; }
.partners-track        { display: none; }
.partners-track.active { display: block; }

.partners-scroll {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: partnerScroll 28s linear infinite;
  padding: 10px 0;
}

.partners-scroll--reverse { animation-direction: reverse; animation-duration: 32s; }
.partners-scroll:hover    { animation-play-state: paused; }

@keyframes partnerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 20px 24px;
  background: #141414;
  border: 1px solid #222;
  border-radius: 14px;
  cursor: default;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-align: center;
  flex-shrink: 0;
}

.partner-chip:hover { border-color: #c5a47e44; transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
.partner-chip-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.partner-chip-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.partner-chip-name  { font-size: 0.9rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.partner-chip-tag   { font-size: 0.72rem; color: #c5a47e; background: rgba(197,164,126,0.1); padding: 2px 8px; border-radius: 10px; white-space: nowrap; }

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
}

.partners-track-wrap::before { left: 0;  background: linear-gradient(to right, #0a0a0a, transparent); }
.partners-track-wrap::after  { right: 0; background: linear-gradient(to left,  #0a0a0a, transparent); }

.partners-cta { text-align: center; margin-top: 50px; padding: 0 20px; }
.partners-cta p { color: #888; margin-bottom: 14px; font-size: 0.95rem; }

.partners-cta-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #c5a47e, #b59670);
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.partners-cta-btn:hover { opacity: 0.9; transform: translateY(-2px); }


/* ============================
   5. RERA REVAMP
============================ */

.rera-revamp {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d0d0d 0%, #111 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.rera-revamp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,164,126,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,164,126,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.rera-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.rera-badge-col { display: flex; justify-content: center; }

.rera-shield {
  width: 160px;
  height: 180px;
  background: linear-gradient(160deg, #1a1a1a, #111);
  border: 2px solid #c5a47e;
  clip-path: polygon(50% 0%, 100% 20%, 100% 70%, 50% 100%, 0% 70%, 0% 20%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(197,164,126,0.2), inset 0 0 20px rgba(197,164,126,0.05); }
  50%       { box-shadow: 0 0 60px rgba(197,164,126,0.35), inset 0 0 30px rgba(197,164,126,0.1); }
}

.rera-shield-inner { text-align: center; transform: translateY(-6px); }
.rera-shield-icon  { font-size: 2.4rem; display: block; margin-bottom: 4px; }
.rera-shield-text  { font-size: 1.1rem; font-weight: 800; color: #c5a47e; letter-spacing: 0.1em; }
.rera-shield-sub   { font-size: 0.6rem; letter-spacing: 0.2em; color: #888; text-transform: uppercase; margin-top: 2px; }

.rera-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #c5a47e; margin-bottom: 12px; }

.rera-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,2.5vw,2.2rem); color: #fff; margin-bottom: 16px; line-height: 1.25; }
.rera-highlight { color: #c5a47e; }
.rera-desc  { color: #999; line-height: 1.7; margin-bottom: 24px; max-width: 540px; }

.rera-reg-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-left: 3px solid #c5a47e;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}

.rera-reg-label   { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: #666; }
.rera-reg-number  { font-family: 'Courier New', monospace; font-size: 1rem; color: #e8d5b7; font-weight: 600; letter-spacing: 0.08em; }
.rera-verify-link { font-size: 0.78rem; color: #c5a47e; text-decoration: none; margin-top: 4px; }
.rera-verify-link:hover { text-decoration: underline; }

.rera-pillars { display: flex; flex-direction: column; gap: 16px; }
.rera-pillar  { display: flex; align-items: flex-start; gap: 14px; }
.rera-pillar-icon   { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.rera-pillar strong { display: block; color: #ddd; font-size: 0.9rem; margin-bottom: 2px; }
.rera-pillar p      { color: #777; font-size: 0.82rem; margin: 0; line-height: 1.5; }

@media (max-width: 768px) {
  .rera-inner    { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .rera-reg-card { align-items: center; }
  .rera-pillar   { text-align: left; }
  .partners-scroll { animation-duration: 18s; }
}


/* ============================
   LOGO — combined icon + text
   (fallback when logo.png missing)
============================ */

.logo-img {
  height: 44px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-only {
  height: 40px;
  width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-fallback-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.logo-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: #c5a47e;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .logo-img       { height: 36px; max-width: 200px; }
  .logo-icon-only { height: 32px; width: 32px; }
  .logo-name      { font-size: 1rem; }
  .logo-tagline   { font-size: 0.55rem; }
}


/* ============================================================
   DRAWER GALLERY — manual left/right arrows
============================================================ */

.drawer-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  backdrop-filter: blur(4px);
}

.drawer-gallery-arrow:hover {
  background: rgba(197, 164, 126, 0.85);
  border-color: #c5a47e;
  color: #000;
  transform: translateY(-50%) scale(1.08);
}

.drawer-gallery-prev { left: 12px; }
.drawer-gallery-next { right: 12px; }

.drawer-gallery-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 15;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  pointer-events: none;
  backdrop-filter: blur(4px);
  letter-spacing: 0.04em;
}

/* Hide hover dots in drawer (arrows replace them) */
.ep-drawer .media-dots { display: none !important; }


/* ============================================================
   SELL YOUR PROPERTY SECTION
============================================================ */

.sell-property {
  padding: 100px 20px;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle grid texture */
.sell-property::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197,164,126,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,164,126,0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.sell-property .container { position: relative; z-index: 1; max-width: 860px; }

.sell-header { text-align: center; margin-bottom: 50px; }

.sell-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c5a47e;
  margin-bottom: 14px;
  padding: 4px 14px;
  border: 1px solid #c5a47e44;
  border-radius: 20px;
}

.sell-subtitle {
  color: #999;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Step indicator ───────────────────────────────────────── */

.sell-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.sell-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sell-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 2px solid #333;
  color: #666;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sell-step.active .sell-step-circle {
  background: #c5a47e;
  border-color: #c5a47e;
  color: #000;
  box-shadow: 0 0 0 4px rgba(197,164,126,0.2);
}

.sell-step.completed .sell-step-circle {
  background: #2ecc71;
  border-color: #2ecc71;
  color: #000;
}

.sell-step.completed .sell-step-circle::after {
  content: "✓";
}

.sell-step.completed .sell-step-circle { font-size: 0; }
.sell-step.completed .sell-step-circle::after { font-size: 0.95rem; }

.sell-step-label {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}

.sell-step.active .sell-step-label   { color: #c5a47e; }
.sell-step.completed .sell-step-label { color: #2ecc71; }

.sell-step-line {
  flex: 1;
  height: 2px;
  background: #222;
  min-width: 60px;
  max-width: 120px;
  margin-bottom: 22px;
  transition: background 0.3s;
}

/* ── Form wrap ────────────────────────────────────────────── */

.sell-form-wrap {
  background: #141414;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#sellForm {
  display: flex;
  flex-direction: column;
}

/* ── Panels (steps) ───────────────────────────────────────── */

.sell-panel {
  display: none;
  padding: 40px 44px 36px;
  animation: sellFadeIn 0.3s ease;
}

.sell-panel.active { display: block; }

@keyframes sellFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.sell-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 28px;
}

/* ── Property type picker ─────────────────────────────────── */

.sell-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.sell-type-card {
  cursor: pointer;
  position: relative;
}

.sell-type-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.sell-type-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 12px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  border-radius: 12px;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 100px;
}

.sell-type-card:hover .sell-type-inner {
  border-color: #c5a47e55;
  background: #1e1e1e;
}

.sell-type-card input:checked + .sell-type-inner {
  border-color: #c5a47e;
  background: rgba(197,164,126,0.08);
  box-shadow: 0 0 0 3px rgba(197,164,126,0.15);
}

.sell-type-icon  { font-size: 2rem; line-height: 1; }
.sell-type-label { font-size: 0.82rem; font-weight: 600; color: #ccc; line-height: 1.3; }

.sell-type-card input:checked + .sell-type-inner .sell-type-label { color: #c5a47e; }

/* ── Fields ───────────────────────────────────────────────── */

.sell-fields { display: flex; flex-direction: column; gap: 20px; margin-bottom: 8px; }

.sell-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.sell-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sell-field.full-width { grid-column: 1 / -1; }

.sell-field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: #ccc;
}

.sell-field input,
.sell-field select,
.sell-field textarea {
  padding: 11px 14px;
  background: #0d0d0d;
  border: 2px solid #2a2a2a;
  border-radius: 8px;
  color: #fff;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
  width: 100%;
}

.sell-field input:focus,
.sell-field select:focus,
.sell-field textarea:focus {
  outline: none;
  border-color: #c5a47e;
}

.sell-field textarea { resize: vertical; min-height: 88px; }

/* ── Error messages ───────────────────────────────────────── */

.sell-error {
  display: none;
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 2px;
}

/* ── Summary card ─────────────────────────────────────────── */

.sell-summary {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-left: 3px solid #c5a47e;
  border-radius: 10px;
  padding: 18px 20px;
  margin: 20px 0 28px;
}

.sell-summary-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #c5a47e;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.sell-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.88rem;
}

.sell-summary-row:last-child { border-bottom: none; }
.sell-summary-row span       { color: #888; }
.sell-summary-row strong     { color: #fff; }

/* ── Navigation buttons ───────────────────────────────────── */

.sell-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #1e1e1e;
}

.sell-btn-next,
.sell-btn-back,
.sell-btn-submit {
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
  border: none;
}

.sell-btn-next,
.sell-btn-submit {
  background: #c5a47e;
  color: #000;
}

.sell-btn-next:hover,
.sell-btn-submit:hover:not(:disabled) {
  background: #b59670;
  transform: translateY(-2px);
}

.sell-btn-submit:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
}

.sell-btn-back {
  background: transparent;
  border: 2px solid #333;
  color: #aaa;
}

.sell-btn-back:hover {
  border-color: #c5a47e;
  color: #c5a47e;
}

/* ── Success state ────────────────────────────────────────── */

.sell-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 40px;
  animation: sellFadeIn 0.5s ease;
}

.sell-success-icon {
  width: 80px; height: 80px;
  background: #2ecc71;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 0 0 12px rgba(46, 204, 113, 0.12);
}

.sell-success h3 { font-size: 1.6rem; color: #fff; margin-bottom: 12px; }
.sell-success p  { color: #aaa; max-width: 400px; line-height: 1.7; margin-bottom: 28px; }

.sell-btn-again {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #c5a47e;
  border-radius: 8px;
  color: #c5a47e;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.sell-btn-again:hover { background: #c5a47e; color: #000; }

/* ── Nav sell link highlight ──────────────────────────────── */

.nav-sell-link {
  color: #c5a47e !important;
  font-weight: 500 !important;
  border: 1px solid #c5a47e44;
  padding: 4px 12px;
  border-radius: 20px;
  transition: background 0.2s !important;
}

.nav-sell-link:hover {
  background: rgba(197,164,126,0.15) !important;
  opacity: 1 !important;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 768px) {
  .sell-type-grid { grid-template-columns: repeat(2, 1fr); }
  .sell-row       { grid-template-columns: 1fr; }
  .sell-panel     { padding: 28px 24px 24px; }
  .sell-step-line { min-width: 30px; }
}

@media (max-width: 480px) {
  .sell-type-grid  { grid-template-columns: 1fr 1fr; }
  .sell-type-inner { padding: 16px 8px; min-height: 80px; }
  .sell-type-icon  { font-size: 1.6rem; }
}

/* ============================
   SEO FOOTER
============================ */

.seo-footer {
  background: #0a0a0a;
  color: #aaa;
  padding: 60px 20px 30px;
  border-top: 1px solid #222;
}

.seo-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.seo-footer-col h3 {
  color: #C5A47E;
  font-size: 1.2rem;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}

.seo-footer-col h4 {
  color: #C5A47E;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.seo-footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #888;
}

.seo-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-footer-col ul li {
  font-size: 0.85rem;
  color: #777;
  padding: 3px 0;
  line-height: 1.6;
}

.seo-footer-col ul li a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}

.seo-footer-col ul li a:hover { color: #C5A47E; }

.seo-footer-copy {
  margin-top: 20px;
  font-size: 0.78rem;
  color: #555;
}

@media (max-width: 768px) {
  .seo-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .seo-footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .seo-footer-grid { grid-template-columns: 1fr; }
  .seo-footer-col:first-child { grid-column: auto; }
}

/* ============================
   FOOTER RERA STRIP
============================ */

.footer-rera-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
}

.footer-rera-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer-rera-shield { font-size: 1.6rem; }

.footer-rera-badge-text {
  display: flex;
  flex-direction: column;
}

.footer-rera-title {
  color: #C5A47E;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-rera-sub {
  color: #666;
  font-size: 0.75rem;
}

.footer-rera-details {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-rera-label { color: #555; font-size: 0.78rem; }

.footer-rera-number {
  color: #C5A47E;
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.footer-rera-verify {
  color: #888;
  font-size: 0.78rem;
  text-decoration: none;
  border-bottom: 1px dashed #555;
  transition: color 0.2s;
}
.footer-rera-verify:hover { color: #C5A47E; }

.footer-rera-pillars {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-rera-pillars span {
  color: #666;
  font-size: 0.78rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .footer-rera-strip { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-rera-pillars { margin-left: 0; }
  .footer-rera-number { font-size: 0.78rem; }
}

/* ============================
   SOCIAL ICONS — shared
============================ */

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #aaa;
  border: 1px solid #333;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.social-icon:hover { transform: translateY(-3px); border-color: transparent; }

/* Brand colours on hover */
.social-icon--whatsapp:hover  { background: #25D366; color: #fff; }
.social-icon--instagram:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.social-icon--facebook:hover  { background: #1877F2; color: #fff; }
.social-icon--linkedin:hover  { background: #0A66C2; color: #fff; }
.social-icon--youtube:hover   { background: #FF0000; color: #fff; }

/* Footer social row */
.footer-social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-social-icons .social-icon {
  width: 34px;
  height: 34px;
  background: #1a1a1a;
  border-color: #2a2a2a;
  color: #666;
}

/* Contact section social icons (larger) */
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons .social-icon {
  width: 44px;
  height: 44px;
  background: #0d0d0d;
  border-color: #2a2a2a;
  color: #777;
}

@media (max-width: 480px) {
  .social-icons .social-icon { width: 40px; height: 40px; }
}

/* ============================
   UNIT TYPES — Property Drawer
============================ */

.ep-unit-types { margin: 20px 0; }

.ep-unit-types-title {
  color: #C5A47E;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.ep-unit-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.ep-unit-type-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: border-color 0.2s;
}

.ep-unit-type-card:hover { border-color: #C5A47E55; }

.ep-unit-config {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.ep-unit-size {
  color: #888;
  font-size: 0.78rem;
  line-height: 1.4;
}

.ep-unit-parking {
  color: #777;
  font-size: 0.75rem;
}

.ep-unit-price {
  color: #C5A47E;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 4px;
}

@media (max-width: 480px) {
  .ep-unit-types-grid { grid-template-columns: 1fr; }
}

/* ============================
   WHATSAPP FLOATING BUTTON
============================ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.3s ease;
  animation: waFloat 0.6s ease 2s both;
  max-width: 200px;
}

@keyframes waFloat {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: waPulse 2.5s ease-in-out 3s infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

.whatsapp-float__label {
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* On mobile — collapse to icon-only to save space */
@media (max-width: 480px) {
  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float__label { display: none; }
}

/* Hide when enquiry modal or nav is open */
body.enq-modal-active .whatsapp-float,
body.nav-open .whatsapp-float { opacity: 0; pointer-events: none; }
