/* PropertysDeal — Contact Us page */

:root {
  --cu-orange: #eb8944;
  --cu-teal: #1e5f7a;
  --cu-teal-dark: #164a61;
  --cu-text: #1a2b3c;
  --cu-muted: #5c6b7a;
  --cu-light: #f0f4f8;
  --cu-radius: 16px;
  --cu-radius-lg: 24px;
  --cu-shadow: 0 12px 40px rgba(26, 43, 60, 0.1);
  --cu-shadow-sm: 0 4px 20px rgba(26, 43, 60, 0.06);
  --cu-primary: #0d6efd;
  --cu-primary-dark: #0b5ed7;
}

.contact-page {
  font-family: 'Inter', sans-serif;
  color: var(--cu-text);
  background: #fff;
  overflow-x: hidden;
}

/* Buttons */
.cu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.cu-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.cu-btn--primary {
  background: var(--cu-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.35);
}

.cu-btn--primary:hover {
  background: var(--cu-primary-dark);
  color: #fff;
  box-shadow: 0 8px 26px rgba(13, 110, 253, 0.45);
}

.cu-btn--ghost {
  background: #fff;
  color: var(--cu-teal);
  border: 2px solid rgba(30, 95, 122, 0.2);
}

.cu-btn--ghost:hover {
  border-color: var(--cu-teal);
  color: var(--cu-teal);
  background: rgba(30, 95, 122, 0.05);
}

.cu-btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.cu-btn--white {
  background: #fff;
  color: var(--cu-teal);
}

.cu-btn--white:hover {
  color: var(--cu-teal-dark);
}

.cu-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.cu-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Hero */
.cu-hero {
  position: relative;
  padding: 1.5rem 0 3.5rem;
  background: linear-gradient(165deg, #f8fafc 0%, #eef4f8 45%, #fff5ee 100%);
}

.cu-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cu-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.cu-hero__orb--1 {
  width: 380px;
  height: 380px;
  background: rgba(30, 95, 122, 0.12);
  top: -100px;
  right: -60px;
}

.cu-hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(235, 137, 68, 0.16);
  bottom: -60px;
  left: -40px;
}

.cu-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 95, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 95, 122, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.cu-hero__container {
  position: relative;
  z-index: 1;
}

.cu-breadcrumb .breadcrumb-item a {
  color: var(--cu-muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.cu-breadcrumb .breadcrumb-item a:hover {
  color: var(--cu-teal);
}

.cu-breadcrumb .breadcrumb-item.active {
  color: #9ca3af;
  font-size: 0.875rem;
}

.cu-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: #fff;
  border: 1px solid rgba(30, 95, 122, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cu-teal);
  box-shadow: var(--cu-shadow-sm);
  margin-bottom: 1.25rem;
}

.cu-pill i {
  color: var(--cu-primary);
}

.cu-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--cu-text);
}

.cu-hero__highlight {
  color: var(--cu-teal);
}

.cu-hero__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cu-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.cu-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Quick cards in hero */
.cu-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cu-quick-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border-radius: var(--cu-radius);
  border: 1px solid rgba(30, 95, 122, 0.1);
  box-shadow: var(--cu-shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cu-quick-card:hover {
  transform: translateX(4px);
  box-shadow: var(--cu-shadow);
  border-color: rgba(13, 110, 253, 0.25);
  color: inherit;
  text-decoration: none;
}

.cu-quick-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.cu-quick-card--phone .cu-quick-card__icon {
  background: rgba(13, 110, 253, 0.12);
  color: var(--cu-primary);
}

.cu-quick-card--email .cu-quick-card__icon {
  background: rgba(30, 95, 122, 0.12);
  color: var(--cu-teal);
}

.cu-quick-card--alt .cu-quick-card__icon {
  background: rgba(235, 137, 68, 0.15);
  color: var(--cu-orange);
}

.cu-quick-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.cu-quick-card__body strong {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cu-muted);
}

.cu-quick-card__body span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cu-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cu-quick-card__arrow {
  color: #cbd5e1;
  font-size: 0.85rem;
}

/* Stats strip */
.cu-strip {
  background: linear-gradient(90deg, var(--cu-teal) 0%, var(--cu-teal-dark) 100%);
  color: #fff;
  padding: 1.75rem 0;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.cu-strip__item {
  padding: 0.5rem 0.75rem;
}

.cu-strip__item i {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.cu-strip__item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.cu-strip__item span {
  font-size: 0.8rem;
  opacity: 0.85;
}

@media (min-width: 768px) {
  .cu-strip .col-md-3:not(:last-child) .cu-strip__item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
}

/* Sections */
.cu-section {
  padding: 4rem 0;
}

.cu-section--muted {
  background: var(--cu-light);
}

.cu-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.cu-section-head__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cu-primary);
  margin-bottom: 0.5rem;
}

