/* ============================================
   Contact Page Styles
   ============================================ */

/* Contact Options Section */
.contact-options-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.contact-options-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #1a1828 0%,
    #221c2e 25%,
    #2a2028 55%,
    #1a1518 80%,
    #0d0d0d 100%
  );
  pointer-events: none;
}

.contact-options-section__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 75, 42, 0.15) 0%, transparent 70%);
  filter: blur(60px);
}

.contact-options-section__glow--l {
  top: 10%;
  left: -100px;
}

.contact-options-section__glow--r {
  bottom: 20%;
  right: -100px;
}

.contact-options-section__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.contact-options-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-options-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-options-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-options-section__subtitle {
  font-size: 1.1rem;
  color: rgba(200, 198, 195, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.contact-method-card {
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(45, 40, 48, 0.6),
    rgba(35, 30, 45, 0.5)
  );
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.contact-method-card:hover {
  border-color: rgba(201, 75, 42, 0.3);
  background: linear-gradient(
    135deg,
    rgba(55, 50, 60, 0.7),
    rgba(35, 30, 45, 0.6)
  );
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 75, 42, 0.15);
}

.contact-method-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.2), rgba(220, 100, 60, 0.2));
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: rgba(201, 75, 42, 0.8);
}

.contact-method-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-method-card__description {
  font-size: 0.95rem;
  color: rgba(200, 198, 195, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-method-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(201, 75, 42, 0.1);
  color: rgba(201, 75, 42, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(201, 75, 42, 0.2);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.contact-method-card__cta:hover {
  background: rgba(201, 75, 42, 0.15);
  border-color: rgba(201, 75, 42, 0.4);
  color: #fff;
}

.contact-method-card__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.contact-method-card__hint {
  font-size: 0.75rem;
  color: rgba(200, 198, 195, 0.6);
  display: block;
}

/* Inquiry Form Section */
.inquiry-form-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.inquiry-form-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #1a1828 0%,
    #221c2e 25%,
    #2a2028 55%,
    #1a1518 80%,
    #0d0d0d 100%
  );
}

.inquiry-form-section__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.inquiry-form-section__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.inquiry-form-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.inquiry-form-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.inquiry-form-section__subtitle {
  font-size: 1.1rem;
  color: rgba(200, 198, 195, 0.85);
  line-height: 1.6;
}

/* Form Elements */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.inquiry-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.inquiry-form__full-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.inquiry-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.inquiry-form__label {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(220, 218, 215, 0.95);
  display: block;
}

.inquiry-form__input,
.inquiry-form__select,
.inquiry-form__textarea {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(45, 40, 48, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.inquiry-form__input::placeholder,
.inquiry-form__textarea::placeholder {
  color: rgba(200, 198, 195, 0.5);
}

.inquiry-form__input:focus,
.inquiry-form__select:focus,
.inquiry-form__textarea:focus {
  outline: none;
  border-color: rgba(201, 75, 42, 0.5);
  background: rgba(55, 50, 60, 0.8);
  box-shadow: 0 0 0 3px rgba(201, 75, 42, 0.1);
}

.inquiry-form__textarea {
  resize: vertical;
  min-height: 140px;
}

.inquiry-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(200,198,195,0.7)' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

.inquiry-form__checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.inquiry-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(200, 198, 195, 0.9);
  line-height: 1.5;
  cursor: pointer;
}

.inquiry-form__checkbox {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: #c94b2a;
}

.inquiry-form__actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.inquiry-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 200px;
}

.inquiry-form__status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-size: 0.95rem;
  min-height: 20px;
}

.inquiry-form__status.success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.inquiry-form__status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Why Work With Us Section */
.why-work-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.why-work-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #1a1828 0%,
    #221c2e 25%,
    #2a2028 55%,
    #1a1518 80%,
    #0d0d0d 100%
  );
  pointer-events: none;
}

.why-work-section__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.why-work-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.why-work-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-work-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.why-work-section__subtitle {
  font-size: 1.1rem;
  color: rgba(200, 198, 195, 0.85);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.why-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.why-work-card {
  padding: 2rem;
  border-radius: 12px;
  background: rgba(45, 40, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.why-work-card:hover {
  border-color: rgba(201, 75, 42, 0.2);
  background: rgba(55, 50, 60, 0.6);
  transform: translateY(-2px);
}

.why-work-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.2), rgba(220, 100, 60, 0.2));
  color: rgba(201, 75, 42, 0.8);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.why-work-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.why-work-card__description {
  font-size: 0.95rem;
  color: rgba(200, 198, 195, 0.8);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.faq-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #1a1828 0%,
    #221c2e 25%,
    #2a2028 55%,
    #1a1518 80%,
    #0d0d0d 100%
  );
  pointer-events: none;
}

.faq-section__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 75, 42, 0.1) 0%, transparent 70%);
  filter: blur(60px);
}

.faq-section__glow--l {
  top: -100px;
  left: -100px;
}

.faq-section__glow--r {
  bottom: -100px;
  right: -100px;
}

.faq-section__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.faq-section__subtitle {
  font-size: 1.1rem;
  color: rgba(200, 198, 195, 0.85);
  line-height: 1.6;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 12px;
  background: rgba(45, 40, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(201, 75, 42, 0.2);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: left;
  transition: all 0.2s ease;
}

.faq-trigger:hover {
  color: rgba(201, 75, 42, 0.9);
}

.faq-trigger__text {
  flex: 1;
}

.faq-trigger__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: rgba(201, 75, 42, 0.6);
}

.faq-item[aria-expanded="true"] .faq-trigger__icon {
  transform: rotate(180deg);
  color: rgba(201, 75, 42, 0.9);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item[aria-expanded="true"] .faq-content {
  max-height: 500px;
}

.faq-content__text {
  padding: 0 1.5rem 1.5rem;
  color: rgba(200, 198, 195, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Contact Process Section */
.contact-process-section {
  position: relative;
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.contact-process-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(
    90deg,
    #1a1828 0%,
    #221c2e 25%,
    #2a2028 55%,
    #1a1518 80%,
    #0d0d0d 100%
  );
}

.contact-process-section__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.contact-process-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-process-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-process-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.contact-process-section__subtitle {
  font-size: 1.1rem;
  color: rgba(200, 198, 195, 0.85);
  line-height: 1.6;
}

.contact-process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 12px;
  background: rgba(45, 40, 48, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  align-items: start;
}

.contact-process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201, 75, 42, 0.2), rgba(220, 100, 60, 0.2));
  color: rgba(201, 75, 42, 0.9);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-process-step__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-process-step__description {
  color: rgba(200, 198, 195, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.contact-process-step__duration {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(201, 75, 42, 0.1);
  border: 1px solid rgba(201, 75, 42, 0.2);
  border-radius: 6px;
  font-size: 0.85rem;
  color: rgba(201, 75, 42, 0.9);
  font-weight: 500;
}

.contact-process-step__connector {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .inquiry-form__row {
    grid-template-columns: 1fr;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .why-work-grid {
    grid-template-columns: 1fr;
  }

  .contact-process-step {
    grid-template-columns: 1fr;
  }

  .contact-options-section__title,
  .inquiry-form-section__title,
  .why-work-section__title,
  .faq-section__title,
  .contact-process-section__title {
    font-size: 1.75rem;
  }

  .faq-trigger {
    padding: 1rem;
  }

  .faq-content__text {
    padding: 0 1rem 1rem;
  }
}
