.contact-hero {
  position: relative;
  height: 500px;
  background: url("../images/contact-us.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.request-hero {
  position: relative;
  height: 500px;
  background: url("../images/request-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(15 12 41 / 22%), rgba(48, 43, 99, 0.85));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 55px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}
/* Top Info Cards */
.contact-info-top {
  background: #f8fafc;
  padding: 60px 0;
}

.info-grid {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.contact-info-top .info-card {
  background: #ffffff;
  padding: 15px;
  flex: 1;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.info-card p{
  font-size: 12px;
  margin-bottom: 0;
}
.info-card hr{
margin: 5px auto;
width: 50%;
}

.contact-info-top .info-card:hover {
  transform: translateY(-5px);
}

.contact-info-top .info-card i {
  font-size: 22px;
  color: #7c3aed;
  margin-bottom: 10px;
}


/* Map + Form Section */
.contact-main {
  background: #f8fafc;
  padding: 50px 0;
}

.contact-wrapper {
  display: flex;
  gap: 50px;
}

.contact-map {
  flex: 1;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form {
  flex: 1.2;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.contact-form textarea {
  height: 120px;
  margin-bottom: 20px;
}
.form-row ::placeholder, textarea ::placeholder{
  font-size: 14px;
}