/* style.css - Custom Branding & Styles for LV Property */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Brand Root Variables */
:root {
  --brand-navy: #0b1c3f;
  --brand-navy-dark: #050e21;
  --brand-gold: #e5a93c;
  --brand-gold-light: rgba(229, 169, 60, 0.15);
  --brand-orange: #d97706;
  --brand-gray: #f8f9fa;
  --brand-text-dark: #1f2937;
  --brand-text-muted: #6b7280;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --emerald-light: rgba(16, 185, 129, 0.08);
  --blue-light: rgba(59, 130, 246, 0.08);
  --purple-light: rgba(139, 92, 246, 0.08);
  --orange-light: rgba(249, 115, 22, 0.08);
}

/* Base resets & typography */
body {
  font-family: var(--font-sans);
  color: var(--brand-text-dark);
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
}

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

.text-navy {
  color: var(--brand-navy) !important;
}

.bg-brand-navy {
  background-color: var(--brand-navy) !important;
}

.bg-brand-navy-dark {
  background-color: var(--brand-navy-dark) !important;
}

.bg-brand-gray {
  background-color: var(--brand-gray) !important;
}

/* Custom Typography Accents */
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
}

/* Sticky Header Customization */
.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

/* Buttons */
.btn-gold {
  background-color: var(--brand-gold);
  color: var(--brand-navy-dark) !important;
  font-weight: 600;
  border: 1px solid var(--brand-gold);
  border-radius: 4px;
  padding: 11px 26px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-gold:hover {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(217, 119, 6, 0.25);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff !important;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 11px 26px;
  transition: all 0.25s ease;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--brand-navy-dark) !important;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

.btn-outline-dark {
  color: var(--brand-navy) !important;
  border: 1px solid rgba(11, 28, 63, 0.2);
  background-color: transparent;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 18px;
  transition: all 0.25s ease;
}

.btn-outline-dark:hover {
  background-color: var(--brand-navy);
  color: #ffffff !important;
  border-color: var(--brand-navy);
  transform: translateY(-1px);
}

/* Text links */
.link-gold-underline {
  color: var(--brand-navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--brand-navy);
  padding-bottom: 2px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.link-gold-underline:hover {
  color: var(--brand-gold);
  border-bottom-color: var(--brand-gold);
  padding-left: 4px;
}

/* Landlord Service Rows (Large Cards) */
.service-row-card {
  background-color: #ffffff;
  border: 1px solid rgba(11, 28, 63, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.service-row-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 169, 60, 0.4);
  box-shadow: 0 12px 30px rgba(11, 28, 63, 0.06);
}

.service-row-left {
  padding: 40px;
  background-color: #ffffff;
}

.service-row-right {
  padding: 40px;
  background-color: #fafbfc;
  border-left: 1px solid rgba(11, 28, 63, 0.04);
}

@media (max-width: 991.98px) {
  .service-row-right {
    border-left: 0;
    border-top: 1px solid rgba(11, 28, 63, 0.06);
    padding: 30px 40px;
  }
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.service-row-card:hover .service-icon-box {
  transform: scale(1.08);
}

/* Feature bullet items list */
.feature-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 575.98px) {
  .feature-bullet-list {
    grid-template-columns: 1fr;
  }
}

.feature-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--brand-text-dark);
}

.feature-bullet-item i {
  color: #10b981;
  font-size: 15px;
}

/* Value Cards (Grid level cards) */
.value-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 30px 24px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 169, 60, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.value-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 20px;
}

/* Interactive Dashboard Mockup Styling */
.dashboard-frame {
  background-color: #1e293b;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-window {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}

.dashboard-header {
  background-color: var(--brand-navy);
  color: #ffffff;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-nav-item {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.dashboard-nav-item.active {
  opacity: 1;
  color: var(--brand-gold);
}

.dashboard-body {
  padding: 20px;
  background-color: #f8fafc;
}

.dash-stat-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px 16px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
  transition: transform 0.2s;
}

.dash-stat-card:hover {
  transform: translateY(-2px);
}

.dash-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Property cards */
.property-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.property-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.property-card:hover .property-img-container img {
  transform: scale(1.05);
}

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 2px;
  color: #ffffff;
}

.property-badge.managed {
  background-color: #10b981;
}

.property-badge.featured {
  background-color: var(--brand-gold);
  color: var(--brand-navy-dark);
}

.property-price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Value Props grid styling */
.val-prop-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.val-prop-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: rgba(11, 28, 63, 0.04);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.val-prop-item:hover .val-prop-icon {
  background-color: var(--brand-gold);
  color: var(--brand-navy);
}

/* Custom Accordion FAQ */
.faq-accordion-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid rgba(11, 28, 63, 0.08);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(229, 169, 60, 0.3);
  box-shadow: 0 4px 12px rgba(11, 28, 63, 0.02);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 15.5px;
  cursor: pointer;
}

.faq-icon {
  font-size: 18px;
  color: var(--brand-gold);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #fafbfc;
}

