/* ==========================================================================
   Tax Velocity — Contact Us page styles
   APPEND this to your existing css/styles.css.
   Pure CSS — no dependency on Tailwind arbitrary values.
   Classes are prefixed `cu-` to avoid collisions.
   ========================================================================== */

/* ==========================================================================
   1. SHARED EYEBROW
   ========================================================================== */
.cu-eyebrow {
  text-align: center;
  color: #0078c8;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}

/* ==========================================================================
   2. HERO
   ========================================================================== */
.cu-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}

.cu-hero__bg {
      position: absolute;
        inset: 0;
        z-index: 0;
        background-image: url(../assets/images/contact/contact.png);
        background-size: cover;
        background-position: top;
}

.cu-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
background: linear-gradient(270deg, rgba(255, 255, 255, 0.42) 21.89%, #000000 89.42%),
    linear-gradient(269.8deg, rgba(255, 255, 255, 0) 33.9%, #000000 99.81%),
    linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, #000000 49.76%, rgba(0, 0, 0, 0) 100%);
    opacity: 41%;

}

.cu-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 110px 20px 120px;
  text-align: center;
}

.cu-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #024188;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  margin-bottom: 22px;
}

.cu-hero__pill-star {
  color: #ffb800;
  font-size: 14px;
}

.cu-hero__title {
    /* height: 40px; */
      font-size: 48px;
      line-height: 1.15;
      font-weight: 700;
      margin: 0 0 22px;
      color: #fff;
      letter-spacing: -1.09px;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.cu-hero__lede {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
  max-width: 680px;
  margin: 0 auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   3. CONTACT — 3 cards + form
   ========================================================================== */
.cu-contact {
  background: #fff;
  padding: 80px 0 90px;
}

.cu-contact__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.cu-contact__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cu-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px 26px;
  text-align: center;
  transition: all 0.2s;
}

.cu-card:hover {
  border-color: #c2dcf0;
  box-shadow: 0 4px 14px rgba(0, 120, 200, 0.06);
}

.cu-card__icon {
  color: #0078c8;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-card__icon--filled {
  width: 44px;
  height: 44px;
  background: #0078c8;
  color: #fff;
  border-radius: 50%;
}

.cu-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: 0.04em;
  margin: 0 0 10px;
}

.cu-card__sub {
  font-size: 13.5px;
  color: #64748b;
  margin: 0 0 14px;
}

.cu-card__link {
  display: inline-block;
  font-size: 14.5px;
  font-weight: 600;
  color: #0078c8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cu-card__link:hover {
  color: #024188;
}

/* ----- FORM ----- */
.cu-form {
  background: #f4f7fb;
  border-radius: 14px;
  padding: 34px 36px;
}

.cu-form__title {
  font-size: 22px;
  font-weight: 800;
  color: #024188;
  margin: 0 0 6px;
}

.cu-form__sub {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 22px;
}

.cu-form__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.cu-field {
  display: flex;
  flex-direction: column;
}

.cu-field--full {
  grid-column: 1 / -1;
}

.cu-field__label {
  font-size: 13.5px;
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 6px;
}

.cu-field__wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cu-field__input {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 11px 38px 11px 14px;
  font-size: 14px;
  color: #0a1628;
  font-family: inherit;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}

.cu-field__input::placeholder {
  color: #94a3b8;
}

.cu-field__input:focus,
.cu-field__wrap.is-focused .cu-field__input {
  border-color: #0078c8;
  box-shadow: 0 0 0 3px rgba(0, 120, 200, 0.12);
}

.cu-field__icon {
  position: absolute;
  right: 14px;
  color: #94a3b8;
  pointer-events: none;
  display: inline-flex;
}

.cu-field__icon--chev {
  right: 16px;
}

.cu-field__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: none;
  cursor: pointer;
}

.cu-field__textarea {
  resize: vertical;
  min-height: 110px;
  padding: 12px 14px;
  line-height: 1.5;
}

.cu-form__submit {
  width: 100%;
  background: #0078c8;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 18px rgba(0, 120, 200, 0.25);
}

.cu-form__submit:hover {
  background: #024188;
  transform: translateY(-1px);
}

