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

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.contact-page {
  padding-top: 80px;
}

.contact-hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-family: "Futura", "Poppins", sans-serif;
  font-weight: 900;
  font-size: 56px;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.contact-hero-sub {
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.contact-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

.contact-note {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

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

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

.contact-label {
  font-weight: 700;
  font-size: 15px;
  color: #353030;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-required {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #5380d3, #2b426d);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.contact-input,
.contact-textarea {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #353030;
  background: #f8f8fa;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #5380d3;
  box-shadow: 0 0 0 3px rgba(83, 128, 211, 0.12);
}

.contact-textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-btn-wrap {
  text-align: center;
  margin-top: 16px;
}

.contact-submit-btn {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(135deg, #5380d3, #2b426d);
  border: none;
  border-radius: 40px;
  padding: 16px 64px;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}

.contact-submit-btn:hover {
  opacity: 0.8;
}

.contact-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 16px 40px;
  }

  .contact-hero-title {
    font-size: 36px;
  }

  .contact-content {
    padding: 40px 16px 60px;
  }

  .contact-submit-btn {
    width: 100%;
    padding: 16px 20px;
  }
}
