/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

/* Hero Section
   ========================================================================== */

.hero-contact {
  position: relative;
  padding: 128px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 242, 1) 50%, rgba(255, 255, 255, 1) 100%);
  overflow: hidden;
}

.hero-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(158, 0, 49, 0.05) 0%, rgba(0, 0, 0, 0) 50%, rgba(158, 0, 49, 0.1) 100%);
  pointer-events: none;
}

.hero-contact__content {
  position: relative;
  max-width: 1216px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 128px;
}

.hero-contact__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 60px;
  line-height: 1.25;
  color: var(--color-text-primary);
  margin-bottom: 32px;
}

.hero-contact__title-part {
  color: var(--color-text-primary);
}

.hero-contact__title-highlight {
  color: #9E0031;
}

.hero-contact__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.625;
  color: var(--color-text-tertiary);
  max-width: 896px;
  margin: 0 auto 60px;
}

.hero-contact__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-contact__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: var(--color-text-tertiary);
}
/* Contact Section
   ========================================================================== */

.contact-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1216px;
  margin: 0 auto;
}

/* Contact Form
   ========================================================================== */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  color: var(--color-text-primary);
}

.contact-form__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  color: var(--color-text-tertiary);
}

/* Form Styles
   ========================================================================== */

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

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-family: var(--font-family-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.43;
  color: var(--color-text-primary);
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.26;
  color: #0A0A0A;
  background: #FFFFFF;
  border: 1px solid #D1D5DC;
  border-radius: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form__input::placeholder,
.form__select::placeholder,
.form__textarea::placeholder {
  color: rgba(10, 10, 10, 0.5);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: #9E0031;
  box-shadow: 0 0 0 3px rgba(158, 0, 49, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 152px;
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23364153' stroke-width='1.33' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form__checkbox {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  flex-shrink: 0;
  cursor: pointer;
}

.form__checkbox-label {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: var(--color-text-tertiary);
  cursor: pointer;
}

/* Contact Info
   ========================================================================== */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  color: var(--color-text-primary);
}

.contact-info__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  color: var(--color-text-tertiary);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Contact Card
   ========================================================================== */

.contact-card {
  padding: 32px 32px 0;
  background: #F7F7F2;
  border-radius: 16px;
}

.contact-card__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(158, 0, 49, 0.1);
  border-radius: 14px;
  margin-bottom: 16px;
}

.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 32px;
}

.contact-card__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-text-primary);
}

.contact-card__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-tertiary);
}

.contact-card__link {
  font-family: var(--font-family-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #9E0031;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card__link:hover {
  color: #8A002A;
  text-decoration: underline;
}

.contact-card__meta {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: #6A7282;
}

.contact-card__address {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-card__address p {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-tertiary);
  margin: 0;
}

/* Contact FAQ Section
   ========================================================================== */

.contact-faq {
  padding: 80px 0;
  background: #F7F7F2;
}

.contact-faq__header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-faq__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.contact-faq__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-text-tertiary);
}

.contact-faq__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 832px;
  margin: 0 auto;
}

/* FAQ Preview Section (Homepage Style)
   ========================================================================== */

.faq-preview {
  padding: 80px 0;
  background: #F7F7F2;
}

.faq-preview__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.faq-preview__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.faq-preview__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-text-tertiary);
}

.faq-preview__accordion {
  max-width: 832px;
  margin: 0 auto 64px;
}

.faq-preview__cta {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

/* FAQ Card
   ========================================================================== */

.faq-card {
  padding: 32px 32px 0;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card__question {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-text-primary);
  margin: 0;
}

.faq-card__answer {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text-tertiary);
  padding-bottom: 32px;
  margin: 0;
}

/* Why Choose Contact Section
   ========================================================================== */

.why-choose-contact {
  padding: 80px 0;
  background: #FFFFFF;
}

.why-choose-contact__header {
  text-align: center;
  margin-bottom: 64px;
}

.why-choose-contact__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  text-align: center;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.why-choose-contact__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: var(--color-text-tertiary);
  max-width: 768px;
  margin: 0 auto;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1216px;
  margin: 0 auto;
}

/* Feature Card Simple
   ========================================================================== */

.feature-card-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card-simple__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(158, 0, 49, 0.1);
  border-radius: 16px;
  margin-bottom: 24px;
}

.feature-card-simple__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.feature-card-simple__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.625;
  color: var(--color-text-tertiary);
}

/* CTA Bottom Section - Contact
   ========================================================================== */

.cta-bottom--contact {
  background: linear-gradient(180deg, rgba(158, 0, 49, 1) 0%, rgba(138, 0, 42, 1) 100%);
  padding: 80px 0;
}

.cta-bottom--contact .cta-bottom__title {
  font-family: var(--font-family-primary);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.11;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cta-bottom--contact .cta-bottom__description {
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.625;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  max-width: 832px;
  margin: 0 auto 40px;
}

.cta-bottom--contact .cta-bottom__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-bottom--contact .cta-bottom__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-family-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.43;
  color: rgba(255, 255, 255, 0.8);
}

/* Button Variants
   ========================================================================== */

.btn--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Removed duplicate .btn--ghost-white and .btn--outline-white - now in components.css */

.btn--block {
  width: 100%;
  justify-content: center;
}

/* Responsive Design
   ========================================================================== */

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .hero-contact {
    padding: 96px 0 0;
  }

  .hero-contact__content {
    padding-bottom: 96px;
  }

  .hero-contact__title {
    font-size: 36px;
  }

  .hero-contact__description {
    font-size: 18px;
  }

  .hero-contact__features {
    flex-direction: column;
    gap: 16px;
  }

  .event-carousel-cta__title {
    font-size: 24px;
  }

  .contact-section {
    padding: 64px 0;
  }

  .contact-form__title,
  .contact-info__title {
    font-size: 30px;
  }

  .contact-form__description,
  .contact-info__description {
    font-size: 16px;
  }

  .form__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-faq {
    padding: 64px 0;
  }

  .contact-faq__title {
    font-size: 30px;
  }

  .contact-faq__description {
    font-size: 18px;
  }

  .faq-preview {
    padding: 64px 0;
  }

  .faq-preview__title {
    font-size: 30px;
  }

  .faq-preview__description {
    font-size: 18px;
  }

  .why-choose-contact {
    padding: 64px 0;
  }

  .why-choose-contact__title {
    font-size: 30px;
  }

  .why-choose-contact__description {
    font-size: 18px;
  }

  .cta-bottom--contact {
    padding: 64px 0;
  }

  .cta-bottom--contact .cta-bottom__title {
    font-size: 30px;
  }

  .cta-bottom--contact .cta-bottom__description {
    font-size: 18px;
  }

  .cta-bottom--contact .cta-bottom__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-bottom--contact .btn {
    width: 100%;
  }

  .cta-bottom--contact .cta-bottom__features {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero-contact__title {
    font-size: 28px;
  }

  .hero-contact__description {
    font-size: 16px;
  }

  .contact-form__title,
  .contact-info__title,
  .contact-faq__title,
  .faq-preview__title,
  .why-choose-contact__title {
    font-size: 24px;
  }

  .faq-card,
  .contact-card {
    padding: 24px 24px 0;
  }

  .faq-card__answer,
  .contact-card__content {
    padding-bottom: 24px;
  }
}
