/* ================= CONTACT CSS ================= */
 .map-wrapper {
  width: 100%;
  height: 400px;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Section padding */
#contact {
  /*padding: 50px 0;*/
  font-family: Arial, Helvetica, sans-serif;
}

/* Links */
#contact a {
  color: black;
  text-decoration: none;
}
#contact a:hover {
  color: #5b5b5b;
}

/* Contact info styling */
.info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}
.info-item i {
  font-size: 35px;
  color: #2a2a2a;
  margin-right: 15px;
}
.info-item h3 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #343434;
}
.info-item p {
  margin: 0;
  font-size: 16px;
  color: #000000;
}

/* Form styling */
.php-email-form input,
.php-email-form textarea {
  border-radius: 6px;
  padding: 10px;
  border: 2px solid #ccc;
  font-size: 16px;
  width: 100%;
}
.php-email-form input:focus,
.php-email-form textarea:focus {
  border-color: #000000;
  outline: none;
}
.php-email-form button {
  font-size: 16px;
  border-radius: 6px;
  background: #000000;
  color: #fff;
  padding: 10px 20px;
  border: none;
}
.php-email-form button:hover {
  background: #04b9c7;
}
/* ===== CONTACT SECTION ANIMATION ===== */

/* Common fade-up animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animate the entire left and right columns */
.col-lg-6 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}

/* Stagger animation timing */
.col-lg-6:nth-child(1) {
  animation-delay: 0.2s; /* Info section */
}
.col-lg-6:nth-child(2) {
  animation-delay: 0.5s; /* Form section */
}

/* Animate each info-item inside the left column */
.info-item {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger info-item animation */
.info-item:nth-child(1) { animation-delay: 0.3s; }
.info-item:nth-child(2) { animation-delay: 0.5s; }
.info-item:nth-child(3) { animation-delay: 0.7s; }

/* Animate form inputs one by one */
.php-email-form .form-control,
.php-email-form textarea,
.php-email-form button {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.php-email-form .form-control:nth-child(1) { animation-delay: 0.5s; }
.php-email-form .form-control:nth-child(2) { animation-delay: 0.7s; }
.php-email-form .form-control:nth-child(3) { animation-delay: 0.9s; }
.php-email-form textarea { animation-delay: 1.1s; }
.php-email-form button { animation-delay: 1.3s; }

/* Small hover animation for the button */
.php-email-form button {
  background: #222;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.php-email-form button:hover {
  background: #444;
  transform: translateY(-2px);
}
/* ===== CONTACT INFO HOVER EFFECTS ===== */

/* Info item box style */
.info-item {
  
  padding: 20px;
  border-radius: 10px;
  transition: all 0.4s ease;
  cursor: default;
}

/* Align icon and text neatly */
.info-item i {
  font-size: 28px;
  color: #000000; /* brand accent */
  margin-right: 20px;
  transition: all 0.3s ease;
}

/* Hover animation */
.info-item:hover {
  transform: translateY(-8px);
}

/* Icon animation on hover */
.info-item:hover i {
  color: #000000;
  transform: scale(1.1) rotate(-5deg);
}

/* Headings and text inside info items */
.info-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
  transition: color 0.3s ease;
}

.info-item p, 
.info-item a {
  color: #555;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-item:hover h3,
.info-item:hover p,
.info-item:hover a {
  color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .map-wrapper {
    height: 300px;
  }
}