

  .status-section {
  /* background: #f4f9f6; */
  padding: 60px 15px;
  display: flex;
  justify-content: center;
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: auto;
}

@media (max-width: 992px) {
  .status-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .status-grid {
    grid-template-columns: 1fr;
  }
}
.status-card {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 30px;
}

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

.status-header h3 {
  font-size: 24px;
  color: #0f172b;
  font-weight: 600 !important;
}

/* Status badges */
.status-badge {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.pending { background: #ff9800; }
.confirmed { background: #4caf50; }
.completed { background: #2196f3; }
.cancelled { background: #f44336; }

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

.detail-item span {
  font-size: 13px;
  color: #777;
}

.detail-item p {
  margin: 4px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
}

.detail-item.full {
  grid-column: span 2;
}

.support-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.btn1 {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn1.call {
  background: #d4af37;
  color: #fff;
}

.btn1.call:hover {
  background: #5e5023;
}

.btn1.whatsapp {
  background: #25d366;
  color: #fff;
}

.btn1.whatsapp:hover {
  background: #1ebe5d;
}

/* Responsive */
@media (max-width: 480px) {
  .status-details {
    grid-template-columns: 1fr;
  }

  .detail-item.full {
    grid-column: span 1;
  }

  .support-actions {
    flex-direction: column;
  }
}

