:root {
  --blue: #005aa8;
  --blue-dark: #003763;
  --orange: #ff8c38;
  --orange-soft: rgba(255, 140, 56, 0.16);
  --blue-soft: #eaf6ff;
  --ink: #13223a;
  --muted: #53647d;
  --line: #cfe3f5;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 56, 104, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #f7fbff;
}

[id] {
  scroll-margin-top: 116px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 100px;
  padding: 14px 44px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 18px rgba(0, 34, 70, 0.08);
}

.brand img {
  width: 138px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 34px 0;
}

.checkin-nav {
  min-height: auto;
  padding: 34px 0 !important;
  border: 0;
  border-radius: 0;
  color: inherit !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: transparent;
  box-shadow: none;
}

.checkin-nav::after {
  display: block !important;
}

.checkin-nav:hover {
  transform: none;
  box-shadow: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
}

.language-switch a.active {
  color: var(--blue);
}

.language-switch span:not([aria-hidden]) {
  width: 1px;
  height: 18px;
  background: #b7c8d8;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 425px;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero > img {
  width: 100%;
  height: 425px;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: 425px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.02);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 45, 82, 0.92), rgba(0, 78, 134, 0.55) 34%, rgba(0, 0, 0, 0.05) 72%);
}

.hero-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(620px, 100%);
  padding: 50px 44px 24px;
  color: var(--white);
}

.hero h1 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1.08;
}

.hero p {
  max-width: 520px;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #0b93e5, var(--blue) 56%, var(--orange));
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 18px;
  max-width: 620px;
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
}

.hero-metrics a {
  display: grid;
  align-content: start;
  min-height: 88px;
  padding: 10px 12px;
  line-height: 1.28;
  border: 1px solid rgba(255, 192, 148, 0.5);
  background: linear-gradient(135deg, rgba(11, 147, 229, 0.42), rgba(0, 90, 168, 0.5) 58%, rgba(255, 140, 56, 0.36));
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.hero-metrics a::before {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 7px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 140, 56, 0.95) 0 4px, transparent 5px 100%);
  content: "";
}

.hero-metrics a:hover {
  border-color: rgba(255, 183, 136, 0.9);
  background: linear-gradient(135deg, rgba(11, 147, 229, 0.55), rgba(0, 90, 168, 0.62) 54%, rgba(255, 140, 56, 0.5));
  transform: translateY(-1px);
}

.hero-metrics a:focus-visible {
  outline: 2px solid rgba(255, 140, 56, 0.95);
  outline-offset: 2px;
}

.hero-actions {
  position: absolute;
  right: clamp(18px, 4vw, 34px);
  bottom: 24px;
  z-index: 3;
  display: grid;
  justify-items: stretch;
  gap: 12px;
}

.whatsapp-hero,
.checkin-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  min-height: 58px;
  padding: 0 26px;
  border: 2px solid rgba(255, 191, 152, 0.9);
  border-radius: 12px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(11, 147, 229, 0.86), rgba(0, 90, 168, 0.9) 56%, rgba(255, 140, 56, 0.85));
  box-shadow: 0 14px 34px rgba(3, 40, 78, 0.42), 0 0 0 2px rgba(255, 140, 56, 0.26) inset;
  backdrop-filter: blur(1px);
}

.whatsapp-hero {
  gap: 10px;
  min-width: 172px;
  min-height: 44px;
  justify-self: end;
  padding: 0 18px;
  border-color: rgba(186, 255, 211, 0.92);
  font-size: 16px;
  background: linear-gradient(135deg, rgba(49, 211, 102, 0.96), rgba(18, 154, 74, 0.96) 62%, rgba(9, 117, 57, 0.96));
  box-shadow: 0 14px 34px rgba(0, 73, 38, 0.4), 0 0 0 2px rgba(144, 255, 181, 0.22) inset;
}

.whatsapp-hero svg {
  width: 23px;
  height: 23px;
  fill: #fff;
}

.whatsapp-hero:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 73, 38, 0.46), 0 0 0 1px rgba(186, 255, 211, 0.35) inset;
}

