:root {
  --bcvh-primary: #007ac3;      /* use your Breadcrumb blue */
  --bcvh-primary-dark: #005f96;
  --bcvh-accent: #ff6b2c;       /* warm accent similar to Vehica orange */
  --bcvh-bg-light: #f5f5f7;
  --bcvh-bg-dark: #151821;
  --bcvh-text-main: #222;
  --bcvh-text-muted: #666;
  --bcvh-radius-lg: 20px;
}

/* generic */

.bcvh-page {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bcvh-text-main);
}

.bcvh-section {
  padding: 4rem 0;
}

.bcvh-section-header {
  margin-bottom: 2rem;
}

.bcvh-section-header h2 {
  font-size: 2rem;
  margin: 0.25rem 0 0;
}

.bcvh-section-header--center {
  text-align: center;
}

.bcvh-section-header--light h2,
.bcvh-section-header--light p {
  color: #fff;
}

.bcvh-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--bcvh-text-muted);
}

/* buttons */

.bcvh-btn-primary,
.bcvh-btn-outline,
.bcvh-btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bcvh-btn-primary {
  background: var(--bcvh-primary);
  color: #fff;
  border-color: var(--bcvh-primary);
}

.bcvh-btn-primary:hover {
  background: var(--bcvh-primary-dark);
  border-color: var(--bcvh-primary-dark);
}

.bcvh-btn-outline {
  background: #fff;
  color: var(--bcvh-primary);
  border-color: rgba(0,0,0,0.12);
}

.bcvh-btn-outline:hover {
  border-color: var(--bcvh-primary);
}

.bcvh-btn-outline--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.bcvh-btn-outline--light:hover {
  border-color: #fff;
}

.bcvh-btn-light {
  background: #fff;
  color: var(--bcvh-bg-dark);
}

/* HERO */

.bcvh-hero {
  position: relative;
  min-height: 100vh;
  background: #000;
  color: #fff;
  overflow: hidden;
}

.bcvh-hero-media {
  position: absolute;
  inset: 0;
}

.bcvh-hero-bg {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
    url('../img/rinnetal/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.92;
}

.bcvh-hero-overlay {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem; /* little more air top+bottom */
}

/* center everything like Vehica */

.bcvh-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.bcvh-hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.bcvh-hero-text p {
  max-width: 40rem;
  margin: 0.4rem auto 0;
  color: #f3f3f3;
}

/* hero search panel */

.bcvh-hero-search {
  background: #fff;
  border-radius: 18px;
  padding: 2.1rem 2.4rem 2.2rem;
  box-shadow: 0 22px 50px rgba(0,0,0,0.35);
  color: var(--bcvh-text-main);
  margin: 1.75rem auto 0;
}

.bcvh-search-form {
  width: 100%;
}

.bcvh-search-field label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bcvh-text-muted);
  margin-bottom: 0.4rem;
  display: block;
}

.bcvh-search-field select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #d4d7dd;
  /* padding: 0.75rem 1.1rem; */
  font-size: 0.9rem;
}

.bcvh-search-submit button {
  width: 100%;
  border-radius: 999px;
  border: none;
  background: var(--bcvh-accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.9rem 1rem;
  transition: background 0.2s ease, transform 0.1s ease;
}

.bcvh-search-submit button:hover {
  background: #ff5a12;
  transform: translateY(-1px);
}

/* small tabs under banner */

.bcvh-hero-tabs {
  margin-top: 1.1rem;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.bcvh-hero-tab {
  position: relative;
  background: none;
  border: none;
  padding: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}

.bcvh-hero-tab--active {
  color: var(--bcvh-accent);
}

.bcvh-hero-tab--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--bcvh-accent);
}

select {
    cursor: pointer;
}

/* ==============================
   FEATURED – heading + tabs
   Vehica-style grid
   ============================== */

.bcvh-featured {
  background: #fff;
}

/* top row: title on the left, pill tabs on the right */
.bcvh-featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
}

.bcvh-featured-tabs {
  display: inline-flex;
  padding: 0.2rem;
  border-radius: 12px;
  background: #f4f5f8;
}

.bcvh-featured-tab {
  border: none;
  background: transparent;
  padding: 0.45rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--bcvh-text-muted);
  cursor: pointer;
}

.bcvh-featured-tab--active {
  background: var(--bcvh-primary);
  color: #fff;
}

/* ==============================
   GRID: big card left, 4 small right (2 x 2)
   ============================== */

