

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color:  #1e3d59;
  
  color: rgb(244, 242, 242);
  padding: 15px 15px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}



/* Contact Section */
.contact-section {
  background-color: #fff;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Contact Info */
.contact-info {
  flex: 1 1 350px;
}

.contact-info h3 {
  color: #1e3d59;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.contact-info p {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.contact-info i {
  color: #3ba776;
  margin-right: 10px;
}

/* WhatsApp Button Highlight */
.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #25D366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebd5a;
  transform: scale(1.05);
}

.whatsapp-btn i {
  margin-right: 8px;
  color: black;
}

/* Contact Form */
.contact-form {
  flex: 1 1 400px;
}

.contact-form h3 {
  color: #1e3d59;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 15px;
  padding: 12px;
  font-size: 1em;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #3ba776;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #1e3d59;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons i {
  font-size: 22px;
  margin-right: 15px;
  color: #1e3d59;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icons i:hover {
  color: #3ba776;
}

/* Footer */
.footer {
  text-align: center;
  background-color: #1e3d59;
  color: white;
  padding: 15px;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  /* Header adjustments */
  .site-header {
    padding: 15px 10px;
    flex-direction: column;
    text-align: center;
  }

  .header-contact {
    width: 100%;
    padding: 10px 5px !important;
  }

  .header-contact h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }

  .header-contact p {
    font-size: 0.9em;
    line-height: 1.4;
  }

  /* Contact Section adjustments */
  .contact-section {
    padding: 30px 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
  }

  .contact-info {
    flex: 1 1 100%;
    text-align: center;
  }

  .contact-info h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .contact-info p {
    font-size: 1em;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .contact-form {
    flex: 1 1 100%;
  }

  .contact-form h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px;
    font-size: 16px; /* Prevents zoom on iOS */
    margin-bottom: 15px;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form textarea {
    min-height: 120px;
  }

  .contact-form button {
    padding: 14px;
    font-size: 1em;
    width: 100%;
    min-height: 44px; /* Touch-friendly button size */
  }

  /* WhatsApp Button */
  .whatsapp-btn {
    display: inline-block;
    margin: 20px auto;
    padding: 14px 25px;
    font-size: 1em;
    min-height: 44px; /* Touch-friendly button size */
  }

  /* Social Icons */
  .social-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .social-icons i {
    font-size: 24px;
    margin-right: 0;
    padding: 8px;
    min-width: 44px; /* Touch-friendly icon size */
    text-align: center;
  }

  /* Footer */
  .footer {
    padding: 15px 10px;
    font-size: 0.9em;
    margin-top: 30px;
  }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
  .site-header {
    padding: 12px 8px;
  }

  .header-contact h1 {
    font-size: 1.3em;
  }

  .header-contact p {
    font-size: 0.85em;
  }

  .contact-section {
    padding: 25px 15px;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 1.3em;
  }

  .contact-info p {
    font-size: 0.95em;
  }

  .contact-container {
    gap: 25px;
    max-width: 100%;
    margin: 0 auto;
  }

  .whatsapp-btn {
    padding: 12px 20px;
    font-size: 0.95em;
    width: 100%;
    max-width: 300px;
  }

  .social-icons i {
    font-size: 22px;
  }

  .footer {
    font-size: 0.85em;
    padding: 12px 8px;
  }
}