/* =========================================================
   Global Presence
   ========================================================= */

.global-presence{
  font-family: "Fixel", Sans-serif;
  padding: 70px 0;
}

/* Title */
.global-presence__title{
  text-align: center;
  margin: 0 0 80px;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.3px;
}

/* =========================================================
   Map
   ========================================================= */

.global-presence__map{
  position: relative;
  max-width: 1200px;
  margin: 0 auto 34px;
  padding: 0 18px;
}

.global-presence__map-img{
  width: 100%;
  height: auto;
  display: block;
  opacity: .85;
}

/* Pins */
.global-presence__pin{
  position: absolute;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.global-presence__pin-dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
  background: #474747;   
  box-shadow: none;      
}

.global-presence__pin.is-active .global-presence__pin-dot{
  background: #BF3131;   
  box-shadow: none;      
}

.global-presence__pin-tooltip{
  position: absolute;
  left: 50%;
  top: -12px;
  transform: translate(-50%, -100%);
  white-space: nowrap;
  background: #3A3A3A;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.global-presence__pin:hover .global-presence__pin-tooltip{
  opacity: 1;
}
.global-presence__pin.is-label-active .global-presence__pin-tooltip{
  opacity: 1;
}
/* =========================================================
   Slider / Navigation
   ========================================================= */

.global-presence__slider{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 18px;
  position: relative;
}

.global-presence__nav{
  position: absolute;
  right: 18px;
  bottom: -54px;
  display: flex;
  gap: 12px;
}

/* Nav buttons */
.global-presence__btn{
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.15);
  cursor: pointer;
  position: relative;
}

.global-presence__btn:before{
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background-color: #00000066;
  -webkit-mask: url("/wp-content/uploads/2025/07/caretleft-2.svg") no-repeat center / contain;
          mask: url("/wp-content/uploads/2025/07/caretleft-2.svg") no-repeat center / contain;
}

.global-presence__btn--next:before{
  background-color: #BF3131;
  transform: scaleX(-1);
}

/* Swiper equal height */
.global-presence__swiper .swiper-wrapper{
  align-items: stretch;
}

.global-presence__swiper .swiper-slide{
  height: auto;
  display: flex;
  cursor: pointer;
}




/* =========================================================
   Cards
   ========================================================= */

.global-presence__card{
  background: #fff;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.global-presence__card-head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.global-presence__card-dot{
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #BF3131;
  flex: 0 0 auto;
}

.global-presence__card-title{
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  flex: 1 1 auto;
}

.global-presence__flag{
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex: 0 0 auto;
}

/* Rows (address / phones) */
.global-presence__row{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.global-presence__text{
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: #474747;
}

.global-presence__card-body{
  flex: 1 1 auto;
}

/* Icons */
.global-presence__ico{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
  display: inline-block;
  background: #979797;
  -webkit-mask: no-repeat center / contain;
          mask: no-repeat center / contain;
}

.global-presence__ico--pin{
  -webkit-mask-image: url("/wp-content/uploads/2026/01/map-pin_svgrepo.com_.svg");
          mask-image: url("/wp-content/uploads/2026/01/map-pin_svgrepo.com_.svg");
}

.global-presence__ico--phone{
  -webkit-mask-image: url("/wp-content/uploads/2026/01/phone-calling_svgrepo.com_.svg");
          mask-image: url("/wp-content/uploads/2026/01/phone-calling_svgrepo.com_.svg");
}

/* CTA (footer) */
.global-presence__card-foot{
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

/* CTA style */
.global-presence__cta{
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #1D1C1C;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.global-presence__cta-ico{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.global-presence__cta-svg{
  width: 10px;
  height: 10px;
  display: block;
}

/* CTA visible only on hover (no layout jump) */
.global-presence__card .global-presence__card-foot{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.global-presence__card:hover .global-presence__card-foot,
.global-presence__card.is-active .global-presence__card-foot{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}


/* Touch devices: show CTA always */
@media (hover: none){
  .global-presence__card .global-presence__card-foot{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

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

@media (max-width: 1024px){
  .global-presence__title{
    font-size: 34px;
  }

  .global-presence__nav{
	margin-bottom: 20px;
    position: static;
    margin-top: 14px;
    justify-content: flex-end;
  }
}

@media (max-width: 767px){
  .global-presence__title{
    font-size: 24px;
    margin-bottom: 23px;
  }

  .global-presence__pin-tooltip{
    display: none;
  }
}
