/* ═══════════════════════════════════════════
   SLVTC – Shared Styles (header + footer)
   Used across all pages
═══════════════════════════════════════════ */

* {
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f8f7f4;
}

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 0;
}

.navbar-brand .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1a6bb5;
  line-height: 1;
}

.navbar-brand .brand-tagline {
  font-size: 0.62rem;
  color: #888;
  letter-spacing: 0.03em;
}

.navbar .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  padding: 0 14px;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #1a6bb5;
}

.location-btn {
  font-size: 0.82rem;
  border: 1px solid #d0d0d0;
  border-radius: 20px;
  padding: 5px 14px;
  color: #444;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.location-btn i {
  color: #1a6bb5;
}

.btn-signin {
  font-size: 0.82rem;
  color: #333;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  cursor: pointer;
}

.btn-signin:hover { color: #1a6bb5; }

.cart-btn {
  position: relative;
  font-size: 0.82rem;
  color: #333;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  cursor: pointer;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #1a6bb5;
  color: #fff;
  font-size: 0.6rem;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── FOOTER ── */
.site-footer {
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 48px 0 0;
  margin-top: 10px;
}

.footer-brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a6bb5;
}

.footer-tagline {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
  max-width: 200px;
}

.footer-heading {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 0.8rem;
  color: #666;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #1a6bb5;
}

.footer-bottom {
  border-top: 1px solid #efefef;
  margin-top: 36px;
  padding: 16px 0;
  font-size: 0.75rem;
  color: #aaa;
  text-align: center;
}

/* ── FOOTER SOCIAL LINKS ── */
.footer-social-link {
  color: #666;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-social-link:hover { color: #1a6bb5; }

/* ── FLOATING SOCIAL SIDEBAR ── */
.social-float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  box-shadow: -2px 4px 20px rgba(0,0,0,.18);
}
.sf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter .2s, transform .2s;
  background: #1a6bb5;
}
.sf-btn:hover {
  filter: brightness(1.15);
  transform: scale(1.08);
  color: #fff;
}
.sf-phone     { background: #1a6bb5; }
.sf-whatsapp  { background: #25d366; }
.sf-facebook  { background: #1877f2; }
.sf-twitter   { background: #000; }
.sf-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.sf-linkedin  { background: #0a66c2; }

/* ── PHONE MODAL ── */
.phone-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.phone-modal-card {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  animation: pmSlide .3s ease;
}
@keyframes pmSlide {
  from { transform: translateY(30px) scale(.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.pm-header {
  background: linear-gradient(135deg, #0f2b4a, #1a6bb5, #2d8cd4);
  color: #fff;
  padding: 22px 24px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.pm-header h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}
.pm-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.pm-close:hover { background: rgba(255,255,255,.3); }
.pm-body {
  padding: 18px 20px 24px;
  max-height: 55vh;
  overflow-y: auto;
}
.pm-section-label {
  font-size: .7rem;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 14px 0 8px;
  display: flex; align-items: center; gap: 4px;
}
.pm-section-label:first-child { margin-top: 0; }
.pm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  text-decoration: none;
  transition: all .18s;
  background: #fff;
}
.pm-row:hover {
  border-color: #1a6bb5;
  background: #eef4ff;
  transform: translateX(-2px);
  box-shadow: 0 3px 12px rgba(26,107,181,.12);
}
.pm-left {
  display: flex; align-items: center; gap: 12px;
}
.pm-icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef4ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  color: #1a6bb5; font-size: .9rem; flex-shrink: 0;
}
.pm-num {
  font-size: .88rem;
  font-weight: 700;
  color: #111827;
}
.pm-call-btn {
  font-size: .72rem;
  font-weight: 700;
  color: #1a6bb5;
  display: flex; align-items: center; gap: 4px;
  opacity: 0;
  transition: opacity .18s;
}
.pm-row:hover .pm-call-btn { opacity: 1; }

@media (max-width: 768px) {
  .social-float {
    bottom: 0;
    top: auto;
    right: 0;
    left: 0;
    transform: none;
    flex-direction: row;
    border-radius: 14px 14px 0 0;
    justify-content: center;
  }
  .sf-btn {
    width: 100%;
    height: 44px;
    font-size: 1.1rem;
  }
}
