*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
    scrollbar-gutter:stable;
}

body{
    margin:0;
    overflow-y:scroll;
}

/* FOOTER */
.footer {
  background: #111827;
  color: #E5E7EB;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(234,133,52,0.10),
    transparent 70%
  );
  pointer-events: none;
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 50px;
  padding: 0 20px;

  position: relative;
  z-index: 2;
}

/* LOGO */
.footer-logo img {
  filter: brightness(75);
  height: 60px;
  margin-bottom: 15px;
  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-logo img:hover {
  transform: scale(1.03);
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: #9CA3AF;
}

/* MINI STATS */
.footer-stats {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-stats span {
  background: rgba(75, 35, 100, 0.15);
  border: 1px solid rgba(75, 35, 100, 0.25);

  color: #E5E7EB;

  padding: 6px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-stats span:hover {
  background: rgba(75, 35, 100, 0.25);
}

/* HEADINGS */
.footer-col h3 {
  color: #FFFFFF;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.footer-col h3::after {
  content: "";
  width: 45px;
  height: 3px;

  background: linear-gradient(
    135deg,
    #EA8534,
    #A0111A
  );

  border-radius: 50px;

  position: absolute;
  bottom: -6px;
  left: 0;
}

/* LINKS */
.footer-col a {
  display: block;

  color: #D1D5DB;
  text-decoration: none;

  margin: 10px 0;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* HOVER */
.footer-col a:hover {
  color: #EA8534;
  transform: translateX(6px);
}

/* SOCIAL */
.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-block;

  width: 40px;
  height: 40px;
  line-height: 40px;

  text-align: center;
  border-radius: 50%;

  margin-right: 10px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);

  color: #FFFFFF;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* THEME HOVER */
.socials a:hover {
  background: linear-gradient(
    135deg,
    #EA8534,
    #A0111A
  );

  border-color: transparent;

  transform: translateY(-4px);

  box-shadow: 0 8px 20px rgba(234,133,52,0.30);
}

/* CONTACT ICONS */
.footer-col p {
  color: #9CA3AF;
}

.footer-col p i {
  background: linear-gradient(
    135deg,
    #EA8534,
    #A0111A
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  margin-right: 8px;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;

  padding: 25px;
  margin-top: 50px;

  border-top: 1px solid rgba(255,255,255,0.08);

  font-size: 14px;
  color: #9CA3AF;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;

  flex-wrap: wrap;
  gap: 10px;
}

/* BOTTOM LINKS */
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: #9CA3AF;
  text-decoration: none;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
}

/* DIVIDER */
.footer-links a::after {
  content: "•";
  margin-left: 16px;
  color: rgba(255,255,255,0.25);
}

.footer-links a:last-child::after {
  content: "";
}

/* HOVER */
.footer-links a:hover {
  color: #EA8534;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

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