/* ==================================================================
   Bisrock Ventures — Custom Theme Layer
   Loaded after style.css. Palette + net-new homepage section styles.
   Tune the brand palette by editing the variables below.
================================================================== */

:root {
  --brv-navy: #0b2340;
  --brv-navy-dark: #071729;
  --brv-orange: #e8590c;
  --brv-orange-dark: #c14a09;
  --brv-steel: #5c6b7a;
  --brv-steel-light: #eef1f4;
  --brv-gold: #ffb600;
  --brv-white: #ffffff;
}

/* ==================================================================
   Top Bar
================================================================== */
.top-bar {
  background: var(--brv-navy-dark);
  color: var(--brv-steel-light);
  font-size: 13px;
  padding: 9px 0;
}

.top-bar-item {
  color: var(--brv-steel-light);
  white-space: nowrap;
}

.top-bar-item i {
  color: var(--brv-gold);
  margin-right: 6px;
  width: 14px;
  text-align: center;
}

.top-bar-item a {
  color: var(--brv-steel-light);
  transition: color 200ms ease;
}

.top-bar-item a:hover {
  color: var(--brv-orange);
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .top-bar-right {
    justify-content: center;
  }
}

.top-bar-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 14px;
  vertical-align: middle;
}

.top-bar-social a {
  margin-left: 12px;
  color: var(--brv-steel-light);
}

.top-bar-social a:first-child {
  margin-left: 0;
}

.top-bar-social a:hover {
  color: var(--brv-orange);
}

.top-bar-careers {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing: 0.5px;
}

/* ==================================================================
   Main Header / Sticky Navigation

   `.body-inner` (and `html`) set overflow to a non-visible value in
   style.css, which per spec disables position: sticky on any
   descendant, no matter what's overridden here. position: fixed sidesteps
   that entirely (it only cares about ancestor transform/filter/perspective,
   none of which are in play), so the whole header block — top bar +
   nav — is pinned together. script.js measures its height and pads
   `.body-inner` to match, so page content isn't hidden underneath it.
================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.main-navbar {
  background: var(--brv-white);
  padding: 0;
  box-shadow: 0 2px 10px rgba(11, 35, 64, 0.06);
  transition: box-shadow 250ms ease;
}

.main-navbar .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-navbar .navbar-brand {
  padding: 12px 0;
  margin-right: 20px;
  flex-shrink: 0;
}

.site-logo {
  height: 50px;
  width: auto;
  display: block;
}

.main-navbar .navbar-collapse {
  flex-grow: 1;
}

.main-navbar .navbar-nav {
  margin: 0 auto;
}

.main-navbar .nav-link {
  color: var(--brv-navy) !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  padding: 28px 14px !important;
  position: relative;
  white-space: nowrap;
}

.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 20px;
  height: 2px;
  background: var(--brv-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms ease;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-item.active .nav-link {
  color: var(--brv-orange) !important;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-item.active .nav-link::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn-quote {
  background: var(--brv-orange);
  color: var(--brv-white) !important;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3px;
  padding: 11px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 200ms ease;
}

.btn-quote:hover {
  background: var(--brv-navy);
  color: var(--brv-white) !important;
}

.btn-quote-mobile {
  display: block;
  width: 100%;
  text-align: center;
  margin: 16px 0 4px;
}

.header-actions .navbar-toggler {
  margin-left: 16px;
  background: var(--brv-navy);
  border-radius: 3px;
  padding: 9px 11px;
}

.header-actions .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled state: the header is already permanently fixed above;
   this just adds emphasis once the page has scrolled a little. */
.main-navbar.navbar-fixed-brv {
  box-shadow: 0 8px 24px rgba(11, 35, 64, 0.16);
}

@media (max-width: 991px) {
  .main-navbar .header-inner {
    flex-wrap: wrap;
  }

  .main-navbar .navbar-collapse {
    background: var(--brv-white);
    padding: 6px 20px 20px;
    box-shadow: 0 14px 26px rgba(11, 35, 64, 0.12);
    flex-basis: 100%;
  }

  .main-navbar .nav-link {
    padding: 12px 0 !important;
    white-space: normal;
  }

  .main-navbar .nav-link::after {
    display: none;
  }

  .site-logo {
    height: 40px;
  }
}

