/* ------------------------------------------------------
   CONTACT PAGE STYLING
------------------------------------------------------ */

.contact-hero-section {
  padding: 140px 0 110px;
  background: #b388ff;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero-section::after {
  content: '';
  position: absolute;
  inset: 5%;
  border-radius: 40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 65%);
  filter: blur(5px);
  opacity: 0.5;
}

.contact-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-title {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.6;
}

.contact-form-section {
  padding: 90px 0 140px;
  background: linear-gradient(180deg, rgba(242, 238, 255, 0.95), #fff);
}

.contact-form-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}


.form-card,
.contact-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(106, 27, 154, 0.12);
  box-shadow: 0 30px 60px rgba(12, 7, 30, 0.08);
}

.form-card::before,
.contact-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.55));
  z-index: -1;
}

.contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), #fdf2ff);
}

.contact-card-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.form-card h2,
.contact-card h2 {
  color: #1f1028;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.form-card p,
.contact-card p {
  margin-bottom: 24px;
  color: #4a4a4a;
  line-height: 1.6;
}


.wpforms-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wpforms-form input,
.wpforms-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(106, 27, 154, 0.3);
  border-radius: 12px;
  background: #fff;
  font-size: 1rem;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.15);
}

.contact-form-section .wpforms-submit,
.contact-form-section button.wpforms-submit,
.contact-form-section input[type='submit'].wpforms-submit {
  background: var(--purple) !important;
  color: white !important;
  border: none !important;
  border-radius: 999px;
  padding: 14px 34px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
  box-shadow: 0 12px 30px rgba(106, 27, 154, 0.25);
  text-transform: none;
}

.contact-form-section .wpforms-submit:hover,
.contact-form-section button.wpforms-submit:hover,
.contact-form-section input[type='submit'].wpforms-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(106, 27, 154, 0.35);
}

.contact-action-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pill-btn.call {
   background: linear-gradient(135deg, #6a1b9a, #8c43ff);
  color: #fff;
}

.pill-btn.email {
  background: #b388ff;
  color: #fff;
}

.pill-btn.whatsapp {
  background: linear-gradient(135deg, #00c853, #00e676);
  color: #fff;
}

.pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 12, 40, 0.2);
}

.contact-divider {
  border: none;
  border-top: 1px solid rgba(106, 27, 154, 0.25);
  margin: 32px 0;
}

.contact-social h3 {
  margin-bottom: 8px;
  color: #1f1028;
}

.contact-social p {
  color: #555;
  margin-bottom: 10px;
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-item {
  color: var(--purple);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.social-item:hover {
  color: #4a148c;
}

.contact-cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(135deg, #f6ecff, #e2c6ff);
  color: #1f1028;
  margin-top: 40px;
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(109, 54, 180, 0.25);
}

.contact-cta-section h2,
.contact-cta-section p {
  color: #1f1028;
}

.contact-cta-section .btn-primary {
  margin-top: 20px;
  border-radius: 999px;
  padding: 14px 38px;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 15px 35px rgba(106, 27, 154, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-cta-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(106, 27, 154, 0.4);
}

@media (max-width: 960px) {
  .contact-hero-section {
    padding: 110px 0 90px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pill-btn {
    flex: 1 1 calc(50% - 12px);
  }
}
