/* ---------------------------------
   CONTACT PAGE – Lovable Redesign
---------------------------------- */

/* Hero Section */
.hero-contact {
  background: url('../images/contact-hero.jpg') center/cover no-repeat;
  padding: 130px 30px;
  text-align: center;
  color: #fff;
  position: relative;
  border-radius: 20px;
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.65);
  font-weight: 600;
  font-size: 1.4rem;
  user-select: none;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.contact-section {
  padding: 80px 25px;
  max-width: 1150px;
  margin: 0 auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

/* Contact Info Card */
.contact-info {
  flex: 1 1 350px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.12);
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.18);
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.6rem;
  color: #007BFF;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-info ul li {
  font-size: 1.1rem;
  margin-bottom: 14px;
  position: relative;
  padding-left: 26px;
  color: #333;
}

.contact-info ul li::before {
  content: '📍';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.2rem;
  color: #007BFF;
}

.contact-info a {
  color: #007BFF;
  font-weight: 500;
  transition: color 0.3s ease;
}
.contact-info a:hover {
  color: #0056b3;
}

/* Contact Form */
.contact-form {
  flex: 1 1 350px;
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.12);
  transition: all 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.18);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 2px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.25);
  outline: none;
}

.contact-form .btn {
  background: #007BFF;
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 0;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.form-message {
  color: #28a745;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
  animation: fadeInUp 0.8s ease forwards;
}

/* === Map Section === */
.map-section {
  margin: 60px auto 100px;
  max-width: 1200px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  transition: transform 0.3s ease;
}


.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Overlay Label */
.map-section::before {
  content: "📍 Find Us Here";
  position: absolute;
  top: 10px;
  left:10px;
  background: rgba(0, 123, 255, 0.9);
  color: white;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
}

/* Fade-In Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    max-width: 100%;
  }

  .map-section {
    margin: 40px 15px 80px;
    height: 400px;
  }

  .map-section::before {
    font-size: 0.85rem;
    padding: 6px 12px;
    top: 15px;
    left: 15px;
  }
}
/* Shake animation */
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}
.shake {
  animation: shake 0.4s;
}

/* Input focus glow effect */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007BFF;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.4);
}

/* Click bounce effect for buttons */
.contact-form .btn:active {
  transform: scale(0.96);
  transition: transform 0.1s;
}
