/* ============================================
   FREEZEAL — Contact Page Styles
   ============================================ */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* ── Contact Form ── */
.contact-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.contact-form-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.contact-form-card__subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

/* ── Contact Info ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.contact-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-ultra-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-item__label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.contact-info-item__value {
  font-size: var(--text-sm);
  color: var(--text-body);
  margin-bottom: 0;
}

.contact-info-item__value a {
  color: var(--primary);
  font-weight: 500;
}

/* ── Map Placeholder ── */
.map-placeholder {
  width: 100%;
  height: 250px;
  background: var(--bg-grey-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

/* ── Business Hours ── */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-light);
}

.hours-item:last-child {
  border-bottom: none;
}

.hours-item__day {
  font-weight: 500;
  color: var(--text-heading);
}

.hours-item__time {
  color: var(--text-muted);
}

/* ── WhatsApp CTA ── */
.whatsapp-cta {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  color: white;
  text-decoration: none;
  transition: all var(--transition-base);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-cta__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
}

.whatsapp-cta__subtitle {
  font-size: var(--text-sm);
  opacity: 0.85;
  margin-bottom: 0;
}

/* ── Form Success ── */
.form-success {
  text-align: center;
  padding: var(--space-3xl);
}

.form-success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #E8F5E9;
  color: #2E7D32;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.form-success__text {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

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