/* ══════════════════════════════════════
   SHARED STYLES — Bin There Storage Guys
   Nav, Mobile Menu, Footer
   ══════════════════════════════════════ */

/* ── NAVBAR ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(17,17,17,0.97); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 104px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.nav-logo-icon { width: 90px; height: 90px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; flex-shrink: 0; }
.nav-logo-icon img { width: 102%; height: 102%; object-fit: contain; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.nav-logo-text { font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; letter-spacing: 0.05em; line-height: 1.2; color: var(--white); }
.nav-logo-text span { color: var(--yellow); }
.nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.75); font-size: 1.15rem; font-weight: 600; font-family: var(--font-display); letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }

/* ── MOBILE MENU ── */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(17,17,17,0.98); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mobile-overlay.open { display: flex; }
.mobile-menu-links { list-style: none; text-align: center; }
.mobile-menu-links li { padding: 12px 0; }
.mobile-menu-links a { color: var(--white); text-decoration: none; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }
.mobile-menu-links a:hover, .mobile-menu-links a.active { color: var(--yellow); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }

/* ── SITE FOOTER ── */
.site-footer { background: #111; border-top: 3px solid var(--yellow); color: rgba(255,255,255,0.75); font-family: var(--font-body); }
.footer-main { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 2rem; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo-icon { width: 48px; height: 48px; background: #fff; border-radius: 50%; border: 2px solid #000; flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.footer-logo-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; line-height: 1.1; }
.footer-logo-text span { color: var(--yellow); }
.footer-tagline { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.55); margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); transition: border-color 0.2s, color 0.2s; }
.footer-socials a:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-heading { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #fff; border-left: 3px solid var(--yellow); padding-left: 0.6rem; margin-bottom: 1.2rem; }
.footer-links ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links ul li::before { content: '• '; color: rgba(255,255,255,0.4); }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.9rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--yellow); }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); max-width: 1100px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-inner { height: 68px; }
  .nav-logo-icon { width: 40px; height: 40px; }
  .nav-logo-text { font-size: 0.85rem; }
  .nav-links a { font-size: 0.9rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.4rem; text-align: center; padding: 1rem 1.5rem; }
}
