/* Acumpara Property Listing - Clean Styles */

/* ===== PROPERTY GRID ===== */
.acu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.acu-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.acu-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.acu-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8, #d0d0d0);
}

.acu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acu-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.acu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: #0f172a;
  color: #fff;
}

.acu-card-body {
  padding: 16px;
}

.acu-price {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.acu-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.acu-card-body h3 a {
  color: #1e293b;
  text-decoration: none;
}

.acu-card-body h3 a:hover {
  color: #d4af37;
}

.acu-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 12px;
}

.acu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
  font-size: 13px;
  color: #64748b;
}

.acu-verified {
  color: #10b981;
  font-weight: 700;
  font-size: 12px;
}

/* ===== FORMS ===== */
.acu-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.acu-form-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.acu-row {
  margin-bottom: 16px;
}

.acu-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1e293b;
}

.acu-row input,
.acu-row select,
.acu-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  background: #f8fafc;
}

.acu-row input:focus,
.acu-row select:focus,
.acu-row textarea:focus {
  border-color: #d4af37;
  background: #fff;
  outline: none;
}

.acu-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.acu-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #1e293b;
  text-decoration: none;
  transition: all 0.2s;
}

.acu-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.acu-btn-primary {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

.acu-btn-primary:hover {
  background: #1e293b;
}

.acu-btn-accent {
  background: #d4af37;
  color: #fff;
  border-color: #d4af37;
}

.acu-btn-accent:hover {
  background: #b8941f;
}

/* ===== MESSAGES ===== */
.acu-msg {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.acu-msg-success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.acu-msg-error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== AD WATCH ===== */
.acu-ad-watch {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
}

.acu-ad-watch h2 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
}

.acu-ad-box {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 32px;
}

.acu-ad-placeholder {
  background: #0f172a;
  color: rgba(255,255,255,0.7);
  padding: 60px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.acu-ad-placeholder p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.acu-coupon-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
}

.acu-coupon-box code {
  font-size: 28px;
  font-weight: 800;
  background: rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px dashed rgba(255,255,255,0.3);
  display: inline-block;
  margin: 10px 0;
}

/* ===== DASHBOARD ===== */
.acu-dash {
  max-width: 800px;
  margin: 0 auto;
}

.acu-dash h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.acu-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.acu-stats > div {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.acu-stats strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}

.acu-stats span {
  font-size: 13px;
  color: #64748b;
}

.acu-prop-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 10px;
  background: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .acu-grid { grid-template-columns: 1fr; }
  .acu-2col { grid-template-columns: 1fr; }
  .acu-stats { grid-template-columns: 1fr; }
  .acu-form-wrap { padding: 20px; }
}
