/* ============================================================
   VARIABLES (compiled from SCSS)
   ============================================================ */

/* Colors
   $main-azure:       #027C94
   $secondary-azure:  #22A1BA
   $blue:             #2ABEDB
   $dark-blue:        #004265
   $light-azure:      #D9EDF0
   $light-azure-2:    #EFF9FA
   $dark-text:        #001A28
   $white:            #FFFFFF
   $dark-15:          #D9DDDF
   $dark-30:          #B3BBBF
   $dark-60:          #66767E
*/

/* ============================================================
   RESET & BASE
   ============================================================ */

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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100%;
  overflow: hidden;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #001A28;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

#main-content {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms ease-out;
}

a:hover {
  color: #027C94;
}

a:focus-visible {
  outline: 2px solid #027C94;
  outline-offset: 3px;
  border-radius: 3px;
}

button {
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  border: none;
  background: none;
}

button:focus-visible {
  outline: 2px solid #027C94;
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   CONTAINER
   ============================================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 60px;
  }
}

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

.header {
  position: relative;
  flex-shrink: 0;
  z-index: 50;
  background-color: #FFFFFF;
  box-shadow: 0 1px 0 #D9DDDF;
  padding: 16px 0;
}

@media (min-width: 768px) {
  .header {
    padding: 26px 0;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  width: 160px;
  height: auto;
}

@media (min-width: 768px) {
  .header__logo img {
    width: 220px;
  }
}

@media (min-width: 1024px) {
  .header__logo img {
    width: 260px;
  }
}

.header__info {
  display: none;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 768px) {
  .header__info {
    display: flex;
  }
}

.header__hours {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #66767E;
}

.header__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.header__contact-item {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: #001A28;
  white-space: nowrap;
}

.header__contact-item span {
  color: #66767E;
  font-weight: 400;
}

.header__contact-item a {
  color: #027C94;
  font-weight: 700;
  transition: color 200ms ease-in;
}

.header__contact-item a:hover {
  color: #004265;
}

.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 6px;
  transition: background-color 200ms ease-in;
}

@media (min-width: 768px) {
  .header__burger {
    display: none;
  }
}

.header__burger:hover {
  background-color: #EFF9FA;
}

.header__burger span {
  display: block;
  height: 2px;
  background-color: #001A28;
  border-radius: 2px;
  transition: transform 300ms ease-out, opacity 300ms ease-out;
}

.header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 51;
  padding: 16px 20px 20px;
  border-top: 1px solid #D9DDDF;
  background-color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 26, 40, 0.12);
}

.header__mobile-menu.is-open {
  display: block;
}

@media (min-width: 768px) {
  .header__mobile-menu {
    display: none !important;
  }
}

.header__mobile-hours {
  font-size: 12px;
  color: #66767E;
  margin-bottom: 10px;
}

.header__mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.header__mobile-item {
  font-size: 14px;
  color: #001A28;
}

.header__mobile-item span {
  color: #66767E;
}

.header__mobile-item a {
  color: #027C94;
  font-weight: 700;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  flex: 1 1 auto;
  min-height: 0;
  background: url('images/banner.png') center center / cover no-repeat;
  padding: 24px 0;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 26, 40, 0.35);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__headline {
  width: 100%;
  font-size: clamp(28px, 5vw + 1rem, 72px);
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}

.hero__headline em {
  font-style: normal;
  color: #2ABEDB;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  transition: background-color 200ms ease-in, transform 200ms ease-in, box-shadow 200ms ease-in;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98);
}

.btn:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 3px;
}

.btn--primary {
  background-color: #2ABEDB;
  color: #004265;
  box-shadow: 0 4px 16px rgba(42, 190, 219, 0.35);
}

.btn--primary:hover {
  background-color: #52ccE4;
  box-shadow: 0 6px 24px rgba(42, 190, 219, 0.45);
  color: #004265;
}

.btn--outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

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

.footer {
  flex-shrink: 0;
  border-top: 1px solid #D9DDDF;
  background-color: #FFFFFF;
  padding: 24px 0;
}

@media (min-width: 768px) {
  .footer {
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: 40px 0;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__logo img {
  width: 160px;
  height: auto;
}

@media (min-width: 768px) {
  .footer__logo img {
    width: 200px;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__address,
.footer__company {
  font-size: 14px;
  line-height: 1.5;
  color: #66767E;
}

.footer__company {
  font-size: 12px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__headline {
  animation: fadeInUp 0.7s ease-out both;
}

@media (prefers-reduced-motion: reduce) {
  .hero__headline {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
