/* Contact Section */
.contact-container {
    margin: 0px;
    padding: 80px;
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.contact-left {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  margin-top: 10px;
}
.contact-right {
  background: url('https://images.unsplash.com/photo-1589519160732-57fc498494f8?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8d29ybGR8ZW58MHx8MHx8fDA%3D') no-repeat center center/cover; /* 👈 bg image */
  padding: 20px;
  color: white;             
  position: relative;
  border-radius: 8px;        
  z-index: 1;
  width: 50%;
  margin-top: 10px;

  
}

/* Optional dark overlay for readability */
.contact-right::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);  /* 👈 transparent black overlay */
  border-radius: 8px;
  z-index: -1;  /* keeps text above overlay */
}

.contact-left form input,
.contact-left form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.contact-left form button {
  background: #007BFF;
  color: #fff;
  padding: 5px;
  margin: 5px;
  border-radius: 10px;
}
.contact-left form button:hover {
  background: #0056b3;
}
.contact-right p {
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: white;
}
.contact-right i {
  margin-right: 10px;
  color: #007BFF;
}
.map-container {
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* 
Map section */


/* 
.map-wrapper {
      width: 85%;
      height: 80vh; /* 80% of screen height 
      position: relative;
      margin-bottom: 20px;
      margin-left: 7%;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
      transition: opacity 0.5s ease;
    }

    .map-buttons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 20px;
    }

    .map-buttons button {
      padding: 10px 20px;
      border: none;
      background: #007BFF;
      color: #fff;
      font-size: 16px;
      border-radius: 5px;
      cursor: pointer;
    } */

@media (max-width: 768px) {

  /* Contact container */
  .contact-container {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    padding: 60px;
  }

  /* Left & Right stack */
  .contact-left,
  .contact-right {
    width: 100%;
    min-width: auto;
    padding: 18px;
  }

  /* Background section height fix */
  .contact-right {
    background-position: center;
    background-size: cover;
  }

  /* Text readability */
  .contact-right p {
    font-size: 13px;
  }

  /* Form inputs */
  .contact-left form input,
  .contact-left form textarea {
    padding: 10px;
    font-size: 14px;
  }

  /* Button */
  .contact-left form button {
    width: 100%;
    padding: 10px;
    font-size: 15px;
  }

  /* Map */
  .map-container {
    margin-top: 15px;
  }
}
