/* ═══════════════════════════════════════════
   PROPERTY MANAGEMENT PAGE — property-management.css
   Requires: app.css loaded first
═══════════════════════════════════════════ */

/* ── HERO ── */
.lc-mgmt-hero {
  background: linear-gradient(160deg, #0F0720 0%, #1E1035 40%, #2D1B69 70%, #1a1040 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lc-mgmt-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.15) 0%, transparent 70%);
  pointer-events: none;
}
.lc-mgmt-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.lc-mgmt-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.3);
  color: #FBB978;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 20px;
}
.lc-mgmt-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F97316;
}
.lc-mgmt-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.lc-mgmt-hero h1 span {
  background: linear-gradient(135deg, #F97316, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lc-mgmt-hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 32px;
}
.lc-mgmt-hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.lc-mgmt-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316, #F59E0B);
  color: white;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(249,115,22,.35);
  transition: all 0.2s;
}
.lc-mgmt-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249,115,22,.45);
  color: white;
}
.lc-mgmt-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
  color: white;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.lc-mgmt-btn-ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.5);
  color: white;
}
.lc-mgmt-stats-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.lc-mgmt-stat {
  text-align: center;
  color: white;
}
.lc-mgmt-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lc-mgmt-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* ── SERVICES GRID ── */
.lc-mgmt-section {
  padding: 72px 0;
}
.lc-mgmt-section--gray {
  background: var(--soft);
}
.lc-mgmt-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.lc-mgmt-section-head {
  text-align: center;
  margin-bottom: 48px;
}
.lc-mgmt-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.2);
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.lc-mgmt-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  margin-bottom: 12px;
}
.lc-mgmt-section-head h2 span {
  background: linear-gradient(135deg, #F97316, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lc-mgmt-section-head p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}
.lc-mgmt-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.lc-mgmt-service-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 28px;
  transition: all 0.25s;
}
.lc-mgmt-service-card:hover {
  border-color: var(--brand);
  box-shadow: 0 12px 32px rgba(249,115,22,.1);
  transform: translateY(-3px);
}
.lc-mgmt-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F97316, #F59E0B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.lc-mgmt-service-card h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  margin-bottom: 8px;
}
.lc-mgmt-service-card > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.lc-mgmt-feature-list {
  list-style: none;
  margin-top: 16px;
  padding: 0;
}
.lc-mgmt-feature-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.lc-mgmt-feature-check {
  color: var(--green);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── PRICING ── */
.lc-mgmt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.lc-mgmt-pricing-card {
  background: white;
  border-radius: 20px;
  border: 2px solid var(--line);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
}
.lc-mgmt-pricing-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
}
.lc-mgmt-pricing-card--featured {
  border-color: var(--brand);
  box-shadow: 0 16px 48px rgba(249,115,22,.15);
}
.lc-mgmt-pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F97316, #F59E0B);
  color: white;
  padding: 5px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
}
.lc-mgmt-pricing-card h3 {
  font-size: 18px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  margin-bottom: 6px;
}
.lc-mgmt-pricing-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.lc-mgmt-pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  margin-bottom: 4px;
}
.lc-mgmt-pricing-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.lc-mgmt-pricing-features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
  padding: 0;
}
.lc-mgmt-pricing-features li {
  font-size: 13.5px;
  color: var(--ink);
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--soft);
}
.lc-mgmt-pricing-features li:last-child {
  border-bottom: none;
}
.lc-mgmt-pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #F59E0B);
  flex-shrink: 0;
  position: relative;
}
.lc-mgmt-pricing-features li::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg) translate(-13px, -1px);
}
.lc-mgmt-pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.lc-mgmt-pricing-btn--primary {
  background: linear-gradient(135deg, #F97316, #F59E0B);
  color: white;
  border: none;
  box-shadow: 0 8px 24px rgba(249,115,22,.3);
}
.lc-mgmt-pricing-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249,115,22,.4);
  color: white;
}
.lc-mgmt-pricing-btn--secondary {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.lc-mgmt-pricing-btn--secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

/* ── HOW IT WORKS ── */
.lc-mgmt-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.lc-mgmt-step {
  text-align: center;
  position: relative;
}
.lc-mgmt-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #F59E0B);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(249,115,22,.3);
}
.lc-mgmt-step h4 {
  font-size: 15px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  margin-bottom: 8px;
}
.lc-mgmt-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── ENQUIRY FORM SECTION ── */
.lc-mgmt-enquiry {
  background: linear-gradient(160deg, #0F0720 0%, #1E1035 60%, #2D1B69 100%);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.lc-mgmt-enquiry-left h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: white;
  margin-bottom: 14px;
}
.lc-mgmt-enquiry-left h2 span {
  background: linear-gradient(135deg, #F97316, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lc-mgmt-enquiry-left p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.lc-mgmt-enquiry-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lc-mgmt-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-decoration: none;
  transition: all 0.18s;
  width: fit-content;
}
.lc-mgmt-contact-btn--wa {
  background: #25D366;
  color: white;
}
.lc-mgmt-contact-btn--wa:hover {
  background: #1FAD56;
  color: white;
}
.lc-mgmt-contact-btn--call {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: white;
}
.lc-mgmt-contact-btn--call:hover {
  background: rgba(255,255,255,.18);
  color: white;
}
.lc-mgmt-form-card {
  background: white;
  border-radius: 18px;
  padding: 28px;
}
.lc-mgmt-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.lc-mgmt-form-group {
  margin-bottom: 14px;
}
.lc-mgmt-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lc-mgmt-form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: border-color 0.18s;
}
.lc-mgmt-form-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.lc-mgmt-service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.lc-mgmt-service-chip {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lc-mgmt-service-chip.lc-on {
  border-color: var(--brand);
  background: #FFF7ED;
  color: var(--brand);
}
.lc-mgmt-form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316, #F59E0B);
  color: white;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 8px 24px rgba(249,115,22,.3);
  transition: all 0.2s;
}
.lc-mgmt-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(249,115,22,.4);
}

/* ── FAQ ── */
.lc-mgmt-faq {
  max-width: 760px;
  margin: 0 auto;
}
.lc-mgmt-faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
.lc-mgmt-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
}
.lc-mgmt-faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
  color: var(--muted);
}
.lc-mgmt-faq-item.lc-open .lc-mgmt-faq-icon {
  background: #FFF7ED;
  color: var(--brand);
  transform: rotate(45deg);
}
.lc-mgmt-faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}
.lc-mgmt-faq-a.lc-open {
  display: block;
}

/* ── RESPONSIVE ── */
@media(max-width: 1024px) {
  .lc-mgmt-enquiry {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}
@media(max-width: 768px) {
  .lc-mgmt-hero { padding: 56px 0 48px; }
  .lc-mgmt-section { padding: 48px 0; }
  .lc-mgmt-stats-row { gap: 24px; }
  .lc-mgmt-form-row { grid-template-columns: 1fr; }
  .lc-mgmt-hero-btns { flex-direction: column; align-items: stretch; }
}
