/* Contact Page - Minimal Clean Styles */

/* 전체 레이아웃 스타일 */
body {
  padding-top: 64px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  background: #fff;
}

/* Hero Section */
.contact-hero {
  background: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #f8f8f8;
  color: #666;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.contact-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* Contact Info Section */
.contact-info-wide {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-info-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s ease;
}

.contact-info-item:hover {
  border-color: #ddd;
}

.contact-info-label {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 16px;
}

.contact-info-link {
  font-size: 1rem;
  color: #666;
  text-decoration: none;
  font-weight: 300;
  display: block;
  margin-bottom: 8px;
}

.contact-info-link:hover {
  color: #333;
}

.contact-info-text {
  font-size: 1rem;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

/* 지도 스타일 */
.contact-info-item iframe {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  margin-top: 16px;
}

/* Contact Form Section */
.contact-form-section {
  background: #fff;
  padding: 80px 0;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.form-header h2 {
  font-size: 2rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 16px;
}

.form-header p {
  font-size: 1rem;
  color: #666;
  font-weight: 300;
  line-height: 1.6;
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 300;
  color: #555;
  background: #fff;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ccc;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-weight: 300;
}

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

.form-group select {
  cursor: pointer;
}

/* Submit Button */
.btn-primary {
  background: #fff;
  color: #666;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  text-decoration: none;
}

.btn-primary:hover {
  border-color: #ccc;
  color: #333;
}

.btn-primary i {
  font-size: 0.9rem;
}

/* Map Modal */
#mapModal {
  backdrop-filter: blur(4px);
}

#mapModal > div {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

#closeMapModal {
  color: #666;
  transition: color 0.2s ease;
}

#closeMapModal:hover {
  color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-info-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 0 40px 0;
  }
  
  .contact-header h1 {
    font-size: 2rem;
  }
  
  .contact-info-wide,
  .contact-form-section {
    padding: 60px 0;
  }
  
  .form-header h2 {
    font-size: 1.7rem;
    margin-bottom: 40px;
  }
  
  .form-wrapper {
    padding: 0 16px;
  }
  
  .contact-info-row {
    padding: 0 16px;
    gap: 24px;
  }
  
  .contact-info-item {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .contact-info-item iframe {
    height: 150px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
  }
  
  .btn-primary {
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
  }
} 