/* ---------- Brand color overrides on existing template ---------- */

.btn-primary {
  background: var(--brv-orange);
}

.btn-primary:hover,
.btn-primary:hover:active,
.btn-primary:hover:focus {
  background: var(--brv-navy) !important;
}

.section-sub-title {
  color: var(--brv-navy);
}

.footer {
  background: var(--brv-navy-dark);
}

.footer .widget-title {
  border-left-color: var(--brv-orange);
}

.footer-widget ul.list-arrow li:hover a,
.footer-widget ul.list-arrow li:hover {
  color: var(--brv-orange);
}

.footer-social ul li a i:hover {
  color: var(--brv-orange);
}

.copyright {
  background: var(--brv-navy);
  color: var(--brv-steel-light);
}

.footer-menu ul.nav li a {
  color: var(--brv-steel-light);
}

.footer-menu ul li a:hover {
  color: var(--brv-orange);
}

/* ==================================================================
   Section: Company Overview + Stats
================================================================== */
.company-overview {
  padding: 90px 0;
}

.company-overview .overview-copy {
  font-size: 16px;
  line-height: 1.9;
  color: var(--brv-steel);
}

.stats-row {
  margin-top: 50px;
  text-align: center;
}

.stat-item {
  padding: 20px 10px;
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  color: var(--brv-navy);
  line-height: 1;
}

.stat-number .suffix {
  color: var(--brv-orange);
}

.stat-label {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brv-steel);
}

/* ==================================================================
   Section: Core Services (home)
================================================================== */
.services-home {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.service-card {
  background: var(--brv-white);
  height: 100%;
  padding: 40px 30px;
  border-radius: 4px;
  border-top: 3px solid var(--brv-orange);
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.06);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(11, 35, 64, 0.12);
}

.service-card .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brv-navy);
  color: var(--brv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

.service-card h4 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--brv-steel);
  font-size: 14.5px;
  line-height: 1.8;
}

.service-card .service-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--brv-orange);
}

.service-card .service-link:hover {
  color: var(--brv-navy);
}

/* ==================================================================
   Section: Why Choose Us
================================================================== */
.why-choose-us {
  padding: 90px 0;
}

.why-choose-us .ts-service-box-bg {
  border: 1px solid #e9edf1;
}

.why-choose-us .ts-service-icon {
  background: var(--brv-orange);
}

