.contact-hero {
  /* background-image:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url("../img/img5.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh; */

  position: relative;
  min-height: 100vh;
  background-image: url("../img/img5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  user-select: none;
  padding-top: 140px; 
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
  padding: 0px 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 100px;
}

.contact-hero-content p{
  color: #e5e7eb;
  font-size: 1.05rem;
  line-height: 2;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.contact-hero-content h1{
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.contact-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}


.contact-info h2,
.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111827;
}

.info-item {
  margin-bottom: 1.4rem;
}

.info-item h4 {
  margin-bottom: 0.3rem;
  color: #111827;
  font-size: 1rem;
}

.info-item p,
.info-item a {
  color: #4b5563;
  font-size: 0.95rem;
  text-decoration: none;
}

.info-item a:hover {
  color: #111827;
  text-decoration: underline;
}


.whatsapp-btn {
  background: #25d366;
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  display: inline-block;
  font-weight: 500;
  margin-top: 0.5rem;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

.contact-form {
  border: 1px solid red;
  padding: 2rem;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.077);
}

.form-note {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-family: inherit;
  font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #111827;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Disabled button (default) */
.contact-form button {
  width: 100%;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  background: #9ca3af;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
}

/* Active button (enable later with JS) */
.contact-form button.active {
  background: #111827;
  cursor: pointer;
}

.contact-form button.active:hover {
  background: #000000;
}


.map-section {
  margin-top: 3rem;
}

.map-section iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}


@media (max-width: 768px) {

  .contact-hero-content {
  padding: 0px 10px;
  margin-top: 200px;
  }

  .contact-hero{
    margin-top: 0px;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}
