footer {
  background: #082543;
  border-top: 3px solid var(--gold);
  padding: 3rem 2rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  align-items: start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-logo-img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
}
.footer-brand-name {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.1;
}
.footer-name-main {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-name-sub {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-tagline {
  color: var(--silver);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.18);
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s, box-shadow 0.18s;
}
.footer-socials a:hover {
  background: var(--gold);
  color: var(--dark-navy);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(248,168,29,0.3);
}
.footer-socials a svg {
  display: block;
  flex-shrink: 0;
}
.footer-col h4 {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul li a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-contact h4 {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--silver);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact-item .fc-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.footer-contact-item a {
  color: var(--silver);
  text-decoration: none;
}
.footer-contact-item a:hover {
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(156, 166, 176, 0.2);
  padding: 1.2rem 0;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom p {
  color: var(--silver);
  font-size: 0.82rem;
}
.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
}
.nav-logo-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 0;
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 2rem 1.5rem 0;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-logo-img {
    width: 150px;
    height: 150px;
  }
  .footer-name-main {
    font-size: 1.1rem;
  }
  .footer-name-sub {
    font-size: 0.6rem;
  }
  .footer-tagline {
    font-size: 0.8rem;
  }
  .footer-socials a {
    width: 34px;
    height: 34px;
  }
  .footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .footer-col ul {
    gap: 0.6rem;
  }
  .footer-col ul li a {
    font-size: 0.85rem;
  }
  .footer-contact h4 {
    font-size: 0.9rem;
  }
  .footer-contact-item {
    font-size: 0.82rem;
  }
  .footer-bottom {
    padding: 1rem 0;
  }
  .footer-bottom p {
    font-size: 0.78rem;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  footer {
    padding: 2.5rem 2rem 0;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    padding-bottom: 2.2rem;
  }
  .footer-logo-img {
    width: 180px;
    height: 180px;
  }
  .footer-brand-name {
    font-size: 1.05rem;
  }
  .footer-tagline {
    font-size: 0.82rem;
  }
  .footer-col h4 {
    font-size: 0.92rem;
  }
  .footer-col ul li a {
    font-size: 0.87rem;
  }
  .footer-contact-item {
    font-size: 0.85rem;
  }
  .footer-bottom p {
    font-size: 0.8rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  footer {
    padding: 2.8rem 2.5rem 0;
  }
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
  .footer-logo-img {
    width: 190px;
    height: 190px;
  }
  .footer-brand-name {
    font-size: 1.1rem;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  footer {
    padding: 3rem 2rem 0;
  }
  .footer-inner {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
  }
  .footer-logo-img {
    width: 210px;
    height: 210px;
  }
}
@media (min-width: 1441px) {
  footer {
    padding: 3.5rem 2rem 0;
  }
  .footer-inner {
    max-width: 1300px;
    gap: 3rem;
  }
  .footer-logo-img {
    width: 230px;
    height: 230px;
  }
  .footer-bottom {
    max-width: 1300px;
  }
}
