@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&family=Manrope:wght@200..800&display=swap");
* {
  scrollbar-width: thin;
  scrollbar-color: #FDA31B #004377;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #004377, #00c6ff);
  border-radius: 10px;
  border: 2px solid #f2f2f2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #00345c, #0099cc);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

::-moz-selection {
  color: white;
  background: #FDA31B;
  text-shadow: 0 0 0 #FDA31B, 0 0 0 rgba(253, 163, 27, 0.4196078431);
}

::selection {
  color: white;
  background: #FDA31B;
  text-shadow: 0 0 0 #FDA31B, 0 0 0 rgba(253, 163, 27, 0.4196078431);
}

.frank-ruhl-libre {
  font-family: "Frank Ruhl Libre", serif;
}

body {
  font-family: "Manrope", sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

.navbar:before ,.navbar::after  { 
  display: none;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  box-sizing: border-box;
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  padding: 8px 24px;
}
.site-header.scrolled .navbar {
  min-height: 68px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.09);
  border-radius: 18px;
}
.site-header.scrolled .navbar-brand img {
  max-height: 50px;
}
.site-header.scrolled .nav-link {
  font-size: 14px;
}
.site-header.scrolled .phone-button,
.site-header.scrolled .book-button {
  height: 42px;
}

.site-header .navbar {
  width: 100%;
  min-height: 86px;
  padding: 0 28px;
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
  transition: min-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .navbar-brand {
  display: flex;
  align-items: center;
  width: auto;
  margin: 0;
  padding: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header .navbar-brand img {
  display: block;
  width: auto;
  max-width: 250px;
  max-height: 46px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .navbar-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.site-header .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.site-header .nav-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.site-header .nav-link {
  position: relative;
  height: 44px;
  padding: 0 15px;
  margin: 0;
  border: 0;
  outline: none;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .nav-link:hover {
  color: rgb(14, 134, 143);
}
.site-header .nav-link:focus, .site-header .nav-link:active {
  outline: none;
  text-decoration: underline !important;
  box-shadow: none;
}
.site-header .nav-link i {
  font-size: 10px;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .nav-link.active {
  color: rgb(14, 134, 143);
  text-decoration: underline !important;
  font-weight: 700;
}

.site-header .has-dropdown {
  position: relative;
  z-index: 100000;
}
.site-header .has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 12px;
  background: transparent;
  z-index: 99999;
  pointer-events: none;
}

.site-header .has-dropdown .dropdown-menu {
  position: absolute !important;
  display: block !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  min-width: 230px !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 10px !important;
  background: #ffffff !important;
  border: 1px solid #e7e9ee !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12) !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px) scale(0.98);
  transform-origin: top center;
  z-index: 999999 !important;
  float: none !important;
  text-align: left;
  overflow: visible;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.site-header .has-dropdown.open > .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) scale(1) !important;
}

@media (min-width: 901px) {
  .site-header .has-dropdown:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translate(-50%, 0) scale(1) !important;
  }
  .site-header .has-dropdown:hover::after {
    pointer-events: auto;
  }
  .dropdown-toggle::after {
    display: none !important;
  }
  .site-header .has-dropdown:hover > .dropdown-toggle i {
    transform: rotate(180deg);
  }
}
.site-header .has-dropdown.open > .dropdown-toggle i {
  transform: rotate(180deg);
}

.site-header .dropdown-menu .dropdown-link {
  display: flex !important;
  align-items: center;
  width: 100% !important;
  min-height: 44px;
  padding: 0 14px !important;
  margin: 0 !important;
  border-radius: 9px;
  background: transparent;
  border: 0;
  color: #111827;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .dropdown-menu .dropdown-link:hover {
  color: rgb(14, 134, 143) !important;
  background: #f4f7ff !important;
  padding-left: 18px !important;
}

.site-header .navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header .phone-button {
  height: 46px;
  padding: 0 16px 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #111827;
  background: #f7f8fa;
  border: 1px solid #d39d4b;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .phone-button:hover {
  background: #eef3ff;
  border-color: #d9e3ff;
  transform: translateY(-1px);
}

.site-header .phone-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}
.site-header .phone-icon i {
  font-size: 12px;
}

.site-header .book-button {
  height: 46px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #175baa 0%, #0e868f 100%);
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .book-button i {
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header .book-button:hover {
  background: linear-gradient(135deg, #175baa 0%, #0e868f 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(11, 92, 255, 0.24);
}
.site-header .book-button:hover i {
  transform: translateX(3px);
}

.site-header .mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid #e7e9ee;
  background: #ffffff;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.site-header .mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: #111827;
  border-radius: 10px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99998;
}
.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: min(390px, 88vw);
  height: 100dvh;
  background: #ffffff;
  z-index: 100000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -20px 0 60px rgba(15, 23, 42, 0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-offcanvas.active {
  transform: translateX(0);
}

.offcanvas-header {
  min-height: 82px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid #e7e9ee;
}

.offcanvas-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.offcanvas-logo img {
  display: block;
  width: auto;
  max-width: 145px;
  max-height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}

.offcanvas-close {
  width: 42px;
  height: 42px;
  border: 1px solid #e7e9ee;
  background: #f7f8fa;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #111827;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.offcanvas-close i {
  font-size: 18px;
}
.offcanvas-close:hover {
  background: #111827;
  color: #ffffff;
  transform: rotate(90deg);
}

.offcanvas-body {
  padding: 15px 22px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #edf0f4;
}

.mobile-nav-link {
  width: 100%;
  min-height: 58px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: rgb(14, 134, 143);
}
.mobile-nav-link i {
  font-size: 11px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 12px;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding-bottom 0.35s ease;
}

.mobile-has-dropdown.open .mobile-dropdown-toggle {
  color: rgb(14, 134, 143);
}
.mobile-has-dropdown.open .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}
.mobile-has-dropdown.open .mobile-submenu {
  max-height: 300px;
  opacity: 1;
  padding-bottom: 8px;
}

.mobile-submenu a {
  min-height: 43px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  color: #667085;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-submenu a:hover {
  color: rgb(14, 134, 143);
  background: #f4f7ff;
}

.mobile-actions {
  margin-top: auto;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-phone {
  min-height: 54px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  background: #f7f8fa;
  border: 1px solid #e7e9ee;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.mobile-phone-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: #ffffff;
  border-radius: 50%;
}
.mobile-phone-icon i {
  font-size: 12px;
}

.mobile-book-button {
  min-height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #175baa 0%, #0e868f 100%);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(11, 92, 255, 0.2);
}
.mobile-book-button i {
  font-size: 12px;
}

@media (max-width: 1180px) {
  .site-header {
    padding: 12px 16px;
  }
  .site-header.scrolled {
    padding: 7px 16px;
  }
  .site-header .navbar {
    padding: 0 20px;
    gap: 15px;
  }
  .site-header .nav-menu {
    gap: 0;
  }
  .site-header .nav-link {
    padding: 0 10px;
    font-size: 14px;
  }
  .site-header .phone-number {
    display: none;
  }
  .site-header .phone-button {
    width: 46px;
    padding: 0;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .site-header {
    padding: 10px 12px;
  }
  .site-header.scrolled {
    padding: 7px 12px;
  }
  .site-header .navbar {
    min-height: 70px;
    padding: 0 14px;
    border-radius: 15px;
    display: flex !important;
    justify-content: space-between;
    gap: 0;
  }
  .site-header .navbar-center,
  .site-header .navbar-actions {
    display: none !important;
  }
  .site-header .mobile-menu-toggle {
    display: flex;
  }
  .site-header .navbar-brand img {
    max-height: 40px;
    max-width: 145px;
  }
  .site-header .has-dropdown::after {
    display: none;
  }
  .site-header .has-dropdown .dropdown-menu {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .site-header {
    padding: 8px;
  }
  .site-header .navbar {
    min-height: 64px;
    padding: 0 12px;
    border-radius: 13px;
  }
  .site-header .navbar-brand img {
    max-width: 125px;
    max-height: 36px;
  }
  .site-header .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }
  .mobile-offcanvas {
    width: min(360px, 92vw);
  }
}
@media (max-width: 360px) {
  .site-header .navbar-brand img {
    max-width: 115px;
    max-height: 34px;
  }
  .mobile-offcanvas {
    width: 94vw;
  }
}
body.menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .navbar,
  .dropdown-menu,
  .mobile-overlay,
  .mobile-offcanvas,
  .mobile-submenu,
  .nav-link,
  .dropdown-link,
  .mobile-nav-link,
  .mobile-menu-toggle span {
    transition: none !important;
  }
}
.hotel-slider {
  --slider-height: clamp(430px, 42vw, 680px);
  position: relative;
  width: 100%;
  height: var(--slider-height);
  min-height: 430px;
  overflow: visible;
  background: #e9e2d4;
}
.hotel-slider .hotel-glide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hotel-slider .hotel-slider__track {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hotel-slider .glide__slides {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hotel-slider .glide__slide {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.hotel-slider .hotel-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hotel-slider .hotel-slide > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.hotel-slider .hotel-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.hotel-slider .hotel-slide__content {
  position: absolute;
  top: 50%;
  left: clamp(30px, 8vw, 140px);
  z-index: 3;
  width: min(560px, 100% - 60px);
  transform: translateY(-50%);
  color: #fff;
  display: none;
}
.hotel-slider .hotel-slide__subtitle {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}
.hotel-slider .hotel-slide h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: #fff;
}
.hotel-slider .hotel-slide p {
  max-width: 480px;
  margin: 0 0 28px;
  font-size: clamp(14px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.hotel-slider .hotel-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 5px;
  background: linear-gradient(135deg, #175baa 0%, #0e868f 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.hotel-slider .hotel-slide__btn:hover {
  background: linear-gradient(135deg, #0e868f 0%, #175baa 100%);
  color: #fff;
  transform: translateY(-2px);
}
.hotel-slider .hotel-slider__controls {
  position: absolute;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  display: none;
}
.hotel-slider .hotel-slider__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.hotel-slider .hotel-slider__arrow svg {
  width: 21px;
  height: 21px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hotel-slider .hotel-slider__arrow:hover {
  background: #fff;
  border-color: #fff;
  color: #222;
}
.hotel-slider .hotel-slider__arrow--prev {
  left: 25px;
}
.hotel-slider .hotel-slider__arrow--next {
  right: 25px;
}
.hotel-slider .hotel-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 55px;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  pointer-events: auto;
}
.hotel-slider .hotel-slider__dot {
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}
.hotel-slider .hotel-slider__dot.glide__bullet--active {
  width: 28px;
  border-radius: 10px;
  background: #fff;
}
.hotel-slider .hotel-features {
  position: absolute;
  left: 50%;
  bottom: -10px;
  z-index: 50;
  width: min(850px, 100% - 40px);
  min-height: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 0 18px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.04), 0 8px 25px rgba(0, 0, 0, 0.12);
}
.hotel-slider .hotel-feature {
  position: relative;
  min-width: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
}
.hotel-slider .hotel-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 34px;
  transform: translateY(-50%);
  background: #e5e5e5;
}
.hotel-slider .hotel-feature__icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-slider .hotel-feature__icon img {
  width: 30px;
  height: 30px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.hotel-slider .hotel-feature__text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.hotel-slider .hotel-feature__text strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
}
.hotel-slider .hotel-feature__text span {
  display: block;
  margin-top: 3px;
  font-size: 15px;
  font-weight: 400;
  color: #444;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hotel-slider {
    --slider-height: 560px;
    min-height: 560px;
  }
  .hotel-slider .hotel-slide > img {
    -o-object-position: center center;
       object-position: center center;
  }
  .hotel-slider .hotel-slide__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 40%, rgba(0, 0, 0, 0.68) 100%);
  }
  .hotel-slider .hotel-slide__content {
    top: auto;
    bottom: 135px;
    left: 25px;
    width: calc(100% - 50px);
    transform: none;
  }
  .hotel-slider .hotel-slide h1 {
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: -0.8px;
  }
  .hotel-slider .hotel-slide p {
    font-size: 14px;
  }
  .hotel-slider .hotel-slider__arrow {
    width: 40px;
    height: 40px;
  }
  .hotel-slider .hotel-slider__arrow--prev {
    left: 15px;
  }
  .hotel-slider .hotel-slider__arrow--next {
    right: 15px;
  }
  .hotel-slider .hotel-slider__dots {
    bottom: 108px;
  }
  .hotel-slider .hotel-features {
    width: calc(100% - 30px);
    min-height: 76px;
    padding: 0 8px;
  }
  .hotel-slider .hotel-feature {
    gap: 5px;
    padding: 8px 5px;
  }
  .hotel-slider .hotel-feature__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }
  .hotel-slider .hotel-feature__icon img {
    width: 26px;
    height: 26px;
  }
  .hotel-slider .hotel-feature__text strong {
    font-size: 9px;
  }
  .hotel-slider .hotel-feature__text span {
    font-size: 8px;
  }
}
@media (max-width: 576px) {
  .hotel-slider {
    --slider-height: 620px;
    min-height: 620px;
  }
  .hotel-slider .hotel-slide > img {
    -o-object-position: center center;
       object-position: center center;
  }
  .hotel-slider .hotel-slide__content {
    left: 55px;
    bottom: 250px;
    width: calc(100% - 40px);
  }
  .hotel-slider .hotel-slide__subtitle {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 1.2px;
  }
  .hotel-slider .hotel-slide h1 {
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.08;
  }
  .hotel-slider .hotel-slide p {
    max-width: 340px;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
  }
  .hotel-slider .hotel-slide__btn {
    min-height: 44px;
    padding: 0 22px;
    font-size: 13px;
  }
  .hotel-slider .hotel-slider__arrow {
    width: 36px;
    height: 36px;
  }
  .hotel-slider .hotel-slider__arrow--prev {
    left: 10px;
  }
  .hotel-slider .hotel-slider__arrow--next {
    right: 10px;
  }
  .hotel-slider .hotel-slider__dots {
    bottom: 112px;
  }
  .hotel-slider .hotel-features {
    left: 15px;
    right: 15px;
    bottom: 10px;
    width: auto;
    min-height: auto;
    padding: 8px;
    grid-template-columns: repeat(2, 1fr);
    transform: none;
    border-radius: 10px;
  }
  .hotel-slider .hotel-feature {
    justify-content: flex-start;
    min-height: 48px;
    padding: 7px 8px;
  }
  .hotel-slider .hotel-feature::after {
    display: none !important;
  }
  .hotel-slider .hotel-feature:nth-child(1), .hotel-slider .hotel-feature:nth-child(2) {
    border-bottom: 1px solid #ededed;
  }
  .hotel-slider .hotel-feature:nth-child(1), .hotel-slider .hotel-feature:nth-child(3) {
    border-right: 1px solid #ededed;
  }
  .hotel-slider .hotel-feature__icon {
    flex-basis: 27px;
    width: 27px;
    height: 27px;
  }
  .hotel-slider .hotel-feature__icon img {
    width: 25px;
    height: 25px;
  }
  .hotel-slider .hotel-feature__text strong {
    font-size: 9px;
  }
  .hotel-slider .hotel-feature__text span {
    font-size: 8px;
  }
}
@media (max-width: 380px) {
  .hotel-slider {
    --slider-height: 580px;
    min-height: 580px;
  }
  .hotel-slider .hotel-slide__content {
    bottom: 140px;
  }
  .hotel-slider .hotel-slide h1 {
    font-size: 29px;
  }
  .hotel-slider .hotel-slide p {
    font-size: 12px;
  }
}
.comfort-section {
  width: 100%;
  padding: 40px 20px;
  background: #f8f8f8;
}
.comfort-section .comfort-container {
  width: min(100%, 1000px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}
.comfort-section .comfort-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.comfort-section .stat-card {
  min-height: 91px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comfort-section .stat-card .stat-number {
  display: block;
  font-family: "Frank Ruhl Libre", serif;
  margin-bottom: 8px;
  color: #1259a7;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
}
.comfort-section .stat-card .stat-label {
  display: block;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
}
.comfort-section .stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.11);
}
.comfort-section .stat-card--featured {
  background: linear-gradient(135deg, #3478d0 0%, #078fb5 100%);
}
.comfort-section .stat-card--featured .stat-number,
.comfort-section .stat-card--featured .stat-label {
  color: #ffffff;
}
.comfort-section .stat-card--featured:hover {
  box-shadow: 0 10px 22px rgba(23, 105, 181, 0.28);
}
.comfort-section .comfort-content {
  width: 100%;
}
.comfort-section .comfort-content h2 {
  margin: 0 0 10px;
  color: #111;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.05;
}
.comfort-section .comfort-content h2 span {
  display: block;
  color: #075aa9;
  margin-top: 2px;
}
.comfort-section .comfort-content p {
  margin: 0 0 6px;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.comfort-section .comfort-content p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .comfort-section {
    padding: 75px 30px;
  }
  .comfort-section .comfort-container {
    grid-template-columns: 310px 700px;
    gap: 26px;
    text-align: justify;
  }
  .comfort-section .comfort-stats {
    gap: 8px;
  }
  .comfort-section .stat-card {
    min-height: 145px;
  }
}
@media (max-width: 768px) {
  .comfort-section {
    padding: 40px 24px;
  }
  .comfort-section .comfort-container {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
  }
  .comfort-section .stat-card {
    min-height: 88px;
  }
  .comfort-section .stat-card .stat-number {
    font-size: 19px;
  }
  .comfort-section .stat-card .stat-label {
    font-size: 9px;
  }
  .comfort-section .comfort-content h2 {
    font-size: 21px;
  }
  .comfort-section .comfort-content p {
    font-size: 10px;
    line-height: 1.7;
  }
}
@media (max-width: 600px) {
  .comfort-section {
    padding: 35px 30px;
  }
  .comfort-section .comfort-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
  }
  .comfort-section .comfort-stats {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    gap: 10px;
  }
  .comfort-section .stat-card {
    min-height: 95px;
    border-radius: 10px;
  }
  .comfort-section .stat-card .stat-number {
    font-size: 21px;
    margin-bottom: 9px;
  }
  .comfort-section .stat-card .stat-label {
    font-size: 10px;
  }
  .comfort-section .comfort-content {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }
  .comfort-section .comfort-content h2 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .comfort-section .comfort-content h2 span {
    margin-top: 3px;
  }
  .comfort-section .comfort-content p {
    font-size: 11px;
    line-height: 1.75;
    margin-bottom: 8px;
  }
}
@media (max-width: 380px) {
  .comfort-section {
    padding: 28px 15px;
  }
  .comfort-section .comfort-stats {
    gap: 8px;
  }
  .comfort-section .stat-card {
    min-height: 88px;
  }
  .comfort-section .stat-card .stat-number {
    font-size: 19px;
  }
  .comfort-section .stat-card .stat-label {
    font-size: 9px;
  }
  .comfort-section .comfort-content h2 {
    font-size: 21px;
  }
  .comfort-section .comfort-content p {
    font-size: 10px;
  }
}
.rooms-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 32px 30px;
  background: #fff;
}
.rooms-section::before {
  content: "";
  position: absolute;
  left: -123px;
  bottom: -5px;
  width: 500px;
  height: 495px;
  background-image: url("../images/caro-lft-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(10deg);
  clip-path: polygon(0 0, 100% 15%, 75% 100%, 10% 85%);
  pointer-events: none;
  z-index: 0;
}

.rooms-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.rooms-intro {
  position: relative;
  z-index: 2;
  padding: 15px 0;
}

.rooms-eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #B4843B;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.rooms-title {
  margin-bottom: 12px;
  color: #202020;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.18;
}
.rooms-title span {
  color: #1264b5;
}

.rooms-description {
  margin-bottom: 14px;
  color: #777;
  font-size: 15px;
  line-height: 1.7;
}

.rooms-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 106px;
  height: 35px;
  padding: 0 8px;
  border: 1px solid #1264b5;
  border-radius: 3px;
  color: #1264b5;
  background: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.rooms-button svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  transition: transform 0.25s ease;
}
.rooms-button:hover {
  color: #fff;
  background: #1264b5;
}
.rooms-button:hover svg {
  transform: translateX(3px);
}

.rooms-carousel {
  width: 100%;
  min-width: 0;
}

.glide {
  width: 100%;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  align-items: stretch;
}

.glide__slide {
  height: auto;
}

.room-card {
  height: 100%;
  min-height: 272px;
  width: 300px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 9px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.035), 0 4px 12px rgba(0, 0, 0, 0.025);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.room-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08), 0 2px 5px rgba(0, 0, 0, 0.04);
}
@media (max-width: 578px) {
  .room-card {
    width: 100%;
  }
}

