/* PBEL CITY — Logo Color Palette (Light Theme) */
:root {
  --black: #000000;
  --white: #ffffff;
  --cyan: #00ADEF;
  --blue: #0072BC;
  --dark-blue: #0054A6;
  --purple: #2E3192;
  --bg-page: #ffffff;
  --bg-section: #e9eff6;
  --bg-card: #ffffff;
  --text-primary: #111827;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --gradient-brand: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--purple) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.65) 100%);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 72px;
  --mobile-bar-h: 60px;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__title em {
  font-style: italic;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section__subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 24px;
}
.section__header {
  margin-bottom: 48px;
}
.section__header .section__title { margin-bottom: 8px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient-brand);
  color: var(--white);
  border: 1px solid transparent;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 173, 239, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn--lg { padding: 16px 36px; font-size: 0.9375rem; }
.btn--sm { padding: 8px 20px; font-size: 0.8125rem; }
.btn--full { width: 100%; }
.link-btn {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}
.link-btn:hover { color: var(--blue); }

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header--scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo img {
  height: 56px;
  width: auto;
  border-radius: 10px;
}
.header__nav {
  display: flex;
  gap: 32px;
}
.header__nav a {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
  position: relative;
}
.header__cta {
  font-size: 1rem;
}
.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-brand);
  transition: var(--transition);
}
.header__nav a:hover { color: var(--blue); }
.header__nav a:hover::after { width: 100%; }
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}
.header__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  padding-bottom: 40px;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  margin-top: -40px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hero__title em {
  font-style: italic;
  color: var(--cyan);
}
.hero__tagline {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero__actions .btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* About */
.about { background: var(--bg-section); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__desc {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.8;
}
.about__features { margin-bottom: 32px; }
.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.about__features .check {
  color: var(--cyan);
  font-weight: 700;
}
.about__rera {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-section);
  text-align: left;
  max-width: 100%;
}
.about__rera-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__rera-text strong {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.about__rera-text a {
  font-size: 0.8125rem;
  color: var(--blue);
  text-decoration: none;
}
.about__rera-text a:hover {
  text-decoration: underline;
}
.about__rera-qr {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 4px;
}
.about__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.about__media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 28px 0;
}
.about__img-main,
.about__img-secondary {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 173, 239, 0.2);
  min-height: 400px;
  width: 100%;
  will-change: transform;
}
.about__img-main {
  animation: aboutFloatLeft 5s ease-in-out infinite;
}
.about__img-secondary {
  animation: aboutFloatRight 5s ease-in-out infinite;
}
.about__img-main img,
.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

@keyframes aboutFloatLeft {
  0%, 100% { transform: translateY(-24px); }
  50% { transform: translateY(24px); }
}
@keyframes aboutFloatRight {
  0%, 100% { transform: translateY(24px); }
  50% { transform: translateY(-24px); }
}

@media (prefers-reduced-motion: reduce) {
  .about__img-main,
  .about__img-secondary {
    animation: none;
  }
}

/* Highlights */
.highlights { background: var(--bg-page); }
.highlights .section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.highlights__slider { position: relative; overflow: hidden; }
.highlights__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.highlight-card {
  flex: 0 0 calc(50% - 12px);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.highlight-card:hover {
  border-color: rgba(0, 173, 239, 0.3);
  transform: translateY(-4px);
}
.highlight-card__media {
  height: 240px;
  overflow: hidden;
}
.highlight-card__media img,
.highlight-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.highlight-card:hover .highlight-card__media img,
.highlight-card:hover .highlight-card__media video {
  transform: scale(1.05);
}
.highlight-card__body { padding: 24px; }
.highlight-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.highlight-card__body p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}
.highlights__cta { text-align: center; margin-top: 48px; }
.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}
.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--bg-card);
}
.slider-btn:hover {
  background: var(--gradient-brand);
  border-color: transparent;
}

/* Pricing */
.pricing { background: var(--bg-section); }
.pricing .section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.pricing__table-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}
.pricing__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.pricing__table th,
.pricing__table td {
  padding: 24px 20px;
  text-align: center;
  vertical-align: middle;
  font-size: 0.9375rem;
}
.pricing__table th {
  background: rgba(0, 173, 239, 0.08);
  color: var(--blue);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing__table td {
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
}
.pricing__table tr:hover td {
  background: rgba(0, 173, 239, 0.04);
}
.pricing__table th:nth-child(1),
.pricing__table td:nth-child(1) { width: 20%; }
.pricing__table th:nth-child(2),
.pricing__table td:nth-child(2) { width: 28%; }
.pricing__table th:nth-child(3),
.pricing__table td:nth-child(3) { width: 28%; }
.pricing__table th:nth-child(4),
.pricing__table td:nth-child(4) { width: 24%; }
.pricing__table td:last-child {
  white-space: nowrap;
}
.pricing__table .btn {
  margin: 0 auto;
}
.pricing__th-short { display: none; }
.pricing__th-full { display: inline; }

/* Floor Plan */
.floorplan { background: var(--bg-page); }
.floorplan__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.floorplan-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.floorplan-card:hover {
  border-color: rgba(0, 173, 239, 0.3);
  transform: translateY(-4px);
}
.floorplan-card__img {
  height: 220px;
  overflow: hidden;
  background: #b1b8bb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  cursor: pointer;
}
.floorplan-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.05;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.floorplan-card:hover .floorplan-card__img img {
  opacity: 0.1;
  transform: scale(1.12);
}
.floorplan-card__info {
  padding: 24px;
  text-align: center;
}
.floorplan-card__info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 4px;
}
.floorplan-card__info p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 16px;
}

