/* File: public_html/assets/css/base/site_footer.css */
.svx-footer2{
  direction: rtl;
  margin-top: 26px;
  color: #e9f4ff;
}

/* FULL-WIDTH wrap */
.svx-footer2__wrap{
  width: 100%;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  overflow: hidden;

  /* ✅ Vertical gradient: darker (bottom) -> lighter (top) */
  background:
    radial-gradient(1000px 260px at 50% 0%, rgba(127,208,255,.18), transparent 62%),
    linear-gradient(0deg,
      #021f32 0%,
      #073a5a 55%,
      #084273 100%
    );

  border-top: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 -10px 40px rgba(2,31,50,.12), 0 22px 60px rgba(2,31,50,.18);
}

/* Inner container keeps layout clean */
.svx-footer2__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Grid */
.svx-footer2__inner{
  padding: 22px 0 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: start;
}

/* Columns */
.svx-footer2__col{
  min-width: 220px;
}

.svx-footer2__col--right{ text-align: right; }
.svx-footer2__col--left{ text-align: left; }

.svx-footer2__title{
  font-weight: 1000;
  letter-spacing: .2px;
  margin-bottom: 10px;
  color: rgba(233,244,255,.95);
}

.svx-footer2__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.svx-footer2__list a{
  color: rgba(233,244,255,.90);
  text-decoration: none;
  font-weight: 800;
  padding: 6px 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: opacity .15s ease, border-color .15s ease, transform .15s ease;
}

.svx-footer2__list a:hover{
  border-color: rgba(127,208,255,.45);
  transform: translateY(-1px);
}

/* Center brand */
.svx-footer2__center{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.svx-footer2__brand{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.svx-footer2__logo{
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.25));
}

.svx-footer2__name{
  font-weight: 1000;
  font-size: 18px;
  letter-spacing: .25px;
  display: inline-flex;
  gap: 2px;
}
.svx-footer2__nameA{ color:#e9f4ff; }
.svx-footer2__nameB{ color:#7fd0ff; }

/* Social icons row */
.svx-footer2__social{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.svx-footer2__socialBtn{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 22px rgba(0,0,0,.18);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background-color .16s ease;
}

.svx-footer2__socialBtn img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform .16s ease;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.22));
}

.svx-footer2__socialBtn:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 30px rgba(0,0,0,.24);
  border-color: rgba(127,208,255,.40);
  background: rgba(255,255,255,.10);
}
.svx-footer2__socialBtn:hover img{
  transform: scale(1.08);
}

/* Bottom bar */
.svx-footer2__bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
}

.svx-footer2__copy{
  padding: 12px 0;
  text-align: center;
  color: rgba(233,244,255,.88);
  font-weight: 800;
}

/* Responsive */
@media (max-width: 980px){
  .svx-footer2__wrap{
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
  }

  .svx-footer2__inner{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px 0 14px;
  }

  .svx-footer2__col--right,
  .svx-footer2__col--left{
    text-align: center;
  }

  .svx-footer2__list{
    justify-items: center;
  }
}