.room-image {
  position: relative;
  width: 100%;
  height: 303px;
  overflow: hidden;
  background: #eee;
}
.room-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image img {
  transform: scale(1.04);
}

.room-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 100px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
.room-badge--popular {
  background: #1463ae;
}
.room-badge--value {
  background: #aa7c27;
}
.room-badge--premium {
  background: #168c9b;
}

.room-content {
  padding: 11px 16px 12px;
}

.room-name {
  margin-bottom: 7px;
  color: #202020;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.room-price {
  margin-bottom: 10px;
  color: #1264b5;
  font-size: 15px;
  line-height: 1.2;
}
.room-price strong {
  font-weight: 500;
}

.room-features {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.room-feature {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #555;
  font-size: 15px;
  white-space: nowrap;
}
.room-feature svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #222;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rooms-controls {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 12px;
}

.rooms-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: #1264b5;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.rooms-arrow svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rooms-arrow:hover {
  border-color: #1264b5;
  color: #fff;
  background: #1264b5;
}

@media (max-width: 1100px) {
  .rooms-section {
    padding: 30px 24px;
  }
  .rooms-container {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 18px;
  }
  .room-image {
    height: 175px;
  }
  .room-content {
    padding: 11px 13px;
  }
  .room-features {
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .rooms-section {
    padding: 45px 30px 50px;
  }
  .rooms-section::before {
    width: 294px;
    height: 315px;
    left: -58px;
    bottom: -31px;
  }
  .rooms-container {
    display: block;
  }
  .rooms-intro {
    padding: 0;
    margin-bottom: 25px;
  }
  .rooms-eyebrow {
    margin-bottom: 7px;
    font-size: 10px;
  }
  .rooms-title {
    max-width: 320px;
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1.15;
  }
  .rooms-description {
    max-width: 310px;
    margin-bottom: 17px;
    font-size: 11px;
    line-height: 1.6;
  }
  .rooms-button {
    min-width: 125px;
    height: 34px;
    padding: 0 11px;
    font-size: 9px;
  }
  .rooms-button svg {
    width: 14px;
    height: 14px;
  }
  .room-image {
    height: 230px;
  }
  .room-content {
    padding: 15px 16px 17px;
  }
  .room-name {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .room-price {
    margin-bottom: 14px;
    font-size: 10px;
  }
  .room-features {
    gap: 14px;
  }
  .room-feature {
    font-size: 9px;
  }
  .room-feature svg {
    width: 14px;
    height: 14px;
  }
  .rooms-controls {
    margin-top: 15px;
  }
  .rooms-arrow {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 400px) {
  .rooms-section {
    padding-left: 14px;
    padding-right: 14px;
  }
  .rooms-title {
    font-size: 25px;
  }
  .room-image {
    height: 210px;
  }
  .room-features {
    gap: 9px;
  }
}
.alpha-benefits {
  padding: 50px 24px;
  background: #f8f8f7;
  overflow: hidden;
  margin: 0 45px;
  border-radius: 25px;
}
.alpha-benefits__container {
  width: min(100%, 1250px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}
.alpha-benefits__visual {
  min-width: 0;
}
.alpha-benefits__image-wrap {
  position: relative;
  width: 100%;
}
.alpha-benefits__image {
  display: block;
  width: 100%;
  aspect-ratio: 1.25/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.alpha-benefits .alpha-testimonial {
  position: absolute;
  z-index: 2;
  left: -1px;
  bottom: -36px;
  width: 245px;
  min-height: 117px;
  padding: 17px 18px 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16), 0 1px 2px rgba(0, 0, 0, 0.08);
}
.alpha-benefits .alpha-testimonial__quote {
  display: block;
  height: 14px;
  color: #d99322;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 20px;
}
.alpha-benefits .alpha-testimonial__text {
  margin: 2px 0 11px;
  color: #222;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 20px;
  line-height: 1.35;
}
.alpha-benefits .alpha-testimonial__footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.alpha-benefits .alpha-testimonial__people {
  display: flex;
  align-items: center;
  gap: 8px;
}
.alpha-benefits .alpha-testimonial__avatars {
  display: flex;
  align-items: center;
}
.alpha-benefits .alpha-testimonial__avatars img {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1.5px solid #fff;
  border-radius: 50%;
}
.alpha-benefits .alpha-testimonial__avatars img:not(:first-child) {
  margin-left: -7px;
}
.alpha-benefits .alpha-testimonial__count {
  color: #555;
  font-size: 14px;
  line-height: 1.3;
}
.alpha-benefits .alpha-testimonial__rating {
  padding: 0 30%;
  color: #d99322;
  font-size: 15px;
  letter-spacing: 1px;
  line-height: 1;
}
.alpha-benefits__content {
  min-width: 0;
}
.alpha-benefits__heading {
  margin-bottom: 28px;
}
.alpha-benefits__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #EAA233;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.alpha-benefits h2 {
  margin: 0;
  font-family: "Frank Ruhl Libre", serif;
  color: #1266ad;
  font-size: clamp(34px, 3.3vw, 49px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -1.5px;
}
.alpha-benefits h2 span {
  color: #d99322;
}
.alpha-benefits__heading > p {
  max-width: 390px;
  margin: 12px 0 0;
  color: #222;
  font-size: 15px;
  line-height: 1.55;
}
.alpha-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 26px;
       column-gap: 26px;
  row-gap: 0;
  max-width: 540px;
}
.alpha-benefits .alpha-benefit {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid #e8e8e8;
}
.alpha-benefits .alpha-benefit__icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #175baa 0%, #0e868f 100%);
  border-radius: 7px;
}
.alpha-benefits .alpha-benefit__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.alpha-benefits .alpha-benefit__icon img {
  width: 25px;
  height: 25px;
}
.alpha-benefits .alpha-benefit p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
}
.alpha-benefits__button {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 9px 12px;
  color: #fff;
  background: #d89a3c;
  border: 1px solid rgba(150, 95, 20, 0.15);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.alpha-benefits__button svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.alpha-benefits__button:hover {
  background: #c98a2e;
  transform: translateY(-1px);
}
.alpha-benefits__button:hover svg {
  transform: translateX(3px);
}
.alpha-benefits__button:focus-visible {
  outline: 2px solid #1266ad;
  outline-offset: 3px;
}

@media (min-width: 1200px) {
  .alpha-benefits {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .alpha-benefits__container {
    max-width: 1250px;
  }
}
@media (max-width: 900px) {
  .alpha-benefits {
    padding: 55px 30px;
  }
  .alpha-benefits__container {
    grid-template-columns: 1fr;
    gap: 70px;
    max-width: 700px;
  }
  .alpha-benefits__image {
    aspect-ratio: 1.55/1;
  }
  .alpha-benefits .alpha-testimonial {
    bottom: -35px;
  }
  .alpha-benefits__content {
    max-width: 600px;
  }
  .alpha-benefits__grid {
    max-width: 100%;
  }
  .alpha-benefits__heading {
    margin-bottom: 25px;
  }
}
@media (max-width: 600px) {
  .alpha-benefits {
    padding: 38px 18px 45px;
    margin: 0 20px;
  }
  .alpha-benefits__container {
    gap: 65px;
  }
  .alpha-benefits__image {
    aspect-ratio: 1/0.92;
    border-radius: 18px;
  }
  .alpha-benefits .alpha-testimonial {
    left: 10px;
    bottom: -42px;
    width: min(245px, 100% - 20px);
  }
  .alpha-benefits__heading {
    margin-bottom: 24px;
  }
  .alpha-benefits__eyebrow {
    font-size: 8px;
  }
  .alpha-benefits h2 {
    font-size: 38px;
    line-height: 0.95;
  }
  .alpha-benefits__heading > p {
    margin-top: 13px;
    font-size: 11px;
  }
  .alpha-benefits .desktop-break {
    display: none;
  }
  .alpha-benefits__grid {
    grid-template-columns: 1fr 1fr;
  }
  .alpha-benefits .alpha-benefit {
    min-height: 62px;
    gap: 14px;
  }
  .alpha-benefits .alpha-benefit__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .alpha-benefits .alpha-benefit p {
    font-size: 11px;
  }
  .alpha-benefits__button {
    margin-top: 25px;
    padding: 11px 14px;
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .alpha-benefits {
    padding-left: 14px;
    padding-right: 14px;
  }
  .alpha-benefits h2 {
    font-size: 34px;
  }
  .alpha-benefits .alpha-testimonial {
    width: 220px;
    padding: 14px;
  }
  .alpha-benefits .alpha-testimonial__text {
    font-size: 12px;
  }
}
.news-events-section {
  width: 100%;
  padding: 42px 0 45px;
  background: #fff;
  overflow: hidden;
}

.news-events-container {
  width: min(100% - 60px, 1250px);
  margin: 0 auto;
}

.news-events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 18px;
}

.news-events-title .eyebrow {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.25px;
  color: #d5a23a;
  text-transform: uppercase;
}
.news-events-title h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
  color: #111;
}
.news-events-title h2 span {
  color: #12549a;
}

.view-all-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 93px;
  height: 35px;
  padding: 0 9px;
  border: 1px solid #1b5caa;
  border-radius: 4px;
  color: #12549a;
  background: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.view-all-btn i {
  font-size: 9px;
  transition: transform 0.25s ease;
}
.view-all-btn:hover {
  color: #fff;
  background: #12549a;
  border-color: #12549a;
}
.view-all-btn:hover i {
  transform: translateX(3px);
}

.news-events-carousel {
  position: relative;
  width: 100%;
}

#newsEventsGlide {
  position: relative;
  width: 100%;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.glide__slide {
  height: auto;
  display: flex;
}

.news-card {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.025);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);
}

