/* =========================
   COMMON BANNER (USED IN ALL PAGES)
========================= */
.asti-client-banner {
  background: url("https://astigujarat.com/wp-content/themes/astiindiaprivatelimited/assets/images/banner/bnr1.jpg") no-repeat center center/cover;
  height: 320px;
  position: relative;
  width: 100%;
}

.asti-client-banner-overlay {
  background: rgba(12, 30, 60, 0.75);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.asti-client-banner-content {
  max-width: 1060px;
  margin: auto;
  padding: 0 20px;
  color: #fff;
}

.asti-client-banner-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
  text-align:center;
}

.asti-client-banner-content p {
  font-size: 16px;
  opacity: 0.9;
}


/* =========================
   CONTACT SECTION
========================= */
.asti-contact-section {
  width: 100%;
  background: #F4F7FC;
  padding: 80px 0;
}

.asti-contact-container {
  max-width: 1060px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}


/* =========================
   LEFT SIDE INFO
========================= */
.asti-contact-info {
  flex: 1;
}

.asti-contact-info h2 {
  font-size: 30px;
  margin-bottom: 10px;
  color: #0C1E3C;
}

.asti-contact-info p {
  color: #666;
  margin-bottom: 25px;
}

.asti-contact-box {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.asti-contact-box i {
  font-size: 18px;
  color: #E61A72;
  background: rgba(230,57,70,0.1);
  padding: 10px;
  border-radius: 50%;
  min-width: 38px;
  text-align: center;
}

.asti-contact-box h4 {
  margin: 0;
  font-size: 16px;
  color: #4C81C2;
}

.asti-contact-box p {
  margin: 2px 0 0;
  font-size: 14px;
}


/* =========================
   RIGHT FORM
========================= */
.asti-contact-form-wrap {
  flex: 1;
  padding: 30px;
  border-radius: 16px;
  background: #5B89BB;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.asti-contact-form input,
.asti-contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  /*background: rgba(9, 23, 41, 0.9);*/
  background: #fff;
  color: #000;
  font-size: 14px;
  transition: 0.3s;
}

.asti-contact-form input::placeholder,
.asti-contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.asti-contact-form input:focus,
.asti-contact-form textarea:focus {
  border-color: #E63946;
  outline: none;
}

/* FORM ROW */
.asti-form-row {
  display: flex;
  gap: 15px;
}

.asti-form-row input {
  width: 50%;
}

/* BUTTON */
.asti-contact-btn {
  width: 100%;
  padding: 14px;
  background: #E61A72;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.asti-contact-btn:hover {
  background: #4C81C2;
  transform: translateY(-2px);
}


/* =========================
   MAP
========================= */
.asti-contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(30%);
}


/* =========================
   RESPONSIVE
========================= */
@media(max-width: 992px) {
  .asti-contact-container {
    flex-direction: column;
  }
}

@media(max-width: 768px) {

  .asti-client-banner {
    height: 240px;
  }

  .asti-client-banner-content h1 {
    font-size: 26px;
  }

  .asti-form-row {
    flex-direction: column;
  }

  .asti-form-row input {
    width: 100%;
  }
}