.faq-content-inner {
  padding: 0 24px 20px;
  color: var(--brand-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(229, 169, 60, 0.5);
  box-shadow: 0 6px 15px rgba(11, 28, 63, 0.03);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-content {
  max-height: 200px; /* high enough for typical paragraphs */
}

/* Testimonial card */
.testimonial-card {
  background-color: rgba(248, 249, 250, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background-color: #ffffff;
  border-color: rgba(229, 169, 60, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--brand-navy);
  color: var(--brand-gold);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom modal */
.custom-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background-color: rgba(5, 14, 33, 0.7);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.custom-modal-content {
  background-color: #ffffff;
  border-radius: 8px;
  max-width: 480px;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ==========================================
   Consolidated Page Styles
   ========================================== */

/* Login & Register Page Styles */
.auth-page-body {
  background-color: #f8fafc;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.login-container,
.register-container {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.logo-box {
  width: 48px;
  height: 48px;
  background-color: var(--brand-navy);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 12px rgba(11, 28, 63, 0.15);
}

.login-card,
.register-card {
  background: #ffffff;
  border: 1px solid rgba(11, 28, 63, 0.06);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(11, 28, 63, 0.03);
  padding: 36px;
}

.btn-google {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-weight: 500;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.btn-google:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #1e293b;
}

.divider-container {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
}

.divider-container::before,
.divider-container::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider-text {
  padding: 0 12px;
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.form-control-custom {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 11px 16px 11px 44px;
  font-size: 14px;
  color: var(--brand-text-dark);
  transition: all 0.2s ease;
  background-color: #ffffff;
  width: 100%;
}

.form-control-custom:focus {
  border-color: var(--brand-gold);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(229, 169, 60, 0.15);
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
}

.btn-login-submit,
.btn-register-submit {
  background-color: var(--brand-navy);
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 8px;
  width: 100%;
  border: none;
  transition: all 0.2s ease;
}

.btn-login-submit:hover,
.btn-register-submit:hover {
  background-color: var(--brand-navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 28, 63, 0.15);
}

.btn-login-submit:active,
.btn-register-submit:active {
  transform: translateY(0);
}

.back-to-home {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--brand-text-muted);
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.back-to-home:hover {
  color: var(--brand-navy);
}

/* Common form and page utility styles */
.text-danger-custom {
  color: #ef4444;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

/* Valuation Page Styles */
.valuation-container {
  max-width: 1050px;
  margin: 0 auto;
}

.valuation-header {
  text-align: center;
  margin-bottom: 40px;
}

.valuation-card {
  background: #ffffff;
  border: 1px solid rgba(11, 28, 63, 0.08);
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(11, 28, 63, 0.02);
  padding: 48px;
}

.form-label-valuation {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.form-control-valuation {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--brand-text-dark);
  transition: all 0.2s ease;
  width: 100%;
}

.form-control-valuation::placeholder {
  color: #94a3b8;
}

.form-control-valuation:focus {
  background-color: #ffffff;
  border-color: var(--brand-navy);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(11, 28, 63, 0.08);
}

.btn-valuation-submit {
  background-color: var(--brand-navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 4px;
  width: 100%;
  border: none;
  transition: all 0.2s ease;
}

.btn-valuation-submit:hover {
  background-color: var(--brand-navy-dark);
  box-shadow: 0 4px 15px rgba(11, 28, 63, 0.2);
}

.form-check-label-valuation {
  font-size: 11px;
  color: #64748b;
  cursor: pointer;
  user-select: none;
}

.form-check-input-valuation {
  border-radius: 3px;
  border: 1px solid #cbd5e1;
  cursor: pointer;
}

.form-check-input-valuation:checked {
  background-color: var(--brand-navy);
  border-color: var(--brand-navy);
}

/* Repair & Maintenance Desk Styles */
.maintenance-container {
  max-width: 1050px;
  margin: 0 auto;
}

.maintenance-header {
  text-align: center;
  margin-bottom: 40px;
}

.maintenance-card {
  background: #ffffff;
  border: 1px solid rgba(11, 28, 63, 0.08);
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(11, 28, 63, 0.02);
  padding: 48px;
}

.form-label-maintenance {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.form-control-maintenance {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--brand-text-dark);
  transition: all 0.2s ease;
  width: 100%;
}

.form-control-maintenance::placeholder {
  color: #94a3b8;
}

.form-control-maintenance:focus {
  background-color: #ffffff;
  border-color: var(--brand-navy);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(11, 28, 63, 0.08);
}

.btn-maintenance-submit {
  background-color: var(--brand-navy);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 4px;
  width: 100%;
  border: none;
  transition: all 0.2s ease;
}

.btn-maintenance-submit:hover {
  background-color: var(--brand-navy-dark);
  box-shadow: 0 4px 15px rgba(11, 28, 63, 0.2);
}

.emergency-warning-box {
  background-color: #050e21;
  border-left: 4px solid var(--brand-gold);
  padding: 20px;
  border-radius: 4px;
  color: #ffffff;
}

.emergency-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand-gold);
  text-transform: uppercase;
}

.emergency-desc {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.6;
}

.btn-simulate-file {
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-simulate-file:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
}

.file-preview-card {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 4px;
  padding: 12px;
  margin-top: 12px;
  display: none;
  align-items: center;
  gap: 16px;
}

