:root {
    --white: #F9F9F9;
    --black: #111111;
    --logo-green: #4CAF50; /* Adjust to your specific green */
    --logo-gray: #888888;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--black); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; position: relative; }
.dark { background: var(--black); color: var(--white); }
.light { background: var(--white); color: var(--black); }
.border-top { border-top: 1px solid #eee; }

.side-nav {position: fixed;right: 20px;top: 50%;transform: translateY(-50%);display: flex;flex-direction: column;gap: 20px;  z-index: 100;}
.dot-link {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid var(--logo-gray);
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
}

/* Tooltip label that appears on hover (Desktop) */
.dot-link::before {
  content: attr(data-label);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 4px 10px;
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.dot-link:hover::before {
  opacity: 1;
}

/* Active State - Matches your Green Logo Color */
.dot-link.active {
  background: var(--logo-green);
  border-color: var(--logo-green);
  transform: scale(1.3);
}

.eyebrow { font-size: 10px; text-transform: uppercase; letter-spacing: 3px; color: var(--logo-gray); display: block; margin-bottom: 20px; }
.eyebrow.light { color: var(--logo-green); }

/* HERO */
.hero-section { height: 100vh; display: flex; align-items: flex-end; padding-bottom: 10vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -1; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }
.explore-trigger { display: inline-flex; flex-direction: column; text-decoration: none; gap: 10px; }
.trigger-line { height: 1px; background: var(--logo-green); width: 40px; transition: 0.5s; }
.explore-trigger:hover .trigger-line { width: 100px; }

/* CAROUSEL - HEIGHT FIRST */
.carousel-track { display: flex; overflow-x: auto; gap: 20px; height: 500px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.carousel-slide { flex: 0 0 auto; height: 100%; scroll-snap-align: start; }
.zoomable { height: 100%; width: auto; object-fit: cover; cursor: zoom-in; }

/* FLOOR PLAN */
.plan-layout { display: flex; flex-direction: column; gap: 40px; }
.map-wrapper { position: relative; width: 100%; line-height: 0; cursor: zoom-in; }
.base-render { width: 100%; height: auto; display: block; }
.vector-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.room-path { fill: var(--logo-green); opacity: 0; transition: 0.3s; pointer-events: auto; }
.room-path.active { opacity: 0.3; }
.area-grid-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.price-card { padding: 40px; background: white; border: 1px solid #eee; transition: 0.4s; }
.price-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }

/* MODAL */
.modal-zoom { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 9999; justify-content: center; align-items: center; cursor: zoom-out; }
.modal-zoom img { max-width: 90%; max-height: 90%; object-fit: contain; }

@media (min-width: 1024px) {
    .plan-layout { display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; }
}