.cu-form__legal {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

.cu-form__legal a {
  color: #0078c8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ==========================================================================
   4. OUR PRESENCE — locations + map
   ========================================================================== */
.cu-presence {
  background: #fff;
  padding: 60px 0 90px;
}

.cu-presence__title {
  font-size: 38px;
  font-weight: 800;
  color: #024188;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 44px;
  letter-spacing: -0.01em;
}

.cu-presence__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  max-width: 1180px;
  margin: 0 auto;
}

.cu-presence__cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cu-loc {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 26px 24px;
  text-align: center;
  transition: all 0.2s;
}

.cu-loc:hover {
  border-color: #c2dcf0;
  box-shadow: 0 4px 14px rgba(0, 120, 200, 0.06);
}

.cu-loc__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
}

.cu-loc__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cu-loc__title {
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}

.cu-loc__address {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.cu-presence__map {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #eff4fa;
  min-height: 440px;
  position: relative;
}

.cu-presence__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   5. FAQ
   ========================================================================== */
.cu-faq {
  background: #fff;
  padding: 50px 0 100px;
}

.cu-faq__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.cu-faq__title {
  font-size: 38px;
  font-weight: 800;
  color: #024188;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.cu-faq__list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cu-faq__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
}

.cu-faq__item[open] {
  border-color: #c2dcf0;
  box-shadow: 0 2px 12px rgba(0, 120, 200, 0.06);
}

.cu-faq__summary {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.cu-faq__summary::-webkit-details-marker {
  display: none;
}
.cu-faq__summary::marker {
  display: none;
}

.cu-faq__num {
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
  flex-shrink: 0;
  width: 24px;
}

.cu-faq__q {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #0a1628;
}

.cu-faq__icon {
  width: 32px;
  height: 32px;
  background: #e5f1ff;
  color: #0078c8;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.cu-faq__icon-minus {
  display: none;
}
.cu-faq__item[open] .cu-faq__icon-plus {
  display: none;
}
.cu-faq__item[open] .cu-faq__icon-minus {
  display: block;
}

.cu-faq__answer {
  padding: 0 24px 22px 70px;
}

.cu-faq__answer p {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   6. RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .cu-hero__title {
    font-size: 40px;
  }
  .cu-hero__inner {
    padding: 80px 20px 90px;
  }

  .cu-contact__grid {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }
  .cu-card {
    padding: 24px 20px;
  }

  .cu-form {
    padding: 28px 24px;
  }

  .cu-presence__grid {
    grid-template-columns: 280px 1fr;
    gap: 22px;
  }
  .cu-presence__title,
  .cu-faq__title {
    font-size: 30px;
  }
  .cu-presence__map {
    min-height: 380px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cu-hero__inner {
    padding: 56px 20px 64px;
  }
  .cu-hero__title {
    font-size: 28px;
  }
  .cu-hero__lede {
    font-size: 14.5px;
  }

  .cu-contact {
    padding: 56px 0 64px;
  }
  .cu-contact__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cu-form {
    padding: 22px 18px;
  }
  .cu-form__title {
    font-size: 20px;
  }
  .cu-form__form {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cu-presence {
    padding: 40px 0 64px;
  }
  .cu-presence__title {
    font-size: 26px;
    margin-bottom: 28px;
  }
  .cu-presence__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cu-presence__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .cu-presence__cards .cu-loc:last-child {
    grid-column: 1 / -1;
  }
  .cu-loc {
    padding: 22px 18px;
  }
  .cu-presence__map {
    min-height: 320px;
    order: -1;
  }

  .cu-faq {
    padding: 24px 0 64px;
  }
  .cu-faq__title {
    font-size: 26px;
  }
  .cu-faq__summary {
    padding: 16px 18px;
    gap: 14px;
  }
  .cu-faq__num {
    width: 22px;
    font-size: 14px;
  }
  .cu-faq__q {
    font-size: 14.5px;
  }
  .cu-faq__icon {
    width: 28px;
    height: 28px;
  }
  .cu-faq__answer {
    padding: 0 18px 18px 54px;
  }
  .cu-faq__answer p {
    font-size: 13.5px;
  }
}
