/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #000000, #111111, #0c0c0c);
    color: #fff;
  }
  
  .contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding-top: 2rem;
    width: 100%;
  }
  
  .contact-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-container > * {
    grid-column: 2;
  }
  
  .contact-header h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    font-family: "Geist", sans-serif;
  }
  
  .contact-header p {
    color: rgba(136, 136, 136, 0.9);
    font-size: 1rem;
    font-family: "Geist Mono", monospace;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-box {
    background: rgba(12, 12, 12, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 680px;
  }
  
  .contact-box h1 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: "Geist", sans-serif;
  }
  
  .contact-box p {
    color: rgba(136, 136, 136, 0.9);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-family: "Geist Mono", monospace;
  }
  
  .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .form-group {
    margin-bottom: 1rem;
  }
  
  .form-group.full-width {
    grid-column: 1 / -1;
  }
  
  .form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 0.75rem;
    font-family: "Geist Mono", monospace;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(8, 8, 8, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: "Geist Mono", monospace;
    font-size: 14px;
    transition: all 0.2s ease;
  }
  
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(8, 8, 8, 0.95);
  }
  
  .contact-submit {
    grid-column: 1 / -1;
    padding: 0.875rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-family: "Geist", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .contact-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  
  @media (max-width: 768px) {
    .contact-box {
      padding: 1.5rem;
      margin: 1rem;
      border-radius: 8px;
    }
  
    .contact-form {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }
  