/* Contact Hero Section */
.hero-small {
    background: url('greenplant.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    min-height: 250px; /* makes sure it's visible */
  }
  
  .hero-small::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* dark overlay so text is readable */
  }
  
  .hero-small .container {
    position: relative;
    z-index: 1;
  }
  
  /* Contact Section */
  .contact-section {
    padding: 80px 20px;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  
  .contact-form, .contact-map {
    flex: 1 1 400px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  
  .contact-form h2, .contact-map h2 {
    margin-bottom: 20px;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .contact-form button {
    padding: 12px 25px;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contact-form button:hover {
    background: var(--soft-black);
  }
  
  /* Responsive */
  @media(max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
    
    .contact-hero h1 {
      font-size: 2.2rem;
    }
    
    .contact-hero p {
      font-size: 1rem;
    }
  }
  
  @media(max-width: 480px) {
    .contact-hero {
      padding: 80px 15px 50px;
    }
  
    .contact-form, .contact-map {
      padding: 20px;
    }
  }

 /* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366; /* WhatsApp green */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    
    /* Start off-screen */
    transform: translateY(100px);
    opacity: 0;
  
    /* Animation */
    animation: slideIn 0.7s forwards;
    animation-delay: 0.3s; /* slight delay */
  }
  
  .floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  }
  
  /* Slide-in keyframes */
  @keyframes slideIn {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
   /* Contact Section */
   .contact {
    padding: 60px 20px;
  }
  .contact .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-info h2, .contact-form h2 {
    margin-bottom: 20px;
  }
  .btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
    text-decoration: none;
  }
  .btn-whatsapp:hover {
    background: #1ebe57;
  }
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  .contact-form button {
    background: var(--gold);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .contact-form button:hover {
    background: #b88a00;
  }
/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .contact-form, .contact-map {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  /* Mobile responsive */
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  