/* ==================================================================
   Section: Featured Projects (case studies)
================================================================== */
.case-studies {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.case-study-card {
  background: var(--brv-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.07);
  height: 100%;
}

.case-study-card .case-study-img {
  height: 230px;
  overflow: hidden;
}

.case-study-card .case-study-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.case-study-card:hover .case-study-img img {
  transform: scale(1.06);
}

.case-study-body {
  padding: 24px 26px 28px;
}

.case-study-tag {
  display: inline-block;
  background: var(--brv-navy);
  color: var(--brv-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.case-study-body h4 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.case-study-body p {
  color: var(--brv-steel);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ==================================================================
   Section: Equipment Fleet
================================================================== */
.equipment-fleet {
  padding: 90px 0;
}

.fleet-card {
  text-align: center;
  padding: 40px 20px;
  border: 1px solid #e9edf1;
  border-radius: 4px;
  height: 100%;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.fleet-card:hover {
  border-color: var(--brv-orange);
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.08);
}

.fleet-card .fleet-icon {
  font-size: 34px;
  color: var(--brv-orange);
  margin-bottom: 18px;
}

.fleet-card h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.fleet-card .fleet-status {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2f9e44;
  margin-bottom: 14px;
}

/* ==================================================================
   Section: Industries Served
================================================================== */
.industries-served {
  padding: 90px 0;
  background: var(--brv-navy);
}

.industries-served .section-sub-title,
.industries-served .section-title {
  color: var(--brv-white);
}

.industry-item {
  text-align: center;
  color: var(--brv-white);
  padding: 20px 10px;
}

.industry-item .industry-icon {
  font-size: 30px;
  color: var(--brv-gold);
  margin-bottom: 14px;
}

.industry-item span {
  display: block;
  font-weight: 600;
  font-size: 14.5px;
}

/* ==================================================================
   Section: Project Delivery Process
================================================================== */
.project-process {
  padding: 90px 0;
}

.process-step {
  text-align: center;
  padding: 20px 15px;
  position: relative;
}

.process-step .process-number {
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background: var(--brv-navy);
  color: var(--brv-white);
  font-weight: 900;
  font-size: 20px;
  margin: 0 auto 20px;
}

.process-step h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--brv-steel);
  font-size: 14px;
  line-height: 1.7;
}

/* ==================================================================
   Section: HSEQ
================================================================== */
.hseq-section {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.hseq-pillar {
  text-align: center;
  height: 100%;
  padding: 10px;
}

.hseq-pillar .hseq-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2px solid var(--brv-orange);
  color: var(--brv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 18px;
}

.hseq-pillar h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.hseq-pillar p {
  color: var(--brv-steel);
  font-size: 14px;
  line-height: 1.7;
}

/* ==================================================================
   Section: Testimonials
================================================================== */
.testimonials-section {
  padding: 90px 0;
}

.testimonial-slide .testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.testimonial-card .quote-icon {
  font-size: 28px;
  color: var(--brv-orange);
  margin-bottom: 20px;
}

.testimonial-card p.quote-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--brv-navy);
  font-style: italic;
  margin-bottom: 22px;
}

.testimonial-card .quote-author {
  font-weight: 700;
  color: var(--brv-navy);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.testimonial-card .quote-role {
  color: var(--brv-steel);
  font-size: 13px;
}

/* ==================================================================
   Section: CSR
================================================================== */
.csr-section {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.csr-item {
  background: var(--brv-white);
  padding: 30px 26px;
  border-radius: 4px;
  height: 100%;
  border-left: 3px solid var(--brv-gold);
}

.csr-item i {
  color: var(--brv-orange);
  font-size: 22px;
  margin-bottom: 14px;
}

.csr-item h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.csr-item p {
  color: var(--brv-steel);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ==================================================================
   Section: Insights
================================================================== */
.insights-section {
  padding: 90px 0;
}

.insight-card {
  height: 100%;
  padding: 30px;
  border: 1px solid #e9edf1;
  border-radius: 4px;
  transition: box-shadow 250ms ease;
}

.insight-card:hover {
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.08);
}

.insight-card .insight-icon {
  color: var(--brv-orange);
  font-size: 24px;
  margin-bottom: 16px;
}

.insight-card h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.insight-card p {
  color: var(--brv-steel);
  font-size: 14px;
  line-height: 1.7;
}

/* ==================================================================
   Section: Final CTA
================================================================== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--brv-navy) 0%, var(--brv-navy-dark) 100%);
  text-align: center;
}

.final-cta h2 {
  color: var(--brv-white);
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta p {
  color: var(--brv-steel-light);
  font-size: 16px;
  margin-bottom: 30px;
}

.final-cta .btn-outline-light {
  border: 2px solid var(--brv-white);
  color: var(--brv-white);
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 3px;
  transition: 250ms;
}

.final-cta .btn-outline-light:hover {
  background: var(--brv-white);
  color: var(--brv-navy);
}

/* ==================================================================
   Section: About Hero
================================================================== */
.about-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 23, 41, 0.82) 0%, rgba(11, 35, 64, 0.68) 100%);
}

.about-hero .banner-text {
  z-index: 1;
}

.about-hero-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--brv-steel-light);
  max-width: 700px;
  margin: 18px auto 30px;
}

.about-hero-cta .btn {
  margin: 0 8px 10px;
}

.about-hero .breadcrumb {
  margin-top: 24px;
  opacity: 0.85;
}

.about-hero .breadcrumb-item a,
.about-hero .breadcrumb-item.active {
  color: var(--brv-steel-light);
}

/* ==================================================================
   Section: Our Story
================================================================== */
.our-story {
  padding: 90px 0;
}

.our-story .story-copy {
  max-width: 820px;
  margin: 0 auto;
  color: var(--brv-steel);
  font-size: 16px;
  line-height: 1.9;
}

.our-story .story-copy p {
  margin-bottom: 20px;
}

