/**
 * BH Agency Template Styles
 *
 * @package GroupeBH
 * @version 1.0.0
 */

/* ==========================================================================
   BH Agency Template - Base Styles
   ========================================================================== */

.bh-agency-template {
  line-height: 1.6;
  color: #333;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.bh-agency-hero {
  color: white;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.bh-agency-background {
  padding: 211px 0 290px;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
}


.bh-agency-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.bh-agency-hero__grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bh-agency-hero__title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 70px;
  line-height: 122%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.bh-agency-hero__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  max-width: 870px;
  width: 100%;
  margin: 0 auto;
}

.bh-agency-hero__description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .bh-agency-hero__description {
    font-size: 1.5rem;
  }
}

.bh-agency-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .bh-agency-hero__cta {
    flex-direction: row;
  }
}

.bh-agency-hero__btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bh-agency-hero__btn--primary {
  background-color: white;
  color: #2563eb;
}

.bh-agency-hero__btn--primary:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
}

.bh-agency-hero__btn--secondary {
  border: 2px solid white;
  color: white;
  background-color: transparent;
}

.bh-agency-hero__btn--secondary:hover {
  background-color: white;
  color: #2563eb;
  transform: translateY(-2px);
}

.bh-agency-hero__image-wrapper {
  position: relative;
}

.bh-agency-hero__image img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .bh-agency-hero__image img {
    height: 20rem;
  }
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.bh-agency-services {
  padding: 4rem 0;
  background-color: #000;
}

.bh-agency-services__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bh-agency-services__header {
  text-align: center;
  margin-bottom: 3rem;
}

.bh-agency-services__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bh-agency-services__title {
    font-size: 2.5rem;
  }
}

.bh-agency-services__subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* Services Tabs Navigation */
.bh-agency-services__tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bh-agency-services__tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 24px 40px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border: none;
  border-bottom: 1px solid #fff;
}

.bh-agency-services__tab-btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
}

.bh-agency-services__tab-btn.--active {
  border-bottom: 3px solid #e22415;
}

.bh-agency-services__tab-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-agency-services__tab-icon svg {
  width: 100%;
  height: 100%;
}

/* Services Tabs Content */
.bh-agency-services__tabs-content {
  position: relative;
  min-height: 400px;
}

.bh-agency-services__tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.bh-agency-services__tab-panel.--active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.bh-agency-services__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

@media (min-width: 1024px) {
  .bh-agency-services__content {
    /* grid-template-columns: 1fr 1fr; */
    grid-template-columns: 1fr;
  }
}

.bh-agency-services__content-text {
  order: 1;
}

.bh-agency-services__content-image {
  order: 2;
}

@media (min-width: 1024px) {
  .bh-agency-services__content-text {
    order: 1;
  }

  .bh-agency-services__content-image {
    order: 2;
  }
}

.bh-agency-services__content-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.bh-agency-services__content-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.bh-agency-services__content-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bh-agency-services__content-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.bh-agency-services__content-features li i {
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 12px;
}

.bh-agency-services__content-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.bh-agency-services__content-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.bh-agency-services__content-image:hover img {
  transform: scale(1.05);
}

/* BH Car Toggle Acheter/Vendre */
.bh-agency-services__content-full {
  width: 100%;
}

.bh-car-toggle {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

/* .bh-car-toggle__wrapper {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px;
  gap: 4px;
} */
.bh-car-toggle__wrapper {
  position: relative;
  display: inline-flex;
  /* padding: 4px; */
  border-radius: 66px;
  background: #fff;
}

.bh-car-toggle__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #E22415;
  border-radius: 66px;
  z-index: 1;
  transition: transform 0.3s ease;
  transform: translateX(var(--toggle-x, 0));
}

/* .bh-car-toggle__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
} */
.bh-car-toggle__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none !important;
  border-radius: 66px;
  padding: 10px 40px !important;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  color: #050505 !important;
  z-index: 2;
  background-color: transparent;
  padding: 0 40px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
}

.bh-car-toggle__btn.--active {
  color: #fff !important;
}


/* .bh-car-toggle__btn:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.05);
} */

/* .bh-car-toggle__btn.--active {
  background: #e22415;
  color: #fff;
  box-shadow: 0 4px 12px rgba(226, 36, 21, 0.3);
} */

