/* =================================================
   CONTACTS PAGE - UNIQUE STYLES
   ================================================= */

/* ============================================
   SECTION: Content Sections Spacing
   ============================================ */
.content-section {
  padding: 4rem 0;
}

.content-section:first-of-type {
  padding-top: 2rem;
}

.content-section+.content-section {
  padding-top: 4rem;
}

.section--alt-bg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
  position: relative;
}

.section--alt-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 25% 40%, rgba(94, 114, 228, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(94, 114, 228, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ============================================
   SECTION: Contacts Intro
   ============================================ */
.contacts-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contacts-intro__text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contacts-intro__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.contacts-intro__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.contacts-intro__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .contacts-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================
   SECTION: Contacts Grid
   ============================================ */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(94, 114, 228, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-card:hover {
  border-color: rgba(94, 114, 228, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(94, 114, 228, 0.1);
}

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-card__value a {
  color: #5e72e4;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card__value a:hover {
  color: #8898aa;
  text-decoration: underline;
}

.contact-card__note {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* ============================================
   SECTION: Support Layout
   ============================================ */
.support-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.support-layout__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.support-layout__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.support-categories {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.support-category {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid rgba(94, 114, 228, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s ease;
}

.support-category:hover {
  border-color: rgba(94, 114, 228, 0.3);
}

.support-category__badge {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.support-category__badge--blue {
  background: rgba(94, 114, 228, 0.12);
}

.support-category__badge--green {
  background: rgba(45, 206, 137, 0.12);
}

.support-category__badge--purple {
  background: rgba(130, 49, 235, 0.12);
}

.support-category__badge--orange {
  background: rgba(251, 99, 64, 0.12);
}

.support-category p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 0.3rem;
}

@media (max-width: 900px) {
  .support-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .support-layout__image {
    margin-top: 0;
    max-height: 300px;
    overflow: hidden;
  }
}

/* ============================================
   SECTION: Reviews Grid
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(94, 114, 228, 0.12);
  border-radius: 16px;
  transition: border-color 0.3s ease;
}

.review-card:hover {
  border-color: rgba(94, 114, 228, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5e72e4, #8231eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.review-location {
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.review-rating {
  margin-bottom: 0.75rem;
}

.stars {
  color: #f69c2a;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-text p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   SECTION: Company Details
   ============================================ */
.company-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.company-details__block {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(94, 114, 228, 0.12);
  border-radius: 16px;
}

.company-details__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.company-details__list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.company-details__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.company-details__list li span {
  font-weight: 600;
  color: var(--text-primary);
  display: inline-block;
  min-width: 180px;
}

.company-details__warning {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
  padding: 1rem 1.25rem;
  background: rgba(251, 99, 64, 0.06);
  border-left: 3px solid rgba(251, 99, 64, 0.5);
  border-radius: 8px;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .company-details {
    grid-template-columns: 1fr;
  }

  .company-details__list li span {
    display: block;
    min-width: unset;
    margin-bottom: 0.2rem;
  }
}

/* ============================================
   SECTION: Results Stats Grid
   ============================================ */
.results-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.results-stat-card {
  padding: 1.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.08) 0%, rgba(94, 114, 228, 0.03) 100%);
  border: 1px solid rgba(94, 114, 228, 0.18);
  border-radius: 16px;
  text-align: center;
}

.results-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #5e72e4;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.results-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .results-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .results-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SECTION: Offer Banner
   ============================================ */
.offer-banner {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(94, 114, 228, 0.1), rgba(130, 49, 235, 0.06));
  border: 1px solid rgba(94, 114, 228, 0.2);
  border-radius: 20px;
}

.offer-banner__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-banner__text p:last-child {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.offer-banner__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.offer-banner__image img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .offer-banner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.75rem;
  }

  .offer-banner__image {
    display: none;
  }
}

/* ============================================
   SECTION: FAQ
   ============================================ */
.faq {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border: 1px solid rgba(94, 114, 228, 0.15);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(94, 114, 228, 0.3);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  gap: 1rem;
}

.faq-question h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin: 0;
}

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: #5e72e4;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem;
  border-top: 1px solid rgba(94, 114, 228, 0.08);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  padding: 1rem 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ============================================
   SECTION: Lead Form
   ============================================ */
.lead-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.lead-form-content .section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.lead-form-description {
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input,
.form-select {
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(94, 114, 228, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #5e72e4;
  background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

.btn--full {
  width: 100%;
}

@media (max-width: 640px) {
  .lead-form-wrapper {
    padding: 0 1rem;
  }
}

/* ============================================
   SECTION: Responsive
   ============================================ */
@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }

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

  .faq-question h3 {
    font-size: 0.93rem;
  }
}