/* ========== FOOTER POLISH ========== */
.site-footer {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a1a 100%);
  color: white;
  padding: 4rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-section-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-list-item {
  display: inline-block;
}

.footer-list-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.footer-list-link:hover {
  color: white;
  text-decoration: underline;
  color: var(--orange);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; }
}

.footer-copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-copy { text-align: left; }
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 0, 0.15);
  color: var(--orange);
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 122, 0, 0.3);
}

.footer-social-link:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}

/* ========== DASHBOARD POLISH ========== */
.dashboard-header {
  padding: 2rem 1.5rem;
  background: white;
  border-bottom: 1px solid var(--gray-100);
}

.dashboard-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.dashboard-subtitle {
  color: var(--gray-600);
  font-size: 1rem;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .dashboard-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.dashboard-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dashboard-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 93, 59, 0.1);
  color: var(--green);
  border-radius: 0.375rem;
  font-size: 1.25rem;
}

.dashboard-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.dashboard-card-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.dashboard-card-label {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.dashboard-stat-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.dashboard-stat-indicator.negative {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* ========== PROPERTY DASHBOARD POLISH ========== */
.property-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: white;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 2rem;
}

.property-dashboard-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gray-900);
}

.property-list-item {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  transition: all 0.3s ease;
}

.property-list-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.property-list-image {
  width: 120px;
  height: 120px;
  background: var(--gray-100);
  border-radius: 0.5rem;
  overflow: hidden;
}

.property-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-list-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.property-list-info p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.property-list-status {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.property-list-status.available {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.property-list-status.pending {
  background: rgba(245, 158, 11, 0.1);
  color: #92400e;
}

.property-list-status.rented {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.property-list-actions {
  display: flex;
  gap: 0.75rem;
}

.property-list-action-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--gray-200);
  background: white;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.property-list-action-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

/* ========== ACCOUNT SIDEBAR POLISH ========== */
.account-sidebar {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.account-sidebar-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.account-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.account-sidebar-links:last-child {
  margin-bottom: 0;
}

.account-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  min-height: 44px;
}

.account-sidebar-link:hover {
  background: rgba(11, 93, 59, 0.05);
  color: var(--green);
  transform: translateX(4px);
}

.account-sidebar-link.active {
  background: rgba(11, 93, 59, 0.1);
  color: var(--green);
  font-weight: 700;
}

.account-sidebar-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
