/* ===== Approval Overlay (inside slider) ===== */
.approval-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:4;
  background:rgba(14,42,30,.85);
  color:#f1efe6;
  padding:.55rem 1rem;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:.3rem 1.8rem;
  text-align:center;
}
.approval-overlay .approval-item{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  font-size:.82rem;
  font-weight:500;
  white-space:nowrap;
}
.approval-overlay i{
  color:var(--rhc-gold);
  font-size:.9rem;
}
@media(max-width:767px){
  .approval-overlay{
    padding:.45rem .6rem;
    gap:.15rem 0;
  }
  .approval-overlay .approval-item{
    font-size:.66rem;
    white-space:normal;
    width:100%;
    justify-content:center;
  }
}

/* ===== Hero Carousel ===== */
.hero-carousel{
  position:relative;
  overflow-x:hidden;
}
.hero-carousel .carousel-item{
  height:65vh;
  max-height:700px;
  min-height:420px;
}
.hero-carousel .slide-img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.hero-carousel .slide-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, rgba(14,42,30,.82) 0%, rgba(14,42,30,.55) 45%, rgba(14,42,30,.25) 100%);
}
.hero-carousel .slide-caption{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  z-index:2;
}
.hero-carousel .slide-caption .container{
  max-width:1260px;
}
.hero-carousel .caption-inner{
  max-width:560px;
  color:#fff;
  margin-left:60px;
}
.hero-carousel .eyebrow{
  display:block;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:.95rem;
  color:var(--rhc-gold-soft);
  font-weight:600;
  margin-bottom:.6rem;
}
.hero-carousel h2{
  font-size:2.6rem;
  font-weight:700;
  line-height:1.25;
  margin-bottom:1.6rem;
}
.hero-note{
  position:absolute;
  top:0;
  right:0;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:.8rem;
  padding:.5rem 1.2rem;
  border-radius:0 0 0 6px;
  z-index:3;
  white-space:nowrap;
}
.btn-gold{
  background:var(--rhc-gold);
  border:none;
  color:#1a1a1a;
  font-weight:600;
  padding:.7rem 1.8rem;
  letter-spacing:.5px;
  border-radius:4px;
}
.btn-gold:hover{
  background:var(--rhc-gold-soft);
  color:#1a1a1a;
}
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next{
  width:64px;
  opacity:1;
  z-index:3;
}
.hero-carousel .control-icon{
  width:44px;
  height:44px;
  border:1.5px solid rgba(255,255,255,.6);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:1.1rem;
  background:rgba(0,0,0,.15);
  transition:.25s;
}
.hero-carousel .carousel-control-prev:hover .control-icon,
.hero-carousel .carousel-control-next:hover .control-icon{
  background:var(--rhc-gold);
  border-color:var(--rhc-gold);
  color:#1a1a1a;
}
.hero-carousel .carousel-indicators{
  z-index:3;
  margin-bottom:3rem;
}
.hero-carousel .carousel-indicators [data-bs-target]{
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.55);
  margin:0 6px;
  opacity:1;
}
.hero-carousel .carousel-indicators .active{
  background:var(--rhc-gold);
  width:26px;
  border-radius:5px;
}

@media (max-width:991.98px){
  .hero-carousel .carousel-item{
    height:55vh;
    min-height:380px;
  }
}

@media(max-width:767px){
  .hero-carousel .carousel-item{
    height:48vh;
    min-height:340px;
  }
  .hero-carousel h2{
    font-size:1.7rem;
  }
  .hero-carousel .caption-inner{
    max-width:100%;
    margin-left:0;
  }
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next{
    display:none;
  }
  .hero-carousel .carousel-indicators{
    margin-bottom:3.4rem;
  }
  .hero-note{
    font-size:.65rem;
    padding:.35rem .7rem;
    max-width:70%;
    white-space:normal;
  }
}

