
.site-footer{
  background: #ffffff;
  color: #1f2d36;
}

/* Top strip */
.footer-top{
  background: #1b1b1b;
  padding: 16px 0;
}

.footer-top-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-top-text{
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  max-width: 720px;
}



/* Main */
.footer-main{
  padding: 30px 0;
}

.footer-main-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Brand / contact */
.footer-brand-title{
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 600;
  color: #00253c; 
}

.footer-region{
  background: #ffb300;
  color: #00253c;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 900;
  margin-left: 6px;
  display: inline-block;
}

.footer-contact{
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-contact-row{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.footer-icon{
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
}

.footer-icon svg{
  width: 18px;
  height: 18px;
  fill: #000;
  display: block;
}

.footer-contact a{
  color: #3b3b3b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover{
  text-decoration: underline;
}

.footer-brand-rirght{
  display: grid;
    align-items: center;
    place-content: center;
    height: 100%;
}

.footer-brand-rirght img{
  width: 250px;
  height: auto;
}

.footer-rirght-text{
  font-size:16px;
  text-align: left;
  margin-left: -100px;
}

/* Social */
.footer-social{
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.footer-social-link{
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
}

.footer-social-link img{
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

/* Links */
.footer-links-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
    gap: 20px;
}

.footer-links-list li{
  margin: 10px 0;
}

.footer-links-list a{
 color: #ffffffe8;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.footer-links-list a:hover{
     color:#ffb300;
}

.footer-cta-btn{
      text-decoration: none;
      text-align: center;
}

/* Bottom bar */
.footer-bottom{
  background: #101010;
  padding: 20px 0;
}

.footer-bottom-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-copy{
  margin: 0;
  color: #ffffffe8;
  font-size: 14px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px){
.footer-top-text {
    font-size: 18px;
    max-width: 660px;
}

.footer-brand-rirght img{
  width: 200px;
  height: auto;
}
}


@media (max-width: 768px){
  .footer-top-inner{
    flex-direction: column;
    align-items: center;
  }

  .footer-top-text {
    text-align: center;
    max-width: none;
    width: 100%;
}

  .footer-main-inner{
    grid-template-columns: 1fr;
  }

  .footer-cta-btn{
    width: fit-content;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-brand {
    text-align: center;
}

.footer-social {
    justify-content: center;
}

.footer-brand-rirght img{
  width: 200px;
  height: auto;
}
}

@media (max-width: 500px){
.footer-links-list {
    display: block;
}

.footer-links-list li {
    margin: 5px 0;
    text-align: center;
}
}