.news-card-image {
  position: relative;
  width: 100%;
  height: 120px !important;
  overflow: hidden;
  background: #eee;
}
.news-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.04);
}

.date-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 85px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 1px;
  background: linear-gradient(135deg, #175BAA 0%, #0E868F 100%);
  color: #fff;
  text-align: center;
}
.date-box .date-day {
  display: block;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 14px;
}
.date-box .date-month {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 9px;
}
.date-box .date-year {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 8px;
}

.news-tag {
  position: absolute;
  right: 8px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 45px;
  height: 20px;
  padding: 0 6px;
  background: #d4a13b;
  color: #fff;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.news-card-content {
  padding: 30px 12px 31px;
}
.news-card-content h3 {
  margin: 0 0 6px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-card-content p {
  width: 92%;
  margin: 0 0 7px;
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1260aa;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}
.read-more i {
  font-size: 9px;
  transition: transform 0.2s ease;
}
.read-more:hover {
  color: #083c70;
}
.read-more:hover i {
  transform: translateX(3px);
}

.news-carousel-arrows {
  position: absolute;
  top: 50%;
  right: -35px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transform: translateY(-50%);
}

.news-arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #1b5caa;
  border-radius: 50%;
  background: #fff;
  color: #1b5caa;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.news-arrow:hover {
  background: #12549a;
  color: #fff;
}
.news-arrow:active {
  transform: scale(0.9);
}

