*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* footer css */
.site-footer{
  background: var(--dark);
  font-family: var(--font-body);
  color: #ffffff;
}
.site-footer *{ box-sizing: border-box; }
.site-footer a{ text-decoration: none; color: inherit; }

.footer-top{ padding: 80px 80px 50px; }
.footer-inner{
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-heading{
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #ffffff;
}
.footer-text{
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 300px;
}

.footer-subheading{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
  color: #ffffff;
}

.footer-links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a{
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease;
}
.footer-links a:hover{ color: var(--blue); }

.footer-gallery{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 22px;
}
.footer-gallery-thumb{
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.footer-gallery-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-newsletter{
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 5px 5px 5px 18px;
  margin-bottom: 10px;
}
.footer-newsletter input{
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 13.5px;
  font-family: var(--font-body);
}
.footer-newsletter input::placeholder{ color: rgba(255,255,255,0.45); }
.footer-newsletter button{
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.footer-newsletter-note{
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom-inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 26px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: #ffffff;
}

.footer-contact{
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-contact a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.footer-contact a:hover{ color: var(--blue); }

.footer-socials{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-socials a{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background 0.2s ease;
}
.footer-socials a:hover{ background: var(--blue); }

.footer-copy{
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  padding: 18px 80px 26px;
}

@media (max-width: 980px){
  .footer-inner{ grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top{ padding: 60px 40px 40px; }
  .footer-bottom-inner{ padding: 24px 40px; flex-direction: column; align-items: flex-start; }
  .footer-copy{ padding: 16px 40px 24px; text-align: left; }
}
@media (max-width: 560px){
  .footer-inner{ grid-template-columns: 1fr; gap: 34px; }
  .footer-top{ padding: 50px 20px 36px; }
  .footer-bottom-inner{ padding: 20px 20px; }
  .footer-copy{ padding: 14px 20px 20px; }
}

.footer-links a{
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.footer-col h4{
  font-size: larger;
}

