.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1633356122544-f134324ef6db?w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;    
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

   .hero-content {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #00000094;
        padding: 0;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
        animation: fadeInUp 1s ease-out;
        color: #fff;
    }

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
}

  /* Contact Container */
  .contact-container {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 2rem;
  }

  /* Two Column Layout */
  .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 3rem;
  }

  .info-map iframe {
      height: 100%;
      width: 100%;
  }

  /* Contact Form */
  .contact-form-section h2 {
      font-size: 1.8rem;
      /* color: #1a1a1a; */
      margin-bottom: 1.5rem;
      text-align: center;
  }

  .contact-form {
      padding: 60px 20px;
  }

  .form-group {
      margin-bottom: 1.5rem;
  }

  .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: #249545;
      font-weight: 500;
  }

  #contactForm {
      max-width: 50%;
      margin: 0 auto;
      background: white;
      padding: 30px;
      border-radius: 12px;
      margin-bottom: 20px;
  }
.wpcf7-response-output {
    max-width: 620px;
    margin: 0 auto !important;
    color:#ffb900;
}
.wpcf7 form.sent .wpcf7-response-output{
    color:#46b450;
}
  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: inherit;
      font-size: 1rem;
      transition: border-color 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
      outline: none;
      border-color: #2FA55A;
      box-shadow: 0 0 0 3px rgba(47, 165, 90, 0.1);
  }

  .form-group textarea {
      resize: vertical;
      min-height: 120px;
  }

  .submit-btn {
      background: #2FA55A;
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      /* transition: background 0.3s ease; */
      width: 100%;
  }

  .submit-btn:hover {
      background: #249545;
  }

  /* Contact Info Section */
  .contact-info-section {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .contact-info-section h2 {
      font-size: 1.8rem;
      /* color: #1a1a1a; */
      margin-bottom: 2rem;
  }

  .info-item {
      margin-bottom: 2rem;
      padding-bottom: 0;
      border-bottom: 1px solid #eee;
  }

  .info-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
  }

  .info-item h3 {
      color: #2FA55A;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
  }

  .info-item p {
      color: #666;
      font-size: 0.95rem;
  }

  .info-item a {
      color: #2FA55A;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .info-item a:hover {
      color: #249545;
  }

  /* Offices Section */
  .offices-section {
      margin-top: 4rem;
  }

  .offices-section h2 {
      font-size: 2rem;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 3rem;
  }

  .offices-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
  }

  .office-card {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .office-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .office-card h3 {
      color: #2FA55A;
      font-size: 1.3rem;
      margin-bottom: 1rem;
  }

  .office-card p {
      color: #666;
      margin-bottom: 0.8rem;
      line-height: 1.8;
  }

  /* Footer */
  footer {
      background: #1a1a1a;
      color: white;
      padding: 3rem 2rem;
      /*margin-top: 5rem;*/
  }

  .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
  }

  .footer-section h4 {
      color: #2FA55A;
      margin-bottom: 1rem;
      font-size: 1.1rem;
  }

  .footer-section ul {
      list-style: none;
  }

  .footer-section ul li {
      margin-bottom: 0.5rem;
  }

  .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.95rem;
  }

  .footer-section a:hover {
      color: #2FA55A;
  }

  .footer-bottom {
      text-align: center;
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid #333;
      color: #999;
      font-size: 0.9rem;
  }

  /* Success Message */
  .success-message {
      background: #d4edda;
      color: #155724;
      padding: 1rem;
      border-radius: 5px;
      margin-bottom: 1.5rem;
      display: none;
  }
  
  .custom-cf7-error {
    color: #dc3232;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.cf7-error-field {
    border: 1px solid #dc3232 !important;
    background: #fff6f6;
}

  /* Responsive */
  @media (max-width: 768px) {
      .hero h1 {
          font-size: 2rem;
      }

      .hero {
          height: 300px;
      }

      .hero p {
          font-size: 1rem;
      }

      .contact-wrapper {
          grid-template-columns: 1fr;
          gap: 0;
      }

      .nav-links {
          display: none;
      }

      .offices-grid {
          grid-template-columns: 1fr;
      }

      .hero {
          padding: 3rem 1rem;
      }

      .contact-container {
          padding: 0 1rem;
      }

      #contactForm {
          max-width: 100%;
      }
  }

  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .animate {
      animation: fadeInUp 0.6s ease forwards;
      opacity: 0;
  }