/* ===== CONTACT PAGE ===== */

/* Contact Section */
.cp-contact {
  padding: 100px 60px;
  background: var(--white);
}

.cp-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* Info Column */
.cp-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cp-info-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 12px;
}

.cp-info-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey-mid);
}

/* Detail Items */
.cp-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cp-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cp-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.cp-detail-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.cp-detail-value {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--grey-dark);
  line-height: 1.6;
}

.cp-detail-value a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.cp-detail-value a:hover {
  color: var(--orange);
}

/* Email Department Groups */
.cp-email-groups {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}

.cp-email-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cp-email-group-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 4px;
}

.cp-email-group a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.7;
}

.cp-email-group a:hover {
  color: var(--orange);
}

/* Form Column */
.cp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Feedback */
.form-feedback {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0;
  display: none;
}

.form-feedback.success,
.form-feedback.error {
  display: block;
  padding: 14px 16px;
}

.form-feedback.success {
  background: #e8f5e9;
  color: #2e7d32;
}

.form-feedback.error {
  background: #fbe9e7;
  color: #c62828;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cp-contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .cp-contact {
    padding: 60px 24px;
  }

  .cp-contact-inner {
    gap: 40px;
  }

  .cp-map iframe {
    height: 300px;
  }
}
