/* =============================================
   VACAV LLC — Real Estate Investment
   Color Palette: Charcoal + Ivory + Champagne
   ============================================= */

:root {
  --purple-dark:   #151515;
  --purple:        #2F3437;
  --purple-light:  #6F7477;
  --gold:          #BFA46A;
  --gold-light:    #D9C28B;
  --gold-dark:     #8F7442;
  --white:         #FFFFFF;
  --off-white:     #F7F6F2;
  --gray-light:    #E8E4DA;
  --gray:          #777;
  --text-dark:     #171717;
  --text-mid:      #55514A;
  --shadow:        rgba(21, 21, 21, 0.12);
  --shadow-gold:   rgba(191, 164, 106, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

body.gate-locked {
  overflow: hidden;
}

.site-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #111, #2F3437);
}

.site-gate-card {
  width: min(440px, 100%);
  background: var(--white);
  border: 1px solid rgba(191, 164, 106, 0.35);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  padding: 2rem;
  text-align: center;
}

.site-gate-card .logo-icon {
  margin: 0 auto 1.25rem;
}

.site-gate-card h1 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.site-gate-form {
  margin-top: 1.5rem;
  text-align: left;
}

.site-gate-form .btn {
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

.site-gate-error {
  display: block;
  color: #9f1d1d;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  min-height: 1.3rem;
  margin-top: 0.75rem;
  text-align: center;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

h2 {
  font-size: 2rem;
  color: var(--purple-dark);
}

h3 {
  font-size: 1.35rem;
  color: var(--purple);
}

p {
  color: var(--text-mid);
  font-size: 1rem;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Utility ── */
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.gold-text {
  color: var(--gold);
}

.purple-text {
  color: var(--purple);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

[data-public-price] {
  display: none !important;
}

.show-public-pricing [data-public-price] {
  display: inline !important;
}

.show-public-pricing div[data-public-price],
.show-public-pricing td[data-public-price] {
  display: block !important;
}

.show-public-pricing td[data-public-price] {
  display: table-cell !important;
}

.show-public-pricing [data-price-fallback] {
  display: none !important;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-light);
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  letter-spacing: 0.5px;
}

.btn-gold {
  background: var(--gold);
  color: var(--purple-dark);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--purple-dark);
  transform: translateY(-2px);
}

.btn-purple {
  background: var(--purple);
  color: var(--white);
}

.btn-purple:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow);
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(21, 21, 21, 0.96);
  backdrop-filter: blur(10px);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--purple-dark);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.nav-apply-btn {
  background: var(--gold) !important;
  color: var(--purple-dark) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.2rem !important;
}

.nav-apply-btn:hover {
  background: var(--gold-light) !important;
  color: var(--purple-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ══════════════════════════════════════════
   HERO — HOMEPAGE
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #111 0%, #2F3437 54%, #5C5750 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(138,92,196,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text .badge {
  display: inline-block;
  background: rgba(191,164,106,0.12);
  border: 1px solid rgba(191,164,106,0.42);
  color: var(--gold);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-text h1 span {
  color: var(--gold);
}

.hero-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 460px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Property Card */
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(191,164,106,0.28);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.hero-card-img {
  background:
    linear-gradient(160deg, rgba(61,26,110,0.18), rgba(61,26,110,0.08)),
    url("../images/vacav-hero-property.png") center / cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.hero-card-body {
  padding: 1.5rem;
}

.hero-card-tag {
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.hero-card-body h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.hero-card-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}

.hero-card-footer {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-footer .price {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
}

.hero-card-footer .price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, #2F3437 0%, #151515 100%);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
}

.about-visual-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.about-visual h3 {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about-visual p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  background: rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  color: var(--gold);
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  box-shadow: 0 4px 24px var(--shadow);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 1.75rem;
  background: var(--gold);
  color: var(--purple-dark);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px var(--shadow-gold);
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.step-card h3 {
  margin-bottom: 0.75rem;
}

/* ══════════════════════════════════════════
   FEATURED PROPERTY (Homepage)
══════════════════════════════════════════ */
.featured-section {
  text-align: center;
}

.featured-section > .container > p {
  max-width: 560px;
  margin: 1rem auto 3rem;
  font-size: 1.05rem;
}

.featured-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-card-img {
  background:
    linear-gradient(135deg, rgba(61,26,110,0.18), rgba(61,26,110,0.35)),
    url("../images/vacav-hero-property.png") center / cover;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 2rem;
  gap: 0.75rem;
}

.featured-card-img .big-icon {
  font-size: 5rem;
}

.featured-card-img p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  text-align: center;
}

.featured-card-content {
  padding: 2.5rem 2rem;
}

.featured-card-content .tag {
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.featured-card-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.featured-card-content .address {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.property-details {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 0.15rem;
}

.detail-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-dark);
}

.room-types {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.room-type-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background: var(--off-white);
  border-radius: 6px;
  font-size: 0.9rem;
}

.room-price {
  font-weight: 700;
  color: var(--purple);
}

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #111, #2F3437);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
}

.cta-band h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-band .btn-gold {
  margin-right: 1rem;
}

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #111 0%, #2F3437 100%);
  padding: 7rem 1.5rem 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   LISTINGS PAGE
══════════════════════════════════════════ */
.listings-filters {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 2px solid var(--gray-light);
  background: white;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--purple);
  background: var(--purple);
  color: white;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

.listing-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--gray-light);
}

.listing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow);
}