.news-arrow-next {
  background: #12549a;
  color: #fff;
}
.news-arrow-next:hover {
  background: #0b437d;
}

@media (max-width: 991px) {
  .news-events-section {
    padding: 38px 0 42px;
  }
  .news-events-container {
    width: min(100% - 40px, 760px);
  }
  .news-events-header {
    margin-bottom: 18px;
  }
  .news-card {
    height: 160px;
  }
  .news-card-image {
    height: 68px;
  }
  .date-box {
    width: 53px;
    height: 68px;
  }
  .news-carousel-arrows {
    right: -23px;
  }
}
@media (max-width: 767px) {
  .news-events-section {
    padding: 32px 0 36px;
  }
  .news-events-container {
    width: calc(100% - 30px);
  }
  .news-events-header {
    align-items: flex-start;
    margin-bottom: 17px;
  }
  .news-events-title .eyebrow {
    font-size: 7px;
  }
  .news-events-title h2 {
    font-size: 19px;
  }
  .view-all-btn {
    min-width: 86px;
    height: 24px;
    padding: 0 7px;
    font-size: 7px;
    gap: 8px;
  }
  .news-card {
    height: 175px;
    border-radius: 7px;
  }
  .news-card-image {
    height: 78px;
  }
  .date-box {
    width: 58px;
    height: 78px;
  }
  .date-box .date-day {
    font-size: 16px;
    line-height: 16px;
  }
  .date-box .date-month {
    font-size: 9px;
    line-height: 10px;
  }
  .date-box .date-year {
    font-size: 7px;
  }
  .news-tag {
    right: 8px;
    min-width: 40px;
    height: 16px;
    font-size: 6px;
  }
  .news-card-content {
    padding: 12px 13px 10px;
  }
  .news-card-content h3 {
    margin-bottom: 7px;
    font-size: 11px;
  }
  .news-card-content p {
    margin-bottom: 9px;
    font-size: 9px;
    line-height: 1.5;
  }
  .news-card-content .read-more {
    font-size: 8px;
  }
  .news-carousel-arrows {
    position: static;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 13px;
    transform: none;
  }
  .news-arrow {
    width: 25px;
    height: 25px;
    font-size: 8px;
  }
}
@media (max-width: 480px) {
  .news-events-section {
    padding: 27px 0 32px;
  }
  .news-events-container {
    width: calc(100% - 50px);
  }
  .news-events-header {
    gap: 12px;
  }
  .news-events-title .eyebrow {
    font-size: 6.5px;
  }
  .news-events-title h2 {
    font-size: 17px;
  }
  .view-all-btn {
    min-width: 78px;
    height: 23px;
    font-size: 6.5px;
  }
  .news-card {
    height: 170px;
  }
  .news-card-image {
    height: 74px;
  }
  .date-box {
    width: 55px;
    height: 90px;
  }
  .news-card-content {
    padding: 11px 12px;
  }
  .news-card-content h3 {
    font-size: 10px;
  }
  .news-card-content p {
    font-size: 8.5px;
  }
}
.testimonials {
  width: 100%;
  padding: 30px 0 30px;
  background: #f7f7f7;
  overflow: hidden;
}

