/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  color: white;
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: slowZoom 22s var(--ease) infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,21,38,0.78) 0%, rgba(8,21,38,0.45) 55%, rgba(8,21,38,0.3) 100%),
    linear-gradient(180deg, rgba(8,21,38,0.35) 0%, rgba(8,21,38,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 48px;
  max-width: 760px;
}

.hero-tagline {
  color: var(--gold-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

.hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.08rem;
  max-width: 620px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-indicator .mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 12px;
  position: relative;
}

.scroll-indicator .mouse::after {
  content: "";
  width: 3px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  animation: mouse 1.6s ease-in-out infinite;
}

@keyframes mouse {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}

@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.14); }
}

/* Dual path cards */
.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: -40px;
  position: relative;
  z-index: 4;
}

.path-grid--solo {
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

.path-card {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.path-card:hover img { transform: scale(1.06); }

.path-card .copy {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  background: linear-gradient(180deg, transparent 20%, rgba(8,21,38,0.86));
}

.path-card h3 { color: white; }

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--teal);
  margin-bottom: 18px;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.split article {
  padding: 48px 40px;
}

.split .company { background: var(--navy); color: white; }
.split .crew { background: #12364a; color: white; }
.split p { color: rgba(255,255,255,0.74); }

.split .why-points p {
  display: block;
  margin: 0 0 10px;
  line-height: 1.45;
}

.split .why-points p:last-child { margin-bottom: 0; }

/* Property cards */
.property-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.search-bar {
  display: flex;
  gap: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 8px 8px 20px;
}

.search-bar input {
  flex: 1;
  border: 0;
  outline: none;
  min-height: 44px;
  background: transparent;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-row select,
.amenity-chip {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.85rem;
}

.amenity-chip {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.amenity-chip.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.property-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.property-media {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.property-card:hover .property-media img { transform: scale(1.07); }

.property-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(8,21,38,0.82);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
}

.property-body { padding: 22px; }

.property-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 10px;
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 18px;
}

.amenity-list span {
  font-size: 0.75rem;
  background: var(--fog);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--ocean);
}

/* Gallery */
.gallery-hero {
  border-radius: var(--radius);
  overflow: hidden;
  height: min(62vh, 560px);
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.thumbs button {
  border: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
}

.thumbs button.active,
.thumbs button:hover { opacity: 1; }

.thumbs img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 22, 0.92);
  display: none;
  place-items: center;
  z-index: 80;
}

.lightbox.open { display: grid; }

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.timeline-step {
  position: relative;
  padding: 0 0 32px 18px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(196,165,116,0.18);
}

.step-num {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

/* Founder */
.founder {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.founder-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  clip-path: inset(8% 8% 8% 8%);
  animation: none;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card {
  background: white;
  border: 1px solid var(--line);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  padding: 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
}

/* Login / dashboard */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}

.auth-visual {
  background: #081526 center/cover no-repeat;
  position: relative;
}

.auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,21,38,0.2), rgba(8,21,38,0.78));
}

.auth-panel {
  padding: 120px 56px 56px;
}

.login-card,
.dashboard-card,
.voucher {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 24px;
}