.checkin-hero:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(3, 40, 78, 0.45), 0 0 0 1px rgba(255, 140, 56, 0.35) inset;
}

.section {
  padding: 30px 44px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.section h2,
.about h2,
.footer h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
}

.section h2::after,
.about h2::after {
  display: block;
  width: 64px;
  height: 3px;
  margin: 8px auto 0;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

.about h2::after {
  margin-left: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.services,
.cold-rooms,
.tech-cert,
.footer {
  background: linear-gradient(90deg, #f4fbff, #fff 50%, #f4fbff);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
}

.service-grid article {
  min-height: 170px;
  padding: 14px 28px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.service-grid article:last-child {
  border-right: 0;
}

.service-grid svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h3 {
  margin: 0 0 10px;
  color: #063c75;
  font-size: 14px;
  text-transform: uppercase;
}

.service-grid p,
.about p,
.footer p,
.footer a,
.footer span,
address {
  font-size: 14px;
  line-height: 1.55;
}

.service-grid p {
  margin: 0;
  color: #2f4056;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.room-grid article {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(0, 90, 168, 0.26);
  background: linear-gradient(155deg, #e9f5ff, rgba(255, 140, 56, 0.14));
}

.room-grid b {
  color: #063c75;
  font-size: 13px;
  text-transform: uppercase;
}

.room-grid strong {
  color: var(--blue);
  font-size: 30px;
}

.room-grid span {
  color: var(--blue);
  font-size: 24px;
}

.why-choose {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.why-carousel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 90, 168, 0.18);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.why-stage {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.why-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  background: var(--white);
}

.why-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  animation: why-slide-in 920ms ease both;
}

.why-slide.is-leaving {
  z-index: 1;
  animation: why-slide-out 920ms ease both;
}

.why-slide img,
.why-slide video {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.why-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  padding: 42px;
  background: linear-gradient(135deg, #fff, #eef8ff);
}

.why-copy span {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--blue), var(--orange));
}

.why-copy h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.05;
  text-transform: uppercase;
}

.why-copy p {
  margin: 0;
  color: #2f4056;
  font-size: 17px;
  line-height: 1.55;
}

.why-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  background: rgba(0, 55, 99, 0.68);
  transform: translateY(-50%);
  cursor: pointer;
}

.why-arrow:hover {
  background: rgba(0, 90, 168, 0.95);
}

.why-arrow-prev {
  left: 16px;
}

.why-arrow-next {
  right: 16px;
}

.why-dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.why-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(0, 55, 99, 0.45);
  cursor: pointer;
}

.why-dot.is-active {
  background: var(--orange);
  transform: scale(1.25);
}

@keyframes why-slide-in {
  from {
    opacity: 0.24;
    transform: translateX(7%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes why-slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-5%);
  }
}

.products {
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.product-grid figure {
  margin: 0;
  text-align: center;
}

.product-grid img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.product-grid figcaption {
  margin-top: 10px;
  color: #063c75;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.more-products {
  margin: 12px 0 0;
  text-align: center;
}

.panorama {
  width: 100%;
  margin: 0;
  background: #fff;
}

.panorama img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

.panorama-copy {
  padding: 18px 44px 30px;
  text-align: center;
  background: #fff;
}

.panorama-copy h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 24px;
  text-transform: uppercase;
}

.panorama-copy p {
  max-width: 980px;
  margin: 0 auto;
  color: #2f4056;
  font-size: 16px;
  line-height: 1.6;
}

