.contact-hero{
  padding:80px 0;
  background:#f8f9fb;
}

.contact-hero-wrap{
  display:flex;
  gap:60px;
  align-items:flex-start;
}

/* LEFT */
.contact-left{
  flex:1;
}

.contact-left h1{
  font-size:42px;
  line-height:1.2;
  margin:15px 0;
}

.sub-text{
  color:#555;
  margin-bottom:25px;
}

/* INFO BOX */
.contact-info{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.info-box{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  padding:12px 15px;
  border-radius:10px;
  box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

.info-box span{
  font-size:20px;
}

.info-box small{
  display:block;
  font-size:12px;
  color:#777;
}

/* RIGHT */
.contact-right{
  flex:1;
}

.form-card{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.form-card h3{
  margin-bottom:20px;
}

.form-card input,
.form-card textarea{
  width:100%;
  margin-bottom:12px;
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
}

.btn-primary{
  width:100%;
  padding:12px;
  background:#111;
  color:#fff;
  border:none;
  border-radius:8px;
  cursor:pointer;
}


.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #135444, #31773a);
  color: white;
  text-align: center;
  padding: 20px;
}

.hero{
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: url("../assets/images/contactus.webp") no-repeat center center/cover;
  padding: 80px 20px;
  color: #fff;
}

/* Dark overlay for readability */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* Content on top */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.tagline{
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #00c853;
  font-weight: 600;
}

.hero h1{
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #fff;
}

.subtext{
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* Button */
.hero-btn{
  background: #00c853;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;aa
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-btn:hover{
  background: #00a844;
}

.hero-content {
  max-width: 700px;
}

.tagline {
  letter-spacing: 3px;
  font-size: 14px;
  color: #38bdf8;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.subtext {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 30px;
}

.hero-btn {
  padding: 14px 28px;
  border: none;
  background: #3fa64b;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #3fa64b;
  transform: translateY(-2px);
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .contact-hero{
    padding: 50px 20px;
  }

  .contact-hero-wrap{
    flex-direction: column;
    gap: 30px;
  }

  .contact-left h1{
    font-size: 30px;
  }

  .contact-right{
    width: 100%;
  }

  .form-card{
    padding: 20px;
  }

  .info-box{
    padding: 10px 12px;
  }
}

@media (max-width: 768px) {

  .hero{
    min-height: 60vh;
    padding: 60px 15px;
  }

  .hero h1{
    font-size: 28px;
  }

  .subtext{
    font-size: 14px;
  }

  .hero-btn{
    padding: 12px 20px;
    font-size: 14px;
  }

  .tagline{
    font-size: 12px;
    letter-spacing: 2px;
  }
}