footer a {
  text-decoration: none;
  color: inherit;
}
footer ul {
  list-style: none;
}
footer .container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}
footer .section {
  position: relative;
  width: 100%;
}

footer .site-footer {
  background: #FAF9F6;
  border-top: 1px solid #E6E8EB;
}
footer .footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}
footer .footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 30px;
  color: #0B2341;
  line-height: 1;
  margin-bottom: 6px;
}
footer .footer-brand .logo-sub {
  font-size: 11px;
  letter-spacing: .32em;
  color: #C6A25A;
  font-weight: 700;
  margin-bottom: 22px;
}
footer .footer-brand p {
  color: #6B7280;
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 26px;
}
footer .social-row {
  display: flex;
  gap: 12px;
}
footer .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #E6E8EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B2341;
  transition: all .25s ease;
}
footer .social-icon svg {
  width: 18px;
  height: 18px;
}
footer .social-icon:hover {
  background: #0B2341;
  border-color: #0B2341;
  color: #fff;
  transform: translateY(-3px);
}
footer .footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #0B2341;
  text-transform: uppercase;
  margin-bottom: 14px;
  padding-bottom: 14px;
  position: relative;
}
footer .footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #C6A25A;
}
footer .footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer .footer-col ul li a {
  font-size: 14.5px;
  color: #2B2F33;
  transition: color .2s ease;
}

footer .footer-col ul li a:hover {
  color: #C6A25A;
}
footer .view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: #C6A25A !important;
}
footer .view-all-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
footer .view-all-link:hover svg {
  transform: translateX(4px);
}
footer .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
footer .footer-contact-item svg {
  width: 17px;
  height: 17px;
  color: #0B2341;
  flex-shrink: 0;
  margin-top: 2px;
}
footer .footer-contact-item span {
  font-size: 14.5px;
  color: #2B2F33;
  line-height: 1.5;
}
footer .footer-demo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 700;
  color: #C6A25A;
}
footer .footer-demo-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}
footer .footer-demo-link:hover svg {
  transform: translateX(4px);
}

footer .footer-trust {
  border-top: 1px solid #E6E8EB;
  padding: 12px 0;
}
footer .trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
footer .trust-row span {
  font-size: 14.5px;
  color: #0B2341;
  font-weight: 500;
  position: relative;
  padding-right: 32px;
}
footer .trust-row span:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: #E6E8EB;
}

footer .footer-bottom {
  background: #f4f4f4;
  border-top: 1px solid #E6E8EB;
  padding:25px 0;
}
footer .bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
footer .bottom-row .copyright {
  font-size: 13.5px;
  color: #2B2F33;
}
footer .bottom-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  color: #2B2F33;
}
footer .bottom-links a:hover {
  color: #C6A25A;
}
footer .bottom-links .sep {
  color: #E6E8EB;
}

@media (max-width: 1100px) {
  footer .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 800px) {
  footer .trust-row {
    gap: 16px;
  }
  footer .trust-row span {
    padding-right: 16px;
  }
}

@media (max-width: 768px) {
  footer .container {
    padding: 0 20px;
  }
  footer .footer-main {
    padding: 50px 0 48px;
  }
}

@media (max-width: 767px) {
    footer .footer-main {
        grid-template-columns: auto;
    }
}

@media (max-width: 600px) {
  footer .bottom-row {
    justify-content: center;
    text-align: center;
  }
  footer .footer-brand p {
    max-width: 100%;
    margin-bottom: 25px;
  }
}

@media (max-width: 414px) {
  footer .container {
    padding: 0 15px;
  }
  footer .footer-main {
    padding: 40px 0 40px;
  }
  footer .footer-bottom {
    padding: 15px 0;
  }
  footer .bottom-row {
    gap: 10px;
  }
  footer .trust-row {
    gap: 7px;
  }
}




.footer-color-link
{
  font-size:14.5px;
  color: #2B2F33;
  transition: color .2s ease;
}
.footer-color-link a
{
  font-size: 14.5px;
  color: #2B2F33;
  transition: color .2s ease;
}
.footer-color-link a:hover
{
  font-size: 14.5px;
  color: #C6A25A;
  transition: color .2s ease;
}