*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
body {
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════
   SOCIAPA FOOTER — v3
   Colors: #DD0000 (logo red)  ·  #000000 (background)  ·  #fff (text)
   Paste <style> into WordPress → Appearance → Additional CSS
   Paste <footer> into theme's footer.php
═══════════════════════════════════════════════════════════════════ */

.sf{
  background:#000;
  color:#fff;
  font-family:'Segoe UI',Arial,sans-serif;
  border-top:4px solid #DD0000;
}

/* ── About strip ────────────────────────────────────────────────── */
.sf-about{
  background:#0a0a0a;
  padding:30px 60px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.sf-about__label{
  font-family: 'poppins';
  font-size:10px;letter-spacing:3.5px;text-transform:uppercase;
  color:#DD0000;font-weight:700;margin-bottom:10px;
}
.sf-about p{
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 2;
  font-weight: 300;
  max-width: 1200px;
  font-family: 'poppins';
}
.sf-about p strong{color:#fff;font-weight:600}

/* ── Main grid ──────────────────────────────────────────────────── */
.sf-grid{
  display:grid;
  grid-template-columns:240px 1fr 1fr 1fr 1fr;
  gap:48px;
  padding:52px 60px 44px;
  border-bottom:1px solid rgba(255,255,255,.07);
}

/* Logo column */
.sf-logo-wrap{display:flex;flex-direction:column;gap:0}
.sf-logo-wrap img{
  width:150px;height:auto;
  object-fit:contain;
  margin-bottom:18px;
}
.sf-tagline{
  font-size:12.5px;color:rgba(255,255,255,.45);
  line-height:1.8;font-weight:300;margin-bottom:22px;
}
/* Social icons */
.sf-social{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:22px}
.sf-social a{
  width:36px;height:36px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;
  transition:.25s;
  color:rgba(255,255,255,.6);
}
.sf-social a:hover{background:#DD0000;border-color:#DD0000;color:#fff}
.sf-social a svg{width:15px;height:15px;fill:currentColor}
/* Contact mini */
.sf-contact{display:flex;flex-direction:column;gap:7px}
.sf-contact a{
  font-size:12px;color:rgba(255,255,255,.5);
  text-decoration:none;font-weight:300;
  transition:color .2s;display:flex;align-items:flex-start;gap:7px;
  line-height:1.5;
}
.sf-contact a:hover{color:#DD0000}
.sf-contact a span.ic{color:#DD0000;font-size:13px;margin-top:1px;flex-shrink:0}

/* Service columns */
.sf-col h4{
  font-family: 'poppins';
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #DD0000;
  font-weight: 700;
  margin-bottom: 16px;
}
.sf-col ul{list-style:none;display:flex;flex-direction:column;gap:10px}
.sf-col ul a{
  font-size:12.5px;color:rgba(255,255,255,.52);
  text-decoration:none;font-weight:300;
  transition:color .2s;line-height:1.4;cursor:pointer;
}
.sf-col ul a:hover{color:#fff}

/* ── Keyword / location strip ───────────────────────────────────── */
.sf-tags{
  display:flex;flex-wrap:wrap;
  padding:14px 60px;
  border-bottom:1px solid rgba(255,255,255,.05);
  gap:0;
}
.sf-tags a{
  font-size:10.5px;color:rgba(255,255,255,.22);
  text-decoration:none;
  padding:5px 13px;
  border-right:1px solid rgba(255,255,255,.07);
  white-space:nowrap;transition:color .2s;line-height:1.6;
}
.sf-tags a:first-child{padding-left:0}
.sf-tags a:last-child{border-right:none}
.sf-tags a:hover{color:rgba(255,255,255,.6)}

/* ── Bottom bar ─────────────────────────────────────────────────── */
.sf-bottom{
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px 30px 60px;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, .22);
    letter-spacing: .4px;
}
.sf-bottom a{
  color:rgba(255,255,255,.3);text-decoration:none;
  margin-left:16px;transition:color .2s;
}
.sf-bottom a:hover{color:#DD0000}

/* ── Responsive ─────────────────────────────────────────────────── */
@media(max-width:1100px){
  .sf-grid{grid-template-columns:1fr 1fr 1fr;gap:32px;padding:40px 32px}
  .sf-about,.sf-tags,.sf-bottom{padding-left:32px;padding-right:32px}
}
@media(max-width:640px){
  .sf-grid{grid-template-columns:1fr 1fr;padding:28px 20px;gap:24px}
  .sf-about{padding:22px 20px}
  .sf-tags{display:none}
  .sf-bottom{padding:30px 20px;flex-direction:column;align-items:flex-start}
  .sf-bottom a{margin-left:0;margin-right:12px}
}

/* profile sticky */
.profile-float{
    position: fixed;
    left: 20px;
    bottom: 100px;
    width: 58px;
    height: 58px;
    background: #d20c0c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
    z-index: 9999;
    transition: all .3s ease;
    overflow: visible;
}

.profile-float:hover{
    transform: translateY(-5px) scale(1.08);
    background: #b30b0b;
    color: #fff;
}

.profile-float i{
    font-size: 30px;
}

/* Tooltip */
.profile-float .tooltip{
    position: absolute;
    left: 72px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: #222;
    color: #fff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    pointer-events: none;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.profile-float .tooltip::before{
    content: "";
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent #222 transparent transparent;
}

.profile-float:hover .tooltip{
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media(max-width:600px){

    .profile-float{
        width: 42px;
        height: 42px;
        left: 20px;
        bottom: 70px;
    }

    .profile-float i{
        font-size: 22px;
    }

    .profile-float .tooltip{
        font-size: 12px;
        padding: 6px 12px;
        left: 55px;
    }
}