@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css");

.cr-contact {
  position: relative;
  --cr-primary: #5B5BD6;
  --cr-primary-dark: #4040B8;
  --cr-secondary: #8B5CF6;
  --cr-accent: #F59E0B;
  --cr-dark: #101226;
  --cr-dark-soft: #191C35;
  --cr-bg: #F7F7FC;
  --cr-text: #5F6478;
  --cr-heading: #17182F;
  --cr-white: #FFFFFF;
  --cr-border: rgba(23, 24, 47, .10);
  color: var(--cr-text);
  background: var(--cr-bg);
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

.cr-contact,
.cr-contact div,
.cr-contact section,
.cr-contact article,
.cr-contact aside,
.cr-contact h1,
.cr-contact h2,
.cr-contact h3,
.cr-contact p,
.cr-contact a,
.cr-contact button,
.cr-contact span {
  box-sizing: border-box;
}

.cr-contact .cr-contact-container {
  max-width: 1350px;
  margin: auto;
  padding-inline: 24px;
}

.cr-contact .cr-contact-hero {
  position: relative;
  padding: 118px 0 96px;
  background: radial-gradient(circle at 20% 20%, rgba(139, 92, 246, .18), transparent 32%),
              radial-gradient(circle at 82% 14%, rgba(91, 91, 214, .18), transparent 30%),
              linear-gradient(180deg, #ffffff 0%, #f4f2ff 100%);
}

.cr-contact .cr-contact-hero-bg,
.cr-contact .cr-contact-final-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cr-contact .cr-contact-glow {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  filter: blur(24px);
  opacity: .46;
}

.cr-contact .cr-contact-glow-one {
  left: 8%;
  top: 18%;
  background: rgba(91, 91, 214, .24);
}

.cr-contact .cr-contact-glow-two {
  right: 10%;
  bottom: 10%;
  background: rgba(245, 158, 11, .20);
}

.cr-contact .cr-contact-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(91, 91, 214, .15);
  border-radius: 18px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 20px 50px rgba(16, 18, 38, .10);
  color: var(--cr-primary);
  font-size: 24px;
}

.cr-contact .cr-contact-float-one { left: 11%; top: 33%; transform: rotate(-8deg); }
.cr-contact .cr-contact-float-two { right: 15%; top: 25%; transform: rotate(10deg); }
.cr-contact .cr-contact-float-three { right: 24%; bottom: 18%; transform: rotate(-5deg); }

.cr-contact .cr-contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  text-align: center;
}

.cr-contact .cr-contact-eyebrow,
.cr-contact .cr-contact-section-kicker,
.cr-contact .cr-contact-final-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cr-primary-dark);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cr-contact .cr-contact-eyebrow {
  padding: 10px 16px;
  border: 1px solid rgba(91, 91, 214, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 14px 40px rgba(16, 18, 38, .08);
}

.cr-contact .cr-contact-hero-title,
.cr-contact .cr-contact-section-title,
.cr-contact .cr-contact-final h2 {
  margin: 0;
  color: var(--cr-heading);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.cr-contact .cr-contact-hero-title {
  font-size: clamp(42px, 7vw, 76px);
}

.cr-contact .cr-contact-hero-title span {
  color: var(--cr-secondary);
}

.cr-contact .cr-contact-hero-text {
  max-width: 790px;
  margin: 24px auto 0;
  color: var(--cr-text);
  font-size: 18px;
  line-height: 1.75;
}

.cr-contact .cr-contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cr-contact .cr-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cr-contact .cr-contact-btn:hover {
  transform: translateY(-3px);
}

.cr-contact .cr-contact-btn-primary {
  color: var(--cr-white);
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  box-shadow: 0 18px 45px rgba(91, 91, 214, .34);
}

.cr-contact .cr-contact-btn-secondary {
  color: var(--cr-heading);
  border: 1px solid var(--cr-border);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 14px 36px rgba(16, 18, 38, .08);
}

.cr-contact .cr-contact-btn-light {
  color: var(--cr-white);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
}

.cr-contact .cr-contact-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cr-contact .cr-contact-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(91, 91, 214, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--cr-heading);
  font-size: 14px;
  font-weight: 700;
}

.cr-contact .cr-contact-trust i,
.cr-contact .cr-contact-info-card i,
.cr-contact .cr-contact-bento-card i,
.cr-contact .cr-contact-step-card i {
  color: var(--cr-primary);
}

.cr-contact .cr-contact-main,
.cr-contact .cr-contact-why,
.cr-contact .cr-contact-process,
.cr-contact .cr-contact-faq {
  padding: 105px 0;
}

.cr-contact .cr-contact-main-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.cr-contact .cr-contact-section-title {
  font-size: clamp(32px, 4vw, 52px);
}

.cr-contact .cr-contact-section-text {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.75;
}

.cr-contact .cr-contact-info-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.cr-contact .cr-contact-info-card,
.cr-contact .cr-contact-form-panel,
.cr-contact .cr-contact-bento-card,
.cr-contact .cr-contact-step-card,
.cr-contact .cr-contact-faq-item {
  border: 1px solid var(--cr-border);
  border-radius: 22px;
  background: var(--cr-white);
  box-shadow: 0 22px 65px rgba(16, 18, 38, .08);
}

.cr-contact .cr-contact-info-card {
  display: flex;
  gap: 18px;
  padding: 22px;
}

.cr-contact .cr-contact-info-card > i,
.cr-contact .cr-contact-bento-card > i,
.cr-contact .cr-contact-step-card > i,
.cr-contact .cr-contact-form-head span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 91, 214, .12), rgba(139, 92, 246, .12));
  font-size: 20px;
}