.tech-cert {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.split:first-child {
  border-right: 1px solid var(--line);
  padding-right: 26px;
}

.logo-grid {
  display: grid;
  gap: 10px;
}

.software-logos {
  grid-template-columns: repeat(5, 1fr);
}

.cert-logos {
  grid-template-columns: repeat(3, 1fr);
}

.logo-grid article {
  display: grid;
  min-height: 112px;
  place-items: center;
  padding: 8px;
  text-align: center;
  border: 1px solid rgba(0, 90, 168, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.logo-grid article:hover {
  border-color: rgba(255, 140, 56, 0.45);
  box-shadow: 0 8px 20px rgba(255, 140, 56, 0.18);
}

.logo-grid img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

.facility-gallery {
  padding-top: 34px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #f7fbff, #eaf6ff);
}

.gallery-shell {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 90, 168, 0.2);
  border-radius: 16px;
  background: var(--blue-dark);
  box-shadow: 0 18px 44px rgba(0, 56, 104, 0.2);
}

.gallery-stage {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.gallery-slide.is-active {
  z-index: 2;
  opacity: 1;
  animation: gallery-slide-in 900ms ease both;
}

.gallery-slide.is-leaving {
  z-index: 1;
  animation: gallery-slide-out 900ms ease both;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  background: rgba(0, 55, 99, 0.62);
  box-shadow: 0 6px 16px rgba(0, 34, 70, 0.22);
  transform: translateY(-50%);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.gallery-arrow:hover {
  background: rgba(0, 90, 168, 0.9);
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow-prev {
  left: 16px;
}

.gallery-arrow-next {
  right: 16px;
}

.gallery-dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(0, 55, 99, 0.45);
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.gallery-dot.is-active {
  background: var(--orange);
  transform: scale(1.25);
}

@keyframes gallery-slide-in {
  from {
    opacity: 0.28;
    transform: translateX(-7%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gallery-slide-out {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(5%);
  }
}

.about {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-dark);
}

.about > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.about::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 43, 76, 0.96), rgba(0, 73, 125, 0.55));
}

.about-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 36px;
  align-items: start;
  padding: 26px 50px;
}

.about h2 {
  color: var(--white);
}

.about p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-content: start;
}

.about-stats article {
  display: grid;
  min-height: 152px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 16px 14px;
  text-align: center;
  border: 1px solid rgba(255, 200, 164, 0.4);
  background: rgba(0, 86, 146, 0.72);
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow);
}

.about-stats strong {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: capitalize;
}

.about-stats span {
  max-width: 230px;
  font-size: 13px;
  line-height: 1.32;
  text-transform: none;
}

.location-map {
  background: #fff;
  text-align: center;
}

.map-frame {
  max-width: 980px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(8, 44, 78, 0.14);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.compliance {
  position: relative;
  background: linear-gradient(90deg, rgba(0, 90, 168, 0.1), rgba(255, 255, 255, 0.94) 42%, rgba(255, 140, 56, 0.2));
}

.compliance::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #005aa8 0%, #0b93e5 45%, #ff8c38 100%);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1160px;
  margin: 0 auto;
}

.compliance-grid article {
  position: relative;
  min-height: 170px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(0, 90, 168, 0.2);
  border-radius: 8px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.97), rgba(255, 149, 72, 0.2));
  box-shadow: 0 10px 24px rgba(0, 56, 104, 0.1);
}

.compliance-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, #ff8c38, rgba(255, 140, 56, 0.45));
}

.compliance-grid h3 {
  margin-bottom: 8px;
  color: #005aa8;
  letter-spacing: 0;
}

.compliance-grid p {
  margin: 0;
  color: #24384f;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-section {
  position: relative;
  background: linear-gradient(90deg, rgba(0, 90, 168, 0.1), rgba(255, 255, 255, 0.94) 42%, rgba(255, 140, 56, 0.2));
}

.contact-form-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #005aa8 0%, #0b93e5 45%, #ff8c38 100%);
}

.contact-form-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  padding: 18px;
  border: 1px solid rgba(0, 90, 168, 0.2);
  border-radius: 8px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.97), rgba(255, 149, 72, 0.2));
  box-shadow: 0 10px 24px rgba(0, 56, 104, 0.1);
}

.form-honey {
  display: none !important;
}

.contact-form label {
  align-self: end;
  color: #005aa8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

#form-title {
  font-family: "Trebuchet MS", "Segoe UI", "Avenir Next", sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

#form-title::after {
  width: 74px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0, 90, 168, 0.25);
  border-radius: 6px;
  color: #18314f;
  font-size: 14px;
  background: #fff;
}

