/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : Mar 8, 2026, 4:59:32 PM
    Author     : etoile
*/

.footers {
  background: linear-gradient(135deg, #0d3e6a, #072d4d);
  color: #fff;
  padding: 70px 20px 30px;
  font-family: 'STC Forward Regular', sans-serif;
  text-align: start;
}

.containers {
  max-width: 1350px;
  margin-inline: auto;
}

/* GRID */

.footers-contents {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}

/* HEADINGS */

.footers-sections h3,
.footers-sections h4 {
  font-weight: 600;
  margin-bottom: 22px;
}

.footers-sections h3 {
  font-size: 22px;
  color: #fff;
}

.footers-sections h4 {
  font-size: 18px;
  opacity: 0.9;
  color: #fff;
}

/* TEXT */

.footers-sections.companys p {
  line-height: 1.8;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
}

/* LINKS */

.footers-sections ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footers-sections ul li {
  margin-bottom: 12px;
}

.footers-sections ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  transition: 0.3s ease;
  display: inline-block;
}

.footers-sections ul li a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* CONTACT */

.contacts-infos {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacts-infos li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.contacts-infos i {
  font-size: 14px;
  min-width: 18px;
}

/* BOTTOM */

.footers-bottoms {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.footers-bottoms p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-top: 15px;
}

/* SOCIAL */

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 40px;
  block-size: 40px;
  margin-inline: 6px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #0d3e6a;
  transform: translateY(-4px);
}

/* RESPONSIVE */

@media (max-width: 1100px) {

  .footers-contents {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .footers-contents {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footers {
    padding: 55px 20px;
  }

  .footers-bottoms {
    margin-top: 40px;
  }

}

/* LIGHTBOX FIX */

.w-lightbox-frame,
.w-lightbox-embed {
  width: 100vw;
  height: 100vh;
}

.w-lightbox-content {
  height: 100vh;
  margin: 0;
}   