/* ===============================
   FOOTER BASE
================================ */
.footer-section {
  background: linear-gradient(180deg,#0c3b6e 0%, #082846 100%);
  color: #fff;
  position: relative;
  padding-top: 75px;
  padding-bottom: 28px;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 1px;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.28),transparent);
}

.footer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.05), transparent 40%);
  pointer-events: none;
}

/* ===============================
   LOGO BLOCK
================================ */
.footer-logo {
  width: 110px;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.35));
}

.footer-about p {
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  font-size: 15px;
  max-width: 340px;
}

/* ===============================
   TITLES
================================ */
.footer-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: .3px;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg,#ffc107,#ffd54f);
}

/* ===============================
   LINKS
================================ */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 15px;
  transition: .3s;
  position: relative;
}

.footer-links a::before {
  content: "›";
  position: absolute;
  left: -14px;
  opacity: 0;
  transition: .3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 12px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -8px;
}

/* ===============================
   CONTACT
================================ */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.footer-contact i {
  color: #dbe7ef;
  min-width: 18px;
  margin-top: 4px;
}

.footer-contact a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: .25s;
}

.footer-contact a:hover {
  color: #ffd54f;
  text-decoration: underline;
}

/* ===============================
   SOCIAL
================================ */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: all .35s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
  color: #fff;
}

.footer-social a:nth-child(1):hover { background:#1877f2; }
.footer-social a:nth-child(2):hover { background:#1da1f2; }
.footer-social a:nth-child(3):hover { background:#ff0000; }
.footer-social a:nth-child(4):hover { background:#e1306c; }

/* ===============================
   BOTTOM BAR
================================ */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 45px;
  padding-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  letter-spacing: .3px;
}

/* ===============================
   TABLET CENTER
================================ */
@media (max-width: 991px) {

  .footer-section {
    padding-top: 60px;
    text-align: center;           /* ⭐ center all */
  }

  .footer-logo {
    width: 95px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-about p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);  /* ⭐ center underline */
  }

  .footer-links a::before {
    display: none;                /* remove arrow for center */
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .footer-contact li {
    justify-content: center;      /* ⭐ center items */
    text-align: left;
  }

  .footer-social {
    justify-content: center;      /* ⭐ center icons */
  }
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 14px;
  color: #cfd6e4;
}

.footer-bottom a {
  color: #f4b400;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ===============================
   MOBILE CENTER
================================ */
@media (max-width: 576px) {

  .footer-section {
    padding-top: 50px;
    text-align: center;
  }

  .footer-about p {
    font-size: 14px;
  }

  .footer-contact li {
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
  }
}



/* ===============================
   FLOATING CONTACT WIDGETS
================================ */
.phone-widget,
.wa-widget{
  position:fixed;
  right:26px;
  z-index:9999;
}

.wa-widget{ bottom:26px; }
.phone-widget{ bottom:106px; }

/* ===============================
   COMMON BUTTON
================================ */
.phone-widget a,
.wa-widget a{
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
  text-decoration:none;
  position:relative;
  transition:.28s;
}

/* COLORS */
.wa-widget a{
  background:linear-gradient(135deg,#25d366,#1ebe5d);
  box-shadow:
    0 14px 32px rgba(37,211,102,.45),
    0 6px 14px rgba(0,0,0,.2);
}

.phone-widget a{
  background:linear-gradient(135deg,#0c3b6e,#0a2f57);
  box-shadow:
    0 14px 32px rgba(12,59,110,.45),
    0 6px 14px rgba(0,0,0,.2);
}

/* HOVER */
.phone-widget a:hover,
.wa-widget a:hover{
  transform:translateY(-5px) scale(1.06);
}

/* ===============================
   HALO
================================ */
.phone-widget::before,
.wa-widget::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:50%;
  filter:blur(4px);
  z-index:-1;
  animation:floatGlow 3s ease-in-out infinite;
}

.wa-widget::before{
  background:radial-gradient(circle,rgba(37,211,102,.35),transparent 70%);
}

.phone-widget::before{
  background:radial-gradient(circle,rgba(12,59,110,.35),transparent 70%);
}

@keyframes floatGlow{
  0%,100%{transform:scale(1);opacity:.6;}
  50%{transform:scale(1.25);opacity:.25;}
}

/* ===============================
   TOOLTIP (MATCHED)
================================ */
.phone-widget a::after,
.wa-widget a::after{
  position:absolute;
  right:78px;
  top:50%;
  transform:translateY(-50%) translateX(8px);
  background:#0c3b6e;
  color:#fff;
  font-size:13px;
  font-weight:600;
  padding:7px 12px;
  border-radius:6px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:.25s;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}

/* LABELS */
.wa-widget a::after{ content:"Chat with us"; }
.phone-widget a::after{ content:"Call Now"; }

/* ARROW */
.phone-widget a::before,
.wa-widget a::before{
  content:"";
  position:absolute;
  right:68px;
  top:50%;
  transform:translateY(-50%);
  border:6px solid transparent;
  border-left-color:#0c3b6e;
  opacity:0;
  transition:.25s;
}

/* SHOW */
.phone-widget a:hover::after,
.phone-widget a:hover::before,
.wa-widget a:hover::after,
.wa-widget a:hover::before{
  opacity:1;
  transform:translateY(-50%) translateX(0);
}

/* ===============================
   MOBILE
================================ */
@media (max-width:576px){

  .phone-widget,
  .wa-widget{
    right:16px;
  }

  .wa-widget{ bottom:16px; }
  .phone-widget{ bottom:86px; }

  .phone-widget a,
  .wa-widget a{
    width:56px;
    height:56px;
    font-size:26px;
  }

  .phone-widget a::after,
  .phone-widget a::before,
  .wa-widget a::after,
  .wa-widget a::before{
    display:none;
  }

}