.our-story .story-copy p:first-of-type {
  color: var(--brv-navy);
  font-size: 19px;
  font-weight: 500;
}

/* ==================================================================
   Section: Mission, Vision & Core Values
================================================================== */
.mission-vision {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.mv-card {
  background: var(--brv-white);
  border-radius: 4px;
  padding: 40px 32px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.06);
  border-top: 3px solid var(--brv-orange);
}

.mv-card .mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brv-navy);
  color: var(--brv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.mv-card h4 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 14px;
}

.mv-card p {
  color: var(--brv-steel);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
}

.value-card {
  text-align: center;
  padding: 24px 16px;
  height: 100%;
}

.value-card .value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--brv-orange);
  color: var(--brv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.value-card h5 {
  color: var(--brv-navy);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--brv-steel);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

/* ==================================================================
   Section: Leadership
================================================================== */
.leadership {
  padding: 90px 0;
}

.leadership-card {
  text-align: center;
  padding: 34px 22px;
  border: 1px solid #e9edf1;
  border-radius: 4px;
  height: 100%;
  transition: box-shadow 250ms ease;
}

.leadership-card:hover {
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.08);
}

.leadership-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--brv-steel-light);
  color: var(--brv-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  margin: 0 auto 20px;
}

.leadership-card h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.leadership-card .leadership-role {
  display: block;
  color: var(--brv-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.leadership-card .leadership-note {
  color: var(--brv-steel);
  font-size: 13px;
  font-style: italic;
  margin: 0;
}

/* ==================================================================
   Section: Our Team
================================================================== */
.our-team {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.team-card {
  background: var(--brv-white);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.07);
}

.team-card .team-photo {
  height: 220px;
  overflow: hidden;
}

.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-card .team-body {
  padding: 22px 24px 26px;
  text-align: center;
}

.team-card h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.team-card p {
  color: var(--brv-steel);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
}

/* ==================================================================
   Section: Contact Hero
================================================================== */
.contact-hero {
  min-height: 460px;
  display: flex;
  align-items: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 23, 41, 0.82) 0%, rgba(11, 35, 64, 0.68) 100%);
}

.contact-hero .banner-text {
  z-index: 1;
}

.contact-hero-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--brv-steel-light);
  max-width: 700px;
  margin: 18px auto 30px;
}

.contact-hero-cta .btn {
  margin: 0 8px 10px;
}

/* ==================================================================
   Section: Contact Information
================================================================== */
.contact-info {
  padding: 90px 0;
}

.contact-card {
  text-align: center;
  padding: 38px 26px;
  border: 1px solid #e9edf1;
  border-radius: 4px;
  height: 100%;
  transition: box-shadow 250ms ease, border-color 250ms ease;
}

.contact-card:hover {
  border-color: var(--brv-orange);
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.08);
}

.contact-card .contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--brv-navy);
  color: var(--brv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
}

.contact-card h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--brv-steel);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 4px;
}

.contact-card a {
  color: var(--brv-steel);
}

.contact-card a:hover {
  color: var(--brv-orange);
}

.contact-social {
  margin-top: 10px;
}

.contact-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brv-steel-light);
  color: var(--brv-navy);
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  transition: 250ms;
}

.contact-social a:hover {
  background: var(--brv-orange);
  color: var(--brv-white);
}

/* ==================================================================
   Section: Office Location
================================================================== */
.office-location {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.office-location .location-note {
  color: var(--brv-steel);
  font-size: 14.5px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 30px;
}

.map-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.08);
  line-height: 0;
}

/* ==================================================================
   Section: Departments & Direct Contacts
================================================================== */
.departments {
  padding: 90px 0;
}

.department-card {
  padding: 30px 26px;
  background: var(--brv-white);
  border-left: 3px solid var(--brv-gold);
  border-radius: 4px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(11, 35, 64, 0.05);
}

.department-card h5 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 8px;
}

.department-card p {
  color: var(--brv-steel);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.department-card .department-link {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--brv-orange);
}

.department-card .department-link:hover {
  color: var(--brv-navy);
}

