/* ========================
   Contact Page - New UI
   ======================== */

.contact-new-section {
  padding: 80px 0;
  background: #f7f8fc;
  min-height: 100vh;
}

/* ---------- Left Column ---------- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Location card (full width) */
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s;
}
.contact-card:hover {
  box-shadow: 0 6px 28px rgba(236, 72, 153, 0.13);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fce4f0 0%, #ffc2de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  color: #e91c7a;
}

.contact-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 14px;
  color: #d63384;
  line-height: 1.8;
  text-decoration: none;
}

.contact-card a:hover {
  color: #b5005e;
}

/* Two smaller cards side by side */
.contact-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Pink promo banner */
.contact-promo-card {
  border-radius: 16px;
  padding: 30px 26px;
  background: linear-gradient(135deg, #f72585 0%, #ff6eb4 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.contact-promo-card::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-promo-card::before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-promo-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.contact-promo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-promo-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 500;
}

.contact-promo-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

/* ---------- Right Column – Form ---------- */
.contact-form-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact-form-card .form-heading {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-card .form-heading::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f72585, #ff6eb4);
  border-radius: 2px;
  margin-left: 4px;
}

.contact-form-card .form-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.contact-form-card .form-group-new {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.contact-form-card label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.contact-form-card .input-icon-wrap {
  position: relative;
}

.contact-form-card .input-icon-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 14px;
}

.contact-form-card .input-icon-wrap textarea ~ i {
  top: 16px;
  transform: none;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1.5px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
  font-family: inherit;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #f72585;
  box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.08);
  background: #fff;
}

.contact-form-card textarea {
  resize: none;
  height: 120px;
  padding-top: 14px;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #f72585, #ff6eb4);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    opacity 0.25s,
    transform 0.2s;
  margin-top: 4px;
}

.contact-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.contact-submit-btn i {
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .contact-new-section {
    padding: 50px 0;
  }
  .contact-form-card {
    padding: 28px 22px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .contact-cards-row {
    grid-template-columns: 1fr;
  }
  .contact-form-card .form-row-grid {
    grid-template-columns: 1fr;
  }
}