/* ===== 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;
}
.bg-cream{
  background:var(--rhc-cream);
}

/* ===== Service Cards ===== */
.service-card{
  border:1px solid #e2ded0;
  border-radius:6px;
  padding:2.2rem 1.5rem;
  text-align:center;
  height:100%;
  transition:.25s;
  background:#fff;
}
.service-card:hover{
  border-color:var(--rhc-gold);
  box-shadow:0 10px 25px rgba(14,42,30,.08);
  transform:translateY(-4px);
}
.service-card i{
  font-size:2.3rem;
  color:var(--rhc-green);
  margin-bottom:1rem;
}
.service-card h5{
  font-weight:600;
  margin-bottom:.5rem;
  overflow-wrap:break-word;
  word-break:break-word;
  hyphens:auto;
}
.service-card a{
  color:var(--rhc-gold);
  font-size:.9rem;
  font-weight:600;
  text-decoration:none;
}

/* ===== Services Carousel ===== */
.services-carousel{
  position:relative;
  padding:0 3rem;
}
.services-carousel .carousel-control-prev,
.services-carousel .carousel-control-next{
  width:44px;
  opacity:1;
}
.services-carousel .control-icon-dark{
  width:42px;
  height:42px;
  border-radius:50%;
  border:1.5px solid var(--rhc-green);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--rhc-green);
  background:#fff;
  box-shadow:0 4px 12px rgba(14,42,30,.12);
  transition:.25s;
}
.services-carousel .carousel-control-prev:hover .control-icon-dark,
.services-carousel .carousel-control-next:hover .control-icon-dark{
  background:var(--rhc-gold);
  border-color:var(--rhc-gold);
  color:#1a1a1a;
}
.services-carousel .carousel-indicators{
  position:static;
  margin-top:2.2rem;
}
.services-carousel .carousel-indicators [data-bs-target]{
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:#ddd6c4;
  margin:0 6px;
  opacity:1;
}
.services-carousel .carousel-indicators .active{
  background:var(--rhc-gold);
  width:26px;
  border-radius:5px;
}

@media(max-width:575.98px){
  .services-carousel{
    padding:0 2.2rem;
  }
  .services-carousel .carousel-control-prev,
  .services-carousel .carousel-control-next{
    width:34px;
  }
  .services-carousel .control-icon-dark{
    width:34px;
    height:34px;
    font-size:.85rem;
  }
  #servicesCarouselMd .service-card{
    padding:1.4rem .6rem;
    overflow:hidden;
  }
  #servicesCarouselMd .service-card i{
    font-size:1.7rem;
    margin-bottom:.6rem;
  }
  #servicesCarouselMd .service-card h5{
    font-size:.88rem;
  }
  #servicesCarouselMd .service-card a{
    font-size:.78rem;
  }
}

/* ===== Stats ===== */
.stat-block{
  padding:2.8rem 1rem;
  text-align:center;
  color:#fff;
}
.stat-block.dark{background:var(--rhc-green);}
.stat-block.gold{background:var(--rhc-gold);}
.stat-block i{font-size:1.6rem;margin-bottom:.7rem;display:block;}
.stat-block .num{
  font-size:2.2rem;
  font-weight:700;
  font-family:'Playfair Display', serif;
  border-bottom:2px solid rgba(255,255,255,.5);
  display:inline-block;
  padding-bottom:.2rem;
  margin-bottom:.3rem;
}
.stat-block .label{
  font-size:.9rem;
  letter-spacing:.5px;
}

/* ===== Clients ===== */
.client-box{
  border:1px solid #e2ded0;
  border-radius:6px;
  padding:1.4rem;
  text-align:center;
  background:#fff;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:var(--rhc-green);
  letter-spacing:1px;
}


@media(max-width:991.98px){
  section{padding:2.75rem 0;}
}

@media(max-width:767px){
  .hero h1{font-size:2rem;}
  section{padding:2.25rem 0;}
  .section-title{margin-bottom:1.4rem;}
  .topbar{text-align:center;}
  .topbar .col-md-6{margin-bottom:.3rem;}
}
