/* HERO */
.contact-hero {
  position: relative;
  height: 380px;
  background: url('../media/Hero/contact-us.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  z-index:5;
}

.contact-hero .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  color: #fff;
}

.hero-content h1 {
  font-size: 40px;
}

.contact-hero .hero-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.hero-content h1 span {
  color: #e77d0c;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 10px;
}

/* CONTACT BOX */
.contact-section {
  background: #f5f5f5;
  padding: 60px 20px;
}

.contact-wrapper {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* LEFT */
.contact-info h2 span {
  color: #4b2e0f;
}

.contact-info p{
  font-size: 14px;
  line-height: 1.6;
  color: #000000;
}

.office {
  margin-top: 20px;
}

.office h3 {
  color: #4b2e0f;
  font-size: 16px;
}

.office p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;;
}
.office a{
  color: #555;
  text-decoration: none;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 200px;
  border: none;
  margin-top: 20px;
  border-radius: 8px;
}

/* FORM */
.contact-form form {
  background: #fafafa;
  padding: 25px;
  border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form textarea {
  height: 100px;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: #4b2e0f;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    height: 380px;
  }
}