


/* HERO */
.contact-hero {
  position: relative;
  width: 100%;
  height: 62vh !important;
  background: url('../images/contact-hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero-overlay {
  position: absolute;
  height:62vh !important;
  inset: 0;
  background: rgba(0,0,0,0.7);
}
.contact-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.contact-hero-content h1 {
  font-size: 42px !important;
  font-weight: 700;
  margin-top: 40px;
  font-family: 'Poppins',sans-serif;
}
.contact-hero-content p {
  font-size: 18px !important;
  font-family: 'Robot',sans-serif;
  font-weight: 300;
}

/* CONTACT SECTION */
.contact-section {
  background: #f5f5f5;
  padding: 80px 0;
}
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

/* LEFT FORM */
.contact-form {
  flex: 1.2;
  min-width: 350px;
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
   border: 1px solid #E0E0E0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.contact-form:hover {
  box-shadow: 0 0 15px #B88F44;
  border: 2px solid #B88F44;
}
.contact-form h2 {
  font-size: 36px;
  font-family: 'Poppins',sans-serif;
  font-weight: 700;
  margin-bottom: 25px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #B88F44;
  box-shadow: 0 0 8px #B88F44;
}
.contact-form button {
  background: #000;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-form button:hover {
  background: #B88F44;
  color: #fff;
  border: 2px solid #B88F44;
  box-shadow: 0 0 10px #B88F44;
}

/* RIGHT SIDE INFO */
.contact-info {
  flex: 0.8;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.info-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  color: #333;
  transition: 0.3s ease;
}
.info-item i {
  font-size: 22px;
  color: #B88F44;
}
.info-item:hover {
  box-shadow: 0 0 15px #B88F44;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form {
    padding: 40px 25px;
  }
  .contact-hero-content h1 {
    font-size: 36px;
  }
  .contact-hero-content p {
    font-size: 16px;
  }
}