/* ─── CONTACT FORM SECTION ───────────────────────────────────────────────── */
.ct-form-section {
  background: #FFFDFA;
  padding: 80px 60px;
}

.ct-form-section__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
}

.ct-form-section__left {
  flex: 0 0 460px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 3rem;
}

.ct-form-section__title {
  font-family: 'Urbanist', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 57.6px;
  color: #071738;
  margin: 0;
  max-width: 519px;
}

.ct-form-section__sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: #3E4554;
  margin: 0;
  max-width: 463px;
}

.ct-form-section__sub strong {
  font-weight: 600;
}

/* Form card (outer with glow) */
.ct-form-card {
  flex: 1;
  position: relative;
  border-radius: 40px;
  background: #ffffff;
  outline: 1px solid #E7E7E7;
  overflow: hidden;
  padding: 65px 50px;
  min-height: 621px;
}

/* Blue glow blobs */
.ct-form-card__blob {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}

.ct-form-card__blob--1 {
  width: 500px;
  height: 500px;
  top: -300px;
  right: -100px;
  background: #2388FF;
  opacity: 0.18;
  filter: blur(120px);
}

.ct-form-card__blob--2 {
  width: 400px;
  height: 400px;
  top: -280px;
  right: 80px;
  background: #4A3AFF;
  opacity: 0.18;
  filter: blur(80px);
}

.ct-form-card__blob--3 {
  width: 300px;
  height: 600px;
  bottom: -200px;
  left: 30px;
  background: #2388FF;
  opacity: 0.15;
  filter: blur(60px);
  transform: rotate(239deg);
}

/* Glass form panel */
.ct-form-panel {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  outline: 1px solid #E7E7E7;
  padding: 24px;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ct-form__row {
  display: flex;
  gap: 16px;
}

.ct-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-form__field--full {
  flex: 1 1 100%;
}

.ct-form__label {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #3E4554;
}

.ct-form__input {
  padding: 16px;
  border-radius: 40px;
  border: none;
  outline: 1px solid #E7E7E7;
  background: #ffffff;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #6E6E6E;
  width: 100%;
  box-sizing: border-box;
}

.ct-form__input:focus {
  outline: 1px solid #071738;
}

.ct-form__textarea {
  padding: 16px;
  border-radius: 20px;
  border: none;
  outline: 1px solid #E7E7E7;
  background: #ffffff;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #6E6E6E;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
  resize: none;
}

.ct-form__textarea:focus {
  outline: 1px solid #071738;
}

.ct-form__btn {
  padding: 16px 24px;
  background: #071738;
  border-radius: 40px;
  border: none;
  color: #ffffff;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  cursor: pointer;
  align-self: flex-start;
}

.ct-form__btn:hover {
  background: #0f2a60;
}

/* ─── REVIEWS: hide avatar placeholder ───────────────────── */
.rcard__avatar {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {

  /* ─── HERO: hide decoratives, center content ──────────── */
  .contact-hero__img,
  .contact-hero__design,
  .ind-hero__spiral--1,
  .ind-hero__spiral--2 {
    display: none !important;
  }

  .contact-hero__content {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    align-items: center;
    text-align: center;
  }

  .contact-hero__title {
    font-size: 42px;
    line-height: 52px;
  }

  .contact-hero__sub {
    max-width: 100%;
    text-align: center;
  }

  /* ─── FORM SECTION: stack left above form ─────────────── */
  .ct-form-section {
    padding: 3rem 1.5rem;
  }

  .ct-form-section__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .ct-form-section__left {
    flex: 0 0 auto;
    width: 100%;
    padding-top: 0;
  }

  .ct-form-section__title {
    font-size: 36px;
    line-height: 44px;
    max-width: 100%;
  }

  .ct-form-section__sub {
    max-width: 100%;
  }

  .ct-form-card {
    width: 100%;
    padding: 40px 32px;
    min-height: unset;
  }
}

@media (max-width: 768px) {

  .contact-hero__title {
    font-size: 34px;
    line-height: 42px;
  }

  .ct-form-section {
    padding: 2.5rem 1.25rem;
  }

  .ct-form-section__title {
    font-size: 28px;
    line-height: 36px;
  }

  .ct-form__row {
    flex-direction: column;
    gap: 0;
  }

  .ct-form-card {
    padding: 28px 20px;
  }
}

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.contact-hero__container {
  background: linear-gradient(262deg, #5C5F51 14.11%, #B7B7A4 56.07%, #CA997E 93.59%);
  border-radius: 50px;
}

.contact-hero__content {
  flex: 0 0 48%;
  max-width: 48%;
  gap: 1.25rem;
}

.contact-hero__title {
  font-size: 60px;
  line-height: 64px;
  color: #ffffff;
}

.contact-hero__sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 25.2px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 420px;
}

.contact-hero__design {
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.contact-hero__img {
  position: absolute;
  left: 560px;
  bottom: 0;
  width: 700px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}
