:root {
  --accent: #c62828;
  --accent-dark: #a21f1f;
  --muted: #e9e9e9;
  --text: #222;
  --max-width: 1100px;
  --radius: 8px;
  --container-padding: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  line-height: 1.45;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.header {
  position: absolute;
  width: 100%;
}

.header-mobile {
  display: none;
}

.header .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .site-logo {
    max-width: 100%;
    height: 8rem;
    object-fit: cover;
}


.header .topbar .nav {
  display: flex;
  gap: 18px;
  align-items: center;

  border-radius: 40px;
  background-color: #FFFFFF;
  opacity: 0.6;
  padding: 10px 30px;
}

.header .topbar .nav a {
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.header .topbar .nav a:hover {
  text-decoration: none;
}


.lang {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  background: linear-gradient(180deg, rgba(1, 70, 93, 0.85), rgba(1, 70, 93, 0.65)),
    url('img/hero-bg.jpg') center/cover no-repeat;
    min-height: 725px;
}

.hero-copy {
  flex: 1;
}

.hero-copy .title {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero-copy .branch {
  color: #FFF;
  font-family: Inter;
  font-size: 44px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.hero-copy a {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;

  border-radius: 9px;
  background: #D11934;
  border: none;
  padding: 0.7rem 2rem;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.stats-section {
  background: #EAEAEA;
  padding: 70px 0;
}

.stats-wrap {
  display: flex;
  gap: 30px;
  align-items: center;
}

.stats-left {
  flex: 1;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stats-left img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.stat {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: #fff;
  border: 2px dashed #d6d6d6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat strong {
  font-size: 20px;
}

.stat small {
  display: block;
  opacity: 0.6;
  margin-top: 6px;
}

.stats-right {
  flex: 1;
  padding-left: 20px;
}

.stats-right .motto {
  color: #5E5E5E;
  font-family: "Open Sans";
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-bottom: 2px solid #122A4B;
}

.stats-right h2 {
  color: #CC1010;
  font-family: "Open Sans";
  font-size: 29px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.stats-right p {
  color: #000;
  font-family: "Open Sans";
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.stats-right a {
  color: #000;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #D9D9D9;

  padding: 0.7rem 1rem 0.7rem 0.3rem;
  border: none;
}

.cta {
  position: relative;
  color: #fff;
  padding: 56px 0;

  background: linear-gradient(180deg, rgba(198, 40, 40, 0.95), rgba(162, 31, 31, 0.95)),
    url('img/cta-bg.jpg') center/cover no-repeat;
    min-height: 474px;
    opacity: 0.6;
}

.cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta .cta-title {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.cta .cta-text {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.cta .btn {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  background-color: transparent;

  border-radius: 16px;
  border: 2px solid #FFF;
  padding: 0.7rem 3rem;

  transition: all 0.3s ease;
}

.cta .btn:hover {
  background-color: rgb(158, 32, 32);
  border-color: transparent;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 30px 0;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  min-height: 140px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.subfooter {
  background: #122A4B;
}

.subfooter .company-details,
.subfooter .company-info,
.subfooter .company-social {
  color: #FFFFFF;
}

.subfooter .company-details .subfooter-logo .site-logo {
  max-width: 94px;
}

.subfooter .company-info {
  display: flex;
  flex-direction: column;
}

.subfooter .company-info span a {
  color: #FFFFFF;
}

.subfooter .company-info span a:hover {
  text-decoration: none;
}

.subfooter .company-social a {
  font-size: 2rem;
  color: #FFFFFF;
}

.subfooter .company-social a:hover {
  text-decoration: none;
}

.footer {
  background: #122A4B;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #666;
}

.footer .copyright {
  color: #9CA3AF;
  text-align: right;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}

.espa-button {
  position: fixed;
  bottom: 10px;
  border: none;
  padding: 0;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-wrap {
    flex-direction: column;
  }

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

@media (max-width: 991px) {
  .header {
    position: relative;
  }
  
  .header .logo a img {
    height: 5rem;
    object-fit: contain;
  }

  .hero-inner {
    min-height: auto;
    padding: 2rem 0;
  }

  .stats-section .stats-right {
    margin-top: 1rem;
  }

  .subfooter {
    text-align: center;
  }

  .subfooter .company-details,
  .subfooter .company-info,
  .subfooter .company-social {
    margin-bottom: 1rem;
  }

  .espa-button {
    img {
      max-width: 12rem;
      height: auto;
    }
  }

  .footer .copyright {
    text-align: center;
  }
}
