/*
  Theme Name: akvisuals Child
  Theme URI: https://akvisuals.ch
  Description: We build, extend or even replace your creative team.
  Author: akvisuals | creative agency
  Author URI: https://akvisuals.ch
  Template: akvisuals
  Text Domain: akvisuals
  Version: 1.0.0
*/

:root {
  /* --------------------------------------------------
     # GLOBAL COLORS
  -------------------------------------------------- */
  --primary: var(--e-global-color-primary, #E8AA10);
  --secondary: var(--e-global-color-secondary, #27367A);
  --text: var(--e-global-color-text, #000000);
  --accent: var(--e-global-color-accent, #E8AA10);

  /* Default Colors */
  --black: #000000;
  --white: #ffffff;
  --silver: #f2f2f2;

  /* --------------------------------------------------
     # GAP SCALE — For flex & grid layouts
  -------------------------------------------------- */
  --gap-xs: 0.8rem; /* 8px  */
  --gap-sm: 1.6rem; /* 16px */
  --gap-md: 2.4rem; /* 24px */
  --gap-lg: 3.2rem; /* 32px */
  --gap-xl: 4.8rem; /* 48px */
  --gap-xxl: 5.5rem;
  --gap-big: 6rem;

  /* --------------------------------------------------
     # SECTION PADDING
  -------------------------------------------------- */
  --section-pb-lg: 15rem;
  --section-pb-sm: 6rem;

  /* --------------------------------------------------
     # SECTION MARGIN
  -------------------------------------------------- */
  --section-mb-lg: 10rem;
  --section-mb-sm: 6rem;

  /* --------------------------------------------------
     # RADIUS
  -------------------------------------------------- */
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 2rem;
}

/* ==================================================
   BASE
================================================== */

html {
  font-size: 62.5%;
}

body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: var(--white);
}

main {
  position: relative;
  width: 100%;
  float: left;
  clear: both;
  overflow-x: hidden;
}

footer {
  float: left;
  width: 100%;
  clear: both;
}

img {
  border-radius: var(--radius-lg);
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  outline: none;
}

ul {
  list-style: none;
  padding-left: 0;
}

p:not(:last-child) {
  padding-bottom: 2rem;
}

a {
  transition: ease-in 0.3s;
}

/* ==================================================
   UTILITIES — SPACING
================================================== */

.section--pb {
  padding-bottom: var(--section-pb-lg);
}

.section--pb-small {
  padding-bottom: var(--section-pb-sm);
}

.section--mb {
  margin-bottom: var(--section-mb-lg) !important;
}

.section--mb-small {
  margin-bottom: var(--section-mb-sm);
}

#wpadminbar {
  position: fixed;
}

.admin-bar .header {
  top: 3.2rem;
}

.visible {
  visibility: visible;
}

.hidden {
  overflow: hidden;
}

@media only screen and (max-width: 47.938em) {
  .vc_hidden-xs {
    display: none;
  }
}

.hidden-n {
  display: none;
}

@media only screen and (max-width: 47.938em) {
  .hidden-m {
    display: none;
  }
}

.otgs-development-site-front-end {
  display: none;
}

/* ==================================================
   GRID — FLEX CENTERED
================================================== */

.grid--2--centered {
  --column-count: 2;
  --column-gap-count: calc(var(--column-count) - 1);
}

.grid--3--centered {
  --column-count: 3;
  --column-gap-count: calc(var(--column-count) - 1);
}

.grid--2--centered,
.grid--3--centered {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.grid--2--centered > * {
  flex-basis: calc(
    (100% - (var(--gap-lg) * var(--column-gap-count))) / var(--column-count)
  ) !important;
}

.grid--3--centered > * {
  flex-basis: calc(
    (100% - (var(--gap-lg) * var(--column-gap-count))) / var(--column-count)
  ) !important;
}

/* ==================================================
   ACCENT HELPERS
================================================== */

.accent-color {
  padding: 0.5rem 1rem;
  background-color: var(--accent);
  border-radius: var(--radius);
  font-size: 1.4rem;
  color: var(--black);
  text-transform: uppercase;
}

.accent-color__point {
  position: relative;
  padding: 0.5rem 1rem 0.5rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;

  &::before {
    content: "";
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0.6rem;
    height: 0.6rem;
    background-color: var(--accent);
    border-radius: 50%;
  }
}

.accent-color__heading {
  color: var(--accent);
}

/* ==================================================
   RESPONSIVE HELPERS
================================================== */

@media only screen and (max-width: 767px) {
  .vc_hidden-xs {
    display: none;
  }

  .order--mobile-1 {
    order: 1;
  }
  .order--mobile-2 {
    order: 2;
  }
  .order--mobile-3 {
    order: 3;
  }
  .order--mobile-4 {
    order: 4;
  }
}

/* ==================================================
   HEADER
================================================== */

.header {
  width: 100%;
  z-index: 102;
  border-bottom: 0.5rem solid var(--primary);
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: padding 0.3s ease-in, background-color 0.3s ease-in;
}

@media only screen and (max-width: 75em) {
  .header {
    padding: 1rem;
  }
}

/* ---------- Wrapper ---------- */

.header-wrapper {
  padding: 0;
  display: flex;
  align-items: stretch;
  flex-direction: row;
  background-color: var(--white);
  overflow: hidden;
}

@media only screen and (max-width: 47.938em) {
  .header-wrapper {
    padding: 1rem;
  }
  .header .nav {
    display: none;
  }
}

/* ---------- Logo ---------- */

.header-logo {
  position: relative;
  padding-left: 8rem;
  padding-right: 8rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18rem;
  transition: ease-in 0.3s;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo a img {
  width: 20rem;
  border-radius: initial;
}

@media only screen and (max-width: 35em) {
  .header-logo a img {
    width: 12rem;
  }
}

/* ---------- Header right ---------- */

.header-right {
  max-width: 100%;
  width: 100%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

/* ---------- Top row ---------- */

.header-top {
  display: flex;
  align-items: center;
  padding: 2rem 8rem 1.5rem 1.5rem;
  gap: var(--gap-big);
  justify-content: space-between;
}

.header-top-divider {
  width: 0.1rem;
  height: 3rem;
  background-color: #e5e5e5;
  flex-shrink: 0;
}

/* ---------- Volunteers ---------- */

.header-volunteers {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-volunteers-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.header-volunteers a {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  font-family: "Caveat", cursive !important;
  color: var(--text) !important;
  white-space: nowrap;
  text-decoration: none;
}

/* ---------- Contact items ---------- */

.header-contact__phone,
.header-contact__mail,
.header-contact__location {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header-contact__phone::after,
.header-contact__mail::after {
  content: "";
  width: 0.1rem;
  height: 80%;
  background-color: var(--silver);
  position: absolute;
  top: 50%;
  right: -5rem;
  transform: translateY(-50%);
}

.header-contact__phone > i,
.header-contact__mail > i,
.header-contact__location > i {
  font-size: 2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.header-contact__info {
  padding-left: 0.5rem;
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.header-contact__label {
  font-size: 1.4rem !important;
  color: var(--text) !important;
  font-weight: 400 !important;
}

.header-contact__info a,
.header-contact__info span:not(.header-contact__label) {
  font-size: 1.6rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  white-space: nowrap;
  text-decoration: none;
}

.header-contact__info a:hover {
  color: var(--accent);
}

/* ---------- Social icons ---------- */

.social-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-link {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(232, 170, 16, 0.1);
  color: var(--text) !important;
  font-size: 1.4rem !important;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--white) !important;
}

/* ---------- Bottom row (nav bar) ---------- */

.header-bottom {
  display: flex;
  align-items: center;
  padding: 1.5rem 8rem 1.5rem 5rem;
  background-color: var(--secondary);
  border-top-left-radius: var(--radius-xl);
  justify-content: space-between;
  min-height: 5.5rem;
  flex: 1;
}

/* ---------- Desktop nav ---------- */

.header-bottom .nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header-bottom .nav-list .menu-item {
  position: relative;
}
.header-bottom .nav-list .menu-item:not(:last-child) {
  margin-right: 4rem;
}
.header-bottom .nav-list .menu-item a {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white) !important;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.header-bottom .nav-list .menu-item a::before {
  display: none;
}

.header-bottom .nav-list .menu-item a:hover {
  color: var(--accent) !important;
}

.header-bottom .nav-list .menu-item.current-menu-item a {
  color: var(--accent) !important;
}

/* ---------- Submenu ---------- */

.header-bottom .nav-list .menu-item-has-children .sub-menu {
  padding: 2rem 1.8rem;
  width: 16rem;
  background-color: #ffffff;
  position: absolute;
  top: 3rem;
  left: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  z-index: 200;
}

.header-bottom .nav-list .menu-item-has-children .sub-menu .menu-item::after {
  display: none;
}

.header-bottom .nav-list .menu-item-has-children .sub-menu .menu-item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.header-bottom .nav-list .menu-item-has-children .sub-menu .menu-item a {
  font-size: 1.4rem;
  color: #000000 !important;
  text-transform: none;
}

.header-bottom .nav-list .menu-item-has-children .sub-menu .menu-item a:hover {
  color: var(--accent) !important;
  opacity: 1;
}

.header-bottom .nav-list .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Donate button ---------- */

.header-buttons a {
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  background-color: var(--accent);
  border-radius: var(--radius);
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  color: var(--white) !important;
  gap: 0.6rem;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header-buttons a:hover {
  opacity: 0.85;
}

.header-buttons a i {
  font-size: 1.4rem;
}

/* ---------- Mobile toggle ---------- */

.header-toggle {
  position: relative;
  display: none;
  z-index: 100;
}

@media only screen and (max-width: 75em) {
  .header-toggle {
    display: block;
  }
}

.header-toggle a {
  padding: 0;
  margin: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header-toggle a .line {
  position: relative;
  width: 2rem;
  height: 0.1rem;
  background-color: var(--white);
  display: flex;
  transition: all 0.3s ease;
}

.header-toggle a .line.line-top { transform-origin: center; }
.header-toggle a .line.line-middle { opacity: 1; transition: opacity 0.3s ease; }
.header-toggle a .line.line-bottom { transform-origin: center; }

.header-toggle a.open .line-top {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}
.header-toggle a.open .line-middle { opacity: 0; }
.header-toggle a.open .line-bottom {
  transform: rotate(-45deg) translate(0.5rem, -0.4rem);
}

/* ---------- Mobile menu panel ---------- */

.header-mobile {
  padding-top: 8rem;
  padding-bottom: 3rem;
  padding-left: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.3rem;
  box-shadow: 0 1.5rem 3.5rem -1.5rem rgba(0, 0, 0, 0.8);
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.4s ease;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  z-index: 101;
}

.header-mobile .nav-list {
  align-items: flex-start;
  flex-direction: column;
}

.header-mobile .nav-list .menu-item::after {
  display: none !important;
}

.header-mobile .nav-list .menu-item:not(:last-child) {
  margin-right: 0;
  margin-bottom: 2rem;
}

.header-mobile .nav-list .menu-item a {
  font-size: 1.4rem;
  color: var(--primary) !important;
  line-height: normal;
}

.header-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media only screen and (max-width: 75em) {
  .header-top {
    display: none;
  }
  .header-bottom .nav {
    display: none;
  }
  .header-right .header-buttons {
    display: none;
  }
}

/* ==================================================
   STICKY BUTTON
================================================== */

.sticky-button {
  overflow: hidden;
  opacity: 0;
  z-index: 10000;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  transition: bottom 0.3s ease-in, opacity 0.3s ease-in, visibility 0.3s ease-in;
}

.sticky-button.open {
  opacity: 1;
  visibility: visible;
  bottom: 4rem;
}

.sticky-button-top {
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  color: #000000 !important;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-button-top i {
  position: relative;
}

.sticky-button-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  background: linear-gradient(90deg, #191919 0%, #6C6767 50%, #191919 100%);
  transition: opacity 0.3s ease-in;
}

.sticky-button-top::after {
  content: "";
  font-size: 1.5rem;
  color: #000000;
  z-index: 1;
  transition: color 0.3s ease-in;
}

.sticky-button-top:hover {
  color: #ffffff !important;
}

.sticky-button-top:hover::before {
  opacity: 1;
}

.sticky-button-top:hover::after {
  color: #ffffff;
}

/* ==================================================
   CONTACT FORM 7
================================================== */

.cf7-form {
  --cf7-gap: var(--gap-md); /* 2-col spacing */
  --cf7-radius: var(--radius-lg); /* input radius */
  --cf7-bg: var(--silver); /* input bg */
  --cf7-text: var(--black);
  --cf7-muted: var(--text); /* label muted */
  --cf7-required: #e11d48; /* you can swap to var(--accent) if you want */
  --cf7-focus: color-mix(in srgb, var(--primary) 12%, transparent);
  --cf7-focus-color: var(--secondary); /* or: var(--secondary) */
  --cf7-focus-ring: color-mix(in srgb, var(--cf7-focus-color) 25%, transparent);

  width: 100%;
}

/* layout */
.cf7-row {
  display: grid;
  gap: var(--cf7-gap);
  margin-bottom: var(--gap-sm);
}

.cf7-row--2 {
  grid-template-columns: 1fr 1fr;
}
.cf7-row--1 {
  grid-template-columns: 1fr;
}

.cf7-field {
  width: 100%;
}

/* labels */
.cf7-label {
  display: inline-block;
  font-size: 1.4rem;
  color: var(--secondary);
  margin: 0 0 0.8rem;
  font-weight: 500;
}

.cf7-required {
  color: var(--cf7-required);
  font-size: 1.2rem;
  margin-left: 0.6rem;
}

/* inputs */
.cf7-form .wpcf7-form-control-wrap {
  display: block;
}
.cf7-form p {
  margin: 0;
} /* kill CF7 default <p> spacing */

.cf7-input,
.cf7-textarea {
  width: 100%;
  border: 1px solid var(--secondary);
  background: transparent;
  border-radius: var(--cf7-radius);
  padding: 1.4rem 1.6rem;
  outline: none;
  box-shadow: none;
  font-size: 1.4rem;
  color: var(--cf7-text);

  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.25s ease, background 0.25s ease;
}

.cf7-textarea {
  min-height: 16rem;
  resize: vertical;
}

/* focus */
.cf7-input:focus,
.cf7-textarea:focus {
  border-color: color-mix(in srgb, var(--cf7-focus-color) 55%, transparent);
  box-shadow: 0 0 0 0.4rem var(--cf7-focus-ring);
}

/* placeholder */
.cf7-input::placeholder,
.cf7-textarea::placeholder {
  color: color-mix(in srgb, var(--black) 35%, transparent);
}

/* button (dark gradient like screenshot, token-friendly) */
.cf7-actions {
  margin-top: var(--gap-xs);
}

.cf7-submit {
  width: 100%;
  min-width: 15rem;
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 1.4rem 4.4rem;
  border-radius: var(--radius-lg);
  color: var(--white) !important;
  font-weight: 600;
  line-height: 1;
  background-color: var(--secondary) !important;
  background-size: 200% 100%;
  transition: transform 0.2s ease, background-position 0.35s ease,
    opacity 0.2s ease;
}

.cf7-submit:hover {
  background-position: 100% 0%;
  transform: translateY(-1px);
}

.cf7-submit:active {
  transform: translateY(0);
}

/* validation colors (CF7 built-in) */
.cf7-form .wpcf7-not-valid {
  border-color: #ef4444 !important;
}

.cf7-form .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  margin-top: 0.6rem;
  color: #ef4444;
}

/* response message */
.cf7-form .wpcf7-response-output {
  margin: var(--gap-sm) 0 0;
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius);
  font-size: 1.3rem;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.aborted .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output {
  margin-top: var(--gap-md);
  padding: 1.6rem 2rem;

  border-radius: var(--radius);
  border: 2px solid var(--accent);

  background: color-mix(in srgb, var(--accent) 8%, var(--white));
  color: var(--black);

  font-size: 1.5rem;
  line-height: 1.25;

  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 15%, transparent);

  transition: all 0.3s ease;
}

/* mobile */
@media (max-width: 768px) {
  .cf7-row--2 {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   ICON BOX — CONTACT
================================================== */

.elementor-button-icon {
  margin-left: 0.6rem;
  display: flex;
  align-items: center;
}

/* .icon-contact {
  background: var(--primary);
} */

.icon-contact__box .elementor-icon-box-icon .elementor-icon,
.icon-contact__box--black .elementor-icon-box-icon .elementor-icon {
  width: 4.5rem;
  height: 4.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-contact__box--black .elementor-icon-box-icon .elementor-icon {
  border: 0.1rem solid var(--silver);
}

.icon-contact__box .elementor-icon-box-icon .elementor-icon svg {
  fill: var(--white);
}

.icon-contact__box--black .elementor-icon-box-icon .elementor-icon svg {
  fill: var(--black);
}

.icon-contact__box:hover .elementor-icon-box-icon .elementor-icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.icon-contact__box--black:hover.elementor-icon-box-icon .elementor-icon {
  background-color: rgba(0, 0, 0, 0.5);
}

./* ==================================================
   Image Effects
================================================== */

.image-effects {
  position: relative !important;
  width: 100%;
}
.image-effects__first,
.image-effects__second {
  position: absolute;
  width: 45rem;
  height: 45rem;
}
.image-effects__first img,
.image-effects__second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ==================================================
   FOOTER
================================================== */

/* ---------- Footer shell ---------- */
.footer {
  position: relative;
  overflow: hidden;
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem 1.5rem;
  padding-top: 8rem;
  padding-right: 10rem;
  padding-left: 10rem;
  background-color: var(--secondary);
  border-radius: var(--radius-xl);
}

@media only screen and (max-width: 61.875em) {
  .footer {
    padding-right: 5rem;
    padding-left: 5rem;
  }
}

@media only screen and (max-width: 47.938em) {
  .footer {
    width: calc(100% - 15px);
    margin: 7px;
    padding-top: 5rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.footer-top {
  position: relative;
  z-index: 101;
}

/* ---------- Footer grid ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ---------- Footer left ---------- */
.footer-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3rem;
  align-items: start;
}

.footer-left .footer-col--brand {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

.footer-left .footer-col:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.footer-left .footer-col:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.footer-left .footer-col:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

/* ---------- Responsive ---------- */
@media only screen and (max-width: 75em) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-col--card {
    grid-column: span 1;
  }
  .footer-left {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 47.938em) {
  .footer-left {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-left .footer-col--brand {
    grid-column: span 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}

@media only screen and (max-width: 35em) {
  .footer-left {
    grid-template-columns: 1fr 1fr;
  }
  .footer-left .footer-col--brand {
    grid-column: span 2;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-privacy-wrapper {
    justify-content: flex-start;
  }
}

/* ---------- Footer logo ---------- */
.footer-logo a {
  display: inline-flex;
  align-items: center;
}

.footer-logo a img {
  width: 20rem;
  height: auto;
}

@media only screen and (max-width: 47.938em) {
  .footer-logo a img {
    width: 15rem;
  }
}

.footer-logo p {
  padding-top: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 2.8rem;
}

.footer-logo p span {
  font-weight: 900;
}

/* ---------- Footer TWINT ---------- */
.footer-twint-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--white);
  color: var(--text) !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  padding: 1rem 1.5rem;
  border-radius: 0.6rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-twint-btn:hover {
  opacity: 0.85;
}

.footer-twint-btn img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

/* ---------- Footer social ---------- */
.footer-social {
  margin-top: 2rem;
}

.footer-social .social-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social .social-list .social-item .social-link {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  border: 0.1rem solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social .social-list .social-item .social-link:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

.footer-social .social-list .social-item .social-link i {
  font-size: 1.3rem;
  color: inherit;
  line-height: 1;
}

/* ---------- Footer menu ---------- */
@media only screen and (max-width: 47.938em) {
  .footer-menu {
    padding-top: 3rem;
  }
}

.footer-menu .footer-widget-inner {
  padding-bottom: 1rem;
}

.footer-menu .footer-widget-inner h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 2.4rem;
  text-transform: uppercase;
  color: var(--primary);
}

@media only screen and (max-width: 47.938em) {
  .footer-menu .footer-widget-inner h1 {
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
}

.footer-menu .footer-widget-inner p,
.footer-menu .footer-widget-inner a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: 0.05rem;
}

@media only screen and (max-width: 47.938em) {
  .footer-menu .footer-widget-inner p,
  .footer-menu .footer-widget-inner a {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

.footer-menu .footer-widget-inner p span,
.footer-menu .footer-widget-inner a span {
  font-weight: 900;
}

.footer-menu .footer-widget-inner p {
  padding-bottom: 2rem;
}

.footer-menu .footer-widget-inner a {
  display: inline-block;
}

.footer-menu .footer-widget-inner a:hover {
  color: var(--white);
}

.footer-menu .menu-item:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-menu .menu-item a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 2.4rem;
  letter-spacing: 0.05rem;
  transition: color 0.3s ease-in;
}

@media only screen and (max-width: 47.938em) {
  .footer-menu .menu-item a {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

.footer-menu .menu-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.1rem;
  background-color: var(--primary);
  opacity: 0;
  z-index: -1;
  transition: width 0.3s ease-in, opacity 0.3s ease-in;
}

.footer-menu .menu-item a:hover {
  color: var(--white) !important;
}

.footer-menu .menu-item a:hover::before {
  opacity: 1;
  width: 100%;
}

/* ---------- Footer bank card ---------- */
.footer-card {
  background: transparent;
  border: 0.1rem solid rgba(255, 255, 255, 0.15);
  border-radius: 1.2rem;
  padding: 2.5rem;
  color: var(--white);
}

.footer-card__title {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-card__title--address {
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}

.footer-card__row {
  display: flex;
  gap: 0.8rem;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.footer-card__row strong {
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  min-width: 13rem;
}

.footer-card__address {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-card__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer-card__contact a {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s ease;
}

.footer-card__contact a i {
  color: var(--primary);
  font-size: 1.3rem;
  width: 1.4rem;
  text-align: center;
}

.footer-card__contact a:hover {
  color: var(--primary);
}

.footer-card__tagline {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

/* ---------- Footer bottom ---------- */
.footer-bottom {
  position: relative;
  margin-top: 5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  z-index: 101;
}

@media only screen and (max-width: 61.875em) {
  .footer-bottom {
    margin-top: 3rem;
  }
}

@media only screen and (max-width: 47.938em) {
  .footer-bottom {
    padding-top: 4rem;
    margin-top: 2rem;
  }
}

.footer-bottom-line {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media only screen and (max-width: 47.938em) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Footer copyright ---------- */
.footer-copyright p {
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2.2rem;
}

/* ---------- Footer privacy ---------- */
.footer-privacy-wrapper {
  display: flex;
  justify-content: flex-end;
}

.footer-privacy-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-privacy-list .menu-item:not(:last-child) {
  margin-right: 2rem;
}

.footer-privacy-list .menu-item:not(:last-child)::after {
  content: "|";
  color: rgba(255, 255, 255, 0.3);
  margin-left: 2rem;
}

.footer-privacy-list .menu-item a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 2.2rem;
  letter-spacing: 0.05rem;
  text-decoration: none;
  transition: color 0.3s ease-in;
}

.footer-privacy-list .menu-item a:hover {
  color: var(--white);
}

/* ==================================================
   MASTER TYPOGRAPHY & SPACING SYSTEM
   Scoped to Elementor Text Editor
================================================== */

.elementor-widget-text-editor .elementor-widget-container {
  /* Main vertical rhythm */
  --flow-space: var(--gap-sm);
}

/* --------------------------------------------------
   1) Reset default margins & padding
-------------------------------------------------- */

.elementor-widget-text-editor .elementor-widget-container > * {
  margin: 0;
  padding: 0;
}

/* Remove paragraph padding-bottom from typography.scss */
.elementor-widget-text-editor .elementor-widget-container p {
  padding-bottom: 0 !important;
}

/* --------------------------------------------------
   2) Flow spacing (master spacing between elements)
-------------------------------------------------- */

.elementor-widget-text-editor .elementor-widget-container > * + * {
  margin-top: var(--flow-space);
}

/* --------------------------------------------------
   3) Headings — stronger separation
-------------------------------------------------- */

.elementor-widget-text-editor .elementor-widget-container h1,
.elementor-widget-text-editor .elementor-widget-container h2,
.elementor-widget-text-editor .elementor-widget-container h3,
.elementor-widget-text-editor .elementor-widget-container h4,
.elementor-widget-text-editor .elementor-widget-container h5,
.elementor-widget-text-editor .elementor-widget-container h6 {
  margin-top: var(--gap-md);
}

/* Remove top spacing if heading is first element */
.elementor-widget-text-editor .elementor-widget-container > h1:first-child,
.elementor-widget-text-editor .elementor-widget-container > h2:first-child,
.elementor-widget-text-editor .elementor-widget-container > h3:first-child,
.elementor-widget-text-editor .elementor-widget-container > h4:first-child,
.elementor-widget-text-editor .elementor-widget-container > h5:first-child,
.elementor-widget-text-editor .elementor-widget-container > h6:first-child {
  margin-top: 0;
}

/* Extra spacing if paragraph comes before heading */
.elementor-widget-text-editor .elementor-widget-container p + h1,
.elementor-widget-text-editor .elementor-widget-container p + h2,
.elementor-widget-text-editor .elementor-widget-container p + h3,
.elementor-widget-text-editor .elementor-widget-container p + h4 {
  margin-top: var(--gap-lg);
}

/* --------------------------------------------------
   4) Lists
-------------------------------------------------- */

.elementor-widget-text-editor .elementor-widget-container ul,
.elementor-widget-text-editor .elementor-widget-container ol {
  padding-left: 2rem;
}

.elementor-widget-text-editor .elementor-widget-container li + li {
  margin-top: var(--gap-xs);
}

/* --------------------------------------------------
   5) Last element fix
-------------------------------------------------- */

.elementor-widget-text-editor .elementor-widget-container > *:last-child {
  margin-bottom: 0;
}

/* ==================================================
   ELEMENTOR BUTTONS
================================================== */

.elementor-button:hover .elementor-button-icon i,
.elementor-button:hover .elementor-button-icon svg {
  -webkit-animation: iconRight ease-out 0.35s;
  animation: iconRight ease-out 0.35s;
}

.elementor-button-icon {
  margin-left: 0.6rem;
  display: flex;
  align-items: center;
}

.elementor-button-icon svg {
  width: 1.8rem !important;
}

/* ---------- Gradient wrappers ---------- */
.btn--primary-gradient .elementor-button,
.btn--secondary-gradient .elementor-button,
.btn--accent-gradient .elementor-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--primary-gradient .elementor-button::before,
.btn--secondary-gradient .elementor-button::before,
.btn--accent-gradient .elementor-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn--primary-gradient .elementor-button:hover::before,
.btn--secondary-gradient .elementor-button::before,
.btn--accent-gradient .elementor-button::before {
  opacity: 1;
}

/* ---------- Shadow wrappers ---------- */
.btn--primary-shadow .elementor-button,
.btn--secondary-shadow .elementor-button,
.btn--accent-shadow .elementor-button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--primary-shadow .elementor-button::before,
.btn--secondary-shadow .elementor-button::before,
.btn--accent-shadow .elementor-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.6s ease;
}

.btn--primary-shadow .elementor-button:hover::before,
.btn--secondary-shadow .elementor-button:hover::before,
.btn--accent-shadow .elementor-button:hover::before {
  background-position: 100% 0%;
}

.btn--primary-shadow .elementor-button:hover,
.btn--secondary-shadow .elementor-button:hover,
.btn--accent-shadow .elementor-button:hover {
  transform: translateY(-2px);
}

.btn--primary-shadow .elementor-button:active,
.btn--secondary-shadow .elementor-button:active,
.btn--accent-shadow .elementor-button:active {
  transform: translateY(0);
  box-shadow: none;
}

/* ---------- Links style ---------- */
.btn--links p a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.15;
  text-decoration: underline;
  color: var(--secondary);
}

/* ==================================================
   ICON SYSTEM
================================================== */

.icon {
  display: inline-flex;
  width: auto;
}

.icon .elementor-icon {
  width: var(--icon-size, 6.4rem) !important;
  height: var(--icon-size, 6.4rem) !important;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  border-radius: var(--radius);

  background: var(--icon-bg, transparent);
  border: 0.1rem solid var(--icon-border, var(--primary));
  color: var(--icon-color, var(--primary));

  transition: all 200ms ease;
}

.icon .elementor-icon svg {
  width: var(--icon-svg-size, 4rem);
  height: auto;
  fill: currentColor;
}

/* Sizes */
.icon--l {
  --icon-size: 6.4rem;
  --icon-svg-size: 4rem;
}
.icon--m {
  --icon-size: 4.8rem;
  --icon-svg-size: 3rem;
}
.icon--s {
  --icon-size: 3.2rem;
  --icon-svg-size: 2rem;
}

/* Filled variants */
.icon--primary {
  --icon-bg: var(--primary);
  --icon-border: var(--primary);
  --icon-color: var(--white);
}
.icon--secondary {
  --icon-bg: var(--secondary);
  --icon-border: var(--secondary);
  --icon-color: var(--white);
}
.icon--accent {
  --icon-bg: var(--accent);
  --icon-border: var(--accent);
  --icon-color: var(--white);
}
.icon--silver {
  --icon-bg: var(--silver);
  --icon-border: var(--silver);
  --icon-color: var(--secondary);
}

/* Light variant */
.icon--light {
  --icon-bg: var(--light);
  --icon-border: #000;
  --icon-color: #000;
}

/* Outline modifier (combine with any color) */
.icon--outline {
  --icon-bg: transparent;
  --icon-border: var(--silver);
  --icon-color: #000;
}

/* Optional hover */
.icon--hover .elementor-icon:hover {
  transform: translateY(-2px);
}

/* ---------- Icon list ---------- */
.icon-list .elementor-icon-list-icon {
  color: var(--icon-color, var(--primary));
}

.icon-list .elementor-icon-list-icon svg {
  width: var(--icon-size, 2rem) !important;
  height: auto !important;
  fill: currentColor;
}

.icon-list .elementor-icon-list-icon i {
  font-size: var(--icon-size, 2rem);
  color: currentColor;
}

.icon-list--primary {
  --icon-color: var(--primary);
}
.icon-list--secondary {
  --icon-color: var(--secondary);
}
.icon-list--accent {
  --icon-color: var(--accent);
}

/* ==================================================
   LIST — Custom
================================================== */

.list--custom {
  list-style: none;
  padding: 0;
  margin: 0;

  --list-point-size: 0.8rem;
  --list-point-gap: 2rem;
  --list-point-color: var(--primary);
  --list-item-gap: 1.2rem;
  --list-transition: 200ms ease;
}

.list--custom .list__item {
  position: relative;
  padding-left: var(--list-point-gap);
  margin-bottom: var(--list-item-gap);
  transition: transform var(--list-transition);
}

.list--custom .list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;

  width: var(--list-point-size);
  height: var(--list-point-size);

  background: var(--list-point-color);
  border-radius: 50%;
}

/* ==================================================
   LIST — Elementor Compatible
================================================== */

.list--custom ul {
  list-style: none;
  padding: 0;
  margin: 0;

  --list-point-size: 0.8rem;
  --list-point-gap: 2rem;
  --list-point-color: var(--primary);
  --list-item-gap: 0.7rem;
  --list-transition: 200ms ease;
}

.list--custom ul li {
  position: relative;
  padding-left: var(--list-point-gap);
  margin-bottom: var(--list-item-gap);
  transition: transform var(--list-transition);
}

.list--custom ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;

  width: var(--list-point-size);
  height: var(--list-point-size);

  background: var(--list-point-color);
  border-radius: 50%;

  transform: translateY(-50%);
}

/* Sizes */
.list--l ul li::before {
  --list-point-size: 1rem;
}
.list--m ul li::before {
  --list-point-size: 0.8rem;
  --list-point-gap: 2rem;
}
.list--s ul li::before {
  --list-point-size: 0.6rem;
  --list-point-gap: 1.6rem;
}

/* Colors */
.list--primary ul li::before {
  --list-point-color: var(--primary);
}
.list--secondary ul li::before {
  --list-point-color: var(--secondary);
}
.list--accent ul li::before {
  --list-point-color: var(--accent);
}
.list--white ul li::before {
  --list-point-color: var(--white);
}

/* Hover */
.list--hover ul li:hover {
  transform: translateX(4px);
}

/* ==================================================
   CARD
================================================== */

.card {
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card--center {
  flex-direction: column;
  text-align: center;
}

/* ==================================================
   PARTNERS
================================================== */

.partners {
}

.partners .partners-slide {
}

.partners--dark .partners--slide img {
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.partners--dark .partners--slide:hover img {
  filter: grayscale(0%);
}

/* ==================================================
   KEYFRAMES
================================================== */

@-webkit-keyframes iconRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  30% {
    opacity: 0;
  }

  31% {
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem);
  }

  32% {
    -webkit-transform: translateX(-1rem);
    transform: translateX(-1rem);
  }

  84% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes iconRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  30% {
    opacity: 0;
  }

  31% {
    -webkit-transform: translateX(1rem);
    transform: translateX(1rem);
  }

  32% {
    -webkit-transform: translateX(-1rem);
    transform: translateX(-1rem);
  }

  84% {
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}