/* Amenities */
.amenities { background: var(--bg-section); }
.amenities .section__header { text-align: center; }
.amenities .section__subtitle { margin: 0 auto 24px; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.amenity-card {
  text-align: center;
  transition: var(--transition);
}
.amenity-card--hidden { display: none; }
.amenities__grid.expanded .amenity-card--hidden { display: block; }
.amenity-card__img {
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-card);
}
.amenity-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.amenity-card:hover .amenity-card__img img { transform: scale(1.08); }
.amenity-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  padding: 0 4px;
}

/* Location */
.location { background: var(--bg-page); }
.location__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.location__tab {
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius);
  transition: var(--transition);
}
.location__tab:hover { color: var(--text-primary); }
.location__tab.active {
  background: var(--gradient-brand);
  color: var(--white);
}
.location__panel { display: none; }
.location__panel.active { display: block; }
.location__panel h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.location__panel > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.location__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.location__list li span { color: var(--text-secondary); }
.location__list li strong {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* Gallery */
.gallery { background: var(--bg-section); }
.gallery__tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.gallery__tab.active.btn--outline {
  background: var(--gradient-brand);
  color: var(--white);
  border-color: transparent;
}
.gallery__slider { position: relative; }
.gallery__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
}
.gallery__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.gallery__track:not(.is-active) {
  display: none;
}
.gallery__slide {
  flex: 0 0 100%;
  height: 500px;
  overflow: hidden;
}
.gallery__slide img,
.gallery__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery__counter {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: var(--text-muted);
}
.gallery__counter #galleryCurrent { color: var(--blue); font-weight: 700; }
.gallery__counter-sep { margin: 0 4px; }
.slider-controls--gallery {
  position: absolute;
  bottom: 24px;
  right: 24px;
  margin-top: 0;
}

/* Contact */
.contact { background: var(--bg-page); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__info > p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}
.contact__details { display: flex; flex-direction: column; gap: 24px; }
.contact__detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.contact__detail p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.6; }
.contact__detail a { color: var(--text-primary); transition: var(--transition); }
.contact__detail a:hover { color: var(--blue); }
.contact__form {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-section);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: var(--transition);
}
.form-group input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.12);
  background: var(--bg-page);
}
.form-group input::placeholder { color: var(--text-muted); }
.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  cursor: pointer;
}
.form-checkbox input {
  margin-top: 3px;
  accent-color: var(--cyan);
  flex-shrink: 0;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-error {
  color: #c62828;
  font-size: 0.8125rem;
  margin-bottom: 16px;
}
.form-error[hidden] {
  display: none;
}
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

/* Footer */
.footer {
  background: var(--white);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-primary);
}
.footer__logo { margin: 0 auto 16px; opacity: 1; display: block; }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.7;
}
.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.footer__privacy {
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer__privacy:hover { color: var(--blue); }

/* Float Button */
.float-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 173, 239, 0.4);
  transition: var(--transition);
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 173, 239, 0.5);
}

/* Mobile Bottom Bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  height: var(--mobile-bar-h);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.mobile-bar__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
}
.mobile-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 6px;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  border: none;
  background: none;
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.mobile-bar__item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-bar__item:active,
.mobile-bar__item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.mobile-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}
.mobile-bar__icon svg {
  width: 20px;
  height: 20px;
}
.mobile-bar__icon--call svg {
  color: var(--cyan);
}
.mobile-bar__icon--enquire svg {
  color: var(--white);
}
.mobile-bar__icon--whatsapp svg {
  width: 22px;
  height: 22px;
}
.mobile-bar__label {
  display: block;
}
.mobile-bar__label--stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 0.75rem;
  line-height: 1.15;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
}
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.modal__box {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 440px;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.modal.active .modal__box { transform: translateY(0); }
.modal__box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.modal__box > p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-bottom: 24px;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}
.modal__close:hover { color: var(--text-primary); background: var(--bg-section); }
.modal__box--success { text-align: center; }
.modal__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 16px;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .amenities__grid { grid-template-columns: repeat(4, 1fr); }
  .floorplan__grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-card { flex: 0 0 calc(100% - 0px); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .header__nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.125rem;
  }
  .header__burger { display: flex; }
  .header__cta { display: none; }
  .about__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { grid-template-columns: 1fr; }
  .floorplan__grid { grid-template-columns: 1fr; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .amenity-card__img { height: 160px; }
  .gallery__slide { height: 300px; }
  .hero__scroll { display: none; }
  .mobile-bar { display: block; }
  body { padding-bottom: var(--mobile-bar-h); }
  .float-btn { display: none; }
  .footer { padding-bottom: 24px; }
  .highlights .section__header { flex-direction: column; align-items: flex-start; }
  .pricing__table th,
  .pricing__table td {
    padding: 14px 10px;
    font-size: 0.8125rem;
    line-height: 1.4;
    word-break: break-word;
  }
  .pricing__table th {
    font-size: 0.6875rem;
    letter-spacing: 0.03em;
  }
  .pricing__table td:last-child {
    white-space: normal;
  }
  .pricing__table .btn {
    padding: 7px 12px;
    font-size: 0.6875rem;
  }
  .pricing__th-short { display: inline; }
  .pricing__th-full { display: none; }
}

@media (max-width: 480px) {
  .amenities__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .amenity-card__img { height: 130px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .contact__form { padding: 24px; }
  .pricing__table th,
  .pricing__table td {
    padding: 12px 6px;
    font-size: 0.75rem;
  }
  .pricing__table th {
    font-size: 0.625rem;
  }
  .pricing__table .btn {
    padding: 6px 8px;
    font-size: 0.625rem;
  }
}