/* ==================================================================
   Section: Why Contact Bisrock Ventures
================================================================== */
.why-contact {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

/* ==================================================================
   Section: Contact FAQs
================================================================== */
.contact-faqs {
  padding: 90px 0;
}

.faq-accordion .card {
  border: 1px solid #e9edf1;
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-accordion .card-header {
  border-bottom: none;
  padding: 0;
  background: var(--brv-white);
}

.faq-accordion .btn-block {
  color: var(--brv-navy);
  font-weight: 700;
  font-size: 15.5px;
  padding: 18px 20px;
  text-align: left;
}

.faq-accordion .faq-chevron {
  float: right;
  color: var(--brv-orange);
  transition: transform 250ms ease;
}

.faq-accordion .btn-block[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-accordion .card-body {
  color: var(--brv-steel);
  font-size: 14.5px;
  line-height: 1.8;
  padding: 0 20px 22px;
}

/* ==================================================================
   Section: Contact Form
================================================================== */
.contact-form-section {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.contact-form-card {
  background: var(--brv-white);
  border-radius: 4px;
  padding: 44px 40px;
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.08);
}

.contact-form-card .form-group label {
  color: var(--brv-navy);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.contact-form-card .btn-primary {
  padding: 12px 34px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================================================================
   Section: Contact Closing CTA
================================================================== */
.contact-closing-cta .btn-outline-light,
.contact-closing-cta .btn-primary {
  margin: 0 6px 10px;
}

/* ==================================================================
   Footer columns
================================================================== */
.footer-logo {
  max-height: 80px;
}

.footer-address li {
  color: #a9b4bf;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-address li a {
  color: #a9b4bf;
}

.footer-address li a:hover {
  color: var(--brv-orange);
}

.footer-about p {
  color: #a9b4bf;
  font-size: 14px;
  line-height: 1.8;
}

/* ==================================================================
   Section: Gallery Hero
================================================================== */
.gallery-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 23, 41, 0.82) 0%, rgba(11, 35, 64, 0.68) 100%);
}

.gallery-hero .banner-text {
  z-index: 1;
}

.gallery-hero-intro {
  font-size: 18px;
  line-height: 1.8;
  color: var(--brv-steel-light);
  max-width: 700px;
  margin: 18px auto 30px;
}

.gallery-hero-cta .btn {
  margin: 0 8px 10px;
}

/* ==================================================================
   Section: Gallery / Project Photos
================================================================== */
.gallery-section {
  padding: 90px 0;
}

.gallery-section .shuffle-btn-group {
  border-bottom-color: var(--brv-orange);
}

.gallery-section .shuffle-btn-group label.active {
  background: var(--brv-orange);
  color: var(--brv-white);
}

.gallery-section .shuffle-item {
  margin-bottom: 30px;
}

.gallery-section .project-img-container {
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.gallery-section .project-img-container img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-count-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  background: rgba(11, 35, 64, 0.85);
  color: var(--brv-white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 3px;
  letter-spacing: 0.2px;
}

.photo-count-badge i {
  margin-right: 5px;
  color: var(--brv-gold);
}

/* ==================================================================
   Section: Project Videos
================================================================== */
.project-videos {
  padding: 90px 0;
  background: var(--brv-steel-light);
}

.video-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.1);
  background: #000;
  line-height: 0;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  object-fit: contain;
}

.video-caption {
  text-align: center;
  color: var(--brv-navy);
  font-weight: 700;
  font-size: 14.5px;
  margin: 14px 0 0;
}

/* ==================================================================
   Enquiry Sent Modal
================================================================== */
.enquiry-sent-modal {
  border: 0;
  border-radius: 6px;
  padding: 20px 10px;
}

.enquiry-sent-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--brv-navy);
  color: var(--brv-white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.enquiry-sent-modal h4 {
  color: var(--brv-navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.enquiry-sent-modal p {
  color: var(--brv-steel);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ==================================================================
   Site Preloader
================================================================== */
#site-preloader {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: var(--brv-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms ease, visibility 400ms ease;
}

#site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}

.preloader-spinner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--brv-steel-light);
  border-top-color: var(--brv-orange);
  animation: preloaderSpin 900ms linear infinite;
}

@keyframes preloaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.94);
  }
}
