/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #22C55E;
  --primary-dark: #16A34A;
  --primary-light: #86EFAC;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9FAFB;
  --bg-light: #F0FDF4;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --border: #E5E7EB;
  --error: #EF4444;
  --success: #22C55E;
  --dark-bg: #1F2937;
  --darker-bg: #111827;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform 0.2s;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}

.logo-image:hover {
  opacity: 0.85;
}

.logo-image-auth {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.sidebar-logo-image {
  height: 45px;
  width: auto;
  display: block;
  padding: 8px 0;
}

.logo-icon {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
  border-radius: 8px;
  color: white;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-text-rentify {
  color: #1F2937;
}

.logo-text-ng {
  color: #14B8A6;
}

/* Auth pages logo */
.logo-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 24px;
}

.logo-auth .logo-icon {
  font-size: 32px;
  width: 48px;
  height: 48px;
}

.logo-auth .logo-text {
  font-size: 28px;
}

/* Sidebar logo */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  transition: transform 0.2s;
}

.sidebar-logo:hover {
  transform: translateX(4px);
}

.logo-icon-sidebar {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
  border-radius: 10px;
  color: white;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.logo-text-sidebar {
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

/* User Dropdown Styles */
.user-dropdown {
  position: relative;
}

.user-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.user-dropdown-toggle:hover {
  background: var(--bg-secondary);
  border-color: var(--primary);
}

.user-dropdown-toggle svg {
  transition: transform 0.2s ease;
  color: var(--text-secondary);
}

.user-dropdown-toggle:hover svg {
  color: var(--primary);
}

.user-dropdown-menu.show .user-dropdown-toggle svg {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.user-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.user-dropdown-menu .dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--primary);
}

.user-dropdown-menu .dropdown-item svg {
  color: var(--text-secondary);
  flex-shrink: 0;
}

.user-dropdown-menu .dropdown-item:hover svg {
  color: var(--primary);
}

.user-dropdown-menu .dropdown-item:last-child {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 12px;
}

.user-name {
  font-weight: 500;
  color: var(--text-primary);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 14px;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

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

.btn-light:hover {
  background: var(--bg-secondary);
}

.btn-light-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-1px);
}

.btn-danger {
  background: #EF4444;
  color: white;
}

.btn-danger:hover {
  background: #DC2626;
  transform: translateY(-1px);
}

.btn-text {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 16px;
}

.btn-text:hover {
  color: var(--text-primary);
}

.btn-text-white {
  background: transparent;
  color: white;
  padding: 10px 16px;
}

.btn-text-white:hover {
  color: var(--primary-light);
}

