.section_contact {
  padding: 100px 0px;
  font-family: 'Poppins', sans-serif;
}


.contact-map {
  width: 100%;
  height: 450px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-section {
  position: relative;
  min-height: 60vh;
  align-items: center;
  color: #fff;
  background-color: #f0f0f0;
  overflow: hidden;
  padding: 40px 0;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #141414;
  margin-bottom: 30px;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section_contact h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f1a36;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}

.section_contact h2::after {
  content: '';
  display: block;
  width: 100px;
  margin: 12px auto 0;
  height: 6px;
  margin-top: 12px;
  border-radius: 3px;
  background-color: #30709b;
}

.section_contact h2 span {
  color: #30709b;
}

/* Bubbles */
.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at top left, #27bcee, #1788ae);
  opacity: 0.25;
  z-index: 0;
  animation: float 10s infinite ease-in-out alternate;
}

.contact-section::before {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -60px;
}

.contact-section::after {
  width: 180px;
  height: 180px;
  bottom: -50px;
  right: -50px;
}

.contact-section .bubble {
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top left, #4ecde6, #1788ae);
  border-radius: 50%;
  opacity: 0.2;
  top: 40%;
  left: 40%;
  z-index: 0;
  animation: float2 12s infinite ease-in-out alternate;
}

/* Floating Animations */
@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }

  100% {
    transform: translateY(-40px) scale(1.1);
  }
}

@keyframes float2 {
  0% {
    transform: translateY(0) translateX(0) scale(1);
  }

  100% {
    transform: translateY(-50px) translateX(40px) scale(1.15);
  }
}

/* Contact container */
.contact-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  /* padding: 20px; */
}

/* Left Side Image */
.contact-text {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-text img {
  width: 110%;
  max-width: 600px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Right Side Form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  max-width: 650px;
  width: 110%;
}

.contact-form .contact-form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-form .contact-form-row input,
.contact-form .contact-form-row select {
  flex: 1;
  min-width: 200px;
}

/* Inputs, Textarea, Select */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #1788ae;
  box-shadow: 0 0 8px rgba(23, 136, 174, 0.25);
  background: #fff;
}

.contact-form textarea {
  resize: none;
}

/* Submit Button */
.contact-form button {
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #1788ae;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #126c8b;
}

/* ----RESPONSIVE-------------- */
@media (max-width: 768px) {
  .section_contact {
    padding: 70px 0px;
  }

  .contact-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
    align-items: center;
  }

  .contact-text img {
    width: 100%;
    max-width: 530px;
  }

  /* Right Side Form */
  .contact-form form {
    width: 100%;
    /* ✅ Both same width */
    max-width: 530px;
  }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  .section_contact {
    padding: 60px 0px;
  }

  .contact-container {
    gap: 30px;
  }

  .contact-text img {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
  }

  .contact-form form {
    padding: 20px;
  }

  .contact-form .contact-form-row {
    gap: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.95rem;
    padding: 12px;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 12px;
  }
}