/* ===== Page Banner ===== */
.page-banner{
  position:relative;
  min-height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:1.25rem 0;
  background:linear-gradient(rgba(14,42,30,.82), rgba(14,42,30,.78)),
    url('../img/page-banner-generic.jpg') center/cover no-repeat;
}
.page-banner-contact{
  background:linear-gradient(rgba(10,20,16,.82), rgba(10,20,16,.72)),
    url('../img/contact-banner.jpg') center/cover no-repeat;
}
.page-banner h1{
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:.5rem;
}
.page-banner .underline{
  width:70px;
  height:3px;
  background:var(--rhc-gold);
  margin:0 auto;
}

/* ===== Section headings ===== */
.section-title{
  text-align:center;
  margin-bottom:1.75rem;
}
.section-title h2{
  color:var(--rhc-green);
  font-weight:700;
}
.section-title .underline{
  width:60px;
  height:3px;
  background:var(--rhc-gold);
  margin:.6rem auto 0;
}

section{
  padding:3rem 0;
}

/* ===== Intro text (overlaid on the contact banner) ===== */
.page-banner .intro-text{
  max-width:760px;
  margin:1rem auto 0;
  text-align:center;
  color:rgba(255,255,255,.92);
  font-size:1rem;
  line-height:1.7;
}

/* ===== Apply For Job Card ===== */
.apply-card{
  display:grid;
  grid-template-columns:1fr 1.35fr;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(14,42,30,.15);
}
.apply-info{
  background:var(--rhc-green);
  color:#fff;
  padding:2.5rem 2rem;
}
.info-block{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  padding:1.4rem;
  margin-bottom:1.5rem;
}
.info-block:last-child{
  margin-bottom:0;
}
.info-block i{
  color:var(--rhc-gold);
  font-size:1.4rem;
  margin-bottom:.7rem;
  display:block;
}
.info-block h6{
  color:var(--rhc-gold-soft);
  font-weight:700;
  margin-bottom:.5rem;
}
.info-block p,
.info-block a{
  color:#e8e5da;
  font-size:.88rem;
  line-height:1.7;
  text-decoration:none;
  margin-bottom:0;
  display:block;
}
.info-block a:hover{
  color:var(--rhc-gold);
}

.apply-form{
  background:var(--rhc-gold-soft);
  padding:2.5rem 2rem;
}
.apply-form .form-control{
  border:none;
  border-radius:5px;
  padding:.75rem 1rem;
  margin-bottom:1rem;
  font-size:.92rem;
}
.apply-form .form-control:focus{
  box-shadow:0 0 0 3px rgba(14,42,30,.18);
}
.apply-form textarea.form-control{
  min-height:130px;
  resize:vertical;
}
.apply-form .captcha-box{
  background:#fff;
  border-radius:5px;
  padding:.7rem 1rem;
  margin-bottom:1rem;
  font-family:'Playfair Display', serif;
  font-style:italic;
  letter-spacing:4px;
  font-size:1.2rem;
  color:#333;
  text-align:center;
  -webkit-user-select:none;
  user-select:none;
}
.apply-form .btn-submit{
  background:var(--rhc-green);
  color:#fff;
  border:none;
  font-weight:600;
  padding:.75rem 2.2rem;
  border-radius:5px;
  letter-spacing:.5px;
  transition:.25s;
}
.apply-form .btn-submit:hover{
  background:var(--rhc-green-light);
}
.apply-form .btn-submit:disabled{
  opacity:.7;
  cursor:not-allowed;
}
.apply-form .form-status{
  font-size:.88rem;
  font-weight:600;
  margin-bottom:.8rem;
  display:none;
}
.apply-form .form-status.success{
  display:block;
  color:var(--rhc-green);
}
.apply-form .form-status.error{
  display:block;
  color:#8a1f1f;
}
.apply-form .form-control.is-invalid{
  box-shadow:0 0 0 2px #8a1f1f;
}

/* ===== Map ===== */
.map-wrap{
  position:relative;
  width:100%;
  height:360px;
}
.map-wrap iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

@media(max-width:767px){
  .map-wrap{
    height:300px;
  }
}

@media (max-width:991.98px){
  .apply-card{
    grid-template-columns:1fr;
  }
}

@media(max-width:767px){
  .page-banner h1{
    font-size:1.9rem;
  }
  .page-banner{
    min-height:200px;
    padding:1.25rem 0;
  }
  .page-banner .intro-text{
    font-size:.92rem;
    margin-top:.85rem;
  }
  section{
    padding:2.5rem 0;
  }
  .apply-info,
  .apply-form{
    padding:2rem 1.3rem;
  }
  .topbar{text-align:center;}
  .topbar .col-md-6{margin-bottom:.3rem;}
}
