/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f6fa;
  color: #222;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.contact h2 {
  font-size: 2.6rem;
  color: #007bff;
  margin-bottom: 10px;
}

.contact .subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.05rem;
}

/* Container */
.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

/* Info Section */
.contact-info {
  flex: 1;
  min-width: 280px;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  margin-bottom: 20px;
  color: #222;
}

.contact-info p {
  color: #555;
  margin-bottom: 12px;
}

/* Form Section */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #f8faff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.send-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.send-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Map */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact h2 {
    font-size: 2rem;
  }

  .contact .subtitle {
    font-size: 0.95rem;
  }

  .contact-form,
  .contact-info {
    padding: 25px;
  }
}

/*  */
/* Social Media Icons */
.contact .social-media {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 25px;
  padding: 0;
}

/* Each icon link container */
.contact .social-media li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f5f6fa;
  color: #007bff;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* Icon SVG */
.contact .social-media .icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.contact .social-media li a:hover {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
}

.contact .social-media li a:hover .icon {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 600px) {
  .contact .social-media {
    gap: 14px;
  }

  .contact .social-media li a {
    width: 38px;
    height: 38px;
  }

  .contact .social-media .icon {
    width: 20px;
    height: 20px;
  }
}

/* Underline */
hr {
  border: none;
  height: 4px;
  background: linear-gradient(to right, #007bff 50%, transparent 50%);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  position: relative;
  margin: 30px auto;
  width: 90%;
  /* max-width: 200px; */
}