.kpi {
  background: var(--fog);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.kpi strong {
  display: block;
  font-size: 1.7rem;
  font-family: var(--font-display);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.qr-box {
  width: 168px;
  height: 168px;
  margin: 18px auto;
  border: 8px solid var(--navy);
  background:
    repeating-linear-gradient(90deg, #081526 0 8px, transparent 8px 16px),
    repeating-linear-gradient(#081526 0 8px, transparent 8px 16px);
  opacity: 0.85;
}

.voucher {
  text-align: center;
  max-width: 420px;
  margin: 24px auto 0;
}

.status-pill {
  display: inline-block;
  background: #e7f4ef;
  color: var(--teal-deep);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.78rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.emergency {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fff, #fbf6ec);
}

.hub-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hub-pin {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: white;
}

.page-hero {
  padding: 160px 0 64px;
  background: var(--navy);
  color: white;
}

.page-hero p { color: rgba(255,255,255,0.72); }

.reveal { opacity: 0; transform: translateY(24px); }

.filter-toggle { display: none; }

.sticky-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

#cost-comparison {
  scroll-margin-top: 96px;
}

.calc-lead {
  max-width: 720px;
  margin-bottom: 36px;
}

.calc-grid {
  display: grid;
  grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.calc-card,
.hotel-cost-card,
.plan-card,
.recommend-banner {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calc-card {
  padding: 32px;
  position: sticky;
  top: 96px;
}

.calc-card .form-field {
  margin-bottom: 20px;
}

.calc-card .form-field p {
  margin: 0 0 10px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.calc-card .form-field input,
.calc-card .form-field select {
  width: 100%;
}

.calc-sales-note {
  font-size: 0.86rem;
  line-height: 1.45;
  margin: -4px 0 16px;
}

.bhk-cost-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.calc-card .btn {
  width: 100%;
}

.addon-list {
  display: grid;
  gap: 10px;
  margin: 4px 0 22px;
}

.addon-list label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.4;
}

.addon-list input {
  margin-top: 3px;
  accent-color: var(--teal);
}

.calc-results {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.hotel-cost-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 28px;
  align-items: center;
  padding: 28px 32px;
}

.hotel-cost-card .eyebrow,
.hotel-cost-card h3,
.hotel-cost-card .formula,
.hotel-cost-card .formula-live {
  grid-column: 1;
}

.hotel-cost-card h3 { margin-bottom: 6px; }

.hotel-cost-copy p { margin-bottom: 0; }

.cost-stack {
  text-align: right;
}

.cost-figure {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--navy);
  margin: 0;
  line-height: 1;
}

.cost-period {
  margin: 8px 0 0;
  font-size: 0.85rem;
}

.formula,
.formula-live {
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pack-mix {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.pack-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--mist, #f4f1ea);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--navy);
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 24px;
  min-height: 100%;
}

.plan-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.plan-card .muted {
  min-height: 2.6em;
  margin-bottom: 8px;
}

.plan-card.is-recommended {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.recommend-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.plan-card dl {
  margin: 8px 0 16px;
}

.plan-card dl div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
}

.plan-card dt { color: var(--slate); }
.plan-card dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

.plan-result {
  margin-top: auto;
  padding-top: 12px;
  font-size: 0.9rem;
}

.plan-address {
  margin: 0 0 12px;
  font-size: 0.82rem;
  color: var(--slate);
}

.plan-card .btn {
  align-self: flex-start;
}

.calc-wait {
  min-height: 560px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
  background: linear-gradient(165deg, var(--navy) 0%, var(--ocean) 100%);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.calc-wait::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(196, 165, 116, 0.2);
  border-radius: 50%;
  right: -80px;
  bottom: -90px;
  pointer-events: none;
}

.calc-wait h3 {
  color: white;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 12px;
}

.calc-wait > p {
  color: rgba(255,255,255,0.78);
  max-width: 460px;
}

.calc-wait-founder {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  position: relative;
  z-index: 1;
}

.calc-wait-founder img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.calc-wait-founder strong {
  display: block;
  font-size: 1.05rem;
}

.calc-wait-founder span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.calc-wait-founder p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

.positive { color: var(--teal-deep); }
.warning { color: #9a5b22; }

.recommend-banner {
  padding: 28px 32px;
  background: var(--navy);
  color: white;
}

.recommend-banner h3 { margin-bottom: 8px; }
.recommend-banner p { color: rgba(255,255,255,0.78); margin: 0; }
.calc-error { color: #b4533a; padding: 16px; }

.feature-card .feature-icon svg {
  width: 22px;
  height: 22px;
}

.property-video {
  margin: 36px 0 8px;
}

.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}