* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Roboto, system-ui, sans-serif;
}

body {
  background: #f7fafc;
  color: #1c2b38;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #103a5d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.navbar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 82px;
  position: relative;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #f6b548;
  color: #0f2f4a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-text strong {
  display: block;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1.05;
  font-weight: 700;
  white-space: nowrap;
}

.brand-text span {
  display: block;
  color: #d8e6f1;
  font-size: 0.9rem;
  line-height: 1.15;
  white-space: nowrap;
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-links li {
  flex-shrink: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f6b548;
  border-bottom-color: #f6b548;
}

/* LANGUAGE */
.nav-language select {
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
}

.nav-language select option {
  color: #1c2b38;
  background: #ffffff;
}

/* BUTTONS */
.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px !important;
  border-radius: 12px;
  border-bottom: none !important;
  font-weight: 700;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff !important;
  background: transparent;
}

.btn-outline:hover {
  border-color: #f6b548;
  color: #f6b548 !important;
  background: rgba(255,255,255,0.04);
}

.btn-primary {
  background: #f6b548;
  color: #0f2f4a !important;
}

.btn-primary:hover {
  background: #ffc768;
}

/* MENU BUTTON */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 5px auto;
  border-radius: 10px;
  background: #ffffff;
  transition: 0.25s ease;
}

/* LARGE TABLET / SMALL LAPTOP */
@media (max-width: 1200px) {
  .brand-text strong {
    font-size: 1.35rem;
  }

  .brand-text span {
    font-size: 0.8rem;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.93rem;
  }

  .btn {
    padding: 0 14px !important;
  }
}

/* IMPORTANT BREAKPOINT:
   switch to mobile earlier so the nav does not crush */
@media (max-width: 1024px) {
  .navbar {
    flex-wrap: wrap;
    padding: 14px 18px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a.active,
  .nav-links a:hover {
    border-bottom-color: rgba(255,255,255,0.08);
    color: #f6b548;
  }

  .nav-language {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-language select {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    margin-top: 10px;
  }

  .btn-outline,
  .btn-primary {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .navbar {
    min-height: 74px;
    padding: 12px 14px;
    gap: 12px;
  }

  .brand {
    gap: 10px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.92rem;
  }

  .brand-text strong {
    font-size: 1rem;
    white-space: normal;
  }

  .brand-text span {
    font-size: 0.7rem;
    white-space: normal;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

/* EXTRA SMALL */
@media (max-width: 420px) {
  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text span {
    font-size: 0.66rem;
  }

  .navbar {
    padding: 10px 12px;
  }
}