.contact-section {
    padding: 4rem 0;
    background: var(--white);
  }
  
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .contact-info {
    animation: slideInLeft 0.8s ease-out;
  }
  
  .contact-heading {
    color: var(--red);
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  
  .contact-details {
    margin-bottom: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--navy);
  }
  
  .contact-item i {
    width: 40px;
    height: 40px;
    background: var(--red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
  }
  
  .contact-form {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideInRight 0.8s ease-out;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    background: var(--red);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .submit-btn:hover {
    background: var(--beige);
    transform: translateY(-2px);
  }
  
  .map-section {
    width: 100%;
    height: 400px;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  
  .map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .map-frame {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  @media (max-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .contact-heading {
      font-size: 2rem;
    }
    
    .map-section {
      height: 300px;
    }
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .success-message {
    display: none;
    background: #2ecc71;
    color: white;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
  }
  
  .error-message {
    display: none;
    background: #e74c3c;
    color: white;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
  }
  
  /* Mobile responsiveness additions */
  @media (max-width: 480px) {
    .top-bar-content {
      flex-direction: column;
      align-items: center;
      padding: 0.5rem;
    }
    
    .contact-heading {
      font-size: 1.8rem;
    }
    
    .contact-item {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
      font-size: 0.9rem;
    }
    
    .submit-btn {
      width: 100%;
    }
  }