/* Contact Form Page Styles */

/* ========================================
   Contact Hero Section
======================================== */
.contact-hero {
  position: relative;
  background-color: var(--color-primary);
  padding: 100px 20px;
  overflow: hidden;
}

.contact-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-hero__label {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.8px;
  color: var(--color-white);
  margin: 0 0 16px 0;
}

.contact-hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 76.8px;
  letter-spacing: 0;
  color: var(--color-white);
  margin: 0;
}

.contact-hero__bg-text {
  position: absolute;
  right: 0;
  bottom: 0;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 200px;
  line-height: 200px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.15);
  z-index: 1;
  text-align: right;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ========================================
   Contact Introduction Section
======================================== */
.contact-intro {
  background-color: var(--color-bg-cream);
  padding: 60px 20px 0;
}

.contact-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-text-primary);
  margin: 0;
}

.contact-intro__text+.contact-intro__text {
  margin-top: 15px;
}

/* ========================================
   Contact Form Section
======================================== */
.contact-form-section {
  background-color: var(--color-bg-cream);
  padding: 80px 0;
  min-height: calc(100vh - 200px);
}

.contact-form-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-section__header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-form-section__title {
  font-size: 48px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-form-section__description {
  font-size: 18px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-section__content {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form-iframe {
  display: block;
  width: 100%;
  border: none;
  transition: height 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0;
  }

  .contact-form-section__header {
    margin-bottom: 40px;
  }

  .contact-form-section__title {
    font-size: 32px;
  }

  .contact-form-section__description {
    font-size: 16px;
  }

  .contact-form-section__content {
    padding: 24px 16px;
    border-radius: 8px;
  }

  .contact-form-iframe {
    min-height: 700px;
  }

  /* Contact Hero Mobile */
  .contact-hero {
    padding: 60px 20px;
  }

  .contact-hero__label {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
  }

  .contact-hero__title {
    font-size: 28px;
    line-height: 36px;
  }

  .contact-hero__bg-text {
    font-size: 80px;
    line-height: 80px;
  }

  /* Contact Intro Mobile */
  .contact-intro {
    padding: 40px 20px 0;
  }

  .contact-intro__text {
    font-size: 14px;
  }
}


@media (max-width: 375px) {
  .contact-hero__title {
    font-size: 24px;
    line-height: 32px;
  }

  .contact-hero__bg-text {
    font-size: 55px;
    line-height: 55px;
  }
}
