/* Contact Form Section */
  .contact-form-section {
    padding: 40px 0;
    position: relative;
    z-index: 2;
  }
  
  .contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .contact-form-content {
    max-width: 500px;
  }
  
  .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
  }
  
  .section-description {
    font-size: 1.125rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  
  .contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.5rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
  }
  
  .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: var(--white);
    transition: all 0.2s ease;
  }
  
  .form-control:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
  }
  
  .form-control::placeholder {
    color: rgba(245, 245, 245, 0.4);
  }
  
  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .form-submit {
    background-color: #3b82f6;
    color: #f5f5f5;
    padding: 0.9rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
      z-index: 10;
  position: relative;
  }
  
  .form-submit:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
      z-index: 10;
  position: relative;
  }
 @media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-form-content{
        max-width: 100%;
    }
 }
 
 @media (max-width: 768px) {
     .form-row{
         grid-template-columns: 1fr;
     }
 }
  
 @media (max-width: 480px) {
     .contact-form-section{
         padding: 2rem 0;
     }
     .form-section{
         padding: 2rem 0;
     }
     .contact-form{
         padding: 1.5rem;
     }
     .section-title{
         font-size: 1.75rem;
     }
 }