/* ════════════════════════════════
   Reset & Base
════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', serif;
  background: #fff;
  color: #1a1a1a;
}

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

.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 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ════════════════════════════════
   Shared Buttons
════════════════════════════════ */
.btn-link { text-decoration: none; }

.btn {
  border: 2px solid #004AAD;
  border-radius: 12px;
  background: transparent;
  color: #004AAD;
  padding: 9px 20px;
  font-size: 18px;
  font-family: 'Arial', sans-serif;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.btn:hover { background-color: #004AAD; color: #fff; }

.btn--filled { background: #004AAD; color: #fff; border: 2px solid #004AAD; }
.btn--filled:hover { background: #003080; border-color: #003080; }

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.header {
  border-bottom: 2px solid #2a2a2a;
  background: #fff;
  padding: 5px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #e5e5e5
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo__img {
  width: 150px; height: 150px;
  object-fit: fill;
  flex-shrink: 0;
  border-radius: 50%;
}

.header__right { display: flex; align-items: center; gap: 16px; }

.nav { display: flex; align-items: center; flex-wrap: wrap; gap: 2px; }

.nav-link {
  padding: 7px 10px;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-family: 'Arial', sans-serif;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover { color: #004AAD; text-decoration: underline; }

.nav-link--active { color: #004AAD; font-weight: 700; text-decoration: underline; }

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer { border-top: 1.5px solid #e0e0e0; padding: 60px 0 0; background: #fff; }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: none;
}

.footer__divider {
  border: none;
  border-top: 1.5px solid #e0e0e0;
  margin: 0;
  width: 100%;
}

.footer__brand   { font-size: 1.15rem; font-weight: 800; font-family: 'Georgia', serif; margin-bottom: 10px; }
.footer__tagline { font-size: 0.82rem; color: #555; margin-bottom: 14px; line-height: 1.5; }
.footer__desc    { font-size: 0.82rem; color: #555; line-height: 1.7; }

.footer__nav-title { font-size: 0.88rem; font-weight: 700; margin-bottom: 16px; font-family: 'Arial', sans-serif; }
.footer__nav-list  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__nav-list a { text-decoration: none; font-size: 0.82rem; color: #555; transition: color 0.2s; line-height: 1.5; }
.footer__nav-list a:hover { color: #004AAD; }

.footer__contact-list  { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.footer__contact-item  { display: flex; align-items: flex-start; gap: 10px; }

.footer__contact-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #555; margin-top: 1px;
}

.footer__contact-item > div { display: flex; flex-direction: column; gap: 2px; }

.footer__contact-main { font-size: 0.82rem; font-weight: 600; color: #1a1a1a; line-height: 1.4; text-decoration: none; }
.footer__contact-main:hover { color: #004AAD; }
.footer__contact-sub  { font-size: 0.76rem; color: #888; line-height: 1.4; }

.footer__bottom {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px; padding: 28px 0 32px; text-align: center;
}

.footer__copy  { font-size: 0.82rem; color: #888; }
.footer__legal { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__legal a { font-size: 0.82rem; color: #555; text-decoration: none; transition: color 0.2s; }
.footer__legal a:hover { color: #004AAD; }

.footer__badge {
  border: 1.5px solid #ccc; border-radius: 8px; background: transparent;
  color: #555; padding: 8px 20px; font-size: 0.82rem;
  font-family: 'Arial', sans-serif; cursor: default;
}

/* ════════════════════════════════
   RESPONSIVE — shared (styles.css)

   1400px+  ultra-wide desktop
   1200px   standard desktop (base)
   1024px   small desktop / landscape tablet
    768px   tablet portrait
    480px   large phone
    360px   small phone
════════════════════════════════ */

/* ── 1400px+: wide screens ── */
@media (min-width: 1400px) {
  .container { max-width: 1360px; }
}

/* ── 1024px: small desktop ── */
@media (max-width: 1024px) {
  .container     { padding: 0 32px; }
  .logo__img     { width: 72px; height: 72px; }
  .nav-link      { font-size: 14px; padding: 6px 8px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__info  { grid-column: 1 / -1; }
}

/* ── Burger button (hidden on desktop) ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 101;
}

.burger span {
  display: block;
  width: 24px; height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

/* Animate to X when open */
.burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--open span:nth-child(2) { opacity: 0; }
.burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border-bottom: 0px solid #2a2a2a;
  box-shadow: none;
  padding: 0;
  gap: 4px;
  transition: max-height 0.3s ease, padding 0.3s ease,
              box-shadow 0.3s ease, border-bottom 0.3s ease;
  display: flex;
}

.mobile-menu--open {
  max-height: 400px;
  padding: 12px 24px 20px;
  border-bottom: 2px solid #2a2a2a;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-menu .nav-link {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: block;
}

.mobile-menu .nav-link:last-of-type { border-bottom: none; }

.mobile-menu__cta { margin-top: 12px; display: flex; }
.mobile-menu__cta .btn { width: 100%; text-align: center; }

/* ── 768px: tablet portrait ── */
@media (max-width: 768px) {
  .container          { padding: 0 24px; }
  .header-wrapper     { flex-wrap: nowrap; align-items: center; }
  .header__right      { display: none; }
  .burger             { display: flex; }
  .logo__img          { width: 58px; height: 58px; }
  .footer__inner      { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ── 480px: large phone ── */
@media (max-width: 480px) {
  .container          { padding: 0 16px; }
  .logo__img          { width: 48px; height: 48px; }
  .footer__inner      { grid-template-columns: 1fr; gap: 28px; }
  .footer__legal      { gap: 12px; }
  .mobile-menu--open  { padding: 12px 16px 20px; }
}

/* ── 360px: small phone ── */
@media (max-width: 360px) {
  .container          { padding: 0 12px; }
  .nav-link           { font-size: 11px; padding: 4px 5px; }
}