.contact-form label[for="cf-message"] {
  grid-column: 1 / -1;
}

.contact-form textarea {
  grid-column: 1 / -1;
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, #0b93e5, #005aa8 56%, #ff8c38);
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1.1fr 1.1fr 0.8fr;
  gap: 46px;
  padding: 28px 48px 18px;
}

.footer img {
  width: 138px;
  margin-bottom: 12px;
}

.footer h2 {
  font-size: 15px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 34px;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, #0b93e5, var(--blue));
}

.facebook-icon svg {
  width: 34px;
  height: 34px;
}

.facebook-icon circle {
  fill: #1877f2;
}

.facebook-icon path {
  fill: #fff;
}

.socials a:nth-child(2) {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
}

.instagram-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.panorama-copy {
  border-top: 2px solid rgba(255, 140, 56, 0.4);
}

.panorama-copy h2,
#map-title,
#reviews-title,
#compliance-title {
  color: var(--blue);
}

.panorama-copy h2::after,
#map-title::after,
#compliance-title::after {
  display: block;
  width: 66px;
  height: 3px;
  margin: 8px auto 0;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--orange));
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 150px auto auto;
    padding: 12px 22px;
  }

  .main-nav {
    gap: 14px;
  }

  .room-grid,
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tech-cert,
  .about-content,
  .footer {
    grid-template-columns: 1fr;
  }

  .split:first-child {
    border-right: 0;
    padding-right: 0;
  }

  .about {
    min-height: 0;
    overflow: visible;
  }

  .about > img {
    height: 360px;
  }

  .about-content {
    position: relative;
    inset: auto;
    margin-top: -360px;
    padding: 22px;
    gap: 16px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 94px;
  }

  [id] {
    scroll-margin-top: 94px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .brand img {
    width: 126px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .language-switch {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .language-switch {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-top: 10px;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
  }

  .main-nav a::after {
    bottom: 6px;
    transform-origin: left;
  }

  .hero,
  .hero > img,
  .hero-video {
    min-height: 520px;
    height: 520px;
  }

  .hero-panel {
    justify-content: flex-end;
    padding: 28px 24px;
  }

  .hero-actions {
    right: 16px;
    bottom: 18px;
    gap: 9px;
  }

  .whatsapp-hero,
  .checkin-hero {
    min-width: 160px;
    min-height: 48px;
    font-size: 20px;
  }

  .whatsapp-hero {
    min-width: 148px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .hero-metrics,
  .service-grid,
  .software-logos,
  .cert-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 420px;
    margin-top: 14px;
  }

  .hero-metrics a {
    min-height: auto;
    padding: 10px 12px;
  }

  .service-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .room-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .room-grid article {
    min-height: 84px;
    padding: 10px 8px;
  }

  .room-grid strong {
    font-size: 24px;
  }

  .product-grid img {
    aspect-ratio: 1 / 1;
  }

  .why-stage {
    min-height: 560px;
  }

  .why-slide {
    grid-template-columns: 1fr;
  }

  .why-slide img,
  .why-slide video {
    height: 300px;
  }

  .why-copy {
    min-height: 260px;
    padding: 28px 24px 54px;
  }

  .why-copy p {
    font-size: 15px;
  }

  .products .section-head {
    margin-bottom: 14px;
  }

  .products .more-products {
    margin-top: 8px;
  }

  .section {
    padding-right: 22px;
    padding-left: 22px;
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .section-head h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .section-head p {
    font-size: 15px;
    line-height: 1.5;
  }

  .facility-gallery {
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .gallery-stage {
    aspect-ratio: 16 / 9;
  }

  .about {
    min-height: 0;
    overflow: visible;
  }

  .about > img {
    height: 420px;
  }

  .about-content {
    position: relative;
    inset: auto;
    margin-top: -420px;
    align-content: start;
    padding: 22px;
  }

  .panorama img {
    height: auto;
  }

  .panorama-copy {
    padding: 16px 22px 24px;
  }

  .about-stats article {
    min-height: 120px;
    padding: 14px;
  }

  .about-stats strong {
    font-size: 22px;
  }

  .legal {
    flex-direction: column;
    gap: 8px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-grid article {
    min-height: auto;
    padding: 18px 14px;
  }

  .service-grid p {
    font-size: 15px;
    line-height: 1.45;
  }

  .map-frame iframe {
    height: 360px;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .contact-form button {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 540px) {
  .hero,
  .hero > img,
  .hero-video {
    min-height: 640px;
    height: 640px;
  }

  .hero-panel {
    padding: 22px 20px 118px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 28px;
  }

  .hero p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.4;
  }

  .button {
    min-height: 42px;
    font-size: 13px;
    padding: 0 18px;
  }

  .hero-metrics,
  .service-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    gap: 7px;
    margin-top: 10px;
  }

  .hero-metrics a {
    min-height: 52px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .footer {
    padding-right: 22px;
    padding-left: 22px;
  }

  .panorama img {
    height: auto;
  }

  .panorama-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .section {
    padding: 20px 16px;
  }

  .section-head {
    margin-bottom: 16px;
  }

  .section-head h2 {
    font-size: 25px;
  }

  .section-head p {
    font-size: 14px;
    line-height: 1.42;
  }

  .tech-cert {
    gap: 22px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .software-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .cert-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .logo-grid article {
    min-height: 76px;
    padding: 5px;
  }

  .logo-grid img {
    max-width: 94px;
    max-height: 54px;
  }

  .software-logos span {
    font-size: 10px;
    line-height: 1.15;
  }

  .room-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .room-grid article {
    min-height: 78px;
  }

  .why-carousel {
    border-radius: 12px;
  }

  .why-stage {
    min-height: 438px;
  }

  .why-slide img,
  .why-slide video {
    height: 210px;
  }

  .why-copy {
    min-height: 228px;
    padding: 20px 18px 44px;
  }

  .why-copy span {
    margin-bottom: 10px;
    padding: 5px 9px;
    font-size: 10px;
  }

  .why-copy h3 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .why-copy p {
    font-size: 14px;
    line-height: 1.42;
  }

  .why-arrow {
    width: 34px;
    height: 34px;
    font-size: 26px;
  }

  .why-arrow-prev {
    left: 10px;
  }

  .why-arrow-next {
    right: 10px;
  }

  .why-dots {
    bottom: 10px;
    gap: 6px;
  }

  .why-dot {
    width: 7px;
    height: 7px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .product-grid figcaption {
    font-size: 10px;
    margin-top: 4px;
    line-height: 1.15;
  }

  .map-frame iframe {
    height: 300px;
  }

  .hero-actions {
    right: 16px;
    bottom: 14px;
    gap: 7px;
  }

  .whatsapp-hero,
  .checkin-hero {
    min-width: 124px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 9px;
    font-size: 14px;
  }

  .whatsapp-hero svg {
    width: 18px;
    height: 18px;
  }

  .whatsapp-hero {
    min-width: 118px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 11px;
  }

  .facility-gallery {
    padding: 20px 14px 22px;
  }

  .facility-gallery .section-head {
    margin-bottom: 12px;
  }

  .facility-gallery .section-head h2 {
    font-size: 23px;
  }

  .gallery-shell {
    border-radius: 11px;
  }

  .gallery-stage {
    aspect-ratio: 16 / 10;
  }

  .gallery-arrow {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .gallery-arrow-prev {
    left: 10px;
  }

  .gallery-arrow-next {
    right: 10px;
  }

  .gallery-dots {
    bottom: 10px;
    gap: 4px;
  }

  .gallery-dot {
    width: 6px;
    height: 6px;
  }

  .contact-form {
    padding: 12px;
  }

  .about > img {
    height: 360px;
  }

  .about-content {
    margin-top: -360px;
    padding: 16px;
  }

  .about p {
    font-size: 14px;
    line-height: 1.5;
  }

}

@media (prefers-reduced-motion: reduce) {
  .gallery-slide.is-active,
  .gallery-slide.is-leaving,
  .why-slide.is-active,
  .why-slide.is-leaving {
    animation: none;
  }
}
