:root {
  --first-color: #282830;
  --white: #fff;
  --black: #000;
  --soft-black: #222222;
  --second-black: #15151b;
  --charcoal-black: #1a1a1a;
  --deep-black: #0f172b;
  --color-midnight: #050b20;
  --red: #e50f0f;
  --light-red: #e7000b;
  --grey: #6c7073;
  --grey-second: #e4e4e4;
  --light-white: #f1f1f1;
  --primary-green: var(--maurin-secondary, #007838);
  --text-primary: #0a0a0a;
  --fit-content: 100%;
  --fz: 16px;
  --rounded: 10px;
  --rounded-14: 14px;
  --rounded-16: 16px;
  --rounded-20: 20px;
  --rounded-circle: 50%;
  --global: 100px;
  --spacer: 40px;
  --main-bg-white: #fff;
  --main-bg-color: #000;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: bold;
  --fw-extra-bold: 800;
  --fw-extra-black: 900;
  --base-font: var(--theme-title-font, "Jost", sans-serif);
  --main-font: var(--theme-text-font, "Work Sans", sans-serif);
  --support-font: "DM Sans", sans-serif;
  --neo-font: "Helvetica Neue";
  --mmc-font: "MMC";
  --inter-font: Inter, sans-serif;
  --work-sans: "Work Sans", sans-serif;
  --complexvalue: 3px 3px rgb(0, 0, 0);
  --transformX: translateX(-50%);
  --transformY: translateY(-50%);
  --position-absolute: absolute;
  --position-relative: relative;
  --position-static: static;
  --position-fixed: fixed;
  --left: 50%;
  --top: 50%;
}
body {
  color: var(--black);
  font-family: var(--main-font);
}

h1 {
  font-size: 32px;
  line-height: 1.03;
  font-family: var(--base-font);
}

h1 span {
  font-size: 15px;
  display: block;
}

.container {
  max-width: 1500px;
  padding: 0 15px;
}
.container-space-x {
  padding: 35px 15px;
}
.container-max {
  max-width: 986px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.container-row {
  max-width: 1636px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

.page-container {
    max-width: 1394px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    flex-direction: column;
}
.btn-global {
  padding: 13px 20px 15px;
  border-radius: 0;
  font-size: 16px;
  font-family: var(--base-font);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 85%;
  margin: 0 auto;
  line-height: 1.25;
  background-color: var(--white);
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-bg {
  background-color: var(--black);
  color: var(--white);
}

.btn-outline {
  border: 1px solid var(--black);
  color: var(--black);
}

.btn-bg:hover {
  background-color: var(--white);
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
}

.btn-white-line {
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 0;
  background-color: transparent;
}

.btn-white-line:hover {
  background-color: var(--white);
  color: var(--black) !important;
}

.btn-white-line::after {
  content: "";
  background-image: url(../images/btn-arrow-desktop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  display: inline-block;
  filter: brightness(0) invert(1);
}

.btn-white-line:hover::after {
  filter: inherit;
}

.btn-white-bg {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid transparent;
}

.btn-white-bg:hover {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--white);
}

.z-index-1 {
  z-index: 1;
}

a {
  text-decoration: none;
}

.full-overlay.overlay-black {
  background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
}
.full-overlay.overlay-white {
  background: rgba(255, 255, 255, 0.3); /* White overlay with 50% opacity */
}

.full-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* background-color: rgba(0, 0, 0, 0.23); */
}

/* Video style */
.video-bg {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
}

.video-bg video {
  position: var(--position-absolute);
  top: var(--top);
  left: var(--left);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.video-bg::after {
  content: "";
  position: var(--position-absolute);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Video style close */

figure {
  overflow: hidden;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  transition: all 0.3s linear;
}

.zoom-img img {
  transition: all 0.3s linear;
}

.zoom-img img:hover {
  transform: scale(1.05);
}

.sec-head {
  max-width: 950px;
  margin-bottom: 40px;
}

.sec-head-title {
  color: var(--first-color);
}

.sec-head-subtitle {
  color: var(--grey);
  font-size: 15px;
  font-family: var(--base-font);
  line-height: 2;
}

/* img popup style */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.popup-overlay img {
  max-width: 96%;
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  object-position: center;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  z-index: 2;
  cursor: pointer;
}

.popup-prev,
.popup-next {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 20px;
  transform: translateY(-50%);
  user-select: none;
}

.popup-prev {
  left: 20px;
}

.popup-next {
  right: 20px;
}

/* img popup style close*/

/* -------- CUSTOM ARROWS -------- */
.slick-initialized.slick-slider {
  padding-top: 10px;
}

.slick-arrow {
  width: 30px;
  height: 30px;
  z-index: 10;
  top: auto;
  bottom: 100%;
  left: auto;
  border-radius: var(--rounded-circle);
  border: 1px solid var(--black);
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: none;
}

.slick-arrow:before {
  content: "";
  width: 8px;
  height: 14px;
  font-size: 0;
  opacity: 1;
}

.slick-next:before {
  background: url(../images/icon-next.svg) no-repeat;
}

.slick-prev::before {
  background: url(../images/icon-prev.svg) no-repeat;
}

.slick-prev {
  background: var(--white);
  right: 60px;
}

.slick-next {
  background: var(--black);
  right: 10px;
}

.slick-next:hover {
  background: var(--white);
}

.slick-next:hover:before {
  background: url(../images/icon-prev.svg) no-repeat;
  transform: rotate(180deg);
}

.slick-prev:hover {
  background: var(--black);
}

.slick-prev:hover:before {
  background: url(../images/icon-next.svg) no-repeat;
  transform: rotate(180deg);
}

.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before {
  opacity: 1;
}

.slick-arrow.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Optional: hover */


/* Language popup */
.language-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 1408px;
  width: 100%;
  background-color: #fff;
  max-height: 850px;
  overflow: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  transform: translate(-50%, -50%);
}

.language-popup.active {
  opacity: 1;
  visibility: visible;
}

.language-popup-close {
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.language-popup h3 {
  color: #1f1f3c;
  font-family: "Roboto", sans-serif;
}

.language-tab .nav-link.active {
  border-color: #e71c48 !important;
  color: #e71c48 !important;
  background-color: #fff !important;
}

.language-tab .nav-link {
  border: 1px solid #eee;
  color: #1f1f3c;
  font-size: 1.4rem;
  border-radius: 12px;
  margin-right: 8px;
  padding: 10px 17px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

#langTabsContent {
  background-color: #fff;
  border: 1px solid #eeeeee;
}

.lang-subtitle {
  color: #1f1f3c;
  line-height: 1.3;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 31, 31, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1040;
  /* above content, below modal */
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}
.front-modal{
  max-width:1170px;
}
/* Language popup close */

@media (min-width: 768px) {
  .btn-global {
    width: auto;
    margin: 0;
  }
}

@media (min-width: 992px) {
  h1 {
    font-size: 48px;
    font-weight: var(--fw-light);
    letter-spacing: -1px;
    font-family: var(--main-font);
  }

  h1 span {
    font-size: 36px;
    font-weight: 400;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  .container-row {
  padding: 0 24px;
}

  .slick-arrow {
    width: 48px;
    height: 48px;
  }

  .slick-prev {
    right: 80px;
  }
}

@media (min-width: 1280px) {
  .sec-head {
    margin-bottom: 70px;
  }

  .sec-head-title {
    font-size: 52px;
  }

  .sec-head-subtitle {
    font-size: var(--fz);
  }
}

@media (min-width: 1400px) {
  h1 {
    font-size: 64px;
  }

  h1 span {
    font-size: 48px;
  }

  .p-xxl-8 {
    padding: 6rem !important;
  }

  .popup-overlay img {
    max-height: 90vh;
  }
}

/* =====================  MOBILE TOUCH TARGETS & ACCESSIBILITY (LOT 1)  ===================== */
@media (max-width: 768px) {
  .btn,
  .btn-global,
  button,
  .btn-primary,
  .btn-secondary {
    min-height: 44px;
    touch-action: manipulation;
  }
  
  a, button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
  }
}