.bh-car-toggle__btn svg {
  flex-shrink: 0;
}

/* BH Car Content */
.bh-car-content {
  display: none;
}

.bh-car-content.--active {
  display: block;
}

.bh-car-content__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.bh-car-content__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 1rem;
}

.bh-car-content__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.bh-car-content__shortcode {
  max-width: 1046px;
  width: 100%;
  margin: 2rem auto 0;
}

/* Legacy grid styles for fallback */
.bh-agency-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .bh-agency-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bh-agency-services__card {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.bh-agency-services__card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.bh-agency-services__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.bh-agency-services__icon--blue {
  background-color: #dbeafe;
  color: #2563eb;
}

.bh-agency-services__icon--green {
  background-color: #dcfce7;
  color: #16a34a;
}

.bh-agency-services__icon--orange {
  background-color: #fed7aa;
  color: #ea580c;
}

.bh-agency-services__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.bh-agency-services__card-description {
  color: #6b7280;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Info Section
   ========================================================================== */

.bh-agency-contact-info {
  padding: 4rem 0;
}

.bh-agency-contact-info__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bh-agency-contact-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .bh-agency-contact-info__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bh-agency-contact-info__title,
.bh-agency-services__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 0 auto 40px;
}

.bh-agency-contact-info__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.bh-agency-contact-info__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bh-agency-contact-boxes {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.bh-agency-contact-cell {
  border-radius: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bh-agency-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.bh-agency-contact-info__item-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 9px;
}

.bh-agency-contact-info__item-content {
  display: flex;
  align-items: center;
  gap: 9px;
}

.bh-agency-contact-info__item-content,
.bh-agency-contact-info__item-content>* {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
}

.bh-agency-contact-info__item-content a:hover {
  color: #2563eb;
}

/* Equipment Grid */
.bh-agency-equipment {
  margin-top: 2rem;
}

.bh-agency-equipment__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.bh-agency-equipment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.bh-agency-equipment__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bh-agency-equipment__item i {
  color: #10b981;
}

.bh-agency-map__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.bh-agency-map__iframe {
  width: 100%;
  height: 20rem;
  border: 0;
  border-radius: 0.5rem;
}

.bh-agency-map__canvas {
  width: 100%;
  height: 20rem;
  border: 0;
  border-radius: 0.5rem;
  overflow: hidden;
}

.bh-agency-about {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.bh-agency-about__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.bh-agency-about__content {
  color: #374151;
  line-height: 1.7;
}

/* Gallery */
.bh-agency-gallery {
  margin-top: 2rem;
}

.bh-agency-gallery__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.bh-agency-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.bh-agency-gallery__image {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease;
}

.bh-agency-gallery__image:hover {
  opacity: 0.9;
}

/* ==========================================================================
   Expert Section
   ========================================================================== */

.bh-agency-expert__inner {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  display: flex;
  justify-content: center;
  gap: 50px;
  align-items: flex-start;
  overflow: hidden;
}

.bh-agency-expert__image {
  height: 491px;
  object-fit: cover;
  object-position: center;
}

.bh-agency-expert__inner-flag {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.bh-agency-expert__content {
  padding: 78px 64px 0 0;
  max-width: 644px;
  width: 100%;
}

.bh-agency-expert__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}

.bh-agency-expert__title>span {
  color: #e22415;
}

.bh-agency-expert__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  max-width: 562px;
  width: 100%;
}

.bh-agency-expert__inner-glow {
  position: absolute;
  bottom: -179px;
  left: -66px;
  z-index: -1;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.bh-agency-team {
  position: relative;
  overflow: hidden;
  padding: 124px 0;
}

.bh-agency-team__ellipse {
  position: absolute;
  top: 100px;
  right: -323px;
  z-index: -1;
}

.bh-agency-team__flag {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.bh-agency-team__header {
  display: flex;
  justify-content: center;
}

.bh-agency-team__header-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding: 24px 40px;
  border-bottom: 1px solid #fff;
  cursor: pointer;
}

.bh-agency-team__header-title.--active {
  border-bottom: 3px solid #e22415;
}

.bh-agency-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bh-agency-team__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .bh-agency-team__title {
    font-size: 26px;
  }
}

.bh-agency-team__subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.bh-agency-team__section {
  display: none;
}

.bh-agency-team__section.--active {
  display: block;
}

.bh-agency-team__section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 2rem;
}

.bh-agency-team__managers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .bh-agency-team__managers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bh-agency-team__managers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bh-agency-team__members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .bh-agency-team__members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bh-agency-team__members-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bh-agency-team__social i {
  border-radius: 6px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.bh-agency-team__avatar {
  width: calc(100% - 34px);
  margin: 0 auto;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  height: 565px;
  object-position: top;
}

.bh-agency-team__avatar--placeholder {
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.bh-agency-team__content {
  backdrop-filter: blur(42px);
  box-shadow: inset -5px -5px 250px 0 rgba(255, 255, 255, 0.02);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 24px;
}

.bh-agency-team__description {
  backdrop-filter: blur(42px);
  box-shadow: inset -5px -5px 250px 0 rgba(255, 255, 255, 0.02);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #e22415;
  border-bottom: none;
  width: calc(100% - 34px);
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
  padding: 24px;
  display: none;
  height: 565px;
}

.bh-agency-team__content * {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.bh-agency-team__name {}

.bh-agency-team__member-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.bh-agency-team__position {
  font-size: 16px;
  font-weight: 600;
}

.bh-agency-team__member-position {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.bh-agency-team__service {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.bh-agency-team__catchphrase {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.bh-agency-team__social {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
  gap: 8px;
}

.bh-agency-team__social a {
  color: #9ca3af;
  transition: color 0.3s ease;
}

.bh-agency-team__social a:hover {
  color: #2563eb;
}

.bh-agency-services__equip {
  grid-row: 2;
  grid-column: 2 span;
  border-radius: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.07);
}

.bh-agency-services__equip-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.bh-agency-services__equip-boxes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.bh-agency-services__equip-box {
  flex-grow: 1;
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  gap: 14px;
}

/* ==========================================================================
   Presentation Section
   ========================================================================== */

.bh-agency-presentation {
  padding: 124px 0;
  position: relative;
}

.bh-agency-presentation-ellipse {
  position: absolute;
  left: -420px;
  top: 0;
  z-index: -1;
}

.bh-agency-presentation-glow {
  position: absolute;
  right: 0;
  top: -650px;
  z-index: -1;
}

.bh-agency-presentation__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bh-agency-presentation__content-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.bh-agency-presentation__content-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.8);
}

.bh-agency-presentation__content {
  max-width: 600px;
  width: 100%;
}

.bh-agency-presentation__image {
  max-width: 729px;
  width: 100%;
  max-height: 444px;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.bh-agency-reviews {
  padding: 4rem 0;
}

.bh-agency-reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bh-agency-reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}

.bh-agency-reviews__title {
  font-family: "Inter", sans-serif;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 34px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.bh-agency-reviews__subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

.bh-agency-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.bh-agency-reviews__grid .swiper-controls {
  margin-top: 25px;
}

.bh-agency-reviews__grid .bhcar-google-reviews-slider {
  padding: 2rem 24px 4rem;
}

@media (min-width: 768px) {
  .bh-agency-reviews__grid .bhcar-google-reviews-slider {
    padding: 2rem 0 4rem;
  }

  .bh-agency-reviews__grid .swiper-controls {
    margin-top: 10px;
  }

  .bh-agency-reviews__grid {
    /* grid-template-columns: repeat(3, 1fr); */
  }
}

.bh-agency-reviews__card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.bh-agency-reviews__rating {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.bh-agency-reviews__stars {
  display: flex;
  color: #fbbf24;
  margin-right: 0.5rem;
}

.bh-agency-reviews__score {
  color: #6b7280;
}

.bh-agency-reviews__text {
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.bh-agency-reviews__author {
  display: flex;
  align-items: center;
}

.bh-agency-reviews__avatar {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.bh-agency-reviews__avatar i {
  color: #9ca3af;
}

.bh-agency-reviews__author-name {
  font-weight: 600;
  color: #1f2937;
}

.bh-agency-reviews__author-type {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ==========================================================================
   Contact Final Section
   ========================================================================== */

.bh-agency-contact-final__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bh-agency-contact-final__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .bh-agency-contact-final__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bh-agency-contact-final__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 112%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 72px;
  padding: 0 20px;
}

@media (min-width: 768px) {}

.bh-agency-contact-final__description {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.bh-agency-contact-final__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bh-agency-contact-final__info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bh-agency-contact-final__info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bh-agency-contact-final__info-icon--blue {
  background-color: #2563eb;
}

.bh-agency-contact-final__info-icon--green {
  background-color: #16a34a;
}

.bh-agency-contact-final__info-text h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.bh-agency-contact-final__info-text a {
  color: #93c5fd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.bh-agency-contact-final__info-text a:hover {
  color: #bfdbfe;
}

/* Form Styles */

.bh-agency-form {
  background-position: center;
  background-size: cover;
  padding: 16px 0;
}

.bh-agency-form>.container {
  display: flex;
  justify-content: flex-end;
}

.bh-agency-form form {
  border-radius: 16px;
  padding: 24px;
  max-width: 847px;
  width: 100%;
  background-color: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bh-agency-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bh-agency-form__grid--two-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bh-agency-form__group {
  display: flex;
  flex-direction: column;
}

.bh-agency-form__label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
}

.bh-agency-form__input,
.bh-agency-form__select,
.bh-agency-form__textarea {
  width: 100%;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: #fff;
  padding: 8px 12px;
  outline: none;
  border: 1px solid transparent;
  box-shadow: none !important;
}

.bh-agency-form__textarea {
  min-height: 132px;
  margin-bottom: 32px;
  resize: vertical;
}

.bh-agency-form__input:focus,
.bh-agency-form__select:focus,
.bh-agency-form__textarea:focus {
  outline: none;
  border-color: #e22415;
}

.bh-agency-contact-overflow {
  overflow: hidden;
}

.bh-agency-form__submit {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  background: #e22415;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bh-agency-team__slider-nav {
  display: none;
}

.bh-agency-form__image-mobile {
  display: none;
}

@media (max-width: 1200px) {
  .bh-agency-presentation__inner {
    flex-direction: column;
    gap: 24px;
  }

  .bh-agency-contact-info__grid {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .bh-agency-hero__title {
    font-size: 24px;
  }

  .bh-agency-background {
    padding: 40px 24px;
  }

  .bh-agency-contact-info {
    padding: 32px 0;
  }

  .bh-agency-contact-info__title,
  .bh-agency-team__title {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .bh-agency-contact-info__title>svg,
  .bh-agency-team__title>svg {
    width: 40px;
  }

  .bh-agency-contact-boxes {
    flex-direction: column;
    align-items: center;
  }

  .bh-agency-contact-info>.container {
    padding: 0 24px;
  }

  .bh-agency-contact-cell {
    padding: 24px;
  }

  .bh-agency-contact-info__item-content,
  .bh-agency-contact-info__item-content>* {
    font-size: 14px;
  }

  .bh-agency-contact-info__item-content>img {
    width: 24px;
  }

  .bh-agency-contact-info__list {
    gap: 16px;
  }

  .bh-agency-contact-info__item-title {
    font-size: 14px;
  }

  .bh-agency-contact-info__icon {
    width: 24px;
  }

  .bh-agency-contact-info__grid {
    gap: 24px;
  }

  .bh-agency-services__equip-box {
    width: 40%;
  }

  .bh-agency-services__equip-title {
    font-size: 16px;
  }

  .bh-agency-services__equip {
    padding: 24px;
  }

  .bh-agency-presentation {
    padding: 32px 24px;
  }

  .bh-agency-presentation-glow {
    top: -290px;
  }

  .bh-agency-presentation__content-title {
    font-size: 16px;
  }

  .bh-agency-presentation__content-text {
    font-size: 14px;
  }

  .bh-agency-expert__inner {
    flex-direction: column-reverse;
    align-items: center;
  }

  .bh-agency-expert>.container,
  .bh-agency-team>.container {
    padding: 0 24px;
  }

  .bh-agency-expert__content {
    padding: 24px;
  }

  .bh-agency-expert__title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .bh-agency-expert__text {
    font-size: 14px;
    padding: 16px;
  }

  .bh-agency-expert__image {
    width: 80%;
    height: auto;
  }

  .bh-agency-team__flag {
    display: none;
  }

  .bh-agency-team__header-title {
    font-size: 16px;
    padding: 24px 12px;
  }

  .bh-agency-team__avatar {
    /* height: 270px; */
    width: auto;
  }

  .bh-agency-team__slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .bh-agency-team__slider-nav .swiper-pagination-bullet {
    background: #fff;
    border-radius: 500px;
    width: 17px;
  }

  .bh-agency-team__slider-nav .swiper-pagination-bullet-active {
    width: 53px;
  }

  .bh-agency-team__slider-nav .swiper-pagination {
    position: static;
    text-align: left;
  }

  .bh-agency-team__slider-nav .swiper-button-prev,
  .bh-agency-team__slider-nav .swiper-button-next {
    position: static;
    margin: 0;
  }

  .bh-agency-team__slider-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .bh-agency-team__content * {
    font-size: 16px;
  }

  .bh-agency-form {
    background-image: none;
  }

  .bh-agency-form__image-mobile {
    display: block;
    width: 100%;
  }

  .bh-agency-form>.container {
    flex-direction: column;
  }

  .bh-agency-form__label,
  .bh-agency-form__input,
  .bh-agency-form__select,
  .bh-agency-form__textarea {
    font-size: 14px;
  }

  .bh-agency-contact-final__title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
  }

  /* Services Tabs Mobile */
  .bh-agency-services__tabs-nav {
    flex-direction: column;
    max-width: 100%;
    gap: 8px;
    padding: 8px;
  }

  .bh-agency-services__tab-btn {
    padding: 12px 16px;
    font-size: 14px;
    gap: 8px;
  }

  .bh-agency-services__tab-icon {
    width: 20px;
    height: 20px;
  }

  .bh-agency-services__content {
    padding: 24px;
    gap: 24px;
  }

  .bh-agency-services__content-title {
    font-size: 16px;
  }

  .bh-agency-services__content-description {
    font-size: 14px;
  }

  .bh-agency-services__content-features li {
    font-size: 13px;
  }

  .bh-agency-services__content-image img {
    height: 200px;
  }

  /* BH Car Toggle Mobile */
  .bh-car-toggle__wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 8px;
    padding: 8px;
  }

  .bh-car-toggle__btn {
    padding: 12px 16px;
    font-size: 14px;
    gap: 6px;
    justify-content: center;
  }

  .bh-car-toggle__btn svg {
    width: 16px;
    height: 16px;
  }

  .bh-car-content__title {
    font-size: 16px;
  }

  .bh-car-content__description {
    font-size: 14px;
  }
}

.bhcar-acheter-selector-wrapper .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
}

.bhcar-vendre-select-dropdown {
  background-color: #6c6c6c;
}

.bhcar-vendre-select-dropdown .select2-results__option--selected {
  background-color: #6c6c6c;
}

.bhcar-vendre-select-dropdown .select2-results__option--selectable {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: -0.01em;
  color: #fff;
}

.bhcar-acheter-selector-wrapper {
  height: auto;
}

.bhcar-vendre-select-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #838383;
}

.bhcar-vendre-select-dropdown .select2-search__field {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 6px;
}

.bhcar-vendre-select-dropdown .select2-container--default .select2-search--dropdown .select2-search__field {
  height: 30px;
  border: none !important;
}

.bhcar-vendre-select-dropdown .select2-results__options::-webkit-scrollbar {
  width: 3px;
}

.bhcar-vendre-select-dropdown .select2-results__options::-webkit-scrollbar-track {
  background: #8a8a8a;
  /* фон трека */
}

.bhcar-vendre-select-dropdown .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #e22415;
  /* цвет ползунка */
  border-radius: 4px;
}

.bhcar-acheter-selector-wrapper .select2-selection__arrow {
  display: none !important;
}

.bhcar-acheter-selector-wrapper .select2-selection__clear {
  display: none !important;
}

.bhcar-acheter-selector-wrapper .select2-selection__rendered {
  padding: 8px !important;
  height: fit-content;
}

@media (max-width: 1920px) {
  .bh-agency-hero__title {
    font-size: 40px;
  }

  .bh-agency-background {
    padding: 150px 0;
  }

  .bh-agency-contact-info__title,
  .bh-agency-services__title,
  .bh-agency-contact-final__title {
    font-size: 26px;
  }

  /* .bh-agency-presentation{
    padding: 60px;
  } */
}
