/* Contact Page Styles */

.contact-header {
  padding: 80px 0 64px;
}

.contact-header__heading {
  margin-bottom: 32px;
}

.contact-header__title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-header__icon {
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--color-main);
  border-radius: 50%;
}

.contact-header__subtitle {
  font-family: var(--font-family-main);
  font-size: var(--font-size-8);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
}

.contact-header__title {
  font-family: var(--font-family-accent);
  font-size: var(--font-size-1);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-black);
}

.contact-header__text {
  font-family: var(--font-family-main);
  font-size: var(--font-size-8);
  line-height: 1.8;
  color: var(--color-black);
  max-width: 1120px;
  margin-top: 24px;
} 

.contact-form {
  background: #F0F3F6;
  padding: 40px 24px 80px;
}

/* LINE Contact Section */
.line-contact {
  background-color: var(--color-white);
  padding: 80px 0;
  margin-top: 64px;
}

.line-contact__content {
  border: 1px solid #06C755;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
  padding: 40px;
  width: 100%;
}

.line-contact__heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.line-contact__icon {
  width: 48px;
  height: 48px;
  background-image: url('../../images/line-brand-icon.png');
  background-size: cover;
  background-position: center;
}

.line-contact__title {
  font-family: var(--font-family-main);
  font-size: var(--font-size-4);
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-black);
}

.line-contact__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #06C755;
  padding: 24px 32px;
  width: 380px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.line-contact__button:hover {
  opacity: 0.9;
}

.line-contact__button-text {
  font-family: var(--font-family-main);
  font-size: var(--font-size-7);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
}

.line-contact__button-arrow {
  width: 49px;
  height: 8px;
  transition: transform 0.3s;
}

.line-contact__button:hover .line-contact__button-arrow {
  transform: translateX(10px);
}



@media (max-width: 960px) {
  .contact-header {
    padding: 40px 0 24px;
  }
  .contact-header__text {
    margin-top: 40px;
  }

  .contact-form {
    padding: 8px 24px 24px;
  }

  .line-contact {
    padding: 40px 0;
    margin-top: 0;
  }
  .line-contact__content {
    padding: 24px;
    gap: 24px;
  }
  .line-contact__title {
    font-size: var(--font-size-8);
  }
  
}
