/* Contact Page Styles - Fully Responsive */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 60px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.breadcrumb-link {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #313131;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.breadcrumb-link:hover {
  opacity: 0.7;
}

.breadcrumb-icon {
  flex-shrink: 0;
}

.breadcrumb-current {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #313131;
  font-size: 14px;
}

.contact-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px 60px;
}

.contact-heading {
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #111111;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.96px;
  line-height: 32px;
  margin-bottom: 30px;
}

.contact-intro {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 12px;
  line-height: 25px;
  margin-bottom: 10px;
  text-align: center;
}

.contact-phone {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 12px;
  line-height: 28px;
  margin-bottom: 40px;
  text-align: center;
}

.phone-number {
  font-size: 16px;
  font-weight: 600;
  color: #AB7C53;
}

/* Contact Form */
.contact-form {
  width: 100%;
  max-width: 665px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 12px;
  letter-spacing: 0.4px;
  line-height: 18.6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.required {
  color: #C71717;
  font-size: 12px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  padding: 8px 12px;
  font-family: "Inter", Helvetica;
  font-size: 12px;
  color: #000000;
  outline: none;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: #AB7C53;
}

.form-input {
  height: 40px;
}

.form-input-half {
  max-width: 300px;
}

.form-input::placeholder {
  color: #b8b8b8;
  font-size: 11px;
}

.form-textarea {
  resize: vertical;
  min-height: 200px;
  padding: 12px;
}

.form-select-wrapper {
  position: relative;
  width: 100%;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 35px;
  cursor: pointer;
  height: 40px;
}

.select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0;
  justify-content: center;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  border: 1px solid #767676;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-label {
  font-family: "Noto Sans JP", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  line-height: 28px;
  cursor: pointer;
}

.checkbox-link {
  color: #ab7c53;
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  max-width: 314px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 5px;
  border: 1px solid #ab7c53;
  background: linear-gradient(0deg, rgba(175, 147, 110, 1) 0%, rgba(215, 191, 158, 1) 100%);
  font-family: "Inter", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: linear-gradient(0deg, rgba(155, 127, 90, 1) 0%, rgba(195, 171, 138, 1) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.form-submit:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .breadcrumb {
    padding: 0 40px;
  }
  
  .contact-main {
    padding: 0 40px 60px;
  }
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 0 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .contact-main {
    padding: 0 30px 40px;
  }
  
  .contact-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .contact-intro,
  .contact-phone {
    font-size: 11px;
  }
  
  .phone-number {
    font-size: 14px;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-input-half {
    max-width: 100%;
  }
  
  .form-checkbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .checkbox-label {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    padding: 0 20px;
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 12px;
  }
  
  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 12px;
  }
  
  .breadcrumb-icon {
    width: 14px;
    height: 14px;
  }
  
  .contact-main {
    padding: 0 20px 30px;
  }
  
  .contact-heading {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .contact-intro,
  .contact-phone {
    font-size: 10px;
    line-height: 1.6;
  }
  
  .phone-number {
    font-size: 13px;
    display: block;
    margin: 5px 0;
  }
  
  .form-label {
    font-size: 11px;
  }
  
  .form-input,
  .form-textarea,
  .form-select {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .form-input {
    height: 36px;
  }
  
  .form-select {
    height: 36px;
  }
  
  .form-textarea {
    min-height: 150px;
  }
  
  .form-submit {
    max-width: 100%;
    height: 48px;
    font-size: 14px;
  }
  
  .checkbox-input {
    width: 16px;
    height: 16px;
  }
  
  .checkbox-label {
    font-size: 11px;
  }
}