.listing-img {
  background:
    linear-gradient(135deg, rgba(61,26,110,0.18), rgba(61,26,110,0.35)),
    url("../images/vacav-hero-property.png") center / cover;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.listing-img .icon {
  font-size: 4rem;
  opacity: 0;
}

.listing-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-available {
  background: #22c55e;
  color: white;
}

.status-limited {
  background: var(--gold);
  color: var(--purple-dark);
}

.status-filled {
  background: #888;
  color: white;
}

.listing-body {
  padding: 1.5rem;
}

.listing-type-tag {
  background: var(--off-white);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  border: 1px solid rgba(92,45,145,0.15);
}

.listing-body h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.listing-address {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.listing-features {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.listing-feature {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.listing-price-row {
  border-top: 1px solid var(--gray-light);
  padding-top: 1rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.show-public-pricing .listing-price-row {
  justify-content: space-between;
}

.listing-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--purple-dark);
}

.listing-price span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--gray);
}

/* Room detail listing */
.room-listings-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}

.room-listings-table thead {
  background: var(--purple);
  color: white;
}

.room-listings-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.room-listings-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.93rem;
  color: var(--text-mid);
}

.room-listings-table tr:nth-child(even) td {
  background: var(--off-white);
}

.room-listings-table .price-cell {
  font-weight: 700;
  color: var(--purple-dark);
}

/* ══════════════════════════════════════════
   APPLICATION FORM
══════════════════════════════════════════ */
.form-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0;
}

.form-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 40px var(--shadow);
  overflow: hidden;
}

.form-header {
  background: linear-gradient(135deg, #111, #2F3437);
  padding: 2rem 2.5rem;
  color: white;
}

.form-header h2 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.form-header p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.form-body {
  padding: 2.5rem;
}

.form-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gray-light);
  display: block;
}

.form-section-title:first-child {
  margin-top: 0;
}

.selected-listing {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
}