.btn-large {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
  padding: 80px 0;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 56px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Hero Image Container */
.hero-image {
  position: relative;
  padding: 40px;
}

/* Floating Badge - New Property */
.floating-badge {
  position: absolute;
  background: white;
  border: 2px solid #E8F5E9;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.new-property-badge {
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
}

.badge-icon-large {
  font-size: 28px;
}

.badge-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.badge-subtitle {
  font-size: 12px;
  color: var(--text-secondary);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Dashboard Preview */
.dashboard-preview {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

.preview-icon {
  font-size: 24px;
}

.preview-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.stat-value.success {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.progress-bar {
  width: 120px;
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--primary);
  display: block;
}

.preview-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.preview-footer .preview-icon {
  font-size: 16px;
}

.preview-footer span:not(.preview-icon):not(.badge-success) {
  color: var(--text-secondary);
  font-weight: 500;
}

.badge-success {
  background: var(--bg-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 12px;
  font-weight: 600;
  margin-left: auto;
  font-size: 13px;
  border: 1px solid var(--primary-light);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Trust Section */
.trust {
  padding: 80px 0;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.trust .container {
  position: relative;
  z-index: 1;
}

.trust-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-subtitle {
  font-size: 18px;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

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

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px 32px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.stat-label {
  font-size: 16px;
  color: white;
  line-height: 1.5;
  font-weight: 500;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--primary);
  color: white;
  padding: 48px;
  border-radius: 16px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-header p {
  opacity: 0.9;
}

.pricing-price {
  text-align: center;
  margin-bottom: 32px;
  display: block;
  visibility: visible;
}

.currency {
  font-size: 32px;
  font-weight: 700;
  vertical-align: top;
  color: white;
}

.amount {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: white;
}

.period {
  font-size: 24px;
  opacity: 0.9;
  color: white;
}

.pricing-features {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  visibility: visible;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: white;
}

.feature-item span {
  color: white;
}

.check {
  color: white;
  font-weight: 700;
  font-size: 18px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #F3F4F6;
}

.testimonial-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 14px;
  color: #6B7280;
  margin: 0;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-rating .star {
  font-size: 18px;
  color: #FBBF24;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

@media (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (min-width: 769px) and (max-width: 968px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: var(--primary);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.footer-description {
  color: #cccccc;
  line-height: 1.8;
  font-size: 15px;
  max-width: 350px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 16px;
}

.footer-column ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 15px;
  display: inline-block;
}

.footer-column ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #999999;
  font-size: 14px;
}

/* Auth Pages */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  padding: 40px 20px;
}

.auth-card {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 480px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header .logo {
  display: inline-flex;
  margin-bottom: 24px;
}

.auth-header h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: 16px;
}

.auth-form {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.auth-footer {
  text-align: center;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Alerts */
.alert {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.alert-success {
  background: var(--bg-light);
  color: var(--primary-dark);
  border: 1px solid var(--primary-light);
}

.alert-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

/* Loading States */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s linear infinite;
}

/* Payment Page */
.payment-details {
  margin-top: 32px;
}

.payment-plan {
  background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 2px solid #E5E7EB;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.payment-plan h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.payment-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.payment-price .currency {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
}

.payment-price .amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.payment-price .period {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary);
}

.payment-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-features li {
  padding: 12px 0;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #E5E7EB;
}

.payment-features li:last-child {
  border-bottom: none;
}

.payment-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.payment-info {
  text-align: center;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

.payment-info p {
  margin: 8px 0;
}

.pricing-info {
  background: var(--bg-light);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--primary-light);
  margin-bottom: 20px;
}

.pricing-info-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--primary-dark);
}

.pricing-icon {
  font-size: 20px;
}

.pricing-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Dashboard */
.dashboard-container {
  min-height: calc(100vh - 140px);
  background: var(--bg-secondary);
  padding: 28px 0;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-header h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.dashboard-header p {
  color: var(--text-secondary);
}

.dashboard-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-add-property {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: #22c55e;
  color: white;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.2), 0 2px 4px -1px rgba(34, 197, 94, 0.1);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-add-property svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.btn-add-property:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 6px 8px -1px rgba(34, 197, 94, 0.25), 0 4px 6px -1px rgba(34, 197, 94, 0.15);
}

.btn-add-property:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px -1px rgba(34, 197, 94, 0.2);
}

.subscription-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 12px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status-active {
  color: var(--success);
  font-weight: 600;
}

.expires {
  color: var(--text-secondary);
  font-size: 14px;
}

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

.stat-card-compact {
  background: white;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.stat-icon-compact {
  font-size: 28px;
  line-height: 1;
}

.stat-content-compact {
  flex: 1;
}

.stat-label-compact {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-weight: 500;
}

.stat-value-compact {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 2px;
}

.stat-change-compact {
  font-size: 11px;
  color: #6B7280;
}

/* Dashboard Grid Layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 20px;
  margin-bottom: 24px;
}

.dashboard-col-left,
.dashboard-col-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Compact Section */
.dashboard-section-compact {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.section-title-compact {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

/* Compact Quick Actions */
.quick-actions-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.action-card-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #F9FAFB;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid #E5E7EB;
}

.action-card-compact:hover {
  background: #F3F4F6;
  border-color: var(--primary);
  transform: translateX(2px);
}

.action-icon-compact {
  font-size: 24px;
  line-height: 1;
}

.action-content-compact h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.action-content-compact p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 0;
}

/* Recent Activity Compact */
.activity-list-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-item-compact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #F9FAFB;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
}

.activity-item-compact.empty {
  background: #FEF3C7;
  border-color: #FDE047;
}

.activity-icon-compact {
  font-size: 20px;
  line-height: 1;
}

.activity-text-compact {
  font-size: 13px;
  color: var(--text-primary);
}

.activity-text-compact strong {
  font-weight: 700;
  color: var(--primary);
}

/* Quick Links Compact */
.quick-links-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #F9FAFB;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid #E5E7EB;
}

.quick-link-item:hover {
  background: white;
  border-color: var(--primary);
  transform: translateX(4px);
}

.quick-link-icon-compact {
  font-size: 20px;
  line-height: 1;
}

.quick-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.quick-link-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.quick-link-text span {
  font-size: 11px;
  color: var(--text-secondary);
}

/* System Status Compact */
.status-list-compact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status-item-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #F9FAFB;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
}

.status-label {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}

.status-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.status-badge.active {
  background: #D1FAE5;
  color: #065F46;
}

/* Legacy Stats Grid (keep for backwards compatibility) */
.stats-grid-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card-dashboard {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 16px;
}

.stat-icon {
  font-size: 32px;
}

.stat-content {
  flex: 1;
}

.stat-content .stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.stat-content .stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-change {
  font-size: 12px;
  color: var(--text-light);
}

.stat-change.positive {
  color: var(--success);
}

.dashboard-section {
  margin-bottom: 40px;
}

.dashboard-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.action-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.action-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.action-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.action-card p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.activity-card {
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.empty-state {
  text-align: center;
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.empty-state p {
  color: var(--text-secondary);
}

.dashboard-footer {
  background: white;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
}

.subscription-info {
  text-align: center;
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: 8px;
  margin-bottom: 24px;
}

.info-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.subscription-info p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.error-icon {
  text-align: center;
  font-size: 64px;
  margin: 24px 0;
}

/* Quick Links Grid */
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-link-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.quick-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-link-icon {
  font-size: 32px;
}

.quick-link-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.quick-link-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* Data Tables */
.data-table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.data-table table {
  width: 100%;
  border-collapse: collapse;
}

.data-table thead {
  background: var(--bg-secondary);
}

.data-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.data-table td {
  padding: 16px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 14px;
}

.data-table tr:hover {
  background: var(--bg-secondary);
}

.table-actions {
  display: flex;
  gap: 8px;
}

.btn-small {
  padding: 6px 12px;
  font-size: 12px;
}

.badge-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.badge-vacant {
  background: #FEF3C7;
  color: #92400E;
}

.badge-occupied {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.badge-maintenance {
  background: #FEE2E2;
  color: #991B1B;
}

.badge-active {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.badge-inactive {
  background: var(--bg-secondary);
  color: var(--text-light);
}

.badge-paid {
  background: var(--bg-light);
  color: var(--primary-dark);
}

.badge-pending {
  background: #FEF3C7;
  color: #92400E;
}

.badge-overdue {
  background: #FEE2E2;
  color: #991B1B;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.form-group textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
  background: white;
}

.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.page-actions {
  display: flex;
  gap: 12px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.detail-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.detail-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 36px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .pricing-features {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
  }

  .stats-grid-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dashboard-col-right {
    order: -1;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .quick-actions-compact {
    grid-template-columns: 1fr;
  }

  .quick-links-grid {
    grid-template-columns: 1fr;
  }

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

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

  .data-table {
    overflow-x: auto;
  }
  
  .dashboard-header {
    flex-direction: column;
    gap: 16px;
  }
  
  .dashboard-header-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-add-property {
    width: 100%;
    justify-content: center;
  }
}