.cr-contact .cr-contact-info-card h3,
.cr-contact .cr-contact-bento-card h3,
.cr-contact .cr-contact-step-card h3,
.cr-contact .cr-contact-form-head h2 {
  margin: 0;
  color: var(--cr-heading);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.cr-contact .cr-contact-info-card p,
.cr-contact .cr-contact-bento-card p,
.cr-contact .cr-contact-step-card p,
.cr-contact .cr-contact-form-head p {
  margin: 8px 0 0;
  line-height: 1.65;
}

.cr-contact .cr-contact-info-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--cr-primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.cr-contact .cr-contact-form-panel {
  padding: 32px;
}

.cr-contact .cr-contact-form-head {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.cr-contact .cr-contact-form-head span {
  color: var(--cr-primary);
}

.cr-contact .wpcf7 form {
  margin: 0;
}

.cr-contact .wpcf7 p {
  margin: 0 0 16px;
  color: var(--cr-heading);
  font-weight: 700;
}

.cr-contact .wpcf7 label {
  display: block;
  color: var(--cr-heading);
  font-weight: 800;
}

.cr-contact .wpcf7-form-control {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 13px 16px;
  border: 1px solid var(--cr-border);
  border-radius: 12px;
  outline: none;
  background: var(--cr-white);
  color: var(--cr-heading);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.cr-contact textarea.wpcf7-form-control {
  min-height: 140px;
  resize: vertical;
}

.cr-contact .wpcf7-form-control:focus {
  border-color: rgba(91, 91, 214, .70);
  box-shadow: 0 0 0 4px rgba(91, 91, 214, .12);
}

.cr-contact .wpcf7-submit {
  width: auto;
  min-width: 180px;
  margin-top: 6px;
  border: 0;
  color: var(--cr-white);
  background: linear-gradient(135deg, var(--cr-primary), var(--cr-secondary));
  box-shadow: 0 18px 45px rgba(91, 91, 214, .30);
  cursor: pointer;
  font-weight: 800;
}

.cr-contact .wpcf7-submit:hover {
  transform: translateY(-2px);
}

.cr-contact .cr-contact-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.cr-contact .cr-contact-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cr-contact .cr-contact-bento-card {
  min-height: 220px;
  padding: 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.cr-contact .cr-contact-bento-card:hover,
.cr-contact .cr-contact-step-card:hover,
.cr-contact .cr-contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 75px rgba(16, 18, 38, .12);
}

.cr-contact .cr-contact-bento-large {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff, #f4f2ff);
}

.cr-contact .cr-contact-bento-card h3 {
  margin-top: 20px;
}

.cr-contact .cr-contact-process {
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fc 100%);
}

.cr-contact .cr-contact-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.cr-contact .cr-contact-steps::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 17%;
  right: 17%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(91, 91, 214, .35), transparent);
}

.cr-contact .cr-contact-step-card {
  position: relative;
  padding: 30px;
  text-align: center;
}