.cu-section-head__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cu-section-head__desc {
  color: var(--cu-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Form layout */
.cu-form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 992px) {
  .cu-form-layout {
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: 2.5rem;
  }
}

.cu-aside {
  background: linear-gradient(160deg, var(--cu-teal) 0%, var(--cu-teal-dark) 100%);
  color: #fff;
  border-radius: var(--cu-radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--cu-shadow);
}

.cu-aside__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cu-aside__text {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

.cu-aside__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.cu-aside__list li {
  display: flex;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cu-aside__list li:last-child {
  border-bottom: none;
}

.cu-aside__list-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cu-aside__list-icon--blue {
  background: rgba(13, 110, 253, 0.35);
}

.cu-aside__list-icon--orange {
  background: rgba(235, 137, 68, 0.35);
}

.cu-aside__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
  margin-bottom: 0.2rem;
}

.cu-aside__list a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.cu-aside__list a:hover {
  text-decoration: underline;
}

.cu-aside__value {
  font-weight: 600;
  font-size: 0.9375rem;
}

.cu-aside__tip {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--cu-radius);
  font-size: 0.875rem;
  line-height: 1.55;
}

.cu-aside__tip i {
  color: var(--cu-orange);
  margin-top: 0.15rem;
}

/* Form panel */
.cu-form-panel {
  background: #fff;
  border-radius: var(--cu-radius-lg);
  border: 1px solid #e8edf2;
  box-shadow: var(--cu-shadow);
  padding: 2rem 1.75rem;
}

.cu-form-panel__head {
  margin-bottom: 1.5rem;
}

.cu-form-panel__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.cu-form-panel__desc {
  color: var(--cu-muted);
  font-size: 0.9375rem;
}

.cu-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--cu-text);
}

.cu-optional {
  font-weight: 500;
  color: #9ca3af;
}

.cu-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--cu-text);
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cu-input:hover {
  border-color: #cbd5e1;
}

.cu-input:focus {
  outline: none;
  border-color: var(--cu-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.cu-input.is-invalid {
  border-color: #dc3545;
  background: #fff5f5;
}

.cu-input.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12);
}

.cu-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235c6b7a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.cu-textarea {
  resize: vertical;
  min-height: 120px;
}

.cu-field-error {
  font-size: 0.8125rem;
  color: #dc3545;
  margin: 0.35rem 0 0;
  min-height: 0;
}

.cu-field-error:not(:empty) {
  min-height: 1.25rem;
}

.cu-form-note {
  margin-top: 0.75rem;
  color: #9ca3af;
  text-align: center;
}

/* Success state */
.cu-success {
  text-align: center;
  padding: 2rem 1rem;
}

.cu-success__icon {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
}

.cu-success__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cu-success__text {
  color: var(--cu-muted);
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.cu-success__text a {
  color: var(--cu-primary);
  font-weight: 600;
}

/* Help cards */
.cu-help-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--cu-radius);
  border: 1px solid #e8edf2;
  box-shadow: var(--cu-shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cu-help-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cu-shadow);
  border-color: rgba(13, 110, 253, 0.2);
  color: inherit;
  text-decoration: none;
}

.cu-help-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.cu-help-card__icon--blue {
  background: rgba(13, 110, 253, 0.12);
  color: var(--cu-primary);
}

.cu-help-card__icon--green {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}

.cu-help-card__icon--purple {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.cu-help-card__icon--teal {
  background: rgba(30, 95, 122, 0.12);
  color: var(--cu-teal);
}

.cu-help-card__icon--orange {
  background: rgba(235, 137, 68, 0.15);
  color: var(--cu-orange);
}

.cu-help-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cu-help-card p {
  font-size: 0.9rem;
  color: var(--cu-muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1rem;
}

.cu-help-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cu-primary);
}

.cu-help-card__link i {
  font-size: 0.75rem;
  margin-left: 0.25rem;
  transition: transform 0.2s ease;
}

.cu-help-card:hover .cu-help-card__link i {
  transform: translateX(4px);
}

/* FAQ */
.cu-faq {
  --bs-accordion-border-color: #e8edf2;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
}

.cu-faq__item {
  border-radius: var(--cu-radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid #e8edf2 !important;
}

.cu-faq__btn {
  font-weight: 600;
  font-size: 1rem;
  color: var(--cu-text);
  background: #fff;
  padding: 1.1rem 1.25rem;
}

.cu-faq__btn:not(.collapsed) {
  background: rgba(13, 110, 253, 0.06);
  color: var(--cu-teal);
  box-shadow: none;
}

.cu-faq__btn::after {
  filter: none;
}

.cu-faq__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--cu-muted);
  padding: 0 1.25rem 1.15rem;
}

/* Banner */
.cu-banner {
  padding: 0 0 4rem;
}

.cu-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--cu-teal) 0%, var(--cu-teal-dark) 100%);
  border-radius: var(--cu-radius-lg);
  color: #fff;
  box-shadow: var(--cu-shadow);
}

.cu-banner__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cu-banner__text {
  opacity: 0.9;
  max-width: 28rem;
}

.cu-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Scroll reveal */
.contact-page [data-cu-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-page [data-cu-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
  .cu-hero-cards {
    margin-top: 0.5rem;
  }

  .cu-banner__inner {
    text-align: center;
    justify-content: center;
  }

  .cu-banner__actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .cu-section {
    padding: 2.75rem 0;
  }

  .cu-form-panel {
    padding: 1.5rem 1.15rem;
  }

  .cu-aside {
    padding: 1.5rem 1.25rem;
  }

  .cu-quick-card__body span {
    font-size: 0.875rem;
  }
}
