* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 80%;
  font-family: 'Segoe UI', sans-serif;
}

.contact-section {
  position: relative;
  min-height: 50vh;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/map-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  transform: translateZ(0);
}

.contact-content {
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  padding: 60px 40px;
  /* margin: 0px 0; */
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.underline {
  text-align: center;
  position: relative;
  color: #28A0B8;
  font-weight: bold;
  margin-bottom: 40px;
}

.underline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 2px;
  background-color: #28A0B8;
  transform: translateX(-50%);
  z-index: -1;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  flex: 1;
  min-width: 300px;
  margin-left: 60px;
  margin-top: 40px;
}

.contact-left h3 {
  margin-bottom: 40px;
  font-size: 22px;
  color: #ffffff;
}

.contact-left ul {
  list-style: none;
}

.contact-left li {
  margin-bottom: 18px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-left i {
  color: #28A0B8;
  min-width: 20px;
  text-align: center;
}

.contact-left a {
  color: #28A0B8;
  text-decoration: none;
  word-break: break-all;
}

.contact-left a:hover {
  text-decoration: underline;
}

.contact-right {
  flex: 1;
  min-width: 300px;
  margin-top: 40px;
}

.contact-right h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #ffffff;
}

form input,
form textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #444;
  padding: 12px 15px;
  margin-bottom: 15px;
  border-radius: 6px;
  color: white;
  font-size: 16px;
}

form input::placeholder,
form textarea::placeholder {
  color: #bbb;
}

form button {
  background-color: #28A0B8;
  border: none;
  padding: 12px 25px;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

form button:hover {
  background-color: #1e8fa5;
}

.underline {
  position: relative;
  height: 2px;
  margin: 0 auto 40px auto;
  width: 100px;
  background-color: #28A0B8;
}

.fancy-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  width: 20%;
  position: relative;
}

.fancy-divider::before,
.fancy-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: #28A0B8;
  box-shadow: 0 0 10px #28A0B8;
}

.divider-icon {
  margin: 0 20px;
  color: #28A0B8;
  font-weight: bold;
  font-size: 1.2rem;
  font-family: 'Arial', sans-serif;
  position: relative;
  z-index: 2;
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .parallax-bg {
    background-attachment: scroll !important;
  }
}

@media (max-width: 768px) {
  .contact-content {
    padding: 40px 20px;
  }
  
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .contact-left, 
  .contact-right {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  
  .fancy-divider {
    width: 80%;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .contact-left h3,
  .contact-right h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  form input,
  form textarea {
    font-size: 14px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .contact-content {
    padding: 30px 15px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .contact-left li {
    font-size: 14px;
  }
  
  .fancy-divider {
    width: 90%;
  }
}

