
/* KEEP ME CARD — GLOBAL HEADER & FOOTER CSS */



header#hdr {

  position: fixed;

  top: 0; left: 0; right: 0;

  z-index: 1000;

  background: #FFFFFF;

  border-bottom: 1px solid #E5E7EB;

  height: 76px;

  transition: box-shadow .3s;

}

header#hdr.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }



.header-inner {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 40px;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

}



a.logo {

  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  flex-shrink: 0;

}



.logo-img {

  height: 44px;

  width: 44px;

  border-radius: 6px;

  object-fit: cover;

  display: block;

}



.header-nav {

  display: flex;

  align-items: center;

  gap: 4px;

  flex: 1;

}



.nav-link {

  font-size: 15px;

  font-weight: 600;

  color: #444444;

  padding: 8px 14px;

  border-radius: 6px;

  transition: color .2s, background .2s;

  white-space: nowrap;

  text-decoration: none;

  font-family: 'Barlow', sans-serif;

}

.nav-link:hover,

.nav-link.active {

  color: #1A1A1A;

  background: #F7F7F5;

}



.header-phone {

  display: flex;

  align-items: center;

  gap: 8px;

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 700;

  font-size: 16px;

  color: #1A1A1A;

  white-space: nowrap;

  text-decoration: none;

}

.header-phone:hover { color: #FF0000; }



.header-phone-dot {

  width: 8px; height: 8px;

  background: #2E7D32;

  border-radius: 50%;

  animation: hdr-pulse 2s ease-in-out infinite;

}

@keyframes hdr-pulse {

  0%,100% { opacity: 1; }

  50% { opacity: .4; }

}



.header-ctas {

  display: flex;

  gap: 10px;

  flex-shrink: 0;

}



.hamburger {

  display: none;

  flex-direction: column;

  gap: 5px;

  cursor: pointer;

  padding: 8px;

  border: none;

  background: none;

}

.hamburger span {

  width: 24px; height: 2px;

  background: #1A1A1A;

  border-radius: 2px;

  display: block;

  transition: all .3s;

}



.mobile-nav-overlay {

  display: none;

  position: fixed;

  top: 76px; left: 0; right: 0; bottom: 0;

  background: #FFFFFF;

  z-index: 999;

  flex-direction: column;

  padding: 22px 24px;

  gap: 4px;

  border-top: 1px solid #E5E7EB;

  overflow-y: auto;

}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay .nav-link {

  font-size: 19px;

  padding: 14px 0;

  border-bottom: 1px solid #E5E7EB;

  border-radius: 0;

}

.mobile-nav-overlay .btn { margin-top: 10px; justify-content: center; }



.mobile-call-bar {

  display: none;

  position: fixed;

  bottom: 0; left: 0; right: 0;

  background: #FF0000;

  z-index: 998;

}

.mobile-call-bar a {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  color: #FFFFFF;

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 800;

  font-size: 17px;

  letter-spacing: .06em;

  text-transform: uppercase;

  padding: 16px;

  text-decoration: none;

}



footer {

  background: #1A1A1A;

  color: rgba(255,255,255,.4);

  padding: 60px 0 24px;

}

.footer-grid {

  max-width: 1200px;

  margin: 0 auto;

  padding: 0 40px;

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 48px;

  margin-bottom: 50px;

}

.footer-logo {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 900;

  font-size: 22px;

  color: #FFFFFF;

  text-transform: uppercase;

  letter-spacing: .05em;

  display: block;

  margin-bottom: 14px;

}

.footer-logo em { color: #FF0000; font-style: normal; }

.footer-brand p {

  font-size: 14px;

  color: rgba(255,255,255,.36);

  line-height: 1.75;

  max-width: 270px;

  margin-top: 4px;

}

.footer-since {

  display: inline-block;

  margin-top: 16px;

  background: rgba(255,0,0,.13);

  border: 1px solid rgba(255,0,0,.26);

  color: #FF0000;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: .14em;

  text-transform: uppercase;

  padding: 4px 10px;

  border-radius: 4px;

}

.footer-col h4 {

  font-family: 'Barlow Condensed', sans-serif;

  font-weight: 800;

  font-size: 13px;

  letter-spacing: .14em;

  text-transform: uppercase;

  color: rgba(255,255,255,.82);

  margin-bottom: 14px;

}

.footer-links {

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 9px;

}

.footer-links a {

  font-size: 14px;

  color: rgba(255,255,255,.36);

  transition: color .2s;

  text-decoration: none;

}

.footer-links a:hover { color: #FF0000; }

.footer-bottom {

  max-width: 1200px;

  margin: 0 auto;

  padding: 20px 40px 0;

  border-top: 1px solid rgba(255,255,255,.07);

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 12px;

  font-size: 13px;

}

.footer-bottom a {

  color: rgba(255,255,255,.3);

  text-decoration: none;

}

.footer-bottom a:hover { color: #FF0000; }

.footer-coverage-line {

  max-width: 1200px;

  margin: 16px auto 0;

  padding: 0 40px;

  font-size: 13px;

  color: rgba(255,255,255,.25);

  text-align: center;

}



@media (max-width: 1024px) {

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

}

@media (max-width: 768px) {

  header#hdr { height: 68px; }

  .header-inner { padding: 0 20px; }

  .header-nav, .header-ctas, .header-phone { display: none !important; }

  .hamburger { display: flex !important; }

  .mobile-nav-overlay { top: 68px; }

  .mobile-call-bar { display: block; }

  .footer-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 26px; }

  .footer-bottom { padding: 18px 20px 0; }

  .footer-coverage-line { padding: 0 20px; }

}

