/* LOCATION SECTION */
.location-section {
  display: flex;
  gap: 40px;
  padding: 60px 40px;
  background-color: #ffffff;  
}


.location-info {
  width: 50%;
  margin-left: 30px;
}

.location-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #330099;   
}

.info-block {
  margin-bottom: 18px;
}

.info-block h3 {
  font-size: 18px;
  margin-bottom: 4px;
  color: #333;
}

.info-block p {
  margin: 0;
  line-height: 1.5;
  color: #555;
}

.info-block a {
  color: #555;
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}


.location-map {
  width: 50%;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;   
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .location-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .location-info,
  .location-map {
    width: 100%;
  }

  .location-map iframe {
    min-height: 260px;
  }
}



/* CONTACT HERO SECTION */
.contact-hero {
    background-color: #e6e6e6; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    gap: 40px;
}


.contact-hero-image {
  width: 50%;
  overflow: hidden;
}

.contact-hero-image img {
    width: 100%;
    border-radius: 20px;   
    object-fit: cover;
}


.contact-hero-form {
  width: 50%;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}

.contact-hero-form h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #4a2b8a; 
}

.contact-hero-form p {
  margin-bottom: 20px;
  color: #555;
}


.contact-form {
  background-color: #ffffff;
}

.form-row {
  margin-bottom: 15px;
}

.form-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.form-row label span {
  color: #d03b71; 
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #7d4ad8;
  box-shadow: 0 0 0 2px rgba(125, 74, 216, 0.15);
}

/* button */
.contact-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  background-color: #d83c7d;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.1s ease;
}

.contact-btn:hover {
  background-color: #b52f67;
  transform: translateY(-1px);
}


@media (max-width: 900px) {
  .contact-hero {
    flex-direction: column;
  }

  .contact-hero-image,
  .contact-hero-form {
    width: 100%;
  }

  .contact-hero-form {
    padding: 30px 20px;
  }
}