.testimonials__container {
  width: min(100% - 80px, 1250px);
  min-height: 122px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
}

.testimonials__intro {
  height: 100%;
  padding-top: 13px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonials__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #c9973e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3px;
}

.testimonials__title {
  margin: 0;
  color: #17243f;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.1px;
}

.testimonials__description {
  margin: 19px 0 0;
  color: #17243f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.testimonials__slider {
  width: 100%;
  overflow: hidden;
}

.testimonials__track {
  width: 100%;
  display: flex;
  gap: 15px;
  transform: translateX(0);
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 15px) / 2);
  width: calc((100% - 15px) / 2);
  min-height: 122px;
  padding: 14px 15px 11px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 5px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card__quote {
  position: absolute;
  top: 5px;
  left: 9px;
  color: #d1d1d1;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testimonial-card__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card__top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-left: 1px;
}

.testimonial-card__avatar {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  margin-top: 15px;
  border-radius: 50%;
  overflow: hidden;
  background: #d8d8d8;
  border: 1px solid #e9e9e9;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-card__body {
  min-width: 0;
  padding-top: 3px;
}

.testimonial-card__rating {
  height: 10px;
  display: flex;
  align-items: center;
  gap: 1px;
  color: #e9a72d;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -1px;
}

.testimonial-card__rating span {
  display: inline-block;
}