.selected-listing span,
.selected-listing strong {
  display: block;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.selected-listing span {
  color: var(--gray);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.selected-listing strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

label .required {
  color: #e74c3c;
  margin-left: 2px;
}

input,
select,
textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(92,45,145,0.1);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

select {
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--purple);
}

.checkbox-group label {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
}

.form-disclaimer {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 1.25rem;
  font-size: 0.83rem;
  color: var(--text-mid);
  margin: 1.5rem 0;
  line-height: 1.6;
  border-left: 3px solid var(--gold);
}

.form-submit-row {
  text-align: center;
  margin-top: 1.5rem;
}

.form-submit-row .btn {
  padding: 1rem 3rem;
  font-size: 1rem;
}

/* Form success message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2.5rem;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--purple-dark);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-mid);
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
}

.contact-info-card {
  background: linear-gradient(135deg, #111, #2F3437);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  color: white;
}

.contact-info-card h3 {
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-item-text p {
  color: rgba(255,255,255,0.85);
  font-size: 0.93rem;
  line-height: 1.5;
}

/* Contact Form Panel */
.payment-section {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px var(--shadow);
}

.payment-header {
  background: var(--gold);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.payment-header h2 {
  color: var(--purple-dark);
  font-size: 1.4rem;
}

.payment-header .pay-icon {
  font-size: 2rem;
}

.payment-body {
  padding: 2rem;
}

.payment-method {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}

.payment-method:hover {
  border-color: var(--purple-light);
}

.payment-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.zelle-icon {
  background: #6D1ED4;
  color: white;
}

.cash-icon {
  background: #22c55e;
  color: white;
}

.payment-method-info h4 {
  color: var(--purple-dark);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.payment-method-info p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

.payment-method-info .pay-note {
  margin-top: 0.5rem;
  font-size: 0.83rem;
  color: var(--purple);
  font-style: italic;
}

.payment-note {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   TENANT PORTAL
══════════════════════════════════════════ */
.portal-shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.portal-gate {
  display: grid;
  place-items: center;
}

.portal-lock-card {
  width: min(520px, 100%);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  box-shadow: 0 8px 32px var(--shadow);
  padding: 2rem;
  text-align: center;
}

.portal-lock-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple-dark);
  color: var(--gold);
  margin: 0 auto 1rem;
  font-size: 1.45rem;
}

.portal-login-form {
  margin-top: 1.5rem;
  text-align: left;
}

.portal-login-form .btn {
  width: 100%;
  text-align: center;
}

.portal-security-note {
  margin-top: 1rem;
  font-size: 0.83rem;
}

.portal-sidebar,
.portal-main,
.portal-note {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  box-shadow: 0 8px 32px var(--shadow);
}

.portal-sidebar {
  padding: 1.25rem;
  position: sticky;
  top: 92px;
}

.portal-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 1rem;
}

.portal-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--purple-dark);
  color: var(--gold);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 800;
}

.portal-profile h3 {
  color: var(--text-dark);
  font-size: 1rem;
}

.portal-profile p {
  font-size: 0.82rem;
}

.portal-link {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
  color: var(--text-mid);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  transition: all 0.2s;
}

.portal-link:hover,
.portal-link.active {
  background: var(--off-white);
  color: var(--text-dark);
}

.portal-main {
  padding: 2rem;
}

.portal-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.portal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.portal-metric,
.portal-panel {
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  background: #fff;
}

.portal-metric {
  padding: 1.25rem;
}

.portal-metric span,
.portal-metric small {
  display: block;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.portal-metric span {
  color: var(--gray);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.portal-metric strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.65rem;
}

.portal-metric small {
  color: var(--text-mid);
  margin-top: 0.35rem;
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.portal-panel {
  padding: 1.25rem;
}

.portal-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.portal-panel h3 {
  color: var(--text-dark);
}

.portal-status {
  background: var(--off-white);
  color: var(--gold-dark);
  border: 1px solid var(--gray-light);
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.portal-list {
  list-style: none;
  margin-top: 1rem;
  border-top: 1px solid var(--gray-light);
}

.portal-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-mid);
}

.portal-list strong {
  color: var(--text-dark);
  white-space: nowrap;
}

.secure-code-box {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.secure-code-box h4 {
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.secure-code-box .btn {
  margin-top: 0.75rem;
}

.payment-code-display {
  display: none;
  margin-top: 0.9rem;
  padding: 0.9rem;
  border-radius: 6px;
  background: var(--white);
  border: 1px dashed var(--gold-dark);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.payment-code-display.show {
  display: block;
}

.payment-code-display strong,
.payment-code-display span {
  display: block;
}

.payment-code-display strong {
  color: var(--text-dark);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.payment-code-display span {
  color: var(--text-mid);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.portal-note {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
}

.portal-note h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.platform-grid div {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  padding: 1rem;
}

.platform-grid strong,
.platform-grid span {
  display: block;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.platform-grid strong {
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.platform-grid span {
  color: var(--text-mid);
  font-size: 0.9rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}

.footer-brand .logo-name {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  display: block;
  color: white;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .portal-shell {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: static;
  }

  .portal-metrics,
  .portal-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  h2 {
    font-size: 1.6rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--purple-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
    border-radius: 6px;
  }

  .nav-toggle {
    display: flex;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .portal-topline {
    align-items: stretch;
    flex-direction: column;
  }
}
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
