﻿:root {
  --brand: #004c66;
  --brand-hover: #003a52;
  --muted: #888b97;

  --cta-footer-primary-font: "Montserrat", sans-serif;
  --cta-footer-primary-weight: 500;
  --cta-footer-primary-size: 18px;

  --cta-footer-secondary-font: "Montserrat", sans-serif;
  --cta-footer-secondary-weight: 500;
  --cta-footer-secondary-size: 16px;

  --footer-gap-main: 4rem;
  --footer-gap-links: clamp(2rem, 6vw, 4rem);

  --footer-pad-desktop: 48px;
  --footer-pad-tablet: 32px;
  --footer-pad-mobile: 16px;
}

.footer {
  padding: 30px 0 0;
  background: #ffffff;
  color: #0A4155;
}
.footer a:hover,
.footer a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer a:hover {
  opacity: 0.65;
}

.footer-top .container,
.footer-bottom .footer-bottom-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--footer-pad-desktop);
}

.footer-divider,
.footer-bottom-divider {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 1px;
  background-color: var(--muted);
}

.footer-divider {
  margin-bottom: 58px;
}

.footer-bottom-divider {
  margin-top: 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 330px repeat(2, minmax(0, 1fr));
  column-gap: var(--footer-gap-main);
  row-gap: 0;
  align-items: flex-start;
  max-width: 1065px;
  width: 100%;
  margin: 0 auto 3rem;
}
.footer-brand {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 37px;
  width: 100%;
  max-width: 320px;
}

.footer-logo {
  width: 100%;
  height: auto;
  display: block;
}

.social-links {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-link svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-links {
  grid-column: 2 / 4;
  display: flex;
  gap: var(--footer-gap-links);
  align-items: flex-start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  white-space: nowrap;
}

.footer-column-title,
.footer-bottom-item {
  font: var(--h4-font);
  font-size: 1.375em;
  color: var(--brand);
  margin-bottom: 4px;
}
.footer-column-title {
  color: black;
}

.footer-link {
  font: var(--footer-secondary-font);
  font-size: 1rem;
  white-space: nowrap;
}

.footer a:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.footer-col--split {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer-col--split .footer-split,
.footer-col--split .footer-col-split {
  width: 100%;
}

.footer-col--split .footer-split-wrapper {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: var(--footer-gap-links);
  align-items: flex-start;
}

.footer-col--split .footer-split-col,
.footer-col--split .footer-col-split__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 120px;
}

.footer-col--split .footer-column-title {
  margin-bottom: 6px;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  flex-wrap: nowrap;
  padding: 2rem 0;
}

.footer-bottom-item {
  font: var(--cta-secondary-font);
  font-size: 0.875em;
  white-space: nowrap;
}

.footer-bottom-item + .footer-bottom-item::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: var(--muted);
  margin: 0 1.5rem;
  vertical-align: middle;
}

.footer-divider-vertical {
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: var(--muted);
  margin: 0 16px;
  vertical-align: middle;
}
.reclamations-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}

.reclamations-modal[aria-hidden="false"] {
  display: block;
}

.reclamations-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.reclamations-modal__dialog {
  position: relative;
  max-width: 720px;
  margin: 5vh auto;
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
}

.reclamations-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

body.no-scroll {
  overflow: hidden;
}

@media (max-width: 1680px) {
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1rem;
    text-align: center;
    padding: 2rem 0;
  }
  .footer-content,.footer-bottom-links{
    scale:0.8;
  }
  .footer-bottom-item + .footer-bottom-item::before {
    margin: 0 1rem;
  }
}

@media (max-width: 1024px) {
  .footer-top .container,
  .footer-bottom .footer-bottom-container {
    padding: 0 var(--footer-pad-tablet);
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
    width: 100%;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
    width: auto;
    max-width: none;
  }

  .footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-col--split {
    align-items: flex-start;
  }

  .footer-col--split .footer-split,
  .footer-col--split .footer-col-split {
    grid-template-columns: repeat(2, max-content);
    column-gap: 4rem;
    row-gap: 0.75rem;
  }

  .footer-col--split .footer-split-col,
  .footer-col--split .footer-col-split__col {
    gap: 10px;
  }

  .footer-col--split .footer-link {
    white-space: nowrap;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    text-align: center;
    padding: 2rem 0;
  }

  .footer-bottom-item + .footer-bottom-item::before {
    display: none;
  }

  .footer-bottom-item {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .footer-col--split .footer-split-wrapper {
grid-template-columns: repeat(1, max-content);
gap: 10px;
}
.footer-content{
  margin: 0;
}
.footer-bottom-divider{
  margin-top: 0;
}
.footer-divider{
  margin-bottom: 0;
}

}

@media (max-width: 440px) {
      .footer-content, .footer-bottom-links {
        scale: 0.9;
    }
  .footer-top .container,
  .footer-bottom .footer-bottom-container {
    padding: 0 var(--footer-pad-mobile);
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-col--split {
    align-items: center;
  }

  .footer-col--split .footer-split,
  .footer-col--split .footer-col-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-col--split .footer-split-col,
  .footer-col--split .footer-col-split__col {
    align-items: center;
  }

  .footer-link {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .footer-column-title {
    width: 100%;
    text-align: center;
  }

  .footer-bottom-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-items: center;
    text-align: center;
    padding: 2rem 0;
  }

  .footer-bottom-item {
    width: 100%;
    text-align: center;
  }
}