.cr-contact .cr-contact-step-number {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, .14);
  color: var(--cr-accent);
  font-weight: 900;
  font-size: 13px;
}

.cr-contact .cr-contact-step-card > i {
  margin: 0 auto 18px;
}

.cr-contact .cr-contact-faq-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 14px;
}

.cr-contact .cr-contact-faq-item {
  overflow: hidden;
}

.cr-contact .cr-contact-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--cr-heading);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.cr-contact .cr-contact-faq-question i {
  color: var(--cr-primary);
}

.cr-contact .cr-contact-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.cr-contact .cr-contact-faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  line-height: 1.7;
}

.cr-contact .cr-contact-faq-open .cr-contact-faq-answer {
  max-height: 180px;
}

.cr-contact .cr-contact-final {
  position: relative;
  padding: 108px 0;
  overflow: hidden;
  background: radial-gradient(circle at 18% 24%, rgba(139, 92, 246, .36), transparent 34%),
              linear-gradient(135deg, var(--cr-dark), var(--cr-dark-soft) 58%, #2d2368);
}

.cr-contact .cr-contact-final-bg span {
  position: absolute;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  filter: blur(35px);
  opacity: .28;
}

.cr-contact .cr-contact-final-bg span:first-child {
  left: 8%;
  top: 10%;
  background: var(--cr-secondary);
}

.cr-contact .cr-contact-final-bg span:nth-child(2) {
  right: 8%;
  bottom: 6%;
  background: var(--cr-accent);
}

.cr-contact .cr-contact-final-bg i {
  position: absolute;
  color: rgba(255, 255, 255, .14);
  font-size: 72px;
}

.cr-contact .cr-contact-final-bg i:nth-of-type(1) {
  left: 14%;
  bottom: 18%;
  transform: rotate(-10deg);
}

.cr-contact .cr-contact-final-bg i:nth-of-type(2) {
  right: 14%;
  top: 20%;
  transform: rotate(12deg);
}

.cr-contact .cr-contact-final-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  text-align: center;
}

.cr-contact .cr-contact-final-kicker {
  color: #c8c8ff;
}

.cr-contact .cr-contact-final h2 {
  color: var(--cr-white);
  font-size: clamp(34px, 5vw, 58px);
}

.cr-contact .cr-contact-final p {
  max-width: 720px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, .74);
  font-size: 18px;
  line-height: 1.75;
}

.cr-contact [data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.cr-contact [data-aos="fade-left"] {
  transform: translateX(28px);
}

.cr-contact [data-aos="fade-right"] {
  transform: translateX(-28px);
}

.cr-contact [data-aos="zoom-in"] {
  transform: scale(.96);
}

.cr-contact .cr-contact-aos-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 991px) {
  .cr-contact .cr-contact-hero {
    padding: 88px 0 76px;
  }

  .cr-contact .cr-contact-main,
  .cr-contact .cr-contact-why,
  .cr-contact .cr-contact-process,
  .cr-contact .cr-contact-faq {
    padding: 80px 0;
  }

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

  .cr-contact .cr-contact-bento {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cr-contact .cr-contact-steps::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .cr-contact .cr-contact-container {
    padding-inline: 18px;
  }

  .cr-contact .cr-contact-hero {
    padding: 68px 0 58px;
  }

  .cr-contact .cr-contact-main,
  .cr-contact .cr-contact-why,
  .cr-contact .cr-contact-process,
  .cr-contact .cr-contact-faq {
    padding: 62px 0;
  }

  .cr-contact .cr-contact-actions,
  .cr-contact .cr-contact-btn {
    width: 100%;
  }

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

  .cr-contact .cr-contact-bento-large {
    grid-column: span 1;
  }

  .cr-contact .cr-contact-form-panel {
    padding: 22px;
  }

  .cr-contact .cr-contact-form-head,
  .cr-contact .cr-contact-info-card {
    flex-direction: column;
  }

  .cr-contact .cr-contact-float {
    display: none;
  }

  .cr-contact .cr-contact-final {
    padding: 72px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cr-contact [data-aos],
  .cr-contact .cr-contact-btn,
  .cr-contact .cr-contact-info-card,
  .cr-contact .cr-contact-bento-card,
  .cr-contact .cr-contact-step-card,
  .cr-contact .cr-contact-faq-answer {
    transition: none;
    transform: none;
  }

  .cr-contact [data-aos] {
    opacity: 1;
  }
}