/* Contact Page Styles */

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    text-align: center;
  }
  
  .animated-gradient {
    background: linear-gradient(135deg, rgba(8, 133, 67, 0.1) 0%, rgba(210, 149, 97, 0.1) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .hero-content {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .hero h1 {
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    color: var(--dark-light);
    margin-bottom: 2rem;
  }
  
  /* Contact Section */
  .contact-section {
    margin-top: -5rem;
    margin-bottom: 4rem;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-card,
  .info-card {
    background-color: var(--light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary);
  }
  
  .form-card h2,
  .info-card h2 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  
  /* Contact Form */
  .form-success {
    text-align: center;
    padding: 3rem 0;
  }
  
  .success-icon {
    background-color: rgba(8, 133, 67, 0.1);
    color: var(--primary);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
  }
  
  .form-success h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .form-success p {
    color: var(--dark-light);
    max-width: 24rem;
    margin: 0 auto;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--secondary);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(8, 133, 67, 0.2);
  }
  
  .error-message {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
  }
  
  .form-submit {
    display: flex;
    justify-content: flex-end;
  }
  
  .form-submit button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  /* Contact Info */
  .info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .info-item {
    display: flex;
    gap: 1rem;
  }
  
  .info-icon {
    background-color: rgba(8, 133, 67, 0.1);
    color: var(--primary);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .info-content h3 {
    font-weight: 500;
    margin-bottom: 0.25rem;
  }
  
  .info-content p {
    color: var(--dark-light);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .info-content a {
    color: var(--primary);
    font-weight: 500;
  }
  
  .info-content a:hover {
    text-decoration: underline;
  }
  
  .social-connect {
    padding-top: 2rem;
    border-top: 1px solid rgba(210, 149, 97, 0.2);
  }
  
  .social-connect h3 {
    font-weight: 500;
    margin-bottom: 1rem;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    background-color: rgba(15, 3, 38, 0.05);
    color: var(--dark);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-icon:hover {
    background-color: rgba(15, 3, 38, 0.1);
  }
  
  /* Map Section */
  .map-section {
    margin-bottom: 4rem;
  }
  
  .map-card {
    background-color: var(--light);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--secondary);
  }
  
  .map-placeholder {
    background-color: rgba(15, 3, 38, 0.05);
    border-radius: var(--border-radius);
    height: 24rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .map-marker {
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .contact-grid {
      grid-template-columns: 2fr 1fr;
    }
  }
  
  