.testimonial-card__text {
  margin: 6px 0 0;
  color: #46536c;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.48;
}

.testimonial-card__author {
  margin-top: auto;
  padding-left: 65px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  color: #B4843B;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding-top: 5px;
  letter-spacing: 0.15px;
}

.testimonial-card__location {
  color: #46536c;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.testimonial-card--clone {
  pointer-events: none;
}

.testimonials__controls {
  display: none;
}

.testimonials__arrow {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17243f;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.testimonials__arrow:hover {
  color: #fff;
  background: #115296;
  border-color: #115296;
}

.testimonials__dots {
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonials__dot {
  width: 5px;
  height: 5px;
  padding: 0;
  background: #d4d4d4;
  border-radius: 50%;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.testimonials__dot.is-active {
  width: 15px;
  background: #c9973e;
  border-radius: 5px;
}

@media (max-width: 1100px) {
  .testimonials__container {
    width: min(100% - 50px, 1190px);
    grid-template-columns: 140px minmax(0, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .testimonials__track {
    gap: 12px;
  }
  .testimonial-card {
    flex-basis: calc((100% - 12px) / 2);
    width: calc((100% - 12px) / 2);
    padding-left: 13px;
    padding-right: 13px;
  }
  .testimonial-card__top {
    gap: 10px;
  }
  .testimonial-card__avatar {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .testimonial-card__author {
    padding-left: 48px;
  }
}
@media (max-width: 800px) {
  .testimonials__container {
    width: calc(100% - 40px);
    grid-template-columns: 125px minmax(0, 1fr);
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .testimonials__title {
    font-size: 13px;
  }
  .testimonials__description {
    font-size: 7px;
  }
  .testimonial-card {
    min-height: 118px;
    padding: 13px 12px 10px;
  }
  .testimonial-card__quote {
    font-size: 25px;
  }
  .testimonial-card__text {
    font-size: 7px;
  }
}
@media (max-width: 650px) {
  .testimonials {
    padding: 35px 0 25px;
  }
  .testimonials__container {
    width: calc(100% - 32px);
    min-height: auto;
    display: block;
  }
  .testimonials__intro {
    height: auto;
    padding: 0;
    margin-bottom: 24px;
  }
  .testimonials__eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
  }
  .testimonials__title {
    font-size: 25px;
    line-height: 1.15;
  }
  .testimonials__description {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.5;
  }
  .testimonials__slider {
    width: 100%;
    overflow: hidden;
  }
  .testimonials__track {
    display: flex;
    gap: 12px;
    transform: translateX(0);
    transition: transform 0.35s ease;
    will-change: transform;
  }
  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-height: 190px;
    padding: 22px 20px 18px;
    border-radius: 12px;
  }
  .testimonial-card__quote {
    top: 8px;
    left: 12px;
    font-size: 38px;
  }
  .testimonial-card__top {
    gap: 15px;
    padding-left: 0;
  }
  .testimonial-card__avatar {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-top: 15px;
  }
  .testimonial-card__body {
    padding-top: 5px;
  }
  .testimonial-card__rating {
    height: 12px;
    font-size: 10px;
  }
  .testimonial-card__text {
    max-width: none;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }
  .testimonial-card__author {
    padding-left: 67px;
    margin-top: 22px;
    gap: 3px;
  }
  .testimonial-card__name {
    font-size: 8px;
  }
  .testimonial-card__location {
    font-size: 8px;
  }
  .testimonials__controls {
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
  .testimonials__arrow {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .testimonials {
    padding-top: 30px;
  }
  .testimonials__container {
    width: calc(100% - 50px);
  }
  .testimonials__title {
    font-size: 23px;
  }
  .testimonials__description {
    font-size: 10px;
  }
  .testimonial-card {
    min-height: 195px;
    padding: 21px 18px 17px;
  }
  .testimonial-card__avatar {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }
  .testimonial-card__text {
    font-size: 10.5px;
  }
  .testimonial-card__author {
    padding-left: 65px;
  }
}
@media (max-width: 380px) {
  .testimonials__container {
    width: calc(100% - 24px);
  }
  .testimonials__title {
    font-size: 22px;
  }
  .testimonial-card {
    min-height: 205px;
    padding: 20px 16px 16px;
  }
  .testimonial-card__top {
    gap: 12px;
  }
  .testimonial-card__avatar {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }
  .testimonial-card__text {
    font-size: 10px;
  }
  .testimonial-card__author {
    padding-left: 58px;
  }
  .testimonial-card__name {
    font-size: 7.5px;
  }
  .testimonial-card__location {
    font-size: 7.5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .testimonials__track {
    transition: none !important;
  }
}
.site-footer {
  position: relative;
  width: 100%;
  color: #ffffff;
  background: linear-gradient(105deg, #034c8c 0%, #075d91 48%, #087e98 100%);
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.footer-main {
  padding: 30px 0px 17px;
}

.footer-container {
  width: min(100% - 110px, 1250px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) minmax(120px, 0.75fr) minmax(140px, 0.9fr) minmax(250px, 1.25fr);
  -moz-column-gap: 65px;
       column-gap: 65px;
  align-items: start;
}

.footer-column {
  min-width: 0;
}
.footer-column h3 {
  margin: 0 0 9px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  font-family: "Frank Ruhl Libre", serif;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 9px;
}
.footer-logo:hover {
  opacity: 0.9;
}

.logo-mark {
  position: relative;
  display: block;
  width: 24px;
  height: 25px;
}
.logo-mark::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 21px;
  border-left: 5px solid #ffffff;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  transform: skewX(-15deg);
}
.logo-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 15px;
  height: 3px;
  background: #ffffff;
  transform: rotate(-1deg);
}
.logo-mark span {
  position: absolute;
  width: 4px;
  height: 4px;
  left: 10px;
  top: 8px;
  background: #ffffff;
  border-radius: 50%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}
.logo-text small {
  margin-top: 2px;
  font-size: 4.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1px;
}

.footer-description {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}
.social-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #8ee8ff);
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: 0;
}
.social-links a i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-links a:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 12px rgba(142, 232, 255, 0.35);
  color: #075d91;
}
.social-links a:hover::before {
  transform: scale(1);
}
.social-links a:hover i {
  transform: scale(1.1);
}
.social-links a:active {
  transform: translateY(-1px) scale(0.98);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin: 0 0 3px;
}
.footer-links a {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.footer-contact .contact-item:last-child {
  margin-bottom: 0;
}
.footer-contact .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 12px;
  width: 20px;
  height: 20px;
  font-size: 13px;
  color: #ffffff;
}
.footer-contact a {
  padding-top: 1px;
  font-size: 14px;
  font-weight: 300;
}
.footer-contact a:hover {
  text-decoration: underline;
}
.footer-contact address {
  margin: 0;
  font-style: normal;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 15px 0;
  background: rgba(0, 45, 91, 0.18);
}

.footer-bottom-container {
  width: min(100% - 110px, 1250px);
  min-height: 25px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-bottom-container p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 300;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 300;
}
.legal-links a {
  transition: color 0.2s ease;
}
.legal-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1100px) {
  .footer-container {
    width: min(100% - 60px, 1000px);
    -moz-column-gap: 35px;
         column-gap: 35px;
  }
  .footer-bottom-container {
    width: min(100% - 60px, 1000px);
  }
}
@media (max-width: 800px) {
  .footer-main {
    padding: 35px 0 30px;
  }
  .footer-container {
    width: min(100% - 50px, 650px);
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 45px;
         column-gap: 45px;
    row-gap: 35px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-description {
    font-size: 9px;
    line-height: 1.6;
  }
  .footer-column h3 {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .footer-links li {
    margin-bottom: 6px;
  }
  .footer-links a {
    font-size: 9px;
  }
  .footer-contact .contact-item {
    margin-bottom: 13px;
  }
  .footer-contact a,
  .footer-contact address {
    font-size: 9px;
  }
  .footer-bottom-container {
    width: min(100% - 50px, 650px);
    min-height: 40px;
  }
  .footer-bottom-container p,
  .footer-bottom-container .legal-links {
    font-size: 8px;
  }
}
@media (max-width: 550px) {
  .site-footer {
    border-width: 1px;
  }
  .footer-main {
    padding: 32px 0 25px;
  }
  .footer-container {
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 27px;
  }
  .footer-brand,
  .footer-column {
    width: 100%;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
  .logo-text strong {
    font-size: 17px;
  }
  .logo-text small {
    font-size: 5px;
  }
  .logo-mark {
    width: 27px;
    height: 28px;
  }
  .footer-description {
    font-size: 9px;
    line-height: 1.65;
  }
  .footer-description br.desktop-break {
    display: none;
  }
  .footer-column h3 {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 20px;
  }
  .footer-links li {
    margin: 0;
  }
  .footer-links a {
    font-size: 11px;
  }
  .footer-contact .contact-item {
    gap: 9px;
    margin-bottom: 13px;
  }
  .footer-contact .contact-icon {
    flex-basis: 16px;
    width: 16px;
    height: 16px;
    font-size: 10px;
  }
  .footer-contact a,
  .footer-contact address {
    font-size: 11px;
  }
  .footer-bottom-container {
    width: calc(100% - 40px);
    padding: 12px 0;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .footer-bottom-container p,
  .footer-bottom-container .legal-links {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .footer-container,
  .footer-bottom-container {
    width: calc(100% - 30px);
  }
  .footer-description {
    font-size: 8px;
  }
  .footer-links a,
  .footer-contact a,
  .footer-contact address {
    font-size: 8px;
  }
}
.back-to-top {
  --size: 58px;
  --progress: 0deg;
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: var(--size);
  height: var(--size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  color: #ffffff;
  background: linear-gradient(135deg, #175baa 0%, #0e868f 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.88);
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  isolation: isolate;
}
.back-to-top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(#ffffff var(--progress), rgba(255, 255, 255, 0.18) var(--progress));
  z-index: -2;
  transition: background 0.08s linear;
}
.back-to-top::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: linear-gradient(135deg, #175baa 0%, #0e868f 100%);
  z-index: -1;
  transition: background 0.3s ease, transform 0.3s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.back-to-top__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  z-index: 2;
}
.back-to-top__arrow {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.back-to-top__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.back-to-top__text {
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
}
.back-to-top:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}
.back-to-top:hover::after {
  transform: scale(0.94);
}
.back-to-top:hover .back-to-top__arrow {
  transform: translateY(-3px);
}
.back-to-top:active {
  transform: translateY(-1px) scale(0.96);
}
.back-to-top:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}
.light-theme .back-to-top {
  color: #173b3f;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12), inset 0 0 0 1px rgba(23, 59, 63, 0.12);
}
.light-theme .back-to-top::before {
  background: conic-gradient(#173b3f var(--progress), rgba(23, 59, 63, 0.14) var(--progress));
}
.light-theme .back-to-top::after {
  background: #ffffff;
}

@media (max-width: 991px) {
  .back-to-top {
    --size: 54px;
    right: 22px;
    bottom: 22px;
  }
}
@media (max-width: 767px) {
  .back-to-top {
    --size: 50px;
    right: 18px;
    bottom: 18px;
  }
  .back-to-top__arrow {
    width: 16px;
    height: 16px;
  }
  .back-to-top__text {
    font-size: 6px;
  }
}
@media (max-width: 480px) {
  .back-to-top {
    --size: 46px;
    right: 70px;
    bottom: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top__arrow,
  .back-to-top::after {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}


/*# sourceMappingURL=style.css.map */