.bcvh-cards-row {
  margin-top: 1.5rem;
  display: grid;
  /* 3 columns: big column + 2 small columns */
  grid-template-columns: minmax(0, 2fr) repeat(2, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 1.6rem;
}

/* default card styling */

.bcvh-card {
  background: #fff;
  border-radius: var(--bcvh-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bcvh-card-media {
  background-image: linear-gradient(135deg, #222, #333);
  height: 55%;
}

.bcvh-card-body {
  padding: 1.2rem 1.4rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* BIG featured card – left side, spans 2 rows */

.bcvh-card--featured {
  grid-column: 1 / 2;
  grid-row: 1 / span 2;
}

.bcvh-card--featured .bcvh-card-media {
  height: 65%;
}

/* meta line */

.bcvh-card-body h3 {
  margin: 0 0 0.4rem;
}

.bcvh-card-body p {
  margin: 0 0 0.7rem;
  color: var(--bcvh-text-muted);
}

.bcvh-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--bcvh-text-muted);
}

/* CTA alignment under grid */

.bcvh-section-cta {
  margin-top: 2rem;
  text-align: right;
}

/* ==============================
   Responsive
   ============================== */

@media (max-width: 991.98px) {
  .bcvh-featured-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bcvh-cards-row {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bcvh-card--featured {
    grid-column: auto;
    grid-row: auto;
  }
}


/* POPULAR SERVICES */

.bcvh-popular {
  background: var(--bcvh-bg-light);
}

.bcvh-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.bcvh-pill {
  border-radius: 12px;
  padding: 0.45rem 1.3rem;
  border: 1px solid rgba(0,0,0,0.08);
  background: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

.bcvh-pill--active {
  background: var(--bcvh-primary);
  color: #fff;
  border-color: var(--bcvh-primary);
}

.bcvh-services-grid {
  margin-top: 0.5rem;
}

.bcvh-service-tile {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.bcvh-service-tile h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.bcvh-service-tile p {
  font-size: 0.93rem;
  color: var(--bcvh-text-muted);
  margin-bottom: 0.75rem;
}

.bcvh-tag {
  display: inline-block;
  border-radius: 999px;
  background: #eef3ff;
  color: #314076;
  font-size: 0.78rem;
  padding: 0.15rem 0.75rem;
}

/* WHY CHOOSE US */

.bcvh-why {
  background: var(--bcvh-bg-dark);
  color: #fff;
}

.bcvh-why-grid {
  margin-top: 2rem;
}

.bcvh-why-item {
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 1.7rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.bcvh-why-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

/* TEAM */

.bcvh-team {
  background: #fff;
}

.bcvh-team-layout {
  /* Bootstrap row handles layout */
}

.bcvh-team-intro h2 {
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}

.bcvh-team-intro ul {
  padding-left: 1.1rem;
  margin-bottom: 1.4rem;
  color: var(--bcvh-text-muted);
}

.bcvh-team-grid {
  /* used on .carousel-inner – no grid here */
}

.bcvh-team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-width: 380px;
  margin: 0 auto;
}

.bcvh-team-photo {
  height: 210px;
  background-size: cover;
  background-position: center;
}

.bcvh-team-photo--1 {
  background-image: url('../img/rinnetal/hero.jpg');
}
.bcvh-team-photo--2 {
  background-image: url('../img/rinnetal/hero.jpg');
}
.bcvh-team-photo--3 {
  background-image: url('../img/rinnetal/hero.jpg');
}

.bcvh-team-body {
  padding: 1rem 1.1rem 1rem;
}

.bcvh-team-role {
  font-size: 0.85rem;
  color: var(--bcvh-text-muted);
  margin: 0.2rem 0 0.6rem;
}

.bcvh-team-contact {
  font-size: 0.85rem;
  color: var(--bcvh-primary);
}

/* carousel controls */

#bcvhTeamCarousel .carousel-control-prev,
#bcvhTeamCarousel .carousel-control-next {
  width: 2.5rem;
}

#bcvhTeamCarousel .carousel-control-prev-icon,
#bcvhTeamCarousel .carousel-control-next-icon {
  filter: invert(1);
}

/* SPLIT CTA */

.bcvh-split-cta {
  background: var(--bcvh-bg-dark);
  color: #fff;
}

.bcvh-split-grid {
  /* Bootstrap row */
}

.bcvh-split-left {
  background: var(--bcvh-accent);
  border-radius: var(--bcvh-radius-lg);
  padding: 2rem 1.8rem;
  color: #fff;
}

.bcvh-split-left h2 {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.bcvh-split-left ul {
  margin: 0 0 1.3rem 1.1rem;
}

.bcvh-split-right {
  border-radius: var(--bcvh-radius-lg);
  padding: 2rem 1.8rem;
  background: #1f222c;
}

.bcvh-bullets {
  margin: 0 0 1.4rem 1.1rem;
}

/* ==============================
   NEWSLETTER – premium card style
   ============================== */

.bcvh-newsletter {
  background: #fff;
  padding: 2.5rem 0;
}

.bcvh-newsletter-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.6rem 2.8rem;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f7f9fc 100%
  );
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.bcvh-newsletter-text h2 {
  margin: 0.2rem 0 0.6rem;
}

.bcvh-newsletter-text p {
  margin: 0;
  color: var(--bcvh-text-muted);
  max-width: 32rem;
}

/* form */

/* Newsletter – wider input & button */

.bcvh-newsletter-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  max-width: 720px;      /* controls total width */
  margin-left: auto;    /* aligns form nicely */
}

/* Input wider & more premium */
.bcvh-newsletter-form input {
  flex: 1;
  min-width: 380px;     /* 👈 important */
  height: 52px;
  border-radius: 999px;
  border: 1px solid #d2d5dd;
  padding: 0 1.4rem;
  font-size: 0.95rem;
}




.bcvh-newsletter-form input:focus {
  outline: none;
  border-color: var(--bcvh-primary);
  box-shadow: 0 0 0 3px rgba(0,122,195,0.12);
}

.bcvh-newsletter-form button {
  height: 48px;
  border-radius: 999px;
  border: none;
  background: var(--bcvh-primary);
  color: #fff;
  padding: 0 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

/* Button wider & balanced */
.bcvh-newsletter-form button {
  height: 52px;
  padding: 0 2.2rem;    /* 👈 wider button */
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  white-space: nowrap;
}

.bcvh-newsletter-form button:hover {
  background: var(--bcvh-primary-dark);
  transform: translateY(-1px);
}

/* responsive */

@media (max-width: 767.98px) {
  .bcvh-newsletter-card {
    grid-template-columns: 1fr;
    padding: 2.2rem 1.6rem;
    text-align: center;
  }

  .bcvh-newsletter-form {
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
  }

  .bcvh-newsletter-form input,
  .bcvh-newsletter-form button {
    width: 100%;
    min-width: 0;
  }
}


/* RESPONSIVE */

@media (max-width: 991.98px) {
  .bcvh-hero-text h1 {
    font-size: 2.3rem;
  }

  .bcvh-section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 575.98px) {
  .bcvh-section {
    padding: 3rem 0;
  }

  .bcvh-section-header h2 {
    font-size: 1.6rem;
  }

  .bcvh-hero-text h1 {
    font-size: 2.1rem;
  }

  .bcvh-section-cta {
    text-align: center;
  }
}


/* ==========================
   PRE-FOOTER CONTACT BLOCK
   ========================== */

.bcvh-contact-footer {
  background: #151821; /* same dark as .bcvh-why / .bcvh-split-cta */
  color: #fff;
  padding: 3rem 0 3.5rem;
}

.bcvh-footer-brand img {
  max-height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.bcvh-footer-site-name {
  font-weight: 700;
  font-size: 1.3rem;
}

.bcvh-footer-text {
  margin: 0;
  margin-top: 0.25rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 18rem;
}

.bcvh-footer-heading {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.bcvh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bcvh-footer-links li + li {
  margin-top: 0.3rem;
}

.bcvh-footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.bcvh-footer-links a:hover {
  color: #ffffff;
}

.bcvh-footer-phone {
  margin: 0 0 0.4rem;
}

.bcvh-footer-phone-label {
  font-size: 1.05rem;
  margin-right: 0.25rem;
}

.bcvh-footer-phone-main {
  font-size: 1.4rem;
  font-weight: 700;
   color: var(--bcvh-primary);
}

.bcvh-footer-contact {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.bcvh-footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.bcvh-footer-contact a:hover {
  color: #ffffff;
}

/* small screens */
@media (max-width: 767.98px) {
  .bcvh-contact-footer {
    text-align: left;
  }

  .bcvh-contact-footer .row > [class*="col-"] + [class*="col-"] {
    margin-top: 1.5rem;
  }
}


/* ==========================
   Featured cards – smart hover highlight
   ========================== */

.bcvh-cards-row {
  position: relative;
}

/* Base card state */
.bcvh-card {
  position: relative;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease,
    filter 0.25s ease;
  will-change: transform;
}

/* Media animation */
.bcvh-card-media {
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

/* When hovering the grid, de-emphasize all cards */
.bcvh-cards-row:hover .bcvh-card {
  opacity: 0.55;
  filter: saturate(0.9);
}

/* Active / hovered card */
.bcvh-cards-row:hover .bcvh-card:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-8px) scale(1.015);
  z-index: 3;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.18),
    0 4px 0 var(--bcvh-accent);
}

/* Image zoom + brightness */
.bcvh-cards-row:hover .bcvh-card:hover .bcvh-card-media {
  transform: scale(1.06);
  filter: brightness(1.08);
}

/* Cursor */
.bcvh-card {
  cursor: pointer;
}

/* Disable dimming on mobile (no hover UX) */
@media (max-width: 991.98px) {
  .bcvh-cards-row:hover .bcvh-card {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* ==========================
   Services cards – smooth replace animation
   ========================== */

.bcvh-services-grid {
  position: relative;
}

/* base */
.bcvh-service-tile {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* exit */
.bcvh-service-tile.is-exiting {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
}

/* initial enter state */
.bcvh-service-tile.is-entering {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
}

/* final visible */
.bcvh-service-tile.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.footer-widgets.footer.footer-1 {
    display: none;
}

/* ==========================
   CONTACT (FORM + MAP)
   ========================== */
.bcvh-contact-split {
  background: var(--bcvh-bg-light);
}

.bcvh-contact-card,
.bcvh-map-card {
  background: #fff;
  border-radius: var(--bcvh-radius-lg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
  overflow: hidden;
}

.bcvh-contact-card {
  padding: 2rem 1.8rem;
}

.bcvh-contact-title {
  margin: 0.25rem 0 0.6rem;
}

.bcvh-contact-sub {
  margin: 0 0 1.2rem;
  color: var(--bcvh-text-muted);
}

.bcvh-contact-form .form-control {
  border-radius: 14px;
  border: 1px solid #d9dde5;
  padding: 0.8rem 1rem;
}

.bcvh-contact-form .form-control:focus {
  outline: none;
  border-color: var(--bcvh-primary);
  box-shadow: 0 0 0 3px rgba(0,122,195,0.12);
}

.bcvh-map-embed {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ==========================
   FAQ (Vehica-like)
   ========================== */
.bcvh-faq {
  background: #fff;
}

.bcvh-faq-list {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.bcvh-faq-item + .bcvh-faq-item {
  margin-top: 0.9rem;
}

.bcvh-faq-q {
  width: 100%;
  text-align: left;
  background: #f7f8fb;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 1.05rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bcvh-faq-q:hover {
  border-color: rgba(0,0,0,0.18);
  background: #f4f6fa;
}

/* plus/minus */
.bcvh-faq-q::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  color: var(--bcvh-primary);
  font-weight: 800;
}

.bcvh-faq-q[aria-expanded="true"]::after {
  content: "–";
  color: var(--bcvh-accent);
}

.bcvh-faq-a {
  padding: 0.95rem 1.2rem 0.2rem;
  color: var(--bcvh-text-muted);
}

.bcvh-faq-a p {
  margin: 0 0 1rem;
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
  .bcvh-map-embed {
    min-height: 300px;
  }
}

@media (max-width: 575.98px) {
  .bcvh-contact-card {
    padding: 1.6rem 1.2rem;
  }
  .bcvh-faq-q {
    padding-right: 3.2rem; /* room for + / - bubble */
  }
}

/* Bigger message box */
.bcvh-contact-form textarea.form-control {
  min-height: 180px; /* change to 220px if you want even bigger */
  resize: vertical;  /* user can still expand */
}


/* Newsletter: mobile centering + full width fields */
@media (max-width: 575.98px) {
  .bcvh-newsletter-card {
    text-align: center;
    padding: 2rem 1.25rem;
  }

  .bcvh-newsletter-text {
    text-align: center;
  }

  .bcvh-newsletter-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    align-items: stretch;
  }

  .bcvh-newsletter-form input,
  .bcvh-newsletter-form button {
    width: 100% !important;
  }

  .bcvh-newsletter-form input {
    text-align: center;
  }
}

.bcvh-card-media{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 991.98px) {
  .bcvh-card-media { height: 220px; }
  .bcvh-card--featured .bcvh-card-media { height: 300px; }
}

/* ==========================
   Featured cards: better image crop + smaller typography
   ========================== */

/* Make the image area on small cards actually visible */
.bcvh-featured .bcvh-card-media{
  height: 150px;                 /* was % -> too small on small cards */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Keep the big featured card image taller */
.bcvh-featured .bcvh-card--featured .bcvh-card-media{
  height: 320px;
}

/* Smaller text area (titles + paragraph) */
.bcvh-featured .bcvh-card-body{
  padding: 1rem 1.15rem;
}

.bcvh-featured .bcvh-card-body h3{
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 0.35rem;
  font-weight: 600;
}

.bcvh-featured .bcvh-card--featured .bcvh-card-body h3{
  font-size: 1.45rem; /* slightly bigger only for the big card */
}

.bcvh-featured .bcvh-card-body p{
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
}

/* meta line already has font-size:0.85rem in your CSS; keep it */

/* Mobile: still looks good when stacked */
@media (max-width: 991.98px){
  .bcvh-featured .bcvh-card-media{ height: 200px; }
  .bcvh-featured .bcvh-card--featured .bcvh-card-media{ height: 260px; }
}

@media (max-width: 575.98px){
  .bcvh-featured .bcvh-section-header h2{ font-size: 1.6rem; }
  .bcvh-featured .bcvh-card-body h3{ font-size: 1.15rem; }
}


/* Small featured cards: true 50/50 WITHOUT breaking the grid */
.bcvh-featured .bcvh-card.bcvh-card--small{
  display: grid;
  grid-template-rows: 1fr 1fr; /* 50% / 50% */
  height: 100%;
}

/* allow children to shrink inside grid (prevents overflow bugs) */
.bcvh-featured .bcvh-card.bcvh-card--small .bcvh-card-media,
.bcvh-featured .bcvh-card.bcvh-card--small .bcvh-card-body{
  min-height: 0;
}

.bcvh-featured .bcvh-card.bcvh-card--small .bcvh-card-media{
  height: auto !important; /* override the 150px rule */
  background-size: cover;
  background-position: center;
}

.bcvh-featured .bcvh-card.bcvh-card--small .bcvh-card-body{
  overflow: hidden; /* stops text from forcing card taller than grid row */
  padding: 0.95rem 1.1rem;
  display: flex;
  flex-direction: column;
}

/* keep meta pinned to bottom */
.bcvh-featured .bcvh-card.bcvh-card--small .bcvh-card-meta{
  margin-top: auto;
}

/* clamp paragraph so it doesn't push layout */
.bcvh-featured .bcvh-card.bcvh-card--small .bcvh-card-body p{
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* slightly smaller small-card title */
.bcvh-featured .bcvh-card.bcvh-card--small .bcvh-card-body h3{
  font-size: 1.1rem;
  line-height: 1.2;
}


@media (max-width: 991.98px){
  .bcvh-featured .bcvh-card.bcvh-card--small{
    display: flex;
    flex-direction: column;
  }
  .bcvh-featured .bcvh-card.bcvh-card--small .bcvh-card-media{
    height: 220px !important;
  }
}

/* =========================
   NEWSLETTER: stack on tablet too (<= 991.98px)
   ========================= */
@media (max-width: 991.98px) {
  .bcvh-newsletter-card {
    text-align: center;
  }

  .bcvh-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .bcvh-newsletter-form input,
  .bcvh-newsletter-form button {
    width: 100%;
  }
}


.bcvh-section-cta a:hover {
    color: white;
}


/* =========================
   RINNETAL SHOWCASE ADDONS
   ========================= */

/* Hero brand strip */
.bcvh-hero-brands {
  margin-top: 18px;
}
.bcvh-brands-card {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  /* border: 1px solid rgba(255,255,255,0.55);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18); */
}
.bcvh-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #0b1a26;
  border: 1px solid rgba(20,44,61,0.12);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.bcvh-brand:hover {
  background: rgba(0,0,0,0.04);
}

/* Vehicle market cards */
.bcvh-vehicle-grid { margin-top: 10px; }
.bcvh-vehicle-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20,44,61,0.10);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.bcvh-vehicle-media {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bcvh-vehicle-media:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.22));
}
.bcvh-vehicle-body {
  padding: 14px 14px 16px;
}
.bcvh-vehicle-body h3 {
  font-size: 16px;
  margin: 0 0 6px;
}
.bcvh-vehicle-spec {
  margin: 0 0 10px;
  color: rgba(11,26,38,0.72);
  font-size: 13px;
  line-height: 1.35;
}
.bcvh-vehicle-price {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--bcvh-primary);
}
.bcvh-vehicle-actions {
  display: flex;
  gap: 10px;
}
.bcvh-vehicle-actions .bcvh-btn-outline,
.bcvh-vehicle-actions .bcvh-btn-primary {
  width: 100%;
  text-align: center;
  padding: 10px 12px;
}

/* Offers */
.bcvh-offer-card {
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(20,44,61,0.10);
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}
.bcvh-offer-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.bcvh-offer-card p {
  margin: 0 0 14px;
  color: rgba(11,26,38,0.78);
}

/* Management quote */
.bcvh-management-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #0b4f7b;
  color: #fff;
  overflow: hidden;
}
.bcvh-management-card .bcvh-kicker {
  color: rgba(255,255,255,0.82);
}
.bcvh-management-sign {
  margin-top: 14px;
  font-weight: 700;
}
.bcvh-management-sign span {
  display: inline-block;
  margin-top: 6px;
  font-weight: 500;
  opacity: 0.9;
}
.bcvh-management-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
@media (max-width: 991px) {
  .bcvh-management-card { grid-template-columns: 1fr; }
  .bcvh-management-media img { height: 240px; }
}

/* Contact card small adjustments */
.bcvh-contact-lines { margin: 10px 0 16px; display: grid; gap: 8px; }
.bcvh-contact-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.bcvh-contact-actions .bcvh-btn-primary,
.bcvh-contact-actions .bcvh-btn-outline { flex: 1 1 160px; text-align: center; }
.bcvh-contact-note { margin-top: 14px; font-size: 13px; color: rgba(11,26,38,0.66); }


/* =========================
   Rinnetal Header (minimal)
   ========================= */
.rnh-header { position: sticky; top: 0; z-index: 999; background: #fff; }
.rnh-container { max-width: 1200px; margin: 0 auto; padding: 12px 16px; }

.rnh-top { border-bottom: 1px solid #e9e9ee; background: #fff; }
.rnh-top .rnh-container { display: flex; align-items: center; gap: 18px; }
.rnh-logo img { display:block; height: 44px; width: auto; }

.rnh-brands { display:flex; align-items:center; gap: 14px; overflow: auto; white-space: nowrap; flex: 1; }
.rnh-brands img { height: 28px; width: auto; display:block; }

.rnh-burger { display:none; margin-left:auto; border:0; background:transparent; width:44px; height:44px; position:relative; }
.rnh-burger span { display:block; height:2px; background:#111; margin:6px 0; border-radius:2px; }

.rnh-navbar { background:#fff; border-bottom: 1px solid #e9e9ee; }
.rnh-navbar .rnh-container { display:flex; align-items:center; justify-content:space-between; gap: 16px; }

.rnh-menu { list-style:none; display:flex; gap: 16px; margin:0; padding:0; }
.rnh-menu > li { position:relative; }
.rnh-menu a { display:inline-flex; align-items:center; gap: 8px; padding: 12px 6px; color:#111; text-decoration:none; font-weight:600; font-size:14px; }

.rnh-actions { display:flex; align-items:center; gap: 10px; }
.rnh-phone { color:#0b4d7a; text-decoration:none; font-weight:700; }
.rnh-cta { background:#b3121b; color:#fff; text-decoration:none; padding: 10px 12px; border-radius: 6px; font-weight:700; }

/* dropdown */
.rnh-menu .sub-menu {
  position:absolute; left:0; top:100%;
  min-width: 220px;
  list-style:none; margin:0; padding:10px;
  background:#fff; border:1px solid #e9e9ee; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  display:none;
}
.rnh-menu .sub-menu a { padding: 10px 10px; width: 100%; font-weight:600; }
.rnh-menu > li:hover > .sub-menu { display:block; }

/* arrow icon on items that have dropdown */
.rnh-menu > .menu-item-has-children > a::after{
  content:"";
  width: 12px; height: 12px;
  background: url("../img/rinnetal/arrow-down-icon.png") center/contain no-repeat;
  opacity:.8;
}

/* mobile */
@media (max-width: 992px){
  .rnh-burger{ display:block; }
  .rnh-brands{ display:none; }
  .rnh-navbar .rnh-container{ align-items:flex-start; }
  .rnh-nav{ display:none; width:100%; }
  .rnh-header.is-open .rnh-nav{ display:block; }
  .rnh-menu{ flex-direction:column; gap:0; width:100%; }
  .rnh-menu a{ width:100%; padding:12px 10px; }
  .rnh-menu .sub-menu{ position:static; border:0; box-shadow:none; padding: 0 0 10px 10px; display:none; }
  .rnh-menu li.is-open > .sub-menu{ display:block; }
  .rnh-actions{ padding: 10px 0; width:100%; justify-content:flex-start; }
}


/* =====================================================
   Rinnetal header (single row + dropdowns + no blue bg)
   ===================================================== */

.rnh-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.rnh-container{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 18px;
}

.rnh-bar{
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
}

.rnh-logo{
  display: inline-flex;
  align-items: center;
  margin-left: auto; /* pushes logo to the RIGHT */
}

.rnh-logo img{
  display: block;
  width: auto;
  height: 44px;
}

.rnh-nav{ flex: 1 1 auto; }

.rnh-menu{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
}

.rnh-menu > li{ position: relative; }

.rnh-menu a{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 15px;
  color: #0b1a26;
  text-decoration: none;
}

.rnh-menu a:hover{ color: #0b1a26; opacity: 0.85; }

/* Dropdown arrow (no library needed) */
.rnh-menu > li.menu-item-has-children > a::after{
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background: no-repeat center / 12px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%230b1a26' d='M5.3 7.3a1 1 0 0 1 1.4 0L10 10.6l3.3-3.3a1 1 0 1 1 1.4 1.4l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 0-1.4z'/%3E%3C/svg%3E");
  opacity: 0.65;
  transform: translateY(1px);
  transition: transform 0.15s ease;
}

.rnh-menu > li.menu-item-has-children:hover > a::after{
  transform: translateY(1px) rotate(180deg);
}

/* Dropdown panel */
.rnh-menu .sub-menu{
  list-style: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  z-index: 1000;
}

.rnh-menu .sub-menu a{
  width: 100%;
  padding: 10px 8px;
  font-weight: 600;
  font-size: 14px;
}

.rnh-menu .sub-menu a:hover{
  background: rgba(0,0,0,0.04);
  border-radius: 10px;
}

.rnh-menu li:hover > .sub-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.rnh-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.rnh-phone{
  color: #007ac3;
  font-weight: 800;
  text-decoration: none;
}

.rnh-cta{
  background: #b31416;
  color: #fff;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 12px;
  text-decoration: none;
}

.rnh-cta:hover{ opacity: 0.9; }

/* Burger + mobile drawer */
.rnh-burger{
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  background: #fff;
  display: none; /* desktop */
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}

.rnh-burger span{
  display: block;
  width: 20px;
  height: 2px;
  background: #0b1a26;
  border-radius: 2px;
}

.rnh-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  border: 0;
  padding: 0;
  z-index: 998;
}

@media (max-width: 1240px){
  .rnh-burger{ 
    display: inline-flex;
    flex-direction: column;
   }

  .rnh-nav{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(340px, 86vw);
    background: #fff;
    z-index: 999;
    padding: 92px 18px 18px;
    transform: translateX(-102%);
    transition: transform 0.22s ease;
    overflow: auto;
  }

  .rnh-header.is-open .rnh-nav{ transform: translateX(0); }
  .rnh-header.is-open .rnh-backdrop{ opacity: 1; visibility: visible; }

  .rnh-menu{ flex-direction: column; align-items: stretch; gap: 0; }
  .rnh-menu a{ padding: 12px 0; }

  /* mobile submenus (accordion) */
  .rnh-menu .sub-menu{
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 12px;
    display: none;
  }
  .rnh-menu li.is-open > .sub-menu{ display: block; }

  .rnh-menu > li.menu-item-has-children > a::after{ margin-left: auto; }
  .rnh-menu li.is-open > a::after{ transform: translateY(1px) rotate(180deg); }
}

/* 1) Logo LEFT (remove push-right) */
.rnh-logo{
  margin-left: 0 !important;   /* was auto */
  order: 0;
}

/* Optional: keep actions near right */
.rnh-actions{
  margin-left: auto;           /* pushes phone+button to the right */
}

/* 2) Smaller font + no wrapping for menu items */
.rnh-menu a{
  font-size: 15px !important;  /* was 15px */
  line-height: 1.1;
  white-space: nowrap;         /* prevent "Über uns" wrapping */
}

/* tighten spacing slightly so everything fits one line */
.rnh-menu{
  gap: 16px !important;        /* was 22px */
}

/* Also prevent wrapping in actions */
.rnh-actions,
.rnh-phone,
.rnh-cta{
  white-space: nowrap;
}

/* If still tight on smaller screens, reduce padding a bit */
.rnh-menu a{
  padding: 8px 0 !important;   /* was 10px 0 */
}


/* ================================
   HEADER: force logo LEFT + smaller menu
================================ */

/* Make the header row a flex row */
.rnh-header .rnh-bar{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Logo on the LEFT */
.rnh-logo{
  order:0;
  margin:0;
  flex:0 0 auto;
}

/* Menu stays in one line + smaller font */
.rnh-nav{
  order:1;
  flex:1 1 auto;
  min-width:0;
}

.rnh-menu{
  display:flex;
  align-items:center;
  gap:12px;              /* reduce spacing so it fits */
  flex-wrap:nowrap;      /* keep menu in one line */
}

.rnh-menu a{
  font-size:14px;        /* smaller font */
  padding:8px 10px;      /* slightly tighter */
  white-space:nowrap;    /* prevent “Über uns” from breaking */
}

/* Phone + button pushed to the right */
.rnh-actions{
  order:2;
  margin-left:auto;
  flex:0 0 auto;
}


/* =========================
   HERO: Brand logos (clickable)
   ========================= */
.bcvh-brands-card--logos {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.bcvh-brand--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.bcvh-brand--logo img {
  display: block;
  width: auto;
  max-width: 140px;
  max-height: 40px;
  object-fit: contain;
}

.bcvh-brand--logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

/* Mobile: 2 logos per row */
@media (max-width: 576px) {
  .bcvh-brands-card--logos {
    justify-content: space-between;
  }
  .bcvh-brands-card--logos .bcvh-brand--logo {
    flex: 0 0 calc(50% - 6px);
  }
  .bcvh-brand--logo img {
    margin: 0 auto;
  }
}

/* =========================
   HERO: Search controls alignment
   ========================= */
.bcvh-search-field .form-select,
.bcvh-search-field .form-control,
.bcvh-search-submit button {
  height: 52px;
}

.bcvh-search-field .form-select,
.bcvh-search-field .form-control {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.bcvh-search-submit button {
  padding: 0 18px; /* remove tall vertical padding */
}


.bcvh-vehicle-pill{
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--bcvh-primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.bcvh-vehicle-footer{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 52px 52px;
  gap: 10px;
  align-items: stretch;
}

.bcvh-vehicle-finance{
  border: 2px solid rgba(0, 122, 195, .35);
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 52px;
}

.bcvh-vehicle-finance-label{
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3b3b3b;
  margin-bottom: 2px;
}

.bcvh-vehicle-finance-value{
  font-size: 18px;
  font-weight: 800;
  color: var(--bcvh-primary);
  line-height: 1.1;
}

.bcvh-vehicle-icon{
  border: 2px solid rgba(0, 122, 195, .35);
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  min-height: 52px;
}

.bcvh-vehicle-icon img{
  width: 22px;
  height: 22px;
  display: block;
}

.bcvh-vehicle-icon:hover{
  background: var(--bcvh-primary);
  border-color: var(--bcvh-primary);
}

.bcvh-vehicle-icon:hover img{
  filter: brightness(0) invert(1);
}


.bcvh-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.55rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bcvh-pill:hover{
  background: var(--bcvh-primary-dark);
  border-color: var(--bcvh-primary-dark);
  color: #fff;
}

.bcvh-pill:focus-visible{
  outline: 3px solid rgba(0,0,0,0.18);
  outline-offset: 2px;
}



a.bcvh-pill {
  background: var(--bcvh-primary);
  border-color: var(--bcvh-primary);
  color: #fff;
  text-decoration: none;
}



/* Kundenkarte block (replaces cards area) */
.bcvh-kernleistungen{
  display: grid;
  grid-template-columns: 1fr minmax(280px, 520px) 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.bcvh-kern-box{
  border-radius: 18px;
  background: rgba(0,0,0,0.06);
  min-height: 260px;
}

.bcvh-kern-box--center{
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bcvh-kern-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Mobile: keep it clean */
@media (max-width: 992px){
  .bcvh-kernleistungen{ grid-template-columns: 1fr; }
  .bcvh-kern-box--left,
  .bcvh-kern-box--right{ display: none; }
  .bcvh-kern-img{ max-height: 340px; }
}


.bcvh-management-text p { line-height: 1.6; max-width: 58ch; }
.bcvh-management-frame { padding: 14px; }


/* CF7 styling to match the design */
.bcvh-contact-form .wpcf7 { margin: 0; }

.bcvh-cf7-field { margin-bottom: 14px; }
.bcvh-cf7-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #0b0f1a;
}

.bcvh-contact-form input.wpcf7-form-control,
.bcvh-contact-form textarea.wpcf7-form-control {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d9dde5;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  background: #fff;
}

.bcvh-contact-form textarea.wpcf7-form-control {
  min-height: 140px;
  resize: vertical;
}

.bcvh-contact-form input.wpcf7-form-control:focus,
.bcvh-contact-form textarea.wpcf7-form-control:focus {
  border-color: var(--bcvh-primary);
  box-shadow: 0 0 0 3px rgba(0,122,195,0.12);
}

.bcvh-contact-form .wpcf7-submit.bcvh-btn{
  background: var(--bcvh-primary);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  cursor: pointer;
}

.bcvh-contact-form .wpcf7-submit.bcvh-btn:hover { filter: brightness(0.95); }

/* Clean CF7 messages */
.bcvh-contact-form .wpcf7-response-output { margin: 12px 0 0; border-radius: 12px; }


/* Contact Form 7 – make it match the design */
.bcvh-contact-card .bcvh-contact-title{
  margin: 6px 0 18px;
}

.bcvh-contact-card .wpcf7 form{
  margin: 0;
}

.bcvh-contact-card .bcvh-cf7-field{
  margin-bottom: 16px;
}

.bcvh-contact-card .bcvh-cf7-label{
  display:block;
  font-weight: 600;
  margin: 0 0 8px;
}


/* ==========================================
   CONTACT (Split): CF7 form + map (match PDF)
   Paste at END of bc-rinnetal-home.css
========================================== */

/* Card */
.bcvh-contact-split .bcvh-contact-card{
  background:#fff;
  border-radius:26px;
  padding:48px 42px;
  box-shadow:0 18px 50px rgba(16,24,40,.08);
}

/* Heading */
.bcvh-contact-split .bcvh-contact-kicker{
  margin:0 0 10px;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#8a8f98;
}
.bcvh-contact-split .bcvh-contact-title{
  margin:0 0 26px;
  font-size:40px;
  line-height:1.12;
}

/* CF7 reset in this block */
.bcvh-contact-split .wpcf7 form{ margin:0; }
.bcvh-contact-split .wpcf7 p{
  margin:0 0 18px !important;   /* CF7 uses <p> wrappers */
}
.bcvh-contact-split .wpcf7 br{ display:none; }

.bcvh-contact-split .wpcf7 label{
  display:block;
  margin:0 0 8px;
  font-size:13px;
  font-weight:600;
  color:#1a1f26;
}

.bcvh-contact-split .wpcf7 input[type="text"],
.bcvh-contact-split .wpcf7 input[type="email"],
.bcvh-contact-split .wpcf7 input[type="tel"],
.bcvh-contact-split .wpcf7 textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #e3e6eb;
  border-radius:12px;
  background:#fff;
  font-size:14px;
  outline:none;
  box-shadow:none;
}

.bcvh-contact-split .wpcf7 textarea{
  min-height:150px;
  resize:none; /* PDF look */
}

.bcvh-contact-split .wpcf7 input:focus,
.bcvh-contact-split .wpcf7 textarea:focus{
  border-color: rgba(10, 91, 133, .45);
  box-shadow:0 0 0 4px rgba(10, 91, 133, .12);
}

/* Submit button (NOT full width) */
.bcvh-contact-split .wpcf7 input[type="submit"]{
  width:auto !important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 26px;
  border-radius:12px;
  border:0;
  background:#0a5b85;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.bcvh-contact-split .wpcf7 input[type="submit"]:hover{
  filter:brightness(.96);
}

/* Optional: cleaner CF7 UI */
.bcvh-contact-split .wpcf7-spinner{ display:none; }
.bcvh-contact-split .wpcf7-response-output{
  margin:14px 0 0 !important;
  border-radius:14px;
  font-size:14px;
}

/* Map card (THIS is what you have in PHP) */
.bcvh-contact-split .bcvh-contact-map{
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 18px 50px rgba(16,24,40,.08);
  min-height:520px; /* makes it match the form height */
}

/* Make the iframe actually fill the right side */
.bcvh-contact-split .bcvh-contact-map iframe{
  width:100%;
  height:100%;
  min-height:520px;
  border:0;
  display:block;
}

/* Responsive */
@media (max-width: 991px){
  .bcvh-contact-split .bcvh-contact-card{ padding:34px 22px; }
  .bcvh-contact-split .bcvh-contact-title{ font-size:32px; }
  .bcvh-contact-split .bcvh-contact-map,
  .bcvh-contact-split .bcvh-contact-map iframe{
    min-height:360px;
  }
}

/* HERO SLIDER (image <-> video) */
.bcvh-hero-slider{
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.bcvh-hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
}

.bcvh-hero-slide.is-active{
  opacity: 1;
}

.bcvh-hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* add the same dark overlay feel on the video slide */
.bcvh-hero-slide[data-kind="video"]::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  pointer-events:none;
}

/* Brand strip section below hero */
.bcvh-brand-strip-section{
  position: relative;
  z-index: 2;
  margin-top: 25px;   /* keeps the “floating” card look */
  padding-bottom: 18px;
}
@media (max-width: 768px){
  .bcvh-brand-strip-section{ margin-top: -28px; }
}


/* ==========================================
   CONTACT: make section more compact (1-screen feel)
   Paste at END of bc-rinnetal-home.css
========================================== */

/* reduce only this section's vertical padding (overrides .bcvh-section { padding: 4rem 0; }) */
.bcvh-section.bcvh-contact-split{
  padding: 2.25rem 0;
}

/* tighter card padding */
.bcvh-contact-split .bcvh-contact-card{
  padding: 1.4rem 1.25rem;
}

/* tighter heading spacing */
.bcvh-contact-split .bcvh-contact-title{
  margin: 0.15rem 0 0.45rem;
}
.bcvh-contact-split .bcvh-contact-sub{
  margin: 0 0 0.9rem;
}

/* reduce form spacing (Bootstrap mb-3/mb-4 usually makes it tall) */
.bcvh-contact-split .bcvh-contact-form .mb-3,
.bcvh-contact-split .bcvh-contact-form .mb-4{
  margin-bottom: 0.75rem !important;
}

/* slightly smaller input padding */
.bcvh-contact-split .bcvh-contact-form .form-control{
  padding: 0.65rem 0.9rem;
}

/* reduce message box height */
.bcvh-contact-split .bcvh-contact-form textarea.form-control{
  min-height: 130px;
}

/* control map height so the whole split block doesn't become huge */
.bcvh-contact-split .bcvh-map-embed{
  height: clamp(320px, 55vh, 520px);
  min-height: 0; /* override previous min-height */
}


/* Bottom copyright bar (under the dark pre-footer) */
.bcvh-copyright-bar{
  background: #0f1117; /* slightly darker than #151821 */
  color: rgba(255,255,255,0.72);
  padding: 0.9rem 0;
  font-size: 0.85rem;
}

.bcvh-copyright-inner{
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bcvh-copyright-bar a{
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}

.bcvh-copyright-bar a:hover{
  text-decoration: underline;
}

.bcvh-copyright-sep{
  opacity: 0.35;
}


/* =========================================
   FIX: Hamburger icon visibility + left aligned drawer menu
   Paste at END of bc-rinnetal-home.css
========================================= */

/* Make the 3 bars look like a real hamburger (bigger + clearer)
   and do NOT style the screen-reader-text span */
.rnh-burger > span:not(.screen-reader-text){
  width: 26px;
  height: 3px;
  border-radius: 3px;
}

/* Force-hide the screen reader text safely (in case WP SR styles are not present) */
.rnh-burger > .screen-reader-text{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1240px){
  /* Left align EVERYTHING inside drawer */
  .rnh-nav,
  .rnh-menu,
  .rnh-menu li,
  .rnh-menu a{
    text-align: left;
  }

  .rnh-menu a{
    width: 100%;
    justify-content: flex-start;  /* important */
    padding: 12px 10px;          /* better touch area */
  }

  /* Keep arrow on the right */
  .rnh-menu > li.menu-item-has-children > a::after{
    margin-left: auto;
  }

  /* Submenu indentation + spacing */
  .rnh-menu .sub-menu{
    padding-left: 16px;
  }

  .rnh-menu .sub-menu a{
    padding: 10px 10px;
  }
}

/* =========================================================
   FINAL OVERRIDE: Hamburger visible + drawer fully left aligned
   Paste at VERY END of bc-rinnetal-home.css
========================================================= */

@media (max-width: 1240px){

  /* Hamburger button (make bars clearly visible) */
  .rnh-burger{
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;

    width: 46px !important;
    height: 46px !important;
    padding: 0 !important;

    background: #fff !important;
    border: 1px solid rgba(0,0,0,.18) !important;
    border-radius: 12px !important;

    color: #0b1a26 !important; /* bar color via currentColor */
  }

  .rnh-burger > span:not(.screen-reader-text){
    display: block !important;
    width: 26px !important;
    height: 3px !important;
    background: currentColor !important;
    border-radius: 3px !important;
    margin: 0 !important; /* use gap from button */
  }

  /* Drawer: force LEFT alignment everywhere */
  .rnh-nav,
  .rnh-menu,
  .rnh-menu li{
    text-align: left !important;
    align-items: flex-start !important;
  }

  .rnh-menu a{
    width: 100% !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 12px 16px !important;
  }

  /* Keep dropdown arrow on the RIGHT */
  .rnh-menu > li.menu-item-has-children > a::after{
    margin-left: auto !important;
  }

  /* Submenu indentation + better structure */
  .rnh-menu .sub-menu{
    padding-left: 14px !important;
    margin-left: 10px !important;
    border-left: 2px solid rgba(0,0,0,.08) !important;
  }

  .rnh-menu .sub-menu a{
    padding: 10px 16px !important;
  }
}


/* =========================================================
   RINNETAL HEADER: tablet burger left + mobile fits + phone in drawer
   Paste at VERY END of bc-rinnetal-home.css
========================================================= */

.rnh-mobile-only { display: none; }

/* Tablet + Mobile: force burger LEFT, logo next, actions right */
@media (max-width: 1240px){
  .rnh-bar{
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .rnh-burger{
    margin-left: 0 !important;     /* IMPORTANT: was auto in your file */
    order: 0 !important;
    flex: 0 0 auto !important;
    color: #0b1a26 !important;     /* bars use currentColor */
  }

  .rnh-burger > span:not(.screen-reader-text){
    background: currentColor !important; /* ensure bars visible */
  }

  .rnh-logo{
    order: 1 !important;
    flex: 0 0 auto !important;
  }

  .rnh-actions{
    order: 2 !important;
    margin-left: auto !important;
    flex: 0 0 auto !important;
    gap: 10px !important;
  }

  /* Drawer: make everything truly LEFT aligned */
  .rnh-menu{
    align-items: flex-start !important;
  }
  .rnh-menu > li{
    width: 100% !important;
  }
  .rnh-menu a{
    width: 100% !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .rnh-menu > li.menu-item-has-children > a::after{
    margin-left: auto !important; /* keep arrow on right */
  }
  .rnh-menu .sub-menu{
    padding-left: 18px !important;
    margin-left: 0 !important;
  }
}

/* Mobile: prevent overflow (phone goes into drawer, CTA smaller) */
@media (max-width: 575.98px){
  .rnh-container{
    padding: 10px 10px !important;
  }

  .rnh-logo img{
    height: 34px !important;
    width: auto !important;
  }

  /* Hide header phone to free space */
  .rnh-actions .rnh-phone{
    display: none !important;
  }

  /* Make CTA smaller so it doesn't overflow */
  .rnh-cta{
    padding: 8px 10px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
  }

  /* Show phone inside drawer */
  .rnh-mobile-only{
    display: block !important;
  }
  .rnh-mobile-phone{
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    padding: 12px 16px !important;
    font-weight: 800 !important;
    color: #007ac3 !important;
    text-decoration: none !important;
  }
}


/* =========================================================
   FIX: dropdown arrow (down ↔ up) on mobile/tablet drawer
   Paste at VERY END of bc-rinnetal-home.css
========================================================= */

@media (max-width: 1240px){

  /* Default: arrow points DOWN */
  .rnh-menu > li.menu-item-has-children > a::after{
    transform: translateY(1px) rotate(0deg) !important;
    transition: transform .18s ease !important;
    pointer-events: none; /* tap on arrow still triggers <a> click */
  }

  /* When submenu is open: arrow points UP */
  .rnh-menu > li.menu-item-has-children.is-open > a::after{
    transform: translateY(1px) rotate(180deg) !important;
  }
}


/* ================================
   FIX: Mobile submenu must close on second tap
   - Disable hover-open behavior inside drawer
   - Only .is-open controls visibility
================================ */

@media (max-width: 1240px){
  /* on touch devices hover can "stick" -> force it OFF */
  .rnh-menu li:hover > .sub-menu{
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  /* only JS class should open it */
  .rnh-menu li.is-open > .sub-menu{
    display: block !important;
  }

  /* nicer tap targets + left alignment */
  .rnh-menu > li > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}


/* =========================================================
   HEADER LAYOUT (tablet/mobile) + BURGER becomes CLOSE (X)
   Paste at VERY END of bc-rinnetal-home.css
========================================================= */

/* 1) Better distribution: burger | centered logo | actions right */
@media (max-width: 1240px){
  .rnh-bar{
    display: grid !important;
    grid-template-columns: 52px 1fr auto !important;
    align-items: center !important;
    column-gap: 12px !important;
  }

  .rnh-burger{
    justify-self: start !important;
    margin: 0 !important;
  }

  .rnh-logo{
    justify-self: center !important;
  }

  .rnh-actions{
    justify-self: end !important;
    margin-left: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
  }
}

/* 2) Close icon: turn hamburger into X when drawer open */
@media (max-width: 1240px){
  .rnh-burger > span:not(.screen-reader-text){
    transition: transform .18s ease, opacity .18s ease !important;
    transform-origin: center !important;
  }

  /* When drawer is open */
  .rnh-header.is-open .rnh-burger > span:nth-child(1){
    transform: translateY(9px) rotate(45deg) !important;
  }
  .rnh-header.is-open .rnh-burger > span:nth-child(2){
    opacity: 0 !important;
  }
  .rnh-header.is-open .rnh-burger > span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg) !important;
  }
}


/* =========================================================
   Drawer close (X) button inside white panel
   Paste at VERY END of bc-rinnetal-home.css
========================================================= */

.rnh-drawer-close{ display:none; }

@media (max-width: 1240px){
  /* Make room so menu doesn't sit under X */
  .rnh-nav{
    padding-top: 56px !important;
  }

  .rnh-drawer-close{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: absolute !important;
    top: 12px !important;
    right: 12px !important;

    width: 42px !important;
    height: 42px !important;

    border: 1px solid rgba(0,0,0,.18) !important;
    border-radius: 12px !important;
    background: #fff !important;

    font-size: 30px !important;
    line-height: 1 !important;
    color: #0b1a26 !important;

    cursor: pointer !important;
    z-index: 5 !important;
  }

  .rnh-drawer-close:active{
    transform: scale(0.98);
  }
}


/* =========================================================
   FIX: Make drawer scrollable on mobile/tablet
   Paste at VERY END of bc-rinnetal-home.css
========================================================= */

@media (max-width: 1240px){
  /* Drawer panel should fill the screen and scroll */
  .rnh-nav{
    height: 100vh !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Ensure menu content doesn’t get hidden behind the X/close area */
  .rnh-menu{
    padding-bottom: 30px !important;
  }
}


.bcvh-kern-box{ overflow: hidden; }

.bcvh-kern-side-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ================================
   HERO: Hide text on VIDEO slide only
   (keep text on image slides)
================================ */
.bcvh-hero-slide--video .bcvh-hero-text{
  display: none !important;
}

/* Optional: reduce top/bottom spacing on video slide (keeps the panel higher) */
.bcvh-hero-slide--video .bcvh-hero-overlay{
  padding-top: 3rem;
  padding-bottom: 3rem;
}


.bcvh-hero.is-video .bcvh-hero-overlay{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==============================
   HERO: Hide text on VIDEO slide only
   (text stays visible on image slide)
============================== */
.bcvh-hero.is-video .bcvh-hero-text{
  display: none !important;
}



.bcvh-kern-link{
  display:block;
  height:100%;
  cursor:pointer;
}

.bcvh-kern-link:hover img{
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.bcvh-kern-link img{
  transition: transform .15s ease, filter .15s ease;
}

.rnh-header .rnh-bar{
  display: flex;
  align-items: center;
}














