/* === Base Footer Container === */
#hc-footer {
  background:#111;
  color:#fff;
}
#hc-footer a {
  color:#fff;
  text-decoration:none;
  opacity:.9;
}
#hc-footer a:hover {
  opacity:1;
  text-decoration:underline;
}
#hc-footer .hc-wrap {
  max-width:1200px;
  margin:0 auto;
  padding:40px 16px;
}


/* === Contact Cards Grid === */
#hc-footer .hc-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  text-align:center;
}
@media (max-width:992px){
  #hc-footer .hc-grid {
    grid-template-columns:1fr;
  }
}

#hc-footer .hc-card h5 {
  margin:0 0 6px;
  font-size:14px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(255,255,255,.72);
}
#hc-footer .hc-card p {
  margin:0;
  font-size:15px;
  color:rgba(255,255,255,.85);
}

/* Icons */
#hc-footer .hc-ico {
  width:28px;
  height:28px;
  margin:0 auto 6px;
  opacity:.85;
}
#hc-footer .hc-ico svg {
  width:100%;
  height:100%;
  stroke:rgba(255,255,255,.78);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
  transition: opacity .15s ease;
}
#hc-footer .hc-card:hover .hc-ico svg {
  opacity:1;
}


/* === Newsletter === */
.nl-wrap {
  max-width:520px;
  margin:36px auto 0;
  text-align:center;
}
.nl-title {
  color:#fff;
  margin-bottom:8px;
  font-size:16px;
  font-weight:600;
  opacity:.9;
}
.nl-input {
  width:100%;
  padding:16px 18px;
  border-radius:8px;
  background:#2a2a2a;
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:16px;
  outline:none;
}
.nl-input::placeholder {
  color:rgba(255,255,255,.55);
}
.nl-btn {
  margin-top:14px;
  padding:10px 18px;
  border-radius:8px;
  background:transparent;
  color:#ddd;
  border:1px solid rgba(255,255,255,.35);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:13px;
  cursor:pointer;
  transition:background .2s, color .2s, border-color .2s;
}
.nl-btn:hover {
  background:#fff;
  color:#000;
  border-color:#fff;
}
.nl-msg {
  color:#fff;
  font-size:16px;
  margin-top:14px;
}


/* === Bottom Line === */
#hc-footer .hc-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.15);
  margin-top:28px;
  padding-top:16px;
}
#hc-footer .hc-copy {
  font-size:14px;
}
#hc-footer .hc-sep {
  padding:0 10px;
  opacity:.7;
}
@media (max-width:992px){
  #hc-footer .hc-bottom {
    flex-direction:column;
    gap:12px;
    text-align:center;
  }
}


/* === Social Icons === */
footer .social-icons ul {
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
  margin:0;
  padding:0;
  list-style:none;
}
footer .social-icons li a {
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  transition:transform .2s, box-shadow .2s, background .2s, filter .2s;
}
footer .social-icons li img {
  width:20px;
  height:20px;
  display:block;
}

/* Hover Effects */
footer .social-icons li a:hover { transform: translateY(-2px) scale(1.06); }

/* Facebook */
footer .social-facebook a:hover {
  background:#1877F2 !important;
  box-shadow:0 6px 16px rgba(24,119,242,.55) !important;
}
/* Instagram gradient */
footer .social-instagram a:hover {
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4) !important;
}
/* Google */
footer .social-google a:hover {
  background:#34A853 !important;
}
/* YouTube */
footer .social-youtube a:hover {
  background:#FF0000 !important;
}
/* TikTok */
footer .social-tiktok a:hover {
  background:#000 !important;
}
#hc-footer .hc-ico svg{
  fill:none !important;
  stroke:rgba(255,255,255,.78) !important;
  stroke-width:2;
}
#hc-footer .nl-input{ background:#2a2a2a; border:1px solid rgba(255,255,255,.18); color:#fff; }
#hc-footer .nl-btn{ border:1px solid rgba(255,255,255,.35); }




/* BBAR - BOTTOM BAR*/
  #bbar{display:none}
  @media (max-width:767px){
    #bbar{
      position:fixed; bottom:0; left:0; width:100%;
      display:grid; grid-template-columns:repeat(4,1fr);
      gap:10px; text-align:center; padding:10px 0 14px;
      background:#dea83d; color:#111; z-index:1000000; border-top:1px solid #eee;
    }
    body{ padding-bottom:84px; } /* για να μη σκεπάζει περιεχόμενο */
  }
  #bbar a{display:block; font:500 12px/1.2 system-ui; color:#111; text-decoration:none}
  #bbar img{width:32px; height:32px; display:block; margin:6px auto 6px}
