/* ===============================
   MOBILE CSS (CLEAN & SAFE)
   Applies below 900px
================================ */

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
}

/* TOGGLE */
.menu-toggle {
  display: block;
  font-size: 26px;
  background: none;
  border: none;
}

/* NAV */
.site-nav {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  z-index: 9999;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  padding: 12px 0;
  width: 100%;
  text-align: center;
}

/* PAGE OFFSET */
body {
  padding-top: 64px;
}

/* SERVICES */
.services {
  grid-template-columns: 1fr !important;
  padding: 40px 5vw;
  gap: 24px;
}

/* CARD IMAGES */
.service-card img {
  height: 180px;
  object-fit: cover;
}

/* SECTIONS */
.section {
  display: block !important;
  padding: 40px 5vw;
  text-align: center;
}

.section img {
  height: 220px;
  margin-bottom: 20px;
}

/* ABOUT */
#about {
  display: block;
  padding: 40px 5vw;
  text-align: center;
}
.about-image {
   max-width: 100%;
   height: 240px;
   margin: 0 auto 24px;
}

/* TRUST */
.trust-stats {
  grid-template-columns: 1fr;
}

/* FOOTER */
footer {
  grid-template-columns: 1fr;
  padding: 40px 5vw;
}

