* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  color: white;
  background: #000;
}

/* Background Image */
.bg-image {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content h1 {
  font-size: 4rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.status-text {
  opacity: 0.65;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.inquiry-text {
  opacity: 0.75;
  font-size: 0.9rem;
  margin-top: 1.25rem;
  line-height: 1.6;
}

.email-link {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color 0.3s ease;
}

.email-link:hover {
  border-bottom-color: rgba(255,255,255,0.8);
}

.copy-hint {
  opacity: 0.45;
  font-size: 0.75rem;
  margin-top: 0.4rem;
}

/* Scroll Hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0.5;
  animation: float 3s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}

.scroll-arrow {
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* Contact Section */
.contact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.contact-container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 40px;
  line-height: 1.6;
}

.inline-email-link {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.inline-email-link:hover {
  border-bottom-color: white;
  opacity: 1;
}

/* Contact Form */
.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  color: #000;
  background: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.submit-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0);
}

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

.spinner {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-status {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
  text-align: center;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.form-status.error {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-title {
    font-size: 2rem;
  }

  .scroll-hint {
    bottom: 30px;
  }
}
