/* ==============================
   CONTACT BANNER (CLEAN)
================================ */
.contact-banner {
  padding: clamp(80px, 10vw, 140px) 0 clamp(90px, 12vw, 160px);
  background: linear-gradient(180deg, #f3f6f7 0%, #eef2f4 100%);
  text-align: center;
}

/* Title */
.contact-banner h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

/* Soft underline accent */
.contact-banner h1::after {
  content: "";
  width: 48px;
  height: 4px;
  background: var(--primary-color);
  display: block;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Breadcrumb */
.contact-banner p {
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.contact-banner p a {
  color: var(--text-dark);
  font-weight: 500;
}

.contact-banner p a:hover {
  color: var(--primary-color);
}

/* Mobile refinement */
@media (max-width: 576px) {
  .contact-banner p {
    font-size: 14px;
  }

  .contact-banner h1::after {
    width: 36px;
    height: 3px;
  }
}

/* ==============================
   CONTACT INFO CARDS (REFINED)
================================ */
.contact-info-section {
  background: #fff3df;
  padding: clamp(70px, 9vw, 100px) 0;
}

/* Card */
.contact-card {
  height: 100%;
  padding: 42px 34px;
  border-radius: 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid rgba(138, 74, 161, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

/* Title */
.contact-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Text */
.contact-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Icon wrapper */
.contact-card .icon-box {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(138, 74, 161, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

/* Icon */
.contact-card .icon-box i {
  font-size: 26px;
  color: var(--primary-color);
}

/* Hover accent */
.contact-card:hover .icon-box {
  background: var(--primary-color);
}

.contact-card:hover .icon-box i {
  color: #ffffff;
}

/* ==============================
   CONTACT FORM SECTION (FINAL)
================================ */
.contact-form-section {
  background: #fff3df;
  padding: clamp(70px, 9vw, 110px) 0;
}

/* MAP */
.map-box {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* FORM BOX */
.contact-form-box {
  background: transparent;
  padding-left: 10px;
}

.form-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-title {
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 800;
  margin: 10px 0 30px;
  position: relative;
}

.form-title::after {
  content: "";
  width: 56px;
  height: 4px;
  background: var(--secondary-color);
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

/* FORM */
.contact-form-box label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 15px;
  font-family: var(--font-body);
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(138, 74, 161, 0.12);
}

/* BUTTON */
.btn-send {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 992px) {
  .contact-form-box {
    padding-left: 0;
  }

  .map-box iframe {
    min-height: 360px;
  }
}

.btn-send i {
  transition: transform 0.3s ease;
}

.btn-send:hover i {
  transform: